You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: types/BillingPortal/SessionsResource.d.ts
+68Lines changed: 68 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -19,6 +19,11 @@ declare module 'stripe' {
19
19
*/
20
20
expand?: Array<string>;
21
21
22
+
/**
23
+
* Information about a specific flow for the customer to go through.
24
+
*/
25
+
flow_data?: SessionCreateParams.FlowData;
26
+
22
27
/**
23
28
* The IETF language tag of the locale Customer Portal is displayed in. If blank or auto, the customer's `preferred_locales` or browser's locale is used.
24
29
*/
@@ -36,6 +41,69 @@ declare module 'stripe' {
36
41
}
37
42
38
43
namespaceSessionCreateParams{
44
+
interfaceFlowData{
45
+
/**
46
+
* Behavior after the flow is completed.
47
+
*/
48
+
after_completion?: FlowData.AfterCompletion;
49
+
50
+
/**
51
+
* Configuration when `flow_data.type=subscription_cancel`.
0 commit comments