@stripe/connect-js 3.3.20-preview-1 → 3.3.22-preview-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -33,7 +33,8 @@ const ConnectElementCustomMethodConfig = {
33
33
  },
34
34
  "issuing-cards-list": {
35
35
  setFetchEphemeralKey: _fetchEphemeralKey => {},
36
- setShowSpendControls: _showSpendControls => {}
36
+ setShowSpendControls: _showSpendControls => {},
37
+ setIssuingProgram: _issuingProgram => {}
37
38
  },
38
39
  "financial-account": {
39
40
  setFinancialAccount: _financialAccount => {}
@@ -41,6 +42,9 @@ const ConnectElementCustomMethodConfig = {
41
42
  "financial-account-transactions": {
42
43
  setFinancialAccount: _financialAccount => {}
43
44
  },
45
+ recipients: {
46
+ setDataSource: _dataSource => {}
47
+ },
44
48
  "app-install": {
45
49
  setApp: _app => {},
46
50
  setOnAppInstallStateFetched: _listener => {},
@@ -56,7 +60,7 @@ const ConnectElementCustomMethodConfig = {
56
60
  "capital-financing": {
57
61
  setDefaultFinancingOffer: _defaultFinancingOffer => {},
58
62
  setShowFinancingSelector: _showFinancingSelector => {},
59
- setFaqUrl: _faqUrl => {},
63
+ setHowCapitalWorksUrl: _howCapitalWorksUrl => {},
60
64
  setSupportUrl: _supportUrl => {},
61
65
  setOnFinancingsLoaded: _listener => {}
62
66
  },
@@ -78,6 +82,15 @@ const ConnectElementCustomMethodConfig = {
78
82
  setIntervalStart: _intervalStart => {},
79
83
  setIntervalEnd: _intervalEnd => {},
80
84
  setIntervalType: _intervalType => {}
85
+ },
86
+ "tax-settings": {
87
+ setHideProductTaxCodeSelector: _hidden => {},
88
+ setDisplayHeadOfficeCountries: _countries => {},
89
+ setOnTaxSettingsUpdated: _listener => {}
90
+ },
91
+ "tax-registrations": {
92
+ setOnAfterTaxRegistrationAdded: _listener => {},
93
+ setDisplayCountries: _countries => {}
81
94
  }
82
95
  };
83
96
 
@@ -93,6 +106,7 @@ const componentNameMapping = {
93
106
  "issuing-card": "stripe-connect-issuing-card",
94
107
  "issuing-cards-list": "stripe-connect-issuing-cards-list",
95
108
  "financial-account": "stripe-connect-financial-account",
109
+ recipients: "stripe-connect-recipients",
96
110
  "financial-account-transactions": "stripe-connect-financial-account-transactions",
97
111
  "capital-financing": "stripe-connect-capital-financing",
98
112
  "capital-financing-application": "stripe-connect-capital-financing-application",
@@ -248,7 +262,7 @@ const createWrapper = stripeConnect => {
248
262
  sdk: true,
249
263
  sdkOptions: {
250
264
  // This will be replaced by the npm package version when bundling
251
- sdkVersion: "3.3.20-preview-1"
265
+ sdkVersion: "3.3.22-preview-1"
252
266
  }
253
267
  })
254
268
  }));
package/dist/connect.js CHANGED
@@ -37,7 +37,8 @@ const ConnectElementCustomMethodConfig = {
37
37
  },
38
38
  "issuing-cards-list": {
39
39
  setFetchEphemeralKey: _fetchEphemeralKey => {},
40
- setShowSpendControls: _showSpendControls => {}
40
+ setShowSpendControls: _showSpendControls => {},
41
+ setIssuingProgram: _issuingProgram => {}
41
42
  },
