#yagnesh-p_api
1 messages · Page 1 of 1 (latest)
👋 Welcome to your new thread!
⏲️ We'll be here soon! Typically we respond in a few minutes, but sometimes we might take a bit longer if the server is busy or if you have a particularly tricky question.
⏱️ We close idle threads, which makes them read-only. Once a thread is closed it won't be reopened, but you can always start a new thread if you have another question.
🔗 This thread will always be available, even after it's closed. You can find it again using Discord's search, or you can save this link: https://discord.com/channels/841573134531821608/1420082970190020751
📝 Have more to share? Add more details, code, screenshots, videos, etc. below.
Below are links to other discussions we've had with you in the past week in case you want to review that information. If your question is related to one of these previous discussions, please provide a comprehensive summary of the current state and what you need help with now. We help many users simultaneously, so a summary allows us to resolve your issue as soon as possible.
- yagnesh-p_api, 1 day ago, 4 messages
- yagnesh-p_api, 4 days ago, 37 messages
Could you sare why you're using beta version of the stripe-node SDK?
I wanted access to new update checkout session api which is in preview mode and I have given access to test that.
For beta SDK, InvoicePaymentListParams is only available from v18.5.0-beta.2 onwards: https://github.com/stripe/stripe-node/blob/v18.5.0-beta.2/types/InvoicePaymentsResource.d.ts
Could you try v18.5.0-beta.2 to check if that works for you?
The latest beta version v18.6.0-beta.1 should work too: https://github.com/stripe/stripe-node/blob/v18.6.0-beta.1/types/InvoicePaymentsResource.d.ts
can you please verify if InvoicePaymentListParams was removed in the 18.1.0-beta.3
InvoicePaymentListParams was not added in 18.1.0-beta.3. It was only added from the v18.5.0-beta.2 onwards
InvoicePaymentListParams is for the new Invoice Payments API, which hasn't been added in 18.1.0-beta.3
But it is there in non beta version 18.0.0, so for only beta it changed right? This is still there in higher regular version too.
Beta version is maintained separately from the non-beta version
Is there any concern to update to v18.6.0-beta.1 version?
No concern but coming from regular 18.0.0 and according to docs i have to install the 18.0.1 beta-3 https://docs.stripe.com/payments/checkout/dynamically-update-line-items?server-lang=node
Thanks for sharing!
The API spec for different API version is maintained differently. v18.0.0 has 2025-03-31.basil pinned while v18.1.0-beta.3 is 2025-03-31.preview. In this preview, it doesn't contain the basil changes for Invoice Payments API.
The documentation shows the minimum version to use the beta. However, InvoicePaymentListParams isn't part of this beta and it isn't included in pinned version of 2025-03-31.preview.
Okay thanks for the update.