@coinflowlabs/vue 1.12.1 → 1.14.0
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.
- package/dist/coinflow-vue.js +5500 -5451
- package/dist/coinflow-vue.umd.cjs +11 -11
- package/dist/components/CoinflowPurchase.vue.d.ts +139 -148
- package/dist/components/CoinflowWithdraw.vue.d.ts +76 -44
- package/dist/components/card-form/useCardformIframe.d.ts +2 -2
- package/dist/index.d.ts +13 -13
- package/dist/lib/common/CoinflowProtectionInit.native.d.ts +1 -0
- package/dist/lib/common/CoinflowPurchaseProtectionHeaders.d.ts +5 -0
- package/dist/lib/common/CoinflowTypes.d.ts +82 -9
- package/dist/lib/common/CoinflowUtils.d.ts +5 -2
- package/dist/testing/CardFormV2Test.vue.d.ts +41 -0
- package/dist/testing/SavedCardFormTest.vue.d.ts +4 -4
- package/package.json +1 -2
|
@@ -11,7 +11,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
11
11
|
walletPubkey: string | null | undefined;
|
|
12
12
|
route: string;
|
|
13
13
|
transaction: string | undefined;
|
|
14
|
-
wallet: import('
|
|
14
|
+
wallet: import('..').SolanaWallet;
|
|
15
15
|
partialSigners?: import('@solana/web3.js').Signer[];
|
|
16
16
|
debugTx?: boolean;
|
|
17
17
|
connection: import('@solana/web3.js').Connection;
|
|
@@ -23,347 +23,338 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
23
23
|
lamports: string | number;
|
|
24
24
|
};
|
|
25
25
|
redemptionCheck?: boolean;
|
|
26
|
-
subtotal?: import('
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
26
|
+
subtotal?: import('..').Subtotal;
|
|
27
|
+
presentment?: import('..').Currency;
|
|
28
|
+
onSuccess?: import('..').OnSuccessMethod;
|
|
30
29
|
sessionKey?: string;
|
|
31
|
-
onAuthDeclined?: import('
|
|
30
|
+
onAuthDeclined?: import('..').OnAuthDeclinedMethod;
|
|
32
31
|
webhookInfo?: {
|
|
33
32
|
[key: string]: any;
|
|
34
33
|
};
|
|
35
34
|
email?: string;
|
|
36
|
-
chargebackProtectionData?: import('
|
|
37
|
-
chargebackProtectionAccountType?: import('
|
|
35
|
+
chargebackProtectionData?: import('..').ChargebackProtectionData;
|
|
36
|
+
chargebackProtectionAccountType?: import('..').ChargebackProtectionAccountType;
|
|
38
37
|
planCode?: string;
|
|
39
|
-
allowedPaymentMethods?: import('
|
|
40
|
-
customerInfo?: import('
|
|
41
|
-
settlementType?: import('
|
|
38
|
+
allowedPaymentMethods?: import('..').PaymentMethods[];
|
|
39
|
+
customerInfo?: import('..').CustomerInfo;
|
|
40
|
+
settlementType?: import('..').SettlementType;
|
|
42
41
|
authOnly?: boolean;
|
|
43
42
|
isZeroAuthorization?: boolean;
|
|
44
|
-
zeroAuthorizationConfig?: import('
|
|
43
|
+
zeroAuthorizationConfig?: import('..').ZeroAuthorizationConfig;
|
|
45
44
|
partialUsdcChecked?: boolean;
|
|
46
45
|
deviceId?: string;
|
|
47
46
|
jwtToken?: string;
|
|
48
47
|
supportEmail?: string;
|
|
49
48
|
origins?: string[];
|
|
50
|
-
threeDsChallengePreference?: import('
|
|
49
|
+
threeDsChallengePreference?: import('..').ThreeDsChallengePreference;
|
|
51
50
|
destinationAuthKey?: string;
|
|
52
|
-
accountFundingTransaction?: import('
|
|
51
|
+
accountFundingTransaction?: import('..').AccountFundingTransaction;
|
|
53
52
|
merchantId: string;
|
|
54
|
-
env?: import('
|
|
53
|
+
env?: import('..').CoinflowEnvs;
|
|
55
54
|
loaderBackground?: string;
|
|
56
55
|
handleHeightChange?: (height: string) => void;
|
|
57
|
-
theme?: import('
|
|
56
|
+
theme?: import('..').MerchantTheme;
|
|
58
57
|
} | {
|
|
59
58
|
walletPubkey: string | null | undefined;
|
|
60
59
|
route: string;
|
|
61
60
|
transaction: string | undefined;
|
|
62
61
|
sessionKey: string;
|
|
63
62
|
wallet?: undefined;
|
|
64
|
-
blockchain?: import('
|
|
65
|
-
subtotal?: import('
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
onAuthDeclined?: import('../lib/common').OnAuthDeclinedMethod;
|
|
63
|
+
blockchain?: import('..').CoinflowBlockchain | undefined;
|
|
64
|
+
subtotal?: import('..').Subtotal;
|
|
65
|
+
presentment?: import('..').Currency;
|
|
66
|
+
onSuccess?: import('..').OnSuccessMethod;
|
|
67
|
+
onAuthDeclined?: import('..').OnAuthDeclinedMethod;
|
|
70
68
|
webhookInfo?: {
|
|
71
69
|
[key: string]: any;
|
|
72
70
|
};
|
|
73
71
|
email?: string;
|
|
74
|
-
chargebackProtectionData?: import('
|
|
75
|
-
chargebackProtectionAccountType?: import('
|
|
72
|
+
chargebackProtectionData?: import('..').ChargebackProtectionData;
|
|
73
|
+
chargebackProtectionAccountType?: import('..').ChargebackProtectionAccountType;
|
|
76
74
|
planCode?: string;
|
|
77
|
-
allowedPaymentMethods?: import('
|
|
78
|
-
customerInfo?: import('
|
|
79
|
-
settlementType?: import('
|
|
75
|
+
allowedPaymentMethods?: import('..').PaymentMethods[];
|
|
76
|
+
customerInfo?: import('..').CustomerInfo;
|
|
77
|
+
settlementType?: import('..').SettlementType;
|
|
80
78
|
authOnly?: boolean;
|
|
81
79
|
isZeroAuthorization?: boolean;
|
|
82
|
-
zeroAuthorizationConfig?: import('
|
|
80
|
+
zeroAuthorizationConfig?: import('..').ZeroAuthorizationConfig;
|
|
83
81
|
partialUsdcChecked?: boolean;
|
|
84
82
|
deviceId?: string;
|
|
85
83
|
jwtToken?: string;
|
|
86
84
|
supportEmail?: string;
|
|
87
85
|
origins?: string[];
|
|
88
|
-
threeDsChallengePreference?: import('
|
|
86
|
+
threeDsChallengePreference?: import('..').ThreeDsChallengePreference;
|
|
89
87
|
destinationAuthKey?: string;
|
|
90
|
-
accountFundingTransaction?: import('
|
|
88
|
+
accountFundingTransaction?: import('..').AccountFundingTransaction;
|
|
91
89
|
merchantId: string;
|
|
92
|
-
env?: import('
|
|
90
|
+
env?: import('..').CoinflowEnvs;
|
|
93
91
|
loaderBackground?: string;
|
|
94
92
|
handleHeightChange?: (height: string) => void;
|
|
95
|
-
theme?: import('
|
|
93
|
+
theme?: import('..').MerchantTheme;
|
|
96
94
|
} | {
|
|
97
95
|
walletPubkey: string | null | undefined;
|
|
98
96
|
route: string;
|
|
99
97
|
transaction: string | undefined;
|
|
100
98
|
blockchain: "polygon";
|
|
101
|
-
wallet: import('
|
|
102
|
-
subtotal?: import('
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
99
|
+
wallet: import('..').EthWallet;
|
|
100
|
+
subtotal?: import('..').Subtotal;
|
|
101
|
+
presentment?: import('..').Currency;
|
|
102
|
+
onSuccess?: import('..').OnSuccessMethod;
|
|
106
103
|
sessionKey?: string;
|
|
107
|
-
onAuthDeclined?: import('
|
|
104
|
+
onAuthDeclined?: import('..').OnAuthDeclinedMethod;
|
|
108
105
|
webhookInfo?: {
|
|
109
106
|
[key: string]: any;
|
|
110
107
|
};
|
|
111
108
|
email?: string;
|
|
112
|
-
chargebackProtectionData?: import('
|
|
113
|
-
chargebackProtectionAccountType?: import('
|
|
109
|
+
chargebackProtectionData?: import('..').ChargebackProtectionData;
|
|
110
|
+
chargebackProtectionAccountType?: import('..').ChargebackProtectionAccountType;
|
|
114
111
|
planCode?: string;
|
|
115
|
-
allowedPaymentMethods?: import('
|
|
116
|
-
customerInfo?: import('
|
|
117
|
-
settlementType?: import('
|
|
112
|
+
allowedPaymentMethods?: import('..').PaymentMethods[];
|
|
113
|
+
customerInfo?: import('..').CustomerInfo;
|
|
114
|
+
settlementType?: import('..').SettlementType;
|
|
118
115
|
authOnly?: boolean;
|
|
119
116
|
isZeroAuthorization?: boolean;
|
|
120
|
-
zeroAuthorizationConfig?: import('
|
|
117
|
+
zeroAuthorizationConfig?: import('..').ZeroAuthorizationConfig;
|
|
121
118
|
partialUsdcChecked?: boolean;
|
|
122
119
|
deviceId?: string;
|
|
123
120
|
jwtToken?: string;
|
|
124
121
|
supportEmail?: string;
|
|
125
122
|
origins?: string[];
|
|
126
|
-
threeDsChallengePreference?: import('
|
|
123
|
+
threeDsChallengePreference?: import('..').ThreeDsChallengePreference;
|
|
127
124
|
destinationAuthKey?: string;
|
|
128
|
-
accountFundingTransaction?: import('
|
|
125
|
+
accountFundingTransaction?: import('..').AccountFundingTransaction;
|
|
129
126
|
merchantId: string;
|
|
130
|
-
env?: import('
|
|
127
|
+
env?: import('..').CoinflowEnvs;
|
|
131
128
|
loaderBackground?: string;
|
|
132
129
|
handleHeightChange?: (height: string) => void;
|
|
133
|
-
theme?: import('
|
|
130
|
+
theme?: import('..').MerchantTheme;
|
|
134
131
|
} | {
|
|
135
132
|
walletPubkey: string | null | undefined;
|
|
136
133
|
route: string;
|
|
137
134
|
transaction: string | undefined;
|
|
138
135
|
blockchain: "eth";
|
|
139
|
-
wallet: import('
|
|
140
|
-
subtotal?: import('
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
136
|
+
wallet: import('..').EthWallet;
|
|
137
|
+
subtotal?: import('..').Subtotal;
|
|
138
|
+
presentment?: import('..').Currency;
|
|
139
|
+
onSuccess?: import('..').OnSuccessMethod;
|
|
144
140
|
sessionKey?: string;
|
|
145
|
-
onAuthDeclined?: import('
|
|
141
|
+
onAuthDeclined?: import('..').OnAuthDeclinedMethod;
|
|
146
142
|
webhookInfo?: {
|
|
147
143
|
[key: string]: any;
|
|
148
144
|
};
|
|
149
145
|
email?: string;
|
|
150
|
-
chargebackProtectionData?: import('
|
|
151
|
-
chargebackProtectionAccountType?: import('
|
|
146
|
+
chargebackProtectionData?: import('..').ChargebackProtectionData;
|
|
147
|
+
chargebackProtectionAccountType?: import('..').ChargebackProtectionAccountType;
|
|
152
148
|
planCode?: string;
|
|
153
|
-
allowedPaymentMethods?: import('
|
|
154
|
-
customerInfo?: import('
|
|
155
|
-
settlementType?: import('
|
|
149
|
+
allowedPaymentMethods?: import('..').PaymentMethods[];
|
|
150
|
+
customerInfo?: import('..').CustomerInfo;
|
|
151
|
+
settlementType?: import('..').SettlementType;
|
|
156
152
|
authOnly?: boolean;
|
|
157
153
|
isZeroAuthorization?: boolean;
|
|
158
|
-
zeroAuthorizationConfig?: import('
|
|
154
|
+
zeroAuthorizationConfig?: import('..').ZeroAuthorizationConfig;
|
|
159
155
|
partialUsdcChecked?: boolean;
|
|
160
156
|
deviceId?: string;
|
|
161
157
|
jwtToken?: string;
|
|
162
158
|
supportEmail?: string;
|
|
163
159
|
origins?: string[];
|
|
164
|
-
threeDsChallengePreference?: import('
|
|
160
|
+
threeDsChallengePreference?: import('..').ThreeDsChallengePreference;
|
|
165
161
|
destinationAuthKey?: string;
|
|
166
|
-
accountFundingTransaction?: import('
|
|
162
|
+
accountFundingTransaction?: import('..').AccountFundingTransaction;
|
|
167
163
|
merchantId: string;
|
|
168
|
-
env?: import('
|
|
164
|
+
env?: import('..').CoinflowEnvs;
|
|
169
165
|
loaderBackground?: string;
|
|
170
166
|
handleHeightChange?: (height: string) => void;
|
|
171
|
-
theme?: import('
|
|
167
|
+
theme?: import('..').MerchantTheme;
|
|
172
168
|
} | {
|
|
173
169
|
walletPubkey: string | null | undefined;
|
|
174
170
|
route: string;
|
|
175
171
|
transaction: string | undefined;
|
|
176
172
|
blockchain: "base";
|
|
177
|
-
wallet: import('
|
|
178
|
-
subtotal?: import('
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
173
|
+
wallet: import('..').EthWallet;
|
|
174
|
+
subtotal?: import('..').Subtotal;
|
|
175
|
+
presentment?: import('..').Currency;
|
|
176
|
+
onSuccess?: import('..').OnSuccessMethod;
|
|
182
177
|
sessionKey?: string;
|
|
183
|
-
onAuthDeclined?: import('
|
|
178
|
+
onAuthDeclined?: import('..').OnAuthDeclinedMethod;
|
|
184
179
|
webhookInfo?: {
|
|
185
180
|
[key: string]: any;
|
|
186
181
|
};
|
|
187
182
|
email?: string;
|
|
188
|
-
chargebackProtectionData?: import('
|
|
189
|
-
chargebackProtectionAccountType?: import('
|
|
183
|
+
chargebackProtectionData?: import('..').ChargebackProtectionData;
|
|
184
|
+
chargebackProtectionAccountType?: import('..').ChargebackProtectionAccountType;
|
|
190
185
|
planCode?: string;
|
|
191
|
-
allowedPaymentMethods?: import('
|
|
192
|
-
customerInfo?: import('
|
|
193
|
-
settlementType?: import('
|
|
186
|
+
allowedPaymentMethods?: import('..').PaymentMethods[];
|
|
187
|
+
customerInfo?: import('..').CustomerInfo;
|
|
188
|
+
settlementType?: import('..').SettlementType;
|
|
194
189
|
authOnly?: boolean;
|
|
195
190
|
isZeroAuthorization?: boolean;
|
|
196
|
-
zeroAuthorizationConfig?: import('
|
|
191
|
+
zeroAuthorizationConfig?: import('..').ZeroAuthorizationConfig;
|
|
197
192
|
partialUsdcChecked?: boolean;
|
|
198
193
|
deviceId?: string;
|
|
199
194
|
jwtToken?: string;
|
|
200
195
|
supportEmail?: string;
|
|
201
196
|
origins?: string[];
|
|
202
|
-
threeDsChallengePreference?: import('
|
|
197
|
+
threeDsChallengePreference?: import('..').ThreeDsChallengePreference;
|
|
203
198
|
destinationAuthKey?: string;
|
|
204
|
-
accountFundingTransaction?: import('
|
|
199
|
+
accountFundingTransaction?: import('..').AccountFundingTransaction;
|
|
205
200
|
merchantId: string;
|
|
206
|
-
env?: import('
|
|
201
|
+
env?: import('..').CoinflowEnvs;
|
|
207
202
|
loaderBackground?: string;
|
|
208
203
|
handleHeightChange?: (height: string) => void;
|
|
209
|
-
theme?: import('
|
|
204
|
+
theme?: import('..').MerchantTheme;
|
|
210
205
|
} | {
|
|
211
206
|
walletPubkey: string | null | undefined;
|
|
212
207
|
route: string;
|
|
213
208
|
transaction: string | undefined;
|
|
214
209
|
blockchain: "arbitrum";
|
|
215
|
-
wallet: import('
|
|
216
|
-
subtotal?: import('
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
210
|
+
wallet: import('..').EthWallet;
|
|
211
|
+
subtotal?: import('..').Subtotal;
|
|
212
|
+
presentment?: import('..').Currency;
|
|
213
|
+
onSuccess?: import('..').OnSuccessMethod;
|
|
220
214
|
sessionKey?: string;
|
|
221
|
-
onAuthDeclined?: import('
|
|
215
|
+
onAuthDeclined?: import('..').OnAuthDeclinedMethod;
|
|
222
216
|
webhookInfo?: {
|
|
223
217
|
[key: string]: any;
|
|
224
218
|
};
|
|
225
219
|
email?: string;
|
|
226
|
-
chargebackProtectionData?: import('
|
|
227
|
-
chargebackProtectionAccountType?: import('
|
|
220
|
+
chargebackProtectionData?: import('..').ChargebackProtectionData;
|
|
221
|
+
chargebackProtectionAccountType?: import('..').ChargebackProtectionAccountType;
|
|
228
222
|
planCode?: string;
|
|
229
|
-
allowedPaymentMethods?: import('
|
|
230
|
-
customerInfo?: import('
|
|
231
|
-
settlementType?: import('
|
|
223
|
+
allowedPaymentMethods?: import('..').PaymentMethods[];
|
|
224
|
+
customerInfo?: import('..').CustomerInfo;
|
|
225
|
+
settlementType?: import('..').SettlementType;
|
|
232
226
|
authOnly?: boolean;
|
|
233
227
|
isZeroAuthorization?: boolean;
|
|
234
|
-
zeroAuthorizationConfig?: import('
|
|
228
|
+
zeroAuthorizationConfig?: import('..').ZeroAuthorizationConfig;
|
|
235
229
|
partialUsdcChecked?: boolean;
|
|
236
230
|
deviceId?: string;
|
|
237
231
|
jwtToken?: string;
|
|
238
232
|
supportEmail?: string;
|
|
239
233
|
origins?: string[];
|
|
240
|
-
threeDsChallengePreference?: import('
|
|
234
|
+
threeDsChallengePreference?: import('..').ThreeDsChallengePreference;
|
|
241
235
|
destinationAuthKey?: string;
|
|
242
|
-
accountFundingTransaction?: import('
|
|
236
|
+
accountFundingTransaction?: import('..').AccountFundingTransaction;
|
|
243
237
|
merchantId: string;
|
|
244
|
-
env?: import('
|
|
238
|
+
env?: import('..').CoinflowEnvs;
|
|
245
239
|
loaderBackground?: string;
|
|
246
240
|
handleHeightChange?: (height: string) => void;
|
|
247
|
-
theme?: import('
|
|
241
|
+
theme?: import('..').MerchantTheme;
|
|
248
242
|
} | {
|
|
249
243
|
walletPubkey: string | null | undefined;
|
|
250
244
|
route: string;
|
|
251
245
|
transaction: string | undefined;
|
|
252
|
-
wallet: import('
|
|
246
|
+
wallet: import('..').StellarWallet;
|
|
253
247
|
blockchain: "stellar";
|
|
254
|
-
subtotal?: import('
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
248
|
+
subtotal?: import('..').Subtotal;
|
|
249
|
+
presentment?: import('..').Currency;
|
|
250
|
+
onSuccess?: import('..').OnSuccessMethod;
|
|
258
251
|
sessionKey?: string;
|
|
259
|
-
onAuthDeclined?: import('
|
|
252
|
+
onAuthDeclined?: import('..').OnAuthDeclinedMethod;
|
|
260
253
|
webhookInfo?: {
|
|
261
254
|
[key: string]: any;
|
|
262
255
|
};
|
|
263
256
|
email?: string;
|
|
264
|
-
chargebackProtectionData?: import('
|
|
265
|
-
chargebackProtectionAccountType?: import('
|
|
257
|
+
chargebackProtectionData?: import('..').ChargebackProtectionData;
|
|
258
|
+
chargebackProtectionAccountType?: import('..').ChargebackProtectionAccountType;
|
|
266
259
|
planCode?: string;
|
|
267
|
-
allowedPaymentMethods?: import('
|
|
268
|
-
customerInfo?: import('
|
|
269
|
-
settlementType?: import('
|
|
260
|
+
allowedPaymentMethods?: import('..').PaymentMethods[];
|
|
261
|
+
customerInfo?: import('..').CustomerInfo;
|
|
262
|
+
settlementType?: import('..').SettlementType;
|
|
270
263
|
authOnly?: boolean;
|
|
271
264
|
isZeroAuthorization?: boolean;
|
|
272
|
-
zeroAuthorizationConfig?: import('
|
|
265
|
+
zeroAuthorizationConfig?: import('..').ZeroAuthorizationConfig;
|
|
273
266
|
partialUsdcChecked?: boolean;
|
|
274
267
|
deviceId?: string;
|
|
275
268
|
jwtToken?: string;
|
|
276
269
|
supportEmail?: string;
|
|
277
270
|
origins?: string[];
|
|
278
|
-
threeDsChallengePreference?: import('
|
|
271
|
+
threeDsChallengePreference?: import('..').ThreeDsChallengePreference;
|
|
279
272
|
destinationAuthKey?: string;
|
|
280
|
-
accountFundingTransaction?: import('
|
|
273
|
+
accountFundingTransaction?: import('..').AccountFundingTransaction;
|
|
281
274
|
merchantId: string;
|
|
282
|
-
env?: import('
|
|
275
|
+
env?: import('..').CoinflowEnvs;
|
|
283
276
|
loaderBackground?: string;
|
|
284
277
|
handleHeightChange?: (height: string) => void;
|
|
285
|
-
theme?: import('
|
|
278
|
+
theme?: import('..').MerchantTheme;
|
|
286
279
|
} | {
|
|
287
280
|
walletPubkey: string | null | undefined;
|
|
288
281
|
route: string;
|
|
289
282
|
transaction: string | undefined;
|
|
290
283
|
blockchain: "monad";
|
|
291
|
-
wallet: import('
|
|
292
|
-
subtotal?: import('
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
284
|
+
wallet: import('..').EthWallet;
|
|
285
|
+
subtotal?: import('..').Subtotal;
|
|
286
|
+
presentment?: import('..').Currency;
|
|
287
|
+
onSuccess?: import('..').OnSuccessMethod;
|
|
296
288
|
sessionKey?: string;
|
|
297
|
-
onAuthDeclined?: import('
|
|
289
|
+
onAuthDeclined?: import('..').OnAuthDeclinedMethod;
|
|
298
290
|
webhookInfo?: {
|
|
299
291
|
[key: string]: any;
|
|
300
292
|
};
|
|
301
293
|
email?: string;
|
|
302
|
-
chargebackProtectionData?: import('
|
|
303
|
-
chargebackProtectionAccountType?: import('
|
|
294
|
+
chargebackProtectionData?: import('..').ChargebackProtectionData;
|
|
295
|
+
chargebackProtectionAccountType?: import('..').ChargebackProtectionAccountType;
|
|
304
296
|
planCode?: string;
|
|
305
|
-
allowedPaymentMethods?: import('
|
|
306
|
-
customerInfo?: import('
|
|
307
|
-
settlementType?: import('
|
|
297
|
+
allowedPaymentMethods?: import('..').PaymentMethods[];
|
|
298
|
+
customerInfo?: import('..').CustomerInfo;
|
|
299
|
+
settlementType?: import('..').SettlementType;
|
|
308
300
|
authOnly?: boolean;
|
|
309
301
|
isZeroAuthorization?: boolean;
|
|
310
|
-
zeroAuthorizationConfig?: import('
|
|
302
|
+
zeroAuthorizationConfig?: import('..').ZeroAuthorizationConfig;
|
|
311
303
|
partialUsdcChecked?: boolean;
|
|
312
304
|
deviceId?: string;
|
|
313
305
|
jwtToken?: string;
|
|
314
306
|
supportEmail?: string;
|
|
315
307
|
origins?: string[];
|
|
316
|
-
threeDsChallengePreference?: import('
|
|
308
|
+
threeDsChallengePreference?: import('..').ThreeDsChallengePreference;
|
|
317
309
|
destinationAuthKey?: string;
|
|
318
|
-
accountFundingTransaction?: import('
|
|
310
|
+
accountFundingTransaction?: import('..').AccountFundingTransaction;
|
|
319
311
|
merchantId: string;
|
|
320
|
-
env?: import('
|
|
312
|
+
env?: import('..').CoinflowEnvs;
|
|
321
313
|
loaderBackground?: string;
|
|
322
314
|
handleHeightChange?: (height: string) => void;
|
|
323
|
-
theme?: import('
|
|
315
|
+
theme?: import('..').MerchantTheme;
|
|
324
316
|
} | {
|
|
325
317
|
walletPubkey: string | null | undefined;
|
|
326
318
|
route: string;
|
|
327
319
|
transaction: string | undefined;
|
|
328
320
|
blockchain: "tempo";
|
|
329
|
-
wallet: import('
|
|
330
|
-
subtotal?: import('
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
321
|
+
wallet: import('..').EthWallet;
|
|
322
|
+
subtotal?: import('..').Subtotal;
|
|
323
|
+
presentment?: import('..').Currency;
|
|
324
|
+
onSuccess?: import('..').OnSuccessMethod;
|
|
334
325
|
sessionKey?: string;
|
|
335
|
-
onAuthDeclined?: import('
|
|
326
|
+
onAuthDeclined?: import('..').OnAuthDeclinedMethod;
|
|
336
327
|
webhookInfo?: {
|
|
337
328
|
[key: string]: any;
|
|
338
329
|
};
|
|
339
330
|
email?: string;
|
|
340
|
-
chargebackProtectionData?: import('
|
|
341
|
-
chargebackProtectionAccountType?: import('
|
|
331
|
+
chargebackProtectionData?: import('..').ChargebackProtectionData;
|
|
332
|
+
chargebackProtectionAccountType?: import('..').ChargebackProtectionAccountType;
|
|
342
333
|
planCode?: string;
|
|
343
|
-
allowedPaymentMethods?: import('
|
|
344
|
-
customerInfo?: import('
|
|
345
|
-
settlementType?: import('
|
|
334
|
+
allowedPaymentMethods?: import('..').PaymentMethods[];
|
|
335
|
+
customerInfo?: import('..').CustomerInfo;
|
|
336
|
+
settlementType?: import('..').SettlementType;
|
|
346
337
|
authOnly?: boolean;
|
|
347
338
|
isZeroAuthorization?: boolean;
|
|
348
|
-
zeroAuthorizationConfig?: import('
|
|
339
|
+
zeroAuthorizationConfig?: import('..').ZeroAuthorizationConfig;
|
|
349
340
|
partialUsdcChecked?: boolean;
|
|
350
341
|
deviceId?: string;
|
|
351
342
|
jwtToken?: string;
|
|
352
343
|
supportEmail?: string;
|
|
353
344
|
origins?: string[];
|
|
354
|
-
threeDsChallengePreference?: import('
|
|
345
|
+
threeDsChallengePreference?: import('..').ThreeDsChallengePreference;
|
|
355
346
|
destinationAuthKey?: string;
|
|
356
|
-
accountFundingTransaction?: import('
|
|
347
|
+
accountFundingTransaction?: import('..').AccountFundingTransaction;
|
|
357
348
|
merchantId: string;
|
|
358
|
-
env?: import('
|
|
349
|
+
env?: import('..').CoinflowEnvs;
|
|
359
350
|
loaderBackground?: string;
|
|
360
351
|
handleHeightChange?: (height: string) => void;
|
|
361
|
-
theme?: import('
|
|
352
|
+
theme?: import('..').MerchantTheme;
|
|
362
353
|
};
|
|
363
354
|
messageHandlers(): {
|
|
364
355
|
handleHeightChange: ((height: string) => void) | undefined;
|
|
365
|
-
onSuccess: import('
|
|
366
|
-
onAuthDeclined: import('
|
|
356
|
+
onSuccess: import('..').OnSuccessMethod | undefined;
|
|
357
|
+
onAuthDeclined: import('..').OnAuthDeclinedMethod | undefined;
|
|
367
358
|
handleSendTransaction: (transaction: string) => Promise<string>;
|
|
368
359
|
handleSignMessage?: ((message: string) => Promise<string>) | undefined;
|
|
369
360
|
handleSignTransaction?: ((transaction: string) => Promise<string>) | undefined;
|
|
@@ -376,7 +367,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
376
367
|
}>> & Readonly<{}>, {}, {}, {
|
|
377
368
|
CoinflowIFrame: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
378
369
|
args: {
|
|
379
|
-
type: PropType<import('
|
|
370
|
+
type: PropType<import('..').CoinflowIFrameProps & import('..').IFrameMessageHandlers>;
|
|
380
371
|
required: true;
|
|
381
372
|
};
|
|
382
373
|
}>, {}, {}, {
|
|
@@ -396,7 +387,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
396
387
|
}): true;
|
|
397
388
|
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
398
389
|
args: {
|
|
399
|
-
type: PropType<import('
|
|
390
|
+
type: PropType<import('..').CoinflowIFrameProps & import('..').IFrameMessageHandlers>;
|
|
400
391
|
required: true;
|
|
401
392
|
};
|
|
402
393
|
}>> & Readonly<{
|