42
43
  "financial-account": {
43
44
  setFinancialAccount: _financialAccount => {}
@@ -45,6 +46,9 @@ const ConnectElementCustomMethodConfig = {
45
46
  "financial-account-transactions": {
46
47
  setFinancialAccount: _financialAccount => {}
47
48
  },
49
+ recipients: {
50
+ setDataSource: _dataSource => {}
51
+ },
48
52
  "app-install": {
49
53
  setApp: _app => {},
50
54
  setOnAppInstallStateFetched: _listener => {},
@@ -60,7 +64,7 @@ const ConnectElementCustomMethodConfig = {
60
64
  "capital-financing": {
61
65
  setDefaultFinancingOffer: _defaultFinancingOffer => {},
62
66
  setShowFinancingSelector: _showFinancingSelector => {},
63
- setFaqUrl: _faqUrl => {},
67
+ setHowCapitalWorksUrl: _howCapitalWorksUrl => {},
64
68
  setSupportUrl: _supportUrl => {},
65
69
  setOnFinancingsLoaded: _listener => {}
66
70
  },
@@ -82,6 +86,15 @@ const ConnectElementCustomMethodConfig = {
82
86
  setIntervalStart: _intervalStart => {},
83
87
  setIntervalEnd: _intervalEnd => {},
84
88
  setIntervalType: _intervalType => {}
89
+ },
90
+ "tax-settings": {
91
+ setHideProductTaxCodeSelector: _hidden => {},
92
+ setDisplayHeadOfficeCountries: _countries => {},
93
+ setOnTaxSettingsUpdated: _listener => {}
94
+ },
95
+ "tax-registrations": {
96
+ setOnAfterTaxRegistrationAdded: _listener => {},
97
+ setDisplayCountries: _countries => {}
85
98
  }
86
99
  };
87
100
 
@@ -97,6 +110,7 @@ const componentNameMapping = {
97
110
  "issuing-card": "stripe-connect-issuing-card",
98
111
  "issuing-cards-list": "stripe-connect-issuing-cards-list",
99
112
  "financial-account": "stripe-connect-financial-account",
113
+ recipients: "stripe-connect-recipients",
100
114
  "financial-account-transactions": "stripe-connect-financial-account-transactions",
101
115
  "capital-financing": "stripe-connect-capital-financing",
102
116
  "capital-financing-application": "stripe-connect-capital-financing-application",
@@ -252,7 +266,7 @@ const createWrapper = stripeConnect => {
252
266
  sdk: true,
253
267
  sdkOptions: {
254
268
  // This will be replaced by the npm package version when bundling
255
- sdkVersion: "3.3.20-preview-1"
269
+ sdkVersion: "3.3.22-preview-1"
256
270
  }
257
271
  })
258
272
  }));
package/dist/pure.esm.js CHANGED
@@ -33,7 +33,8 @@ const ConnectElementCustomMethodConfig = {
33
33
  },
34
34
  "issuing-cards-list": {
35
35
  setFetchEphemeralKey: _fetchEphemeralKey => {},
36
- setShowSpendControls: _showSpendControls => {}
36
+ setShowSpendControls: _showSpendControls => {},
37
+ setIssuingProgram: _issuingProgram => {}
37
38
  },
38
39
  "financial-account": {
39
40
  setFinancialAccount: _financialAccount => {}
@@ -41,6 +42,9 @@ const ConnectElementCustomMethodConfig = {
41
42
  "financial-account-transactions": {
42
43
  setFinancialAccount: _financialAccount => {}
43
44
  },
45
+ recipients: {
46
+ setDataSource: _dataSource => {}
47
+ },
44
48
  "app-install": {
45
49
  setApp: _app => {},
46
50
  setOnAppInstallStateFetched: _listener => {},
@@ -56,7 +60,7 @@ const ConnectElementCustomMethodConfig = {
56
60
  "capital-financing": {
57
61
  setDefaultFinancingOffer: _defaultFinancingOffer => {},
58
62
  setShowFinancingSelector: _showFinancingSelector => {},
59
- setFaqUrl: _faqUrl => {},
63
+ setHowCapitalWorksUrl: _howCapitalWorksUrl => {},
60
64
  setSupportUrl: _supportUrl => {},
61
65
  setOnFinancingsLoaded: _listener => {}
62
66
  },
@@ -78,6 +82,15 @@ const ConnectElementCustomMethodConfig = {
78
82
  setIntervalStart: _intervalStart => {},
79
83
  setIntervalEnd: _intervalEnd => {},
80
84
  setIntervalType: _intervalType => {}
85
+ },
86
+ "tax-settings": {
87
+ setHideProductTaxCodeSelector: _hidden => {},
88
+ setDisplayHeadOfficeCountries: _countries => {},
89
+ setOnTaxSettingsUpdated: _listener => {}
90
+ },
91
+ "tax-registrations": {
92
+ setOnAfterTaxRegistrationAdded: _listener => {},
93
+ setDisplayCountries: _countries => {}
81
94
  }
82
95
  };
83
96
 
@@ -93,6 +106,7 @@ const componentNameMapping = {
93
106
  "issuing-card": "stripe-connect-issuing-card",
94
107
  "issuing-cards-list": "stripe-connect-issuing-cards-list",
95
108
  "financial-account": "stripe-connect-financial-account",
109
+ recipients: "stripe-connect-recipients",
96
110
  "financial-account-transactions": "stripe-connect-financial-account-transactions",
97
111
  "capital-financing": "stripe-connect-capital-financing",
98
112
  "capital-financing-application": "stripe-connect-capital-financing-application",
@@ -248,7 +262,7 @@ const createWrapper = stripeConnect => {
248
262
  sdk: true,
249
263
  sdkOptions: {
250
264
  // This will be replaced by the npm package version when bundling
251
- sdkVersion: "3.3.20-preview-1"
265
+ sdkVersion: "3.3.22-preview-1"
252
266
  }
253
267
  })
254
268
  }));
