@paynext/sdk 0.0.58 → 0.0.59
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 +5 -5
- package/dist/index.es.js +583 -589
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +26 -26
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -362,11 +362,11 @@ declare type Listener<TData> = (data: TData) => void;
|
|
|
362
362
|
export declare type Locale = 'ar' | 'en' | 'bg' | 'cs' | 'da' | 'de' | 'el' | 'es' | 'et' | 'fi' | 'fil' | 'fr' | 'hr' | 'hu' | 'id' | 'it' | 'ja' | 'ko' | 'lt' | 'lv' | 'ms' | 'ru' | 'mt' | 'nb' | 'no' | 'nl' | 'pl' | 'pt' | 'ro' | 'ua' | 'sk' | 'sl' | 'sv' | 'th' | 'tr' | 'vi' | 'zh';
|
|
363
363
|
|
|
364
364
|
declare enum PaymentMethod {
|
|
365
|
-
PAYPAL = "
|
|
366
|
-
APPLE_PAY = "
|
|
367
|
-
GOOGLE_PAY = "
|
|
368
|
-
CARD = "
|
|
369
|
-
VENMO = "
|
|
365
|
+
PAYPAL = "PAYPAL",
|
|
366
|
+
APPLE_PAY = "APPLEPAY",
|
|
367
|
+
GOOGLE_PAY = "GPAY",
|
|
368
|
+
CARD = "CARD",
|
|
369
|
+
VENMO = "VENMO"
|
|
370
370
|
}
|
|
371
371
|
|
|
372
372
|
export declare interface PaymentResult {
|