@stripe/connect-js 3.3.14-beta-1 → 3.3.15-beta-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.
@@ -48,6 +48,9 @@ const ConnectElementCustomMethodConfig = {
48
48
  "app-viewport": {
49
49
  setApp: _app => {},
50
50
  setAppData: _appData => {}
51
+ },
52
+ "payment-method-settings": {
53
+ setPaymentMethodConfiguration: _paymentMethodConfiguration => {}
51
54
  }
52
55
  };
53
56
 
package/dist/connect.js CHANGED
@@ -52,6 +52,9 @@ const ConnectElementCustomMethodConfig = {
52
52
  "app-viewport": {
53
53
  setApp: _app => {},
54
54
  setAppData: _appData => {}
55
+ },
56
+ "payment-method-settings": {
57
+ setPaymentMethodConfiguration: _paymentMethodConfiguration => {}
55
58
  }
56
59
  };
57
60
 
package/dist/pure.esm.js CHANGED
@@ -48,6 +48,9 @@ const ConnectElementCustomMethodConfig = {
48
48
  "app-viewport": {
49
49
  setApp: _app => {},
50
50
  setAppData: _appData => {}
51
+ },
52
+ "payment-method-settings": {
53
+ setPaymentMethodConfiguration: _paymentMethodConfiguration => {}
51
54
  }
52
55
  };
53
56
 
package/dist/pure.js CHANGED
@@ -52,6 +52,9 @@ const ConnectElementCustomMethodConfig = {
52
52
  "app-viewport": {
53
53
  setApp: _app => {},
54
54
  setAppData: _appData => {}
55
+ },
56
+ "payment-method-settings": {
57
+ setPaymentMethodConfiguration: _paymentMethodConfiguration => {}
55
58
  }
56
59
  };
57
60
 
@@ -103,4 +103,7 @@ export declare const ConnectElementCustomMethodConfig: {
103
103
  setApp: (_app: string | undefined) => void;
104
104
  setAppData: (_appData: Record<string, string> | undefined) => void;
105
105
  };
106
+ "payment-method-settings": {
107
+ setPaymentMethodConfiguration: (_paymentMethodConfiguration: string | undefined) => void;
108
+ };
106
109
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stripe/connect-js",
3
- "version": "3.3.14-beta-1",
3
+ "version": "3.3.15-beta-1",
4
4
  "description": "Connect.js loading utility package",
5
5
  "main": "dist/connect.js",
6
6
  "module": "dist/connect.esm.js",
package/types/config.ts CHANGED
@@ -142,5 +142,10 @@ export const ConnectElementCustomMethodConfig = {
142
142
  "app-viewport": {
143
143
  setApp: (_app: string | undefined): void => {},
144
144
  setAppData: (_appData: Record<string, string> | undefined): void => {}
145
+ },
146
+ "payment-method-settings": {
147
+ setPaymentMethodConfiguration: (
148
+ _paymentMethodConfiguration: string | undefined
149
+ ): void => {}
145
150
  }
146
151
  };