@coinflowlabs/vue 1.9.1 → 1.9.2
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/README.md
CHANGED
|
@@ -48,6 +48,10 @@ Props:
|
|
|
48
48
|
|
|
49
49
|
# Changelog
|
|
50
50
|
|
|
51
|
+
## 1.9.2
|
|
52
|
+
|
|
53
|
+
- Fixed typing for sessionKey being not present when passing the wallet object
|
|
54
|
+
|
|
51
55
|
## 1.9.1
|
|
52
56
|
|
|
53
57
|
- Added support for overriding the default account type (from merchant settings) used for chargeback protection via `chargebackProtectionAccountType` in the URL parameters.
|
|
@@ -27,6 +27,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
27
27
|
customPayInFees?: import('../lib/common').PurchaseCustomPayInFee[];
|
|
28
28
|
presentment?: import('../lib/common').Currency;
|
|
29
29
|
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
30
|
+
sessionKey?: string;
|
|
30
31
|
onAuthDeclined?: import('../lib/common').OnAuthDeclinedMethod;
|
|
31
32
|
webhookInfo?: {
|
|
32
33
|
[key: string]: any;
|
|
@@ -102,6 +103,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
102
103
|
customPayInFees?: import('../lib/common').PurchaseCustomPayInFee[];
|
|
103
104
|
presentment?: import('../lib/common').Currency;
|
|
104
105
|
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
106
|
+
sessionKey?: string;
|
|
105
107
|
onAuthDeclined?: import('../lib/common').OnAuthDeclinedMethod;
|
|
106
108
|
webhookInfo?: {
|
|
107
109
|
[key: string]: any;
|
|
@@ -139,6 +141,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
139
141
|
customPayInFees?: import('../lib/common').PurchaseCustomPayInFee[];
|
|
140
142
|
presentment?: import('../lib/common').Currency;
|
|
141
143
|
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
144
|
+
sessionKey?: string;
|
|
142
145
|
onAuthDeclined?: import('../lib/common').OnAuthDeclinedMethod;
|
|
143
146
|
webhookInfo?: {
|
|
144
147
|
[key: string]: any;
|
|
@@ -176,6 +179,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
176
179
|
customPayInFees?: import('../lib/common').PurchaseCustomPayInFee[];
|
|
177
180
|
presentment?: import('../lib/common').Currency;
|
|
178
181
|
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
182
|
+
sessionKey?: string;
|
|
179
183
|
onAuthDeclined?: import('../lib/common').OnAuthDeclinedMethod;
|
|
180
184
|
webhookInfo?: {
|
|
181
185
|
[key: string]: any;
|
|
@@ -213,6 +217,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
213
217
|
customPayInFees?: import('../lib/common').PurchaseCustomPayInFee[];
|
|
214
218
|
presentment?: import('../lib/common').Currency;
|
|
215
219
|
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
220
|
+
sessionKey?: string;
|
|
216
221
|
onAuthDeclined?: import('../lib/common').OnAuthDeclinedMethod;
|
|
217
222
|
webhookInfo?: {
|
|
218
223
|
[key: string]: any;
|
|
@@ -250,6 +255,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
250
255
|
customPayInFees?: import('../lib/common').PurchaseCustomPayInFee[];
|
|
251
256
|
presentment?: import('../lib/common').Currency;
|
|
252
257
|
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
258
|
+
sessionKey?: string;
|
|
253
259
|
onAuthDeclined?: import('../lib/common').OnAuthDeclinedMethod;
|
|
254
260
|
webhookInfo?: {
|
|
255
261
|
[key: string]: any;
|
|
@@ -287,6 +293,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
287
293
|
customPayInFees?: import('../lib/common').PurchaseCustomPayInFee[];
|
|
288
294
|
presentment?: import('../lib/common').Currency;
|
|
289
295
|
onSuccess?: import('../lib/common').OnSuccessMethod;
|
|
296
|
+
sessionKey?: string;
|
|
290
297
|
onAuthDeclined?: import('../lib/common').OnAuthDeclinedMethod;
|
|
291
298
|
webhookInfo?: {
|
|
292
299
|
[key: string]: any;
|
|
@@ -266,6 +266,7 @@ export interface CoinflowCommonPurchaseProps extends CoinflowTypes {
|
|
|
266
266
|
customPayInFees?: PurchaseCustomPayInFee[];
|
|
267
267
|
presentment?: Currency;
|
|
268
268
|
onSuccess?: OnSuccessMethod;
|
|
269
|
+
sessionKey?: string;
|
|
269
270
|
onAuthDeclined?: OnAuthDeclinedMethod;
|
|
270
271
|
webhookInfo?: {
|
|
271
272
|
[key: string]: any;
|