@alipay/ams-checkout 0.0.1730706734-dev.1 → 0.0.1730878287-dev.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/dist/umd/ams-checkout.min.js +1 -1
- package/esm/config/index.d.ts +2 -2
- package/esm/config/index.js +5 -5
- package/esm/core/component/ckp/index.js +3 -2
- 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.js +2 -14
- package/package.json +1 -1
package/esm/config/index.d.ts
CHANGED
@@ -10,5 +10,5 @@ export declare const AMSAutoDebitAppVersion = "1.23.0";
|
|
10
10
|
export declare const AMSEasyPayAppVersion = "1.23.0";
|
11
11
|
export declare const AMSCashierPaymentAppVersion = "1.23.0";
|
12
12
|
export declare const AMSVaultingAppVersion = "1.23.0";
|
13
|
-
export declare const AMSPaymentElementAppVersion = "1.23.
|
14
|
-
export declare const ADDRESSElementAppVersion = "1.23.
|
13
|
+
export declare const AMSPaymentElementAppVersion = "1.23.2";
|
14
|
+
export declare const ADDRESSElementAppVersion = "1.23.2";
|
package/esm/config/index.js
CHANGED
@@ -26,9 +26,9 @@ export var elementAppMarmotMap = {
|
|
26
26
|
dev: 'http://page.alipay.net/page/antom-web-checkout-v2',
|
27
27
|
sit: 'http://page.test.alipay.net/page/antom-web-checkout-v2',
|
28
28
|
pre: 'https://pre.ac.alipay.com/page/antom-web-checkout-v2',
|
29
|
-
sandbox: 'https://
|
30
|
-
light_sandbox: 'https://
|
31
|
-
prod: 'https://
|
29
|
+
sandbox: 'https://checkout.antom.com',
|
30
|
+
light_sandbox: 'https://checkout.antom.com',
|
31
|
+
prod: 'https://checkout.antom.com'
|
32
32
|
};
|
33
33
|
export var sdkVersion = json.version;
|
34
34
|
|
@@ -40,5 +40,5 @@ export var AMSAutoDebitAppVersion = '1.23.0'; // 代扣
|
|
40
40
|
export var AMSEasyPayAppVersion = '1.23.0'; // easypay
|
41
41
|
export var AMSCashierPaymentAppVersion = '1.23.0'; // 收银台(卡、apm)
|
42
42
|
export var AMSVaultingAppVersion = '1.23.0'; // 绑卡
|
43
|
-
export var AMSPaymentElementAppVersion = '1.23.
|
44
|
-
export var ADDRESSElementAppVersion = '1.23.
|
43
|
+
export var AMSPaymentElementAppVersion = '1.23.2'; // payment element
|
44
|
+
export var ADDRESSElementAppVersion = '1.23.2'; // address element
|
@@ -13,12 +13,13 @@ var CKP_PAYMENT_PAGE_HOST = {
|
|
13
13
|
DEV: 'https://dev.page.alipay.net',
|
14
14
|
TEST: 'https://test.page.alipay.net',
|
15
15
|
PRE: 'https://pre.ac.alipay.com',
|
16
|
-
PROD: 'https://
|
16
|
+
PROD: 'https://checkout.antom.com'
|
17
17
|
};
|
18
18
|
|
19
19
|
// for local development
|
20
20
|
|
21
21
|
var CKP_PAGE_ADDRESS = '/page/antom-web-checkout-v2/checkout-page/pages/payment/index.html';
|
22
|
+
var CKP_PAGE_NEW_ADDRESS = '/checkout-page/pages/payment/index.html';
|
22
23
|
export var getCKPPageAddress = function getCKPPageAddress(env) {
|
23
24
|
switch (env) {
|
24
25
|
case 'dev':
|
@@ -30,7 +31,7 @@ export var getCKPPageAddress = function getCKPPageAddress(env) {
|
|
30
31
|
case 'prod':
|
31
32
|
case 'sandbox':
|
32
33
|
case 'light_sandbox':
|
33
|
-
return "".concat(CKP_PAYMENT_PAGE_HOST.PROD).concat(
|
34
|
+
return "".concat(CKP_PAYMENT_PAGE_HOST.PROD).concat(CKP_PAGE_NEW_ADDRESS);
|
34
35
|
default:
|
35
36
|
// for local development, e.g. http://localhost:5173/checkout-page/src/pages/payment/index.html
|
36
37
|
return env;
|
@@ -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
|
+
};
|
@@ -304,15 +304,6 @@ export var ElementComponent = /*#__PURE__*/function () {
|
|
304
304
|
success: result.success,
|
305
305
|
msg: result.errorMessage
|
306
306
|
});
|
307
|
-
}, function () {
|
308
|
-
resolve({
|
309
|
-
success: false,
|
310
|
-
msg: 'submitPayByPaymentSession api error'
|
311
|
-
});
|
312
|
-
// this?._options?.onEventCallback?.({
|
313
|
-
// code: EventCallbackCode.Failed,
|
314
|
-
// message: 'submitPayByPaymentSession api error',
|
315
|
-
// });
|
316
307
|
});
|
317
308
|
});
|
318
309
|
});
|
@@ -403,10 +394,7 @@ export var ElementComponent = /*#__PURE__*/function () {
|
|
403
394
|
};
|
404
395
|
}());
|
405
396
|
});
|
406
|
-
|
407
|
-
this._options = _objectSpread(_objectSpread({}, options), {}, {
|
408
|
-
environment: env.toLocaleLowerCase()
|
409
|
-
});
|
397
|
+
this._options = options;
|
410
398
|
this.eventCallback = _defineProperty(_defineProperty(_defineProperty({}, ElementPaymentMethod.ADDRESS_ELEMENT, {}), ElementPaymentMethod.AUTH_ELEMENT, {}), ElementPaymentMethod.PAYMENT_ELEMENT, {});
|
411
399
|
this.launchSource = [];
|
412
400
|
this.componentsCount = 0;
|
@@ -500,7 +488,7 @@ export var ElementComponent = /*#__PURE__*/function () {
|
|
500
488
|
key: "createIframeSrc",
|
501
489
|
value: function createIframeSrc() {
|
502
490
|
var env = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : ELEMENT_ENVIRONMENT.DEV;
|
503
|
-
var version = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '1.24.
|
491
|
+
var version = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : '1.24.0';
|
504
492
|
var baseUrl = _defineProperty(_defineProperty(_defineProperty(_defineProperty({}, ELEMENT_ENVIRONMENT.DEV, 'http://dev.page.alipay.net/page/antom-web-checkout-v2'), ELEMENT_ENVIRONMENT.TEST, 'http://page.test.alipay.net/page/antom-web-checkout-v2'), ELEMENT_ENVIRONMENT.PRE, 'https://cdn-pre.marmot-cloud.com/page/antom-web-checkout-v2'), ELEMENT_ENVIRONMENT.PROD, 'https://checkout.antom.com');
|
505
493
|
var _env = (env === null || env === void 0 ? void 0 : env.toLocaleUpperCase()) || ELEMENT_ENVIRONMENT.DEV;
|
506
494
|
return {
|