From 27cc1585992e91869bc8ff868516ea41fb2f84db Mon Sep 17 00:00:00 2001 From: Hidetaka Okamoto <95597878+hideokamoto-stripe@users.noreply.github.com> Date: Tue, 14 May 2024 09:33:34 +0900 Subject: [PATCH] Update stripe.d.ts for updating the StripeError interface (#588) * Update stripe.d.ts for updating the StripeError interface adding the request_log_url type on the StripeError * chore: fix prettier issue on types/stripe.d.ts --- types/stripe-js/stripe.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/stripe-js/stripe.d.ts b/types/stripe-js/stripe.d.ts index 4ab6f4cb..f7753350 100644 --- a/types/stripe-js/stripe.d.ts +++ b/types/stripe-js/stripe.d.ts @@ -1464,6 +1464,11 @@ export interface StripeError { */ param?: string; + /** + * A URL to the request log entry in your dashboard. + */ + request_log_url?: string; + /** * The `PaymentIntent` object for errors returned on a request involving a `PaymentIntent`. */