Skip to content

Commit 2b90ab6

Browse files
authored
Merge pull request DefinitelyTyped#33682 from 0xJoKe/stripe-paymentintents
[stripe] added missing signatures for paymentIntents
2 parents 74bd32e + b26e09b commit 2b90ab6

File tree

2 files changed

+49
-0
lines changed

2 files changed

+49
-0
lines changed

types/stripe/index.d.ts

+47
Original file line numberDiff line numberDiff line change
@@ -3359,6 +3359,15 @@ declare namespace Stripe {
33593359
source?: string;
33603360
}
33613361

3362+
interface IPaymentIntentRetrieveOptions {
3363+
/**
3364+
* The client secret of the PaymentIntent. Required if a publishable key is used to retrieve the source.
3365+
*
3366+
* REQUIRED IF USING PUBLISHABLE KEY!
3367+
*/
3368+
client_secret: string;
3369+
}
3370+
33623371
interface IPaymentIntentCaptureOptions {
33633372
/**
33643373
* The amount to capture (in cents) from the PaymentIntent, which must be less than or equal to the original amount. Any additional amount will be automatically refunded. Defaults to the full `amount_capturable` if not provided.
@@ -7276,6 +7285,17 @@ declare namespace Stripe {
72767285
* Client-side retrieval using a publishable key is allowed when the client_secret is provided in the query string.
72777286
* When retrieved with a publishable key, only a subset of properties will be returned. Please refer to the payment intent object reference for more details.
72787287
*/
7288+
retrieve(
7289+
id: string,
7290+
data: paymentIntents.IPaymentIntentRetrieveOptions,
7291+
options: HeaderOptions,
7292+
response?: IResponseFn<paymentIntents.IPaymentIntent>,
7293+
): Promise<paymentIntents.IPaymentIntent>;
7294+
retrieve(
7295+
id: string,
7296+
data: paymentIntents.IPaymentIntentRetrieveOptions,
7297+
response?: IResponseFn<paymentIntents.IPaymentIntent>,
7298+
): Promise<paymentIntents.IPaymentIntent>;
72797299
retrieve(
72807300
id: string,
72817301
options: HeaderOptions,
@@ -7304,6 +7324,15 @@ declare namespace Stripe {
73047324
data: paymentIntents.IPaymentIntentConfirmOptions,
73057325
response?: IResponseFn<paymentIntents.IPaymentIntent>,
73067326
): Promise<paymentIntents.IPaymentIntent>;
7327+
confirm(
7328+
paymentIntentId: string,
7329+
options: HeaderOptions,
7330+
response?: IResponseFn<paymentIntents.IPaymentIntent>,
7331+
): Promise<paymentIntents.IPaymentIntent>;
7332+
confirm(
7333+
paymentIntentId: string,
7334+
response?: IResponseFn<paymentIntents.IPaymentIntent>,
7335+
): Promise<paymentIntents.IPaymentIntent>;
73077336

73087337
/**
73097338
* Capture the funds of an existing uncaptured PaymentIntent where `required_action="requires_capture"`.
@@ -7322,6 +7351,15 @@ declare namespace Stripe {
73227351
data: paymentIntents.IPaymentIntentCaptureOptions,
73237352
response?: IResponseFn<paymentIntents.IPaymentIntent>,
73247353
): Promise<paymentIntents.IPaymentIntent>;
7354+
capture(
7355+
paymentIntentId: string,
7356+
options: HeaderOptions,
7357+
response?: IResponseFn<paymentIntents.IPaymentIntent>,
7358+
): Promise<paymentIntents.IPaymentIntent>;
7359+
capture(
7360+
paymentIntentId: string,
7361+
response?: IResponseFn<paymentIntents.IPaymentIntent>,
7362+
): Promise<paymentIntents.IPaymentIntent>;
73257363

73267364
/**
73277365
* A PaymentIntent object can be canceled when it is in one of these statuses: `requires_payment_method`, `requires_capture`, `requires_confirmation`, `requires_action`.
@@ -7337,13 +7375,22 @@ declare namespace Stripe {
73377375
options: HeaderOptions,
73387376
response?: IResponseFn<paymentIntents.IPaymentIntent>,
73397377
): Promise<paymentIntents.IPaymentIntent>;
7378+
cancel(
7379+
paymentIntentId: string,
7380+
options: HeaderOptions,
7381+
response?: IResponseFn<paymentIntents.IPaymentIntent>,
7382+
): Promise<paymentIntents.IPaymentIntent>;
73407383
cancel(
73417384
paymentIntentId: string,
73427385
data: {
73437386
cancellation_reason?: paymentIntents.PaymentIntentCancelationReason,
73447387
},
73457388
response?: IResponseFn<paymentIntents.IPaymentIntent>,
73467389
): Promise<paymentIntents.IPaymentIntent>;
7390+
cancel(
7391+
paymentIntentId: string,
7392+
response?: IResponseFn<paymentIntents.IPaymentIntent>,
7393+
): Promise<paymentIntents.IPaymentIntent>;
73477394
}
73487395

73497396
class Payouts extends StripeResource {

types/stripe/stripe-tests.ts

+2
Original file line numberDiff line numberDiff line change
@@ -1057,6 +1057,8 @@ stripe.paymentIntents.confirm("pi_Aabcxyz01aDfoo", {}).then((intent) => {});
10571057
stripe.paymentIntents.capture("pi_Aabcxyz01aDfoo", {}, (err, intent) => {});
10581058
stripe.paymentIntents.capture("pi_Aabcxyz01aDfoo", {}).then((intent) => {});
10591059

1060+
stripe.paymentIntents.cancel("pi_Aabcxyz01aDfoo", (err, intent) => {});
1061+
stripe.paymentIntents.cancel("pi_Aabcxyz01aDfoo").then((intent) => {});
10601062
stripe.paymentIntents.cancel("pi_Aabcxyz01aDfoo", {}, (err, intent) => {});
10611063
stripe.paymentIntents.cancel("pi_Aabcxyz01aDfoo", {}).then((intent) => {});
10621064
stripe.paymentIntents.cancel("pi_Aabcxyz01aDfoo", { cancellation_reason: 'duplicate' }, (err, intent) => {});

0 commit comments

Comments
 (0)