@paynext/sdk 0.0.103 → 0.0.104
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/index.d.ts +2 -2
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -31,7 +31,7 @@ declare interface ApplePayTransaction {
|
|
|
31
31
|
}>;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
declare interface AttemptResult {
|
|
34
|
+
export declare interface AttemptResult {
|
|
35
35
|
paymentMethod: PaymentMethod;
|
|
36
36
|
}
|
|
37
37
|
|
|
@@ -83,7 +83,7 @@ declare interface CheckoutConfig_2 {
|
|
|
83
83
|
state: ICheckoutState;
|
|
84
84
|
}
|
|
85
85
|
|
|
86
|
-
declare interface CheckoutError {
|
|
86
|
+
export declare interface CheckoutError {
|
|
87
87
|
status: 'declined' | 'failed';
|
|
88
88
|
status_reason: {
|
|
89
89
|
advice_code: 'try_again_later' | 'do_not_try_again';
|
package/dist/index.es.js
CHANGED