@alipay/ams-checkout 0.0.1720491429-dev.0 → 0.0.1720509876-dev.0
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 +1 -0
- package/esm/config/index.js +8 -0
- package/esm/core/component/index.d.ts +1 -1
- package/esm/core/component/index.js +14 -6
- package/esm/index.d.ts +3 -0
- package/esm/index.js +12 -0
- package/esm/plugin/component/cashierApp.d.ts +3 -3
- package/esm/plugin/component/cashierApp.js +13 -3
- package/esm/plugin/component/component.popup.style.d.ts +1 -0
- package/esm/plugin/component/component.popup.style.js +3 -0
- package/esm/plugin/component/index.js +55 -57
- package/esm/plugin/payment-element/utils.d.ts +2 -0
- package/esm/plugin/payment-element/utils.js +6 -0
- package/esm/plugin/paypal/index.js +1 -0
- package/esm/types/index.d.ts +10 -4
- package/esm/types/index.js +7 -0
- package/package.json +1 -1
package/esm/types/index.js
CHANGED
@@ -15,6 +15,10 @@ export var renderDisplayTypeEnum = /*#__PURE__*/function (renderDisplayTypeEnum)
|
|
15
15
|
renderDisplayTypeEnum["inline"] = "inline";
|
16
16
|
return renderDisplayTypeEnum;
|
17
17
|
}({});
|
18
|
+
export var ComponentSignEnumV2 = /*#__PURE__*/function (ComponentSignEnumV2) {
|
19
|
+
ComponentSignEnumV2["ELEMENT_PAYMENT"] = "ELEMENT_PAYMENT_ALL";
|
20
|
+
return ComponentSignEnumV2;
|
21
|
+
}({});
|
18
22
|
export var componentSignEnum = /*#__PURE__*/function (componentSignEnum) {
|
19
23
|
componentSignEnum["EASY_PAY_WALLET"] = "EASY_PAY_WALLET";
|
20
24
|
componentSignEnum["EASY_PAY_APM"] = "EASY_PAY_APM";
|
@@ -24,6 +28,7 @@ export var componentSignEnum = /*#__PURE__*/function (componentSignEnum) {
|
|
24
28
|
componentSignEnum["AUTO_DEBIT_WALLET"] = "AUTO_DEBIT_WALLET";
|
25
29
|
componentSignEnum["NONE"] = "NONE";
|
26
30
|
componentSignEnum["VAULTING_CARD"] = "VAULTING_CARD";
|
31
|
+
componentSignEnum["ELEMENT_PAYMENT"] = "ELEMENT_PAYMENT_ALL";
|
27
32
|
return componentSignEnum;
|
28
33
|
}({});
|
29
34
|
export var productSceneEnum = /*#__PURE__*/function (productSceneEnum) {
|
@@ -33,6 +38,7 @@ export var productSceneEnum = /*#__PURE__*/function (productSceneEnum) {
|
|
33
38
|
productSceneEnum["VAULTING"] = "VAULTING";
|
34
39
|
productSceneEnum["FLASH_BUY"] = "FLASH_BUY";
|
35
40
|
productSceneEnum["CARD_APPLE_PAY"] = "CARD_APPLE_PAY";
|
41
|
+
productSceneEnum["ELEMENT_PAYMENT"] = "ELEMENT_PAYMENT";
|
36
42
|
return productSceneEnum;
|
37
43
|
}({});
|
38
44
|
export var paymentMethodCategoryTypeEnum = /*#__PURE__*/function (paymentMethodCategoryTypeEnum) {
|
@@ -40,6 +46,7 @@ export var paymentMethodCategoryTypeEnum = /*#__PURE__*/function (paymentMethodC
|
|
40
46
|
paymentMethodCategoryTypeEnum["WALLET"] = "WALLET";
|
41
47
|
paymentMethodCategoryTypeEnum["BANK"] = "BANK";
|
42
48
|
paymentMethodCategoryTypeEnum["APM"] = "APM";
|
49
|
+
paymentMethodCategoryTypeEnum["ALL"] = "ALL";
|
43
50
|
return paymentMethodCategoryTypeEnum;
|
44
51
|
}({});
|
45
52
|
export var payPalConfigurationIntentEnum = /*#__PURE__*/function (payPalConfigurationIntentEnum) {
|