@alipay/ams-checkout 0.0.1726046231-dev.1 → 0.0.1726046231-dev.12
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/umd/ams-checkout.min.js +1 -1
- package/esm/core/component/element/components/address.d.ts +6 -4
- package/esm/core/component/element/components/address.js +16 -10
- package/esm/core/component/element/components/auth.d.ts +1 -1
- package/esm/core/component/element/components/auth.js +15 -10
- package/esm/core/component/element/components/payment.d.ts +4 -2
- package/esm/core/component/element/components/payment.js +15 -8
- package/esm/core/component/element/element-mock.d.ts +2 -0
- package/esm/core/component/element/element-mock.js +263 -0
- package/esm/core/component/element/index.d.ts +8 -4
- package/esm/core/component/element/index.js +296 -177
- package/esm/core/component/element/type.d.ts +35 -20
- package/esm/core/component/element/type.js +13 -5
- package/esm/types/index.d.ts +2 -1
- package/esm/types/index.js +1 -0
- package/package.json +1 -1
@@ -1,16 +1,18 @@
|
|
1
|
-
import {
|
2
|
-
interface ElementAddressMountOptions extends Omit<
|
1
|
+
import { AddressMountComponentsParams } from '../type';
|
2
|
+
interface ElementAddressMountOptions extends Omit<AddressMountComponentsParams, 'type'> {
|
3
3
|
selector: string;
|
4
4
|
}
|
5
5
|
export declare class ElementAddressComponent {
|
6
6
|
private sdk;
|
7
7
|
private elementContainer;
|
8
|
+
private isConnect;
|
8
9
|
constructor();
|
9
10
|
create(options: {
|
10
11
|
environment: string;
|
11
12
|
locale: string;
|
12
|
-
|
13
|
-
|
13
|
+
appVersion: string;
|
14
|
+
}, isConnect: boolean): void;
|
15
|
+
mount(sessionData: string, options: ElementAddressMountOptions): Promise<HTMLIFrameElement | undefined>;
|
14
16
|
update(): void;
|
15
17
|
unmount(): void;
|
16
18
|
}
|
@@ -11,41 +11,46 @@ export var ElementAddressComponent = /*#__PURE__*/function () {
|
|
11
11
|
_classCallCheck(this, ElementAddressComponent);
|
12
12
|
_defineProperty(this, "sdk", void 0);
|
13
13
|
_defineProperty(this, "elementContainer", void 0);
|
14
|
+
_defineProperty(this, "isConnect", void 0);
|
14
15
|
}
|
15
16
|
_createClass(ElementAddressComponent, [{
|
16
17
|
key: "create",
|
17
|
-
value: function create(options) {
|
18
|
-
this.
|
19
|
-
|
20
|
-
locale: options.locale,
|
21
|
-
appVersion: ''
|
22
|
-
});
|
18
|
+
value: function create(options, isConnect) {
|
19
|
+
this.isConnect = isConnect;
|
20
|
+
this.sdk = new AddressComponent(options);
|
23
21
|
}
|
24
22
|
}, {
|
25
23
|
key: "mount",
|
26
24
|
value: function mount(sessionData, options) {
|
27
25
|
var _this = this;
|
28
26
|
var elementContainer = document.querySelector(options.selector);
|
29
|
-
|
27
|
+
if (this.isConnect) {
|
28
|
+
elementContainer.style.display = 'none';
|
29
|
+
}
|
30
30
|
var selector = options.selector.indexOf('#') === 0 ? options.selector.slice(1) : options.selector;
|
31
31
|
return new Promise(function (resolve) {
|
32
32
|
_this.sdk.mountComponent({
|
33
33
|
sessionData: sessionData,
|
34
34
|
debugProps: options.debugProps,
|
35
|
+
configParams: options.configParams,
|
36
|
+
appearance: options.appearance,
|
37
|
+
prefillValue: options.prefillValue,
|
35
38
|
appendAliasContainerId: true
|
36
39
|
}, selector).then(function () {
|
37
40
|
var _elementContainer$get;
|
38
41
|
_this.elementContainer = elementContainer;
|
39
42
|
var iframes = elementContainer === null || elementContainer === void 0 || (_elementContainer$get = elementContainer.getElementsByTagName) === null || _elementContainer$get === void 0 ? void 0 : _elementContainer$get.call(elementContainer, 'iframe');
|
40
43
|
resolve(iframes === null || iframes === void 0 ? void 0 : iframes[0]);
|
44
|
+
}, function () {
|
45
|
+
resolve(undefined);
|
41
46
|
});
|
42
47
|
});
|
43
48
|
}
|
44
49
|
}, {
|
45
50
|
key: "update",
|
46
51
|
value: function update() {
|
47
|
-
if (this.elementContainer) {
|
48
|
-
this.elementContainer.style.display = '
|
52
|
+
if (this.elementContainer && this.isConnect) {
|
53
|
+
this.elementContainer.style.display = '';
|
49
54
|
}
|
50
55
|
// 下发数据
|
51
56
|
}
|
@@ -55,7 +60,8 @@ export var ElementAddressComponent = /*#__PURE__*/function () {
|
|
55
60
|
var _this$elementContaine, _this$elementContaine2;
|
56
61
|
var containers = (_this$elementContaine = this.elementContainer) === null || _this$elementContaine === void 0 || (_this$elementContaine2 = _this$elementContaine.getElementsByTagName) === null || _this$elementContaine2 === void 0 ? void 0 : _this$elementContaine2.call(_this$elementContaine, 'div');
|
57
62
|
if (containers !== null && containers !== void 0 && containers[0]) {
|
58
|
-
|
63
|
+
var _containers$, _containers$$remove;
|
64
|
+
(_containers$ = containers[0]) === null || _containers$ === void 0 || (_containers$$remove = _containers$.remove) === null || _containers$$remove === void 0 || _containers$$remove.call(_containers$);
|
59
65
|
}
|
60
66
|
}
|
61
67
|
}]);
|
@@ -10,7 +10,7 @@ export declare class ElementAuthComponent {
|
|
10
10
|
environment: string;
|
11
11
|
locale: string;
|
12
12
|
}): void;
|
13
|
-
mount(options: ElementAuthMountOptions): Promise<HTMLIFrameElement>;
|
13
|
+
mount(options: ElementAuthMountOptions): Promise<HTMLIFrameElement | undefined>;
|
14
14
|
update(height?: number): void;
|
15
15
|
unmount(): void;
|
16
16
|
}
|
@@ -20,15 +20,19 @@ export var ElementAuthComponent = /*#__PURE__*/function () {
|
|
20
20
|
value: function mount(options) {
|
21
21
|
var _this = this;
|
22
22
|
return new Promise(function (resolve) {
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
23
|
+
try {
|
24
|
+
var selector = options.selector,
|
25
|
+
url = options.url;
|
26
|
+
var containerSelector = "antom-sdk-web-app-".concat(selector);
|
27
|
+
var container = createInlineBaseElement(selector);
|
28
|
+
var webApp = createIframe(containerSelector);
|
29
|
+
webApp.src = url;
|
30
|
+
container.appendChild(webApp);
|
31
|
+
_this.elementContainer = container;
|
32
|
+
resolve(webApp);
|
33
|
+
} catch (error) {
|
34
|
+
resolve(undefined);
|
35
|
+
}
|
32
36
|
});
|
33
37
|
}
|
34
38
|
}, {
|
@@ -47,7 +51,8 @@ export var ElementAuthComponent = /*#__PURE__*/function () {
|
|
47
51
|
}, {
|
48
52
|
key: "unmount",
|
49
53
|
value: function unmount() {
|
50
|
-
|
54
|
+
var _this$elementContaine3, _this$elementContaine4;
|
55
|
+
(_this$elementContaine3 = this.elementContainer) === null || _this$elementContaine3 === void 0 || (_this$elementContaine4 = _this$elementContaine3.remove) === null || _this$elementContaine4 === void 0 || _this$elementContaine4.call(_this$elementContaine3);
|
51
56
|
}
|
52
57
|
}]);
|
53
58
|
return ElementAuthComponent;
|
@@ -5,12 +5,14 @@ interface ElementPaymentMountOptions extends Omit<PaymentMountOptions, 'type'> {
|
|
5
5
|
export declare class ElementPaymentComponent {
|
6
6
|
private sdk;
|
7
7
|
private elementContainer;
|
8
|
+
private isConnect;
|
8
9
|
constructor();
|
9
10
|
create(options: {
|
10
11
|
environment: string;
|
11
12
|
locale: string;
|
12
|
-
|
13
|
-
|
13
|
+
appVersion: string;
|
14
|
+
}, isConnect: boolean): void;
|
15
|
+
mount(sessionData: string, options: ElementPaymentMountOptions): Promise<HTMLIFrameElement | undefined>;
|
14
16
|
update(): void;
|
15
17
|
unmount(): void;
|
16
18
|
}
|
@@ -1,4 +1,6 @@
|
|
1
1
|
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
2
|
+
function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
3
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
|
2
4
|
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
3
5
|
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
4
6
|
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
@@ -11,25 +13,27 @@ export var ElementPaymentComponent = /*#__PURE__*/function () {
|
|
11
13
|
_classCallCheck(this, ElementPaymentComponent);
|
12
14
|
_defineProperty(this, "sdk", void 0);
|
13
15
|
_defineProperty(this, "elementContainer", void 0);
|
16
|
+
_defineProperty(this, "isConnect", void 0);
|
14
17
|
}
|
15
18
|
_createClass(ElementPaymentComponent, [{
|
16
19
|
key: "create",
|
17
|
-
value: function create(options) {
|
18
|
-
this.
|
19
|
-
|
20
|
-
locale: options.locale,
|
20
|
+
value: function create(options, isConnect) {
|
21
|
+
this.isConnect = isConnect;
|
22
|
+
this.sdk = new AMSPaymentElement(_objectSpread(_objectSpread({}, options), {}, {
|
21
23
|
analytics: {
|
22
24
|
enabled: true
|
23
25
|
},
|
24
26
|
onEventCallback: function onEventCallback(state) {}
|
25
|
-
});
|
27
|
+
}));
|
26
28
|
}
|
27
29
|
}, {
|
28
30
|
key: "mount",
|
29
31
|
value: function mount(sessionData, options) {
|
30
32
|
var _this = this;
|
31
33
|
var elementContainer = document.querySelector(options.selector);
|
32
|
-
|
34
|
+
if (this.isConnect) {
|
35
|
+
elementContainer.style.display = 'none';
|
36
|
+
}
|
33
37
|
var selector = options.selector.indexOf('#') === 0 ? options.selector.slice(1) : options.selector;
|
34
38
|
return new Promise(function (resolve) {
|
35
39
|
_this.sdk.mountComponent({
|
@@ -42,13 +46,15 @@ export var ElementPaymentComponent = /*#__PURE__*/function () {
|
|
42
46
|
_this.elementContainer = elementContainer;
|
43
47
|
var iframes = elementContainer === null || elementContainer === void 0 || (_elementContainer$get = elementContainer.getElementsByTagName) === null || _elementContainer$get === void 0 ? void 0 : _elementContainer$get.call(elementContainer, 'iframe');
|
44
48
|
resolve(iframes === null || iframes === void 0 ? void 0 : iframes[0]);
|
49
|
+
}, function () {
|
50
|
+
resolve(undefined);
|
45
51
|
});
|
46
52
|
});
|
47
53
|
}
|
48
54
|
}, {
|
49
55
|
key: "update",
|
50
56
|
value: function update() {
|
51
|
-
if (this.elementContainer) {
|
57
|
+
if (this.elementContainer && this.isConnect) {
|
52
58
|
this.elementContainer.style.display = 'initial';
|
53
59
|
}
|
54
60
|
// 下发数据
|
@@ -59,7 +65,8 @@ export var ElementPaymentComponent = /*#__PURE__*/function () {
|
|
59
65
|
var _this$elementContaine, _this$elementContaine2;
|
60
66
|
var containers = (_this$elementContaine = this.elementContainer) === null || _this$elementContaine === void 0 || (_this$elementContaine2 = _this$elementContaine.getElementsByTagName) === null || _this$elementContaine2 === void 0 ? void 0 : _this$elementContaine2.call(_this$elementContaine, 'div');
|
61
67
|
if (containers !== null && containers !== void 0 && containers[0]) {
|
62
|
-
|
68
|
+
var _containers$, _containers$$remove;
|
69
|
+
(_containers$ = containers[0]) === null || _containers$ === void 0 || (_containers$$remove = _containers$.remove) === null || _containers$$remove === void 0 || _containers$$remove.call(_containers$);
|
63
70
|
}
|
64
71
|
}
|
65
72
|
}]);
|
@@ -0,0 +1,263 @@
|
|
1
|
+
export var sdkAction = {
|
2
|
+
amountConfirmRequired: false,
|
3
|
+
autoDebitWithToken: false,
|
4
|
+
errorActions: {},
|
5
|
+
extendInfo: {},
|
6
|
+
links: {},
|
7
|
+
needInstallmentAbility: false,
|
8
|
+
needOtherElements: false,
|
9
|
+
openPopPaymentRetryAbility: 'Y',
|
10
|
+
orderAmount: {
|
11
|
+
amount: '288.86',
|
12
|
+
currency: 'USD',
|
13
|
+
currencyLabel: 'US $',
|
14
|
+
formattedAmount: '288.86',
|
15
|
+
formattedAmountWithCurrency: 'US $288.86',
|
16
|
+
value: '28886'
|
17
|
+
},
|
18
|
+
orderAmountView: {
|
19
|
+
currency: 'USD',
|
20
|
+
currencyDivider: ' ',
|
21
|
+
currencyLabel: '$',
|
22
|
+
currencySymbolPosition: 'L',
|
23
|
+
formattedValue: '288.86',
|
24
|
+
value: '288.86'
|
25
|
+
},
|
26
|
+
paymentAmount: {
|
27
|
+
amount: '288.86',
|
28
|
+
currency: 'USD',
|
29
|
+
currencyLabel: 'US $',
|
30
|
+
formattedAmount: '288.86',
|
31
|
+
formattedAmountWithCurrency: 'US $288.86',
|
32
|
+
value: '28886'
|
33
|
+
},
|
34
|
+
paymentAmountView: {
|
35
|
+
currency: 'USD',
|
36
|
+
currencyDivider: ' ',
|
37
|
+
currencyLabel: '$',
|
38
|
+
currencySymbolPosition: 'L',
|
39
|
+
formattedValue: '288.86',
|
40
|
+
value: '288.86'
|
41
|
+
},
|
42
|
+
paymentMethods: [{
|
43
|
+
antomPage: 'paymentMetaPage',
|
44
|
+
category: 'AC_WALLET',
|
45
|
+
expressCheckout: false,
|
46
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/8c2df293-4ff8-4a1c-bd39-457c26937acb.svg',
|
47
|
+
iconName: 'Rabbit LINE Pay',
|
48
|
+
interActionType: 'SHOW_CODE',
|
49
|
+
paymentMethodName: 'Rabbit LINE Pay',
|
50
|
+
paymentMethodType: 'RABBIT_LINE_PAY',
|
51
|
+
recommend: false,
|
52
|
+
webRedirectType: 'PAGE_REFRESH'
|
53
|
+
}, {
|
54
|
+
antomPage: 'paymentMetaPage',
|
55
|
+
category: 'AC_WALLET',
|
56
|
+
expressCheckout: false,
|
57
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/72aa8973-7638-4f3f-b657-7af0ae02e6cf.svg',
|
58
|
+
iconName: 'BPI',
|
59
|
+
interActionType: 'SHOW_CODE',
|
60
|
+
paymentMethodName: 'BPI',
|
61
|
+
paymentMethodType: 'BPI',
|
62
|
+
recommend: false,
|
63
|
+
webRedirectType: 'PAGE_REFRESH'
|
64
|
+
}, {
|
65
|
+
antomPage: 'paymentMetaPage',
|
66
|
+
category: 'AC_WALLET',
|
67
|
+
expressCheckout: true,
|
68
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/5b829130-42d9-46e7-a23d-6774f7352900.svg',
|
69
|
+
iconName: 'Alipay',
|
70
|
+
interActionType: 'SHOW_CODE',
|
71
|
+
paymentMethodName: 'Alipay',
|
72
|
+
paymentMethodType: 'ALIPAY_CN',
|
73
|
+
recommend: false,
|
74
|
+
webRedirectType: 'PAGE_REFRESH'
|
75
|
+
}, {
|
76
|
+
antomPage: 'paymentMetaPage',
|
77
|
+
category: 'AC_WALLET',
|
78
|
+
expressCheckout: false,
|
79
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/ed012d1a-06c4-4606-a493-0d81ead685b6.svg',
|
80
|
+
iconName: 'Akulaku PayLater',
|
81
|
+
interActionType: 'SHOW_CODE',
|
82
|
+
paymentMethodName: 'Akulaku PayLater PH',
|
83
|
+
paymentMethodType: 'AKULAKU_PAYLATER_PH',
|
84
|
+
recommend: false,
|
85
|
+
webRedirectType: 'PAGE_REFRESH'
|
86
|
+
}, {
|
87
|
+
antomPage: 'paymentMetaPage',
|
88
|
+
category: 'AC_WALLET',
|
89
|
+
expressCheckout: false,
|
90
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/ed012d1a-06c4-4606-a493-0d81ead685b6.svg',
|
91
|
+
iconName: 'Akulaku PayLater',
|
92
|
+
interActionType: 'SHOW_CODE',
|
93
|
+
paymentMethodName: 'Akulaku PayLater',
|
94
|
+
paymentMethodType: 'AKULAKU_PAYLATER',
|
95
|
+
recommend: false,
|
96
|
+
webRedirectType: 'PAGE_REFRESH'
|
97
|
+
}, {
|
98
|
+
antomPage: 'paymentMetaPage',
|
99
|
+
category: 'AC_WALLET',
|
100
|
+
expressCheckout: false,
|
101
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/fcf9ba5e-b2b4-4c33-a041-f21bcf1539e4.svg',
|
102
|
+
iconName: 'BillEase',
|
103
|
+
interActionType: 'SHOW_CODE',
|
104
|
+
paymentMethodName: 'BILLEASE',
|
105
|
+
paymentMethodType: 'BILLEASE',
|
106
|
+
recommend: false,
|
107
|
+
webRedirectType: 'PAGE_REFRESH'
|
108
|
+
}, {
|
109
|
+
antomPage: 'paymentMetaPage',
|
110
|
+
category: 'AC_WALLET',
|
111
|
+
expressCheckout: false,
|
112
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/dfcedf07-3135-49b6-9e39-6ab89b5ba5a1.svg',
|
113
|
+
iconName: 'Kredivo',
|
114
|
+
interActionType: 'SHOW_CODE',
|
115
|
+
paymentMethodName: 'KREDIVO',
|
116
|
+
paymentMethodType: 'KREDIVO_ID',
|
117
|
+
recommend: false,
|
118
|
+
webRedirectType: 'PAGE_REFRESH'
|
119
|
+
}, {
|
120
|
+
antomPage: 'paymentMetaPage',
|
121
|
+
category: 'AC_WALLET',
|
122
|
+
expressCheckout: false,
|
123
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/6c7baedf-cb9e-47b1-8c2e-d2477b0d3018.svg',
|
124
|
+
iconName: 'Toss Pay',
|
125
|
+
interActionType: 'SHOW_CODE',
|
126
|
+
paymentMethodName: 'Toss Pay',
|
127
|
+
paymentMethodType: 'TOSSPAY',
|
128
|
+
recommend: false,
|
129
|
+
webRedirectType: 'PAGE_REFRESH'
|
130
|
+
}, {
|
131
|
+
antomPage: 'paymentMetaPage',
|
132
|
+
category: 'AC_WALLET',
|
133
|
+
expressCheckout: false,
|
134
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/89c1063e-c7d3-4b60-82a0-6e4c40426612.svg',
|
135
|
+
iconName: 'Kakao Pay',
|
136
|
+
interActionType: 'SHOW_CODE',
|
137
|
+
paymentMethodName: 'KAKAOPAY',
|
138
|
+
paymentMethodType: 'KAKAOPAY',
|
139
|
+
recommend: false,
|
140
|
+
webRedirectType: 'PAGE_REFRESH'
|
141
|
+
}, {
|
142
|
+
antomPage: 'paymentMetaPage',
|
143
|
+
category: 'AC_WALLET',
|
144
|
+
expressCheckout: false,
|
145
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/46ac203c-21fd-4feb-80c6-fd19faf1a9b7.svg',
|
146
|
+
iconName: 'GCash',
|
147
|
+
interActionType: 'SHOW_CODE',
|
148
|
+
paymentMethodName: 'GCash',
|
149
|
+
paymentMethodType: 'GCASH',
|
150
|
+
recommend: false,
|
151
|
+
webRedirectType: 'PAGE_REFRESH'
|
152
|
+
}, {
|
153
|
+
antomPage: 'paymentMetaPage',
|
154
|
+
category: 'AC_WALLET',
|
155
|
+
expressCheckout: false,
|
156
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/8409ec96-3153-4d31-9bcb-a6b60f6ce11f.svg',
|
157
|
+
iconName: 'Boost',
|
158
|
+
interActionType: 'SHOW_CODE',
|
159
|
+
paymentMethodName: 'Boost',
|
160
|
+
paymentMethodType: 'BOOST',
|
161
|
+
recommend: false,
|
162
|
+
webRedirectType: 'PAGE_REFRESH'
|
163
|
+
}, {
|
164
|
+
antomPage: 'paymentMetaPage',
|
165
|
+
category: 'AC_WALLET',
|
166
|
+
expressCheckout: false,
|
167
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/dd81e7d9-d845-434e-95b8-87b726d44aa4.svg',
|
168
|
+
iconName: 'DOKU',
|
169
|
+
interActionType: 'SHOW_CODE',
|
170
|
+
paymentMethodName: 'DOKU',
|
171
|
+
paymentMethodType: 'DOKU',
|
172
|
+
recommend: false,
|
173
|
+
webRedirectType: 'PAGE_REFRESH'
|
174
|
+
}, {
|
175
|
+
antomPage: 'paymentMetaPage',
|
176
|
+
category: 'AC_WALLET',
|
177
|
+
expressCheckout: false,
|
178
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/2ec693a8-2c42-4efe-8acd-efdeeabd3210.svg',
|
179
|
+
iconName: 'K PLUS',
|
180
|
+
interActionType: 'SHOW_CODE',
|
181
|
+
paymentMethodName: 'KPLUS',
|
182
|
+
paymentMethodType: 'KPLUS',
|
183
|
+
recommend: false,
|
184
|
+
webRedirectType: 'PAGE_REFRESH'
|
185
|
+
}, {
|
186
|
+
antomPage: 'paymentMetaPage',
|
187
|
+
category: 'AC_WALLET',
|
188
|
+
expressCheckout: false,
|
189
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/82288753-bc33-4f4c-9c07-e54c5da5c8f8.svg',
|
190
|
+
iconName: "Touch'n Go eWallet",
|
191
|
+
interActionType: 'SHOW_CODE',
|
192
|
+
paymentMethodName: 'TNG',
|
193
|
+
paymentMethodType: 'TNG',
|
194
|
+
recommend: false,
|
195
|
+
webRedirectType: 'PAGE_REFRESH'
|
196
|
+
}, {
|
197
|
+
antomPage: 'paymentMetaPage',
|
198
|
+
category: 'AC_WALLET',
|
199
|
+
expressCheckout: false,
|
200
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/db94babb-71db-42c4-80be-a65de641631a.svg',
|
201
|
+
iconName: 'NAVER Pay',
|
202
|
+
interActionType: 'SHOW_CODE',
|
203
|
+
paymentMethodName: 'NAVER Pay',
|
204
|
+
paymentMethodType: 'NAVERPAY',
|
205
|
+
recommend: false,
|
206
|
+
webRedirectType: 'PAGE_REFRESH'
|
207
|
+
}, {
|
208
|
+
antomPage: 'paymentMetaPage',
|
209
|
+
category: 'AC_WALLET',
|
210
|
+
expressCheckout: false,
|
211
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/5b1ec246-b49f-4390-b356-3af2af5acf09.svg',
|
212
|
+
iconName: 'TrueMoney',
|
213
|
+
interActionType: 'SHOW_CODE',
|
214
|
+
paymentMethodName: 'TrueMoney Wallet',
|
215
|
+
paymentMethodType: 'TRUEMONEY',
|
216
|
+
recommend: false,
|
217
|
+
webRedirectType: 'PAGE_REFRESH'
|
218
|
+
}, {
|
219
|
+
antomPage: 'paymentMetaPage',
|
220
|
+
category: 'AC_WALLET',
|
221
|
+
expressCheckout: false,
|
222
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/97dbcec8-7bdd-464b-b49a-5d9af6d98c0b.svg',
|
223
|
+
iconName: 'AlipayHK',
|
224
|
+
interActionType: 'SHOW_CODE',
|
225
|
+
paymentMethodName: 'ALIPAY_HK',
|
226
|
+
paymentMethodType: 'ALIPAY_HK',
|
227
|
+
recommend: false,
|
228
|
+
webRedirectType: 'PAGE_REFRESH'
|
229
|
+
}, {
|
230
|
+
antomPage: 'paymentMetaPage',
|
231
|
+
category: 'AC_WALLET',
|
232
|
+
expressCheckout: false,
|
233
|
+
icon: 'https://cdn.marmot-cloud.com/storage/2024/05/15/6148dd94-9d28-43d5-9073-c99bfb8e7ace.svg',
|
234
|
+
iconName: 'DANA',
|
235
|
+
interActionType: 'SHOW_CODE',
|
236
|
+
paymentMethodName: 'DANA',
|
237
|
+
paymentMethodType: 'DANA',
|
238
|
+
recommend: false,
|
239
|
+
webRedirectType: 'PAGE_REFRESH'
|
240
|
+
}],
|
241
|
+
redirectUrl: 'https://www.baidu.com',
|
242
|
+
savedPaymentMethods: [],
|
243
|
+
success: true
|
244
|
+
};
|
245
|
+
export var oneAccount = {
|
246
|
+
accountInfo: {
|
247
|
+
accountStatus: 'EFFECTIVE',
|
248
|
+
email: 'like.xh@antgroup.com'
|
249
|
+
},
|
250
|
+
actionForm: {
|
251
|
+
challengeAutoTriggered: false,
|
252
|
+
challengeRetrySupported: true,
|
253
|
+
challengeType: 'EMAIL_OTP',
|
254
|
+
estimatedDuration: 0,
|
255
|
+
resendLeftTimes: 0,
|
256
|
+
verifyId: 'q4gtI6ONJab5bnuGyf5f0gm4D2AyXfKh'
|
257
|
+
},
|
258
|
+
errorActions: {},
|
259
|
+
extendInfo: {},
|
260
|
+
paymentMethods: [],
|
261
|
+
shippings: [],
|
262
|
+
success: true
|
263
|
+
};
|
@@ -1,5 +1,5 @@
|
|
1
1
|
import { IElementOptions } from '../../../types';
|
2
|
-
import type { AddressMountOptions, AddressMountResult, LinkAuthMountOptions, LinkAuthMountResult, PaymentMountOptions, PaymentMountResult
|
2
|
+
import type { AddressMountOptions, AddressMountResult, LinkAuthMountOptions, LinkAuthMountResult, PaymentMountOptions, PaymentMountResult } from './type';
|
3
3
|
export declare class ElementComponent {
|
4
4
|
private parseData;
|
5
5
|
private loading;
|
@@ -14,16 +14,20 @@ export declare class ElementComponent {
|
|
14
14
|
private sdkActionRes;
|
15
15
|
private oneAccountRes;
|
16
16
|
private launchSource;
|
17
|
+
private isConnect;
|
18
|
+
private iframeSrc;
|
17
19
|
private mountOptions;
|
18
20
|
private iframes;
|
19
21
|
private componentsCount;
|
20
22
|
private eventCallback;
|
21
23
|
constructor(options: IElementOptions);
|
22
24
|
private createElement;
|
25
|
+
private createIframeSrc;
|
23
26
|
private sdkActionQuery;
|
24
27
|
private oneAccountQuery;
|
25
28
|
private addListener;
|
26
29
|
private launchFunc;
|
30
|
+
private showIframe;
|
27
31
|
private sendRenderData;
|
28
32
|
private removeListener;
|
29
33
|
private registerEventListener;
|
@@ -33,12 +37,12 @@ export declare class ElementComponent {
|
|
33
37
|
mount(renderOptions: AddressMountOptions, sdkSelector: string): AddressMountResult;
|
34
38
|
mount(renderOptions: PaymentMountOptions, sdkSelector: string): PaymentMountResult;
|
35
39
|
mount(renderOptions: LinkAuthMountOptions, sdkSelector: string): LinkAuthMountResult;
|
36
|
-
private
|
40
|
+
private removeIframe;
|
37
41
|
unmount(): void;
|
38
|
-
private onValidateFunc;
|
39
42
|
private onAfterSubmitFunc;
|
40
43
|
private onSubmitRiskFunc;
|
41
44
|
private onSubmit;
|
45
|
+
private onValidateFunc;
|
42
46
|
private validatePromiseFuncs;
|
43
|
-
submitPayment(): Promise<
|
47
|
+
submitPayment(): Promise<void>;
|
44
48
|
}
|