airwallex-payment-elements 1.96.0 → 1.119.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.
- package/.gitlab-ci.yml +63 -3
- package/README.md +1 -1
- package/lib/bin/airwallex.cjs.js +2 -2
- package/lib/bin/airwallex.cjs.js.map +1 -1
- package/lib/bin/airwallex.es.js +2 -2
- package/lib/bin/airwallex.es.js.map +1 -1
- package/lib/bin/airwallex.iife.js +2 -2
- package/lib/bin/airwallex.iife.js.map +1 -1
- package/package.json +2 -2
- package/typedoc.config.js +5 -0
- package/types/airwallex.d.ts +89 -8
- package/types/dropInElement.d.ts +38 -4
- package/types/element.d.ts +255 -122
- package/types/events.d.ts +742 -0
- package/types/index.d.ts +3 -0
- package/types/qrcodeElement.d.ts +12 -1
package/types/index.d.ts
CHANGED
|
@@ -4,6 +4,7 @@ export * from './qrcodeElement';
|
|
|
4
4
|
export * from './fraud';
|
|
5
5
|
export * from './redirectElement';
|
|
6
6
|
export * from './dropInElement';
|
|
7
|
+
export * from './events';
|
|
7
8
|
|
|
8
9
|
import Airwallex, {
|
|
9
10
|
init,
|
|
@@ -34,6 +35,7 @@ import Airwallex, {
|
|
|
34
35
|
Locale,
|
|
35
36
|
Billing,
|
|
36
37
|
VerifyConsentRequest,
|
|
38
|
+
CreatePaymentMethodRequest,
|
|
37
39
|
} from './airwallex';
|
|
38
40
|
|
|
39
41
|
export {
|
|
@@ -65,6 +67,7 @@ export {
|
|
|
65
67
|
Billing,
|
|
66
68
|
ElementTypeMap,
|
|
67
69
|
VerifyConsentRequest,
|
|
70
|
+
CreatePaymentMethodRequest,
|
|
68
71
|
};
|
|
69
72
|
|
|
70
73
|
/**
|
package/types/qrcodeElement.d.ts
CHANGED
|
@@ -4,7 +4,18 @@ import { CSSProperties } from './element';
|
|
|
4
4
|
/**
|
|
5
5
|
* All payment method options for qrcode element, those payment method type integration will render qrcode from your checkout site to specific provider’s authentication page.
|
|
6
6
|
*/
|
|
7
|
-
export type PaymentMethodWithQrcode =
|
|
7
|
+
export type PaymentMethodWithQrcode =
|
|
8
|
+
| 'alipaycn'
|
|
9
|
+
| 'alipayhk'
|
|
10
|
+
| 'kakaopay'
|
|
11
|
+
| 'gcash'
|
|
12
|
+
| 'tng'
|
|
13
|
+
| 'truemoney'
|
|
14
|
+
| 'wechatpay'
|
|
15
|
+
| 'fps'
|
|
16
|
+
| 'cash_app_pay'
|
|
17
|
+
| 'rabbit_line_pay'
|
|
18
|
+
| 'pix';
|
|
8
19
|
|
|
9
20
|
/**
|
|
10
21
|
* Apply to qrcode element type integration, interface used when call createElement with type `qrcode`
|