package/dist/pure.js CHANGED
@@ -37,7 +37,8 @@ const ConnectElementCustomMethodConfig = {
37
37
  },
38
38
  "issuing-cards-list": {
39
39
  setFetchEphemeralKey: _fetchEphemeralKey => {},
40
- setShowSpendControls: _showSpendControls => {}
40
+ setShowSpendControls: _showSpendControls => {},
41
+ setIssuingProgram: _issuingProgram => {}
41
42
  },
42
43
  "financial-account": {
43
44
  setFinancialAccount: _financialAccount => {}
@@ -45,6 +46,9 @@ const ConnectElementCustomMethodConfig = {
45
46
  "financial-account-transactions": {
46
47
  setFinancialAccount: _financialAccount => {}
47
48
  },
49
+ recipients: {
50
+ setDataSource: _dataSource => {}
51
+ },
48
52
  "app-install": {
49
53
  setApp: _app => {},
50
54
  setOnAppInstallStateFetched: _listener => {},
@@ -60,7 +64,7 @@ const ConnectElementCustomMethodConfig = {
60
64
  "capital-financing": {
61
65
  setDefaultFinancingOffer: _defaultFinancingOffer => {},
62
66
  setShowFinancingSelector: _showFinancingSelector => {},
63
- setFaqUrl: _faqUrl => {},
67
+ setHowCapitalWorksUrl: _howCapitalWorksUrl => {},
64
68
  setSupportUrl: _supportUrl => {},
65
69
  setOnFinancingsLoaded: _listener => {}
66
70
  },
@@ -82,6 +86,15 @@ const ConnectElementCustomMethodConfig = {
82
86
  setIntervalStart: _intervalStart => {},
83
87
  setIntervalEnd: _intervalEnd => {},
84
88
  setIntervalType: _intervalType => {}
89
+ },
90
+ "tax-settings": {
91
+ setHideProductTaxCodeSelector: _hidden => {},
92
+ setDisplayHeadOfficeCountries: _countries => {},
93
+ setOnTaxSettingsUpdated: _listener => {}
94
+ },
95
+ "tax-registrations": {
96
+ setOnAfterTaxRegistrationAdded: _listener => {},
97
+ setDisplayCountries: _countries => {}
85
98
  }
86
99
  };
87
100
 
@@ -97,6 +110,7 @@ const componentNameMapping = {
97
110
  "issuing-card": "stripe-connect-issuing-card",
98
111
  "issuing-cards-list": "stripe-connect-issuing-cards-list",
99
112
  "financial-account": "stripe-connect-financial-account",
113
+ recipients: "stripe-connect-recipients",
100
114
  "financial-account-transactions": "stripe-connect-financial-account-transactions",
101
115
  "capital-financing": "stripe-connect-capital-financing",
102
116
  "capital-financing-application": "stripe-connect-capital-financing-application",
@@ -252,7 +266,7 @@ const createWrapper = stripeConnect => {
252
266
  sdk: true,
253
267
  sdkOptions: {
254
268
  // This will be replaced by the npm package version when bundling
255
- sdkVersion: "3.3.20-preview-1"
269
+ sdkVersion: "3.3.22-preview-1"
256
270
  }
257
271
  })
258
272
  }));
@@ -1,6 +1,6 @@
1
1
  import { IStripeConnectInitParams, StripeConnectInstance, ConnectElementTagName } from "../types";
2
2
  export type LoadConnectAndInitialize = (initParams: IStripeConnectInitParams) => StripeConnectInstance;
3
- export type ConnectElementHTMLName = "stripe-connect-payments" | "stripe-connect-payouts" | "stripe-connect-payment-details" | "stripe-connect-account-onboarding" | "stripe-connect-payment-method-settings" | "stripe-connect-account-management" | "stripe-connect-notification-banner" | "stripe-connect-instant-payouts" | "stripe-connect-issuing-card" | "stripe-connect-issuing-cards-list" | "stripe-connect-financial-account" | "stripe-connect-financial-account-transactions" | "stripe-connect-capital-financing" | "stripe-connect-capital-financing-application" | "stripe-connect-capital-financing-promotion" | "stripe-connect-capital-overview" | "stripe-connect-documents" | "stripe-connect-tax-registrations" | "stripe-connect-tax-settings" | "stripe-connect-balances" | "stripe-connect-payouts-list" | "stripe-connect-app-install" | "stripe-connect-app-viewport" | "stripe-connect-reporting-chart";
3
+ export type ConnectElementHTMLName = "stripe-connect-payments" | "stripe-connect-payouts" | "stripe-connect-payment-details" | "stripe-connect-account-onboarding" | "stripe-connect-payment-method-settings" | "stripe-connect-account-management" | "stripe-connect-notification-banner" | "stripe-connect-instant-payouts" | "stripe-connect-issuing-card" | "stripe-connect-issuing-cards-list" | "stripe-connect-financial-account" | "stripe-connect-financial-account-transactions" | "stripe-connect-recipients" | "stripe-connect-capital-financing" | "stripe-connect-capital-financing-application" | "stripe-connect-capital-financing-promotion" | "stripe-connect-capital-overview" | "stripe-connect-documents" | "stripe-connect-tax-registrations" | "stripe-connect-tax-settings" | "stripe-connect-balances" | "stripe-connect-payouts-list" | "stripe-connect-app-install" | "stripe-connect-app-viewport" | "stripe-connect-reporting-chart";
4
4
  export declare const componentNameMapping: Record<ConnectElementTagName, ConnectElementHTMLName>;
5
5
  type StripeConnectInstanceExtended = StripeConnectInstance & {
6
6
  debugInstance: () => Promise<StripeConnectInstance>;
@@ -38,6 +38,7 @@ export type FinancingProductType = {
38
38
  export type FinancingPromotionLayoutType = "full" | "banner";
39
39
  export type IntervalType = "day" | "week" | "month" | "quarter" | "year";
40
40
  export type ReportName = "gross_volume" | "net_volume";
41
+ export type RecipientDataSource = "customers";
41
42
  export type EmbeddedErrorType =
42
43
  /**
43
44
  * Failure to connect to Stripe's API.
@@ -97,6 +98,7 @@ export declare const ConnectElementCustomMethodConfig: {
97
98
  "issuing-cards-list": {
98
99
  setFetchEphemeralKey: (_fetchEphemeralKey: FetchEphemeralKeyFunction | undefined) => void;
99
100
  setShowSpendControls: (_showSpendControls: boolean | undefined) => void;
101
+ setIssuingProgram: (_issuingProgram: string | undefined) => void;
100
102
  };
101
103
  "financial-account": {
102
104
  setFinancialAccount: (_financialAccount: string) => void;
@@ -104,6 +106,9 @@ export declare const ConnectElementCustomMethodConfig: {
104
106
  "financial-account-transactions": {
105
107
  setFinancialAccount: (_financialAccount: string) => void;
106
108
  };
109
+ recipients: {
110
+ setDataSource: (_dataSource: RecipientDataSource) => void;
111
+ };
107
112
  "app-install": {
108
113
  setApp: (_app: string | undefined) => void;
109
114
  setOnAppInstallStateFetched: (_listener: (({ appId, state }: InstallState) => void) | undefined) => void;
@@ -119,7 +124,7 @@ export declare const ConnectElementCustomMethodConfig: {
119
124
  "capital-financing": {
120
125
  setDefaultFinancingOffer: (_defaultFinancingOffer: string | undefined) => void;
121
126
  setShowFinancingSelector: (_showFinancingSelector: boolean | undefined) => void;
122
- setFaqUrl: (_faqUrl: string | undefined) => void;
127
+ setHowCapitalWorksUrl: (_howCapitalWorksUrl: string | undefined) => void;
123
128
  setSupportUrl: (_supportUrl: string | undefined) => void;
124
129
  setOnFinancingsLoaded: (_listener: (({ total }: {
125
130
  total: number;
@@ -144,4 +149,17 @@ export declare const ConnectElementCustomMethodConfig: {
144
149
  setIntervalEnd: (_intervalEnd: Date | undefined) => void;
145
150
  setIntervalType: (_intervalType: IntervalType | undefined) => void;
146
151
  };
152
+ "tax-settings": {
153
+ setHideProductTaxCodeSelector: (_hidden: boolean | undefined) => void;
154
+ setDisplayHeadOfficeCountries: (_countries: string[] | undefined) => void;
155
+ setOnTaxSettingsUpdated: (_listener: (({ id }: {
156
+ id: string;
157
+ }) => void) | undefined) => void;
158
+ };
159
+ "tax-registrations": {
160
+ setOnAfterTaxRegistrationAdded: (_listener: (({ id }: {
161
+ id: string;
162
+ }) => void) | undefined) => void;
163
+ setDisplayCountries: (_countries: string[] | undefined) => void;
164
+ };
147
165
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stripe/connect-js",
3
- "version": "3.3.20-preview-1",
3
+ "version": "3.3.22-preview-1",
4
4
  "description": "Connect.js loading utility package",
5
5
  "main": "dist/connect.js",
6
6
  "module": "dist/connect.esm.js",
package/src/shared.ts CHANGED
@@ -26,6 +26,7 @@ export type ConnectElementHTMLName =
26
26
  | "stripe-connect-issuing-cards-list"
27
27
  | "stripe-connect-financial-account"
28
28
  | "stripe-connect-financial-account-transactions"
29
+ | "stripe-connect-recipients"
29
30
  | "stripe-connect-capital-financing"
30
31
  | "stripe-connect-capital-financing-application"
31
32
  | "stripe-connect-capital-financing-promotion"
@@ -54,6 +55,7 @@ export const componentNameMapping: Record<
54
55
  "issuing-card": "stripe-connect-issuing-card",
55
56
  "issuing-cards-list": "stripe-connect-issuing-cards-list",
56
57
  "financial-account": "stripe-connect-financial-account",
58
+ recipients: "stripe-connect-recipients",
57
59
  "financial-account-transactions":
58
60
  "stripe-connect-financial-account-transactions",
59
61
  "capital-financing": "stripe-connect-capital-financing",
package/types/config.ts CHANGED
@@ -53,6 +53,8 @@ export type IntervalType = "day" | "week" | "month" | "quarter" | "year";
53
53
 
54
54
  export type ReportName = "gross_volume" | "net_volume";
55
55
 
56
+ export type RecipientDataSource = "customers";
57
+
56
58
  export type EmbeddedErrorType =
57
59
  /**
58
60
  * Failure to connect to Stripe's API.
@@ -139,7 +141,8 @@ export const ConnectElementCustomMethodConfig = {
139
141
  setFetchEphemeralKey: (
140
142
  _fetchEphemeralKey: FetchEphemeralKeyFunction | undefined
141
143
  ): void => {},
142
- setShowSpendControls: (_showSpendControls: boolean | undefined): void => {}
144
+ setShowSpendControls: (_showSpendControls: boolean | undefined): void => {},
145
+ setIssuingProgram: (_issuingProgram: string | undefined): void => {}
143
146
  },
144
147
  "financial-account": {
145
148
  setFinancialAccount: (_financialAccount: string): void => {}
@@ -147,6 +150,9 @@ export const ConnectElementCustomMethodConfig = {
147
150
  "financial-account-transactions": {
148
151
  setFinancialAccount: (_financialAccount: string): void => {}
149
152
  },
153
+ recipients: {
154
+ setDataSource: (_dataSource: RecipientDataSource): void => {}
155
+ },
150
156
  "app-install": {
151
157
  setApp: (_app: string | undefined): void => {},
152
158
  setOnAppInstallStateFetched: (
@@ -172,7 +178,9 @@ export const ConnectElementCustomMethodConfig = {
172
178
  setShowFinancingSelector: (
173
179
  _showFinancingSelector: boolean | undefined
174
180
  ): void => {},
175
- setFaqUrl: (_faqUrl: string | undefined): void => {},
181
+ setHowCapitalWorksUrl: (
182
+ _howCapitalWorksUrl: string | undefined
183
+ ): void => {},
176
184
  setSupportUrl: (_supportUrl: string | undefined): void => {},
177
185
  setOnFinancingsLoaded: (
178
186
  _listener: (({ total }: { total: number }) => void) | undefined
@@ -206,5 +214,20 @@ export const ConnectElementCustomMethodConfig = {
206
214
  setIntervalStart: (_intervalStart: Date | undefined): void => {},
207
215
  setIntervalEnd: (_intervalEnd: Date | undefined): void => {},
208
216
  setIntervalType: (_intervalType: IntervalType | undefined): void => {}
217
+ },
218
+ "tax-settings": {
219
+ setHideProductTaxCodeSelector: (_hidden: boolean | undefined): void => {},
220
+ setDisplayHeadOfficeCountries: (
221
+ _countries: string[] | undefined
222
+ ): void => {},
223
+ setOnTaxSettingsUpdated: (
224
+ _listener: (({ id }: { id: string }) => void) | undefined
225
+ ): void => {}
226
+ },
227
+ "tax-registrations": {
228
+ setOnAfterTaxRegistrationAdded: (
229
+ _listener: (({ id }: { id: string }) => void) | undefined
230
+ ): void => {},
231
+ setDisplayCountries: (_countries: string[] | undefined): void => {}
209
232
  }
210
233
  };
package/types/shared.d.ts CHANGED
@@ -150,10 +150,42 @@ export declare type AppearanceVariables = {
150
150
  * The color used for primary actions and links. This accepts hex values or RGB/HSL strings.
151
151
  */
152
152
  actionPrimaryColorText?: string;
153
+ /**
154
+ * The line type used for text decoration of primary actions and links. This accepts a valid text decoration line value.
155
+ */
156
+ actionPrimaryTextDecorationLine?: string;
157
+ /**
158
+ * The color used for text decoration of primary actions and links. This accepts hex values or RGB/HSL strings.
159
+ */
160
+ actionPrimaryTextDecorationColor?: string;
161
+ /**
162
+ * The style of text decoration of primary actions and links. This accepts a valid text decoration style value.
163
+ */
164
+ actionPrimaryTextDecorationStyle?: string;
165
+ /**
166
+ * The thickness of text decoration of primary actions and links. This accepts a valid text decoration thickness value.
167
+ */
168
+ actionPrimaryTextDecorationThickness?: string;
153
169
  /**
154
170
  * The color used for secondary actions and links. This accepts hex values or RGB/HSL strings.
155
171
  */
156
172
  actionSecondaryColorText?: string;
173
+ /**
174
+ * The line type used for text decoration of secondary actions and links. This accepts a valid text decoration line value.
175
+ */
176
+ actionSecondaryTextDecorationLine?: string;
177
+ /**
178
+ * The color used for text decoration of secondary actions and links. This accepts hex values or RGB/HSL strings.
179
+ */
180
+ actionSecondaryTextDecorationColor?: string;
181
+ /**
182
+ * The style of text decoration of secondary actions and links. This accepts a valid text decoration style value.
183
+ */
184
+ actionSecondaryTextDecorationStyle?: string;
185
+ /**
186
+ * The thickness of text decoration of secondary actions and links. This accepts a valid text decoration thickness value.
187
+ */
188
+ actionSecondaryTextDecorationThickness?: string;
157
189
 
158
190
  // Neutral Badge Colors
159
191
  /**
@@ -261,6 +293,10 @@ export declare type AppearanceVariables = {
261
293
  * A z-index to use for the overlay throughout embedded components. Set this number to control the z-order of the overlay.
262
294
  */
263
295
  overlayZIndex?: number;
296
+ /**
297
+ * The backdrop color when an overlay is opened. This accepts hex values or RGB/RGBA/HSL strings.
298
+ */
299
+ overlayBackdropColor?: string;
264
300
 
265
301
  // Body Typography
266
302
  /**
@@ -463,6 +499,7 @@ export type ConnectElementTagName =
463
499
  | "issuing-cards-list"
464
500
  | "financial-account"
465
501
  | "financial-account-transactions"
502
+ | "recipients"
466
503
  | "capital-financing"
467
504
  | "capital-financing-application"
468
505
  | "capital-financing-promotion"