@alipay/ams-checkout 0.0.1710212811-dev.1 → 0.0.1710212811-dev.10
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/bus/ability/sdk.d.ts +9 -0
- package/esm/core/bus/ability/sdk.js +55 -0
- package/esm/core/bus/index.d.ts +63 -0
- package/esm/core/bus/index.js +287 -0
- package/esm/core/bus/interface.d.ts +24 -0
- package/esm/core/bus/interface.js +31 -0
- package/esm/core/component/index.d.ts +7 -1
- package/esm/core/component/index.js +91 -17
- package/esm/core/instance/index.d.ts +1 -0
- package/esm/core/instance/index.js +2 -0
- package/esm/index.d.ts +1 -1
- package/esm/index.js +1 -1
- package/esm/{common/applepay/index.d.ts → plugin/applepay/apple.d.ts} +5 -4
- package/esm/{common/applepay/index.js → plugin/applepay/apple.js} +25 -11
- package/esm/{core/applepay/index.d.ts → plugin/applepay/component.d.ts} +3 -2
- package/esm/{core/applepay/index.js → plugin/applepay/component.js} +15 -11
- package/esm/plugin/applepay/index.d.ts +15 -0
- package/esm/plugin/applepay/index.js +99 -0
- package/esm/plugin/component/index.js +9 -9
- package/esm/types/index.d.ts +1 -1
- package/package.json +1 -1
- /package/esm/{common → plugin}/applepay/interface.d.ts +0 -0
- /package/esm/{common → plugin}/applepay/interface.js +0 -0
package/esm/types/index.d.ts
CHANGED
@@ -138,11 +138,11 @@ export interface IpaymentSessionMetaData {
|
|
138
138
|
extendInfo?: {
|
139
139
|
merchantCapabilities?: string[];
|
140
140
|
supportedNetworks?: string[];
|
141
|
-
merchantName?: string;
|
142
141
|
};
|
143
142
|
merchantInfo?: {
|
144
143
|
registeredCountry?: string;
|
145
144
|
partnerId?: string;
|
145
|
+
merchantName?: string;
|
146
146
|
};
|
147
147
|
order?: {
|
148
148
|
orderDescription: string;
|
package/package.json
CHANGED
File without changes
|
File without changes
|