stripe-node icon indicating copy to clipboard operation
stripe-node copied to clipboard

Node.js library for the Stripe API.

Results 102 stripe-node issues
Sort by recently updated
recently updated
newest added

### Is your feature request related to a problem? Please describe. I need to be able to reference object interfaces defined inside the Stripe namespace, but I'm unable to because...

future
feature-request

### Is your feature request related to a problem? Please describe. I would like to listen for errors in my Stripe calls so that I can log to my error...

future
feature-request

### Describe the bug If - for any reason - the node / js app having a `undefined` customer parameter, all subscriptions are leaked to the user. I totally understand...

speculative
feature-request

### Is your feature request related to a problem? Please describe. Right now, stripe defines its types with an amient module like so: https://github.com/stripe/stripe-node/blob/a91857ad68c2ff1a317f2a3cdb51e5aebf7df6b2/types/index.d.ts#L205 This is not ideal because stripe...

future
feature-request

Codegen for openapi v1017. ## Changelog

Codegen for openapi v1017. ## Changelog * Add support for `update` test helper method on resources `Treasury.OutboundPayment` and `Treasury.OutboundTransfer` * Add support for `allow_redisplay` on `ConfirmationToken.payment_method_preview` and `PaymentMethod` * Add...

### Is your feature request related to a problem? Please describe. Logging this as a FR because the issue is caused by an [long-open TS issue](https://github.com/microsoft/TypeScript/issues/45096), and other packages have...

feature-request

Currently, `generateTestHeaderString` throws a `CryptoProviderOnlySupportsAsyncError` when executed in Bun and other non-Node environments. This presents a limitation for users attempting to utilize this function outside of Node.js. This PR addresses...

### Describe the bug Seems to be empty compared to other prototypes. ### To Reproduce ``` node const stripe = require('stripe') stripe.resources.Checkout.prototype ``` ### Expected behavior { create: [Function (anonymous)],...

bug

In Bun, `"node:http"` internally is implemented as a wrapper on top of `fetch`. `"stripe"` might as well skip the wrapper and just use fetch instead, assuming that it doesn't change...