@alipay/ams-checkout 0.0.1691743027-dev.8 → 0.0.1691995963-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.
Files changed (38) hide show
  1. package/dist/umd/ams-checkout.min.js +1 -1
  2. package/esm/config/index.d.ts +15 -1
  3. package/esm/config/index.js +62 -9
  4. package/esm/constant/index.d.ts +32 -54
  5. package/esm/constant/index.js +32 -54
  6. package/esm/core/component/index.d.ts +9 -23
  7. package/esm/core/component/index.js +98 -161
  8. package/esm/core/drop-in/index.d.ts +1 -1
  9. package/esm/core/instance/index.d.ts +23 -6
  10. package/esm/core/instance/index.js +75 -31
  11. package/esm/index.d.ts +10 -4
  12. package/esm/index.js +30 -8
  13. package/esm/plugin/component/cashierApp.d.ts +6 -5
  14. package/esm/plugin/component/cashierApp.js +64 -48
  15. package/esm/plugin/component/{component.inline.style.d.ts → component.style.d.ts} +1 -4
  16. package/esm/plugin/component/component.style.js +15 -0
  17. package/esm/plugin/component/index.d.ts +33 -30
  18. package/esm/plugin/component/index.js +349 -248
  19. package/esm/plugin/drop-in/index.js +1 -1
  20. package/esm/request/index.d.ts +2 -2
  21. package/esm/request/index.js +7 -8
  22. package/esm/request/utils.d.ts +3 -3
  23. package/esm/request/utils.js +4 -4
  24. package/esm/service/index.d.ts +2 -2
  25. package/esm/types/index.d.ts +37 -96
  26. package/esm/types/index.js +52 -92
  27. package/esm/util/createIframeNode.d.ts +3 -3
  28. package/esm/util/createIframeNode.js +8 -8
  29. package/esm/util/index.d.ts +4 -6
  30. package/esm/util/index.js +5 -22
  31. package/esm/util/mock.js +2 -1
  32. package/package.json +1 -1
  33. package/esm/config/request.d.ts +0 -21
  34. package/esm/config/request.js +0 -67
  35. package/esm/image/skeleton.svg +0 -18
  36. package/esm/plugin/component/component.inline.style.js +0 -38
  37. package/esm/plugin/component/component.popup.style.d.ts +0 -12
  38. package/esm/plugin/component/component.popup.style.js +0 -163
@@ -185,7 +185,7 @@ var CheckoutApp = /*#__PURE__*/function () {
185
185
  id = 'checkout-dropin';
186
186
  break;
187
187
  case 'COMPONENT':
188
- id = 'ams-checkout-component';
188
+ id = 'checkout-component';
189
189
  break;
190
190
  }
191
191
  return id;
@@ -5,11 +5,11 @@
5
5
  * 1. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE; and
6
6
  * 2. If applicable, the use of the Software is also subject to the terms and conditions of any non-disclosure agreement signed by you and the relevant Ant Group entity.
7
7
  */
8
- import { IrequestConfig } from '../types';
8
+ import { RequestConfig } from '../types';
9
9
  /**
10
10
  *
11
11
  * @param requestData 请求参数
12
12
  * @param options 请求配置
13
13
  * @example request({ name: 'test' }, { operation-type: 'xxx.xxx.xxx' })
14
14
  */
15
- export declare function request<T>(requestData: Record<string, any> | undefined, options: IrequestConfig): Promise<T>;
15
+ export declare function request(requestData: Record<string, any> | undefined, options: RequestConfig): Promise<any>;
@@ -15,9 +15,8 @@ function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input ==
15
15
  * 2. If applicable, the use of the Software is also subject to the terms and conditions of any non-disclosure agreement signed by you and the relevant Ant Group entity.
16
16
  */
17
17
 
18
- import { sdkVersion } from "../config/index";
19
- import { appId, hostSignMap, lightSandboxMap, requestHost, sofaId, tntInstId } from "../config/request";
20
- import { errorEnum } from "../types";
18
+ import { appId, hostSignMap, lightSandboxMap, requestHost, sdkVersion, sofaId, tntInstId } from "../config";
19
+ import { ERROR } from "../types";
21
20
  import { get } from "../util/get";
22
21
  import axios from 'axios';
23
22
  import { device, fomatGetwayError, isPC, queryParse, safeJson } from "../util";
@@ -77,7 +76,7 @@ function _request() {
77
76
  browserUserAgent: navigator.userAgent,
78
77
  browserColorDepth: screen.colorDepth
79
78
  },
80
- locale: options.locale || 'en_US',
79
+ locale: window._amsSdkLanguage || 'en_US',
81
80
  deviceLanguage: navigator.language,
82
81
  screenWidth: screen.width,
83
82
  screenHeight: screen.height,
@@ -125,16 +124,16 @@ function _request() {
125
124
  console.log('request error', _context.t0 === null || _context.t0 === void 0 ? void 0 : _context.t0.message);
126
125
  _error = safeJson(_context.t0 === null || _context.t0 === void 0 ? void 0 : _context.t0.message, {
127
126
  success: false,
128
- errorCode: errorEnum.SYSTEM,
127
+ errorCode: ERROR.SYSTEM,
129
128
  errorMessage: ''
130
129
  });
131
- timeoutCode = _context.t0 !== null && _context.t0 !== void 0 && (_error$message = _context.t0.message) !== null && _error$message !== void 0 && _error$message.includes('timeout') ? errorEnum.TIMEOUT : '';
130
+ timeoutCode = _context.t0 !== null && _context.t0 !== void 0 && (_error$message = _context.t0.message) !== null && _error$message !== void 0 && _error$message.includes('timeout') ? ERROR.TIMEOUT : '';
132
131
  errorCode = (_error === null || _error === void 0 ? void 0 : _error.errorCode) || timeoutCode;
133
- return _context.abrupt("return", Promise.reject({
132
+ return _context.abrupt("return", {
134
133
  success: false,
135
134
  errorCode: errorCode,
136
135
  errorMessage: ''
137
- }));
136
+ });
138
137
  case 28:
139
138
  case "end":
140
139
  return _context.stop();
@@ -5,19 +5,19 @@
5
5
  * 1. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE; and
6
6
  * 2. If applicable, the use of the Software is also subject to the terms and conditions of any non-disclosure agreement signed by you and the relevant Ant Group entity.
7
7
  */
8
- import { errorEnum } from '../types';
8
+ import { ERROR } from '../types';
9
9
  export declare const safeJson: (data: any, obj: any) => any;
10
10
  export declare const fomatGetwayError: (headers: Record<string, any>, traceId: string) => {
11
11
  success: boolean;
12
12
  traceId: string;
13
- errorCode: errorEnum;
13
+ errorCode: ERROR;
14
14
  resultStatus: any;
15
15
  errorMessage?: undefined;
16
16
  result?: undefined;
17
17
  } | {
18
18
  success: boolean;
19
19
  traceId: string;
20
- errorCode: errorEnum;
20
+ errorCode: ERROR;
21
21
  errorMessage: string;
22
22
  result: {
23
23
  resultStatus: any;
@@ -6,7 +6,7 @@
6
6
  * 2. If applicable, the use of the Software is also subject to the terms and conditions of any non-disclosure agreement signed by you and the relevant Ant Group entity.
7
7
  */
8
8
 
9
- import { errorEnum } from "../types";
9
+ import { ERROR } from "../types";
10
10
  import { get } from "../util/get";
11
11
  export var safeJson = function safeJson(data, obj) {
12
12
  try {
@@ -26,7 +26,7 @@ export var fomatGetwayError = function fomatGetwayError(headers, traceId) {
26
26
  return {
27
27
  success: false,
28
28
  traceId: traceId,
29
- errorCode: errorEnum.LOGIN,
29
+ errorCode: ERROR.LOGIN,
30
30
  resultStatus: resultStatus
31
31
  };
32
32
  }
@@ -35,7 +35,7 @@ export var fomatGetwayError = function fomatGetwayError(headers, traceId) {
35
35
  return {
36
36
  success: false,
37
37
  traceId: traceId,
38
- errorCode: errorEnum.TIMEOUT,
38
+ errorCode: ERROR.TIMEOUT,
39
39
  resultStatus: resultStatus
40
40
  };
41
41
  }
@@ -45,7 +45,7 @@ export var fomatGetwayError = function fomatGetwayError(headers, traceId) {
45
45
  return {
46
46
  success: false,
47
47
  traceId: traceId,
48
- errorCode: errorEnum.GATEWAY,
48
+ errorCode: ERROR.GATEWAY,
49
49
  errorMessage: decodeURIComponent(tips || ''),
50
50
  result: {
51
51
  resultStatus: resultStatus || '',
@@ -1,2 +1,2 @@
1
- import { CashierSdkActionQueryRequest, CashierSdkActionQueryResult, IrequestConfig } from '../types';
2
- export declare function queryPaymentInfo(params?: CashierSdkActionQueryRequest, options?: IrequestConfig): Promise<CashierSdkActionQueryResult>;
1
+ import { CashierSdkActionQueryRequest, RequestConfig } from '../types';
2
+ export declare function queryPaymentInfo(params?: CashierSdkActionQueryRequest, options?: RequestConfig): Promise<any>;
@@ -8,41 +8,35 @@
8
8
  /**
9
9
  * SDK options
10
10
  */
11
- export interface IoptionsParams {
11
+ export interface optionsParams {
12
12
  environment?: string;
13
13
  locale?: string;
14
+ onReady?: any;
14
15
  onError?: callOnError;
15
16
  onSizeChanged?: callOnSizeChanged;
16
17
  onPaymentMethodSelected?: callonPaymentMethodSelected;
17
18
  onLog?: callOnLog;
18
- onEventCallback?: callOnEventCallback;
19
- onClose?: callOnClose;
19
+ onEventCallback?: (state: any) => void;
20
+ onClose?: () => void;
20
21
  networkMode?: string;
21
22
  mode?: string;
22
23
  analytics?: {
23
24
  enabled: boolean;
24
25
  };
25
26
  }
26
- export type Iselector = string;
27
- export declare enum renderDisplayTypeEnum {
28
- 'popup' = "popup",
29
- 'inline' = "inline"
30
- }
31
- export interface IcreatePaymentParams {
27
+ export interface createPaymentParams {
32
28
  paymentMethodsResult?: any;
33
29
  paymentSessionData?: string;
34
- selector: Iselector;
30
+ selector: string | HTMLElement;
35
31
  appearance?: {
36
- displayType?: checkoutDisplayEnum;
32
+ displayType?: checkoutDisplay;
37
33
  backgroundColor?: string;
38
34
  };
39
35
  }
40
- export declare enum componentSignEnum {
41
- 'EASY_PAY_WALLET' = "EASY_PAY_WALLET",
42
- 'CASHIER_PAYMENT_CARD' = "CASHIER_PAYMENT_CARD",
43
- 'CASHIER_PAYMENT_BANK' = "CASHIER_PAYMENT_BANK",
44
- 'AUTO_DEBIT_WALLET' = "AUTO_DEBIT_WALLET",
45
- 'NONE' = "NONE"
36
+ export declare enum componentNameEnum {
37
+ 'card' = "card",
38
+ 'easyPay' = "easyPay",
39
+ 'autoDebit' = "autoDebit"
46
40
  }
47
41
  export declare enum productSceneEnum {
48
42
  'EASY_PAY' = "EASY_PAY",
@@ -51,17 +45,15 @@ export declare enum productSceneEnum {
51
45
  }
52
46
  export declare enum paymentMethodCategoryTypeEnum {
53
47
  'CARD' = "CARD",
54
- 'WALLET' = "WALLET",
55
- 'BANK' = "BANK"
48
+ 'WALLET' = "WALLET"
56
49
  }
57
50
  export interface IcreateComponent {
58
51
  paymentSessionData: string;
52
+ selector?: string | HTMLElement;
59
53
  appearance?: Record<string, any>;
60
54
  }
61
55
  export interface IappendIframeNodesParams extends IcreateComponent {
62
- paymentSessionMetaData: IpaymentSessionMetaData;
63
- renderDisplayType: renderDisplayTypeEnum;
64
- selector?: Iselector;
56
+ paymentSessionMetaData?: IpaymentSessionMetaData;
65
57
  }
66
58
  interface IpaymentSessionConfig {
67
59
  productScene: productSceneEnum;
@@ -80,79 +72,55 @@ export interface IpaymentSessionMetaData {
80
72
  export declare enum localeEnum {
81
73
  'en-US' = "en-US"
82
74
  }
83
- export declare enum checkoutDisplayEnum {
75
+ export declare enum checkoutDisplay {
84
76
  horizon = "horizon",
85
77
  vertical = "vertical"
86
78
  }
87
- export declare enum modeEnum {
79
+ export declare enum mode {
88
80
  dropin = "dropin",
89
81
  component = "component"
90
82
  }
91
- export declare enum networkModeEnum {
83
+ export declare enum networkMode {
92
84
  proxy = "proxy",
93
85
  session = "session"
94
86
  }
95
- export interface IcheckoutState {
96
- paymentMethodType?: string;
87
+ export interface checkoutState {
88
+ paymentMethodType: string;
97
89
  }
98
- export declare enum environmentEnum {
90
+ export declare enum environment {
99
91
  sandbox = "sandbox",
100
92
  prod = "prod",
101
93
  light_sandbox = "light_sandbox"
102
94
  }
103
- export declare enum osTypeEnum {
95
+ export declare enum osType {
104
96
  IOS = "IOS",
105
97
  ANDROID = "ANDROID",
106
98
  ELSE = "ELSE"
107
99
  }
108
- export declare enum terminalTypeEnum {
100
+ export declare enum terminalType {
109
101
  WEB = "WEB",
110
102
  WAP = "WAP",
111
103
  APP = "APP",
112
104
  MINI_APP = "MINI_APP"
113
105
  }
114
- export interface Ienv {
115
- osType?: osTypeEnum;
116
- terminalType: terminalTypeEnum;
106
+ export interface env {
107
+ osType?: osType;
108
+ terminalType: terminalType;
117
109
  environment: string;
118
110
  }
119
- export declare enum platformEnum {
120
- desktop = "desktop",
121
- mobile = "mobile"
122
- }
123
- /**
124
- * @description Create an event handler, called when an error occurs in AMSCheckout.
125
- */
126
111
  export type callOnError = (state: {
127
- code: string;
128
- message: string;
112
+ errorMessage: string;
113
+ errorCode: string;
129
114
  stack?: any;
130
115
  }) => void;
131
- /**
132
- * @description Create an event handler, called when the general log triggers during the SDK runtime.
133
- */
134
- export type callOnLog = (state: {
135
- code: string;
136
- message: string;
137
- }) => void;
138
- /**
139
- * @description Create an event handler, during the running of the sdk, some events are called after execution, and the specific event code is returned.
140
- */
141
- export type callOnEventCallback = (state: {
142
- code: string;
143
- message: string;
144
- }) => void;
145
116
  export type callonPaymentMethodSelected = (state: {
146
117
  paymentMethodType: string;
147
118
  }) => void;
148
119
  export type callOnSizeChanged = (state: {
149
- width: number;
150
- height: number;
120
+ width: string;
121
+ height: string;
151
122
  }) => void;
152
- /**
153
- * @description Create an event handler, In pop-up layer mode, the user clicks the semi floating layer close button and is called.
154
- */
155
- export type callOnClose = () => void;
123
+ export type callOnLog = (msg: string) => void;
156
124
  export declare enum messageName {
157
125
  SDK_TO_APP = "SDK_TO_APP",
158
126
  APP_TO_SDK = "APP_TO_SDK",
@@ -169,7 +137,7 @@ export interface eventPlayload {
169
137
  };
170
138
  }
171
139
  export interface AMSCheckoutOptions {
172
- env: Ienv;
140
+ env: env;
173
141
  locale: string;
174
142
  networkMode: string;
175
143
  mode: string;
@@ -178,11 +146,7 @@ export interface AMSCheckoutOptions {
178
146
  export interface Ianalytics {
179
147
  enabled: boolean;
180
148
  }
181
- export declare enum targetEnum {
182
- BLANK = "_blank",
183
- SELF = "_self"
184
- }
185
- export declare enum errorEnum {
149
+ export declare enum ERROR {
186
150
  PARAMS = "PARAMS",
187
151
  TIMEOUT = "TIMEOUT",
188
152
  NETWORK = "NETWORK",
@@ -197,7 +161,7 @@ export declare enum errorEnum {
197
161
  SIGNIN = "SIGNIN",
198
162
  GETSIGNPARAMSERROR = "GETSIGNPARAMSERROR"
199
163
  }
200
- export interface IrequestConfig {
164
+ export interface RequestConfig {
201
165
  env?: string;
202
166
  baseURL?: string;
203
167
  timeout?: number;
@@ -218,36 +182,13 @@ export interface CashierSdkActionQueryRequest {
218
182
  paymentMethodType?: string;
219
183
  extParams?: any;
220
184
  }
221
- export interface CashierSdkActionQueryResult {
222
- supportedLanguages?: any[];
223
- amountConfirmRequired?: boolean;
224
- orderAmount?: Record<string, string>;
225
- paymentMethodView?: Record<string, string>;
226
- autoDebitWithToken?: boolean;
227
- success: boolean;
228
- errorCode?: string;
229
- errorMessage?: string;
230
- message?: string;
231
- errorStatus?: string;
232
- redirectUrl?: string;
233
- normalUrl?: string;
234
- applinkUrl?: string;
235
- schemeUrl?: string;
236
- authUrl?: string;
237
- }
238
- export declare enum eventCodeEnum {
239
- SDK_START_OF_LOADING = "SDK_START_OF_LOADING",
240
- SDK_END_OF_LOADING = "SDK_END_OF_LOADING",
241
- SDK_INTERNAL_ERROR = "SDK_INTERNAL_ERROR",
242
- SDK_CREATEPAYMENT_PARAMETER_ERROR = "SDK_CREATEPAYMENT_PARAMETER_ERROR",
243
- SDK_INIT_PARAMETER_ERROR = "SDK_INIT_PARAMETER_ERROR",
244
- SDK_CREATECOMPONENT_ERROR = "SDK_CREATECOMPONENT_ERROR",
245
- SDK_CALL_URL_ERROR = "SDK_CALL_URL_ERROR",
246
- SDK_CALL_URL_SUCCESS = "SDK_CALL_URL_SUCCESS"
247
- }
248
185
  declare global {
249
186
  interface Window {
250
187
  [key: string]: any;
251
188
  }
252
189
  }
190
+ export declare enum Target {
191
+ BLANK = "_blank",
192
+ SELF = "_self"
193
+ }
253
194
  export {};
@@ -10,18 +10,11 @@
10
10
  * SDK options
11
11
  */
12
12
 
13
- export var renderDisplayTypeEnum = /*#__PURE__*/function (renderDisplayTypeEnum) {
14
- renderDisplayTypeEnum["popup"] = "popup";
15
- renderDisplayTypeEnum["inline"] = "inline";
16
- return renderDisplayTypeEnum;
17
- }({});
18
- export var componentSignEnum = /*#__PURE__*/function (componentSignEnum) {
19
- componentSignEnum["EASY_PAY_WALLET"] = "EASY_PAY_WALLET";
20
- componentSignEnum["CASHIER_PAYMENT_CARD"] = "CASHIER_PAYMENT_CARD";
21
- componentSignEnum["CASHIER_PAYMENT_BANK"] = "CASHIER_PAYMENT_BANK";
22
- componentSignEnum["AUTO_DEBIT_WALLET"] = "AUTO_DEBIT_WALLET";
23
- componentSignEnum["NONE"] = "NONE";
24
- return componentSignEnum;
13
+ export var componentNameEnum = /*#__PURE__*/function (componentNameEnum) {
14
+ componentNameEnum["card"] = "card";
15
+ componentNameEnum["easyPay"] = "easyPay";
16
+ componentNameEnum["autoDebit"] = "autoDebit";
17
+ return componentNameEnum;
25
18
  }({});
26
19
  export var productSceneEnum = /*#__PURE__*/function (productSceneEnum) {
27
20
  productSceneEnum["EASY_PAY"] = "EASY_PAY";
@@ -32,103 +25,70 @@ export var productSceneEnum = /*#__PURE__*/function (productSceneEnum) {
32
25
  export var paymentMethodCategoryTypeEnum = /*#__PURE__*/function (paymentMethodCategoryTypeEnum) {
33
26
  paymentMethodCategoryTypeEnum["CARD"] = "CARD";
34
27
  paymentMethodCategoryTypeEnum["WALLET"] = "WALLET";
35
- paymentMethodCategoryTypeEnum["BANK"] = "BANK";
36
28
  return paymentMethodCategoryTypeEnum;
37
29
  }({});
38
30
  export var localeEnum = /*#__PURE__*/function (localeEnum) {
39
31
  localeEnum["en-US"] = "en-US";
40
32
  return localeEnum;
41
33
  }({});
42
- export var checkoutDisplayEnum = /*#__PURE__*/function (checkoutDisplayEnum) {
43
- checkoutDisplayEnum["horizon"] = "horizon";
44
- checkoutDisplayEnum["vertical"] = "vertical";
45
- return checkoutDisplayEnum;
46
- }({});
47
- export var modeEnum = /*#__PURE__*/function (modeEnum) {
48
- modeEnum["dropin"] = "dropin";
49
- modeEnum["component"] = "component";
50
- return modeEnum;
34
+ export var checkoutDisplay = /*#__PURE__*/function (checkoutDisplay) {
35
+ checkoutDisplay["horizon"] = "horizon";
36
+ checkoutDisplay["vertical"] = "vertical";
37
+ return checkoutDisplay;
51
38
  }({});
52
- export var networkModeEnum = /*#__PURE__*/function (networkModeEnum) {
53
- networkModeEnum["proxy"] = "proxy";
54
- networkModeEnum["session"] = "session";
55
- return networkModeEnum;
39
+ export var mode = /*#__PURE__*/function (mode) {
40
+ mode["dropin"] = "dropin";
41
+ mode["component"] = "component";
42
+ return mode;
56
43
  }({});
57
- export var environmentEnum = /*#__PURE__*/function (environmentEnum) {
58
- environmentEnum["sandbox"] = "sandbox";
59
- environmentEnum["prod"] = "prod";
60
- environmentEnum["light_sandbox"] = "light_sandbox";
61
- return environmentEnum;
44
+ export var networkMode = /*#__PURE__*/function (networkMode) {
45
+ networkMode["proxy"] = "proxy";
46
+ networkMode["session"] = "session";
47
+ return networkMode;
62
48
  }({});
63
- export var osTypeEnum = /*#__PURE__*/function (osTypeEnum) {
64
- osTypeEnum["IOS"] = "IOS";
65
- osTypeEnum["ANDROID"] = "ANDROID";
66
- osTypeEnum["ELSE"] = "ELSE";
67
- return osTypeEnum;
49
+ export var environment = /*#__PURE__*/function (environment) {
50
+ environment["sandbox"] = "sandbox";
51
+ environment["prod"] = "prod";
52
+ environment["light_sandbox"] = "light_sandbox";
53
+ return environment;
68
54
  }({});
69
- export var terminalTypeEnum = /*#__PURE__*/function (terminalTypeEnum) {
70
- terminalTypeEnum["WEB"] = "WEB";
71
- terminalTypeEnum["WAP"] = "WAP";
72
- terminalTypeEnum["APP"] = "APP";
73
- terminalTypeEnum["MINI_APP"] = "MINI_APP";
74
- return terminalTypeEnum;
55
+ export var osType = /*#__PURE__*/function (osType) {
56
+ osType["IOS"] = "IOS";
57
+ osType["ANDROID"] = "ANDROID";
58
+ osType["ELSE"] = "ELSE";
59
+ return osType;
75
60
  }({});
76
- export var platformEnum = /*#__PURE__*/function (platformEnum) {
77
- platformEnum["desktop"] = "desktop";
78
- platformEnum["mobile"] = "mobile";
79
- return platformEnum;
61
+ export var terminalType = /*#__PURE__*/function (terminalType) {
62
+ terminalType["WEB"] = "WEB";
63
+ terminalType["WAP"] = "WAP";
64
+ terminalType["APP"] = "APP";
65
+ terminalType["MINI_APP"] = "MINI_APP";
66
+ return terminalType;
80
67
  }({});
81
- /**
82
- * @description Create an event handler, called when an error occurs in AMSCheckout.
83
- */
84
-
85
- /**
86
- * @description Create an event handler, called when the general log triggers during the SDK runtime.
87
- */
88
-
89
- /**
90
- * @description Create an event handler, during the running of the sdk, some events are called after execution, and the specific event code is returned.
91
- */
92
-
93
- /**
94
- * @description Create an event handler, In pop-up layer mode, the user clicks the semi floating layer close button and is called.
95
- */
96
-
97
68
  export var messageName = /*#__PURE__*/function (messageName) {
98
69
  messageName["SDK_TO_APP"] = "SDK_TO_APP";
99
70
  messageName["APP_TO_SDK"] = "APP_TO_SDK";
100
71
  messageName["APP_TO_APP"] = "APP_TO_APP";
101
72
  return messageName;
102
73
  }({});
103
- export var targetEnum = /*#__PURE__*/function (targetEnum) {
104
- targetEnum["BLANK"] = "_blank";
105
- targetEnum["SELF"] = "_self";
106
- return targetEnum;
107
- }({});
108
- export var errorEnum = /*#__PURE__*/function (errorEnum) {
109
- errorEnum["PARAMS"] = "PARAMS";
110
- errorEnum["TIMEOUT"] = "TIMEOUT";
111
- errorEnum["NETWORK"] = "NETWORK";
112
- errorEnum["SYSTEM"] = "SYSTEM";
113
- errorEnum["LOGIN"] = "LOGIN";
114
- errorEnum["GATEWAY"] = "GATEWAY";
115
- errorEnum["VALIDATION"] = "VALIDATION";
116
- errorEnum["TAOBAOBINDALIPAY"] = "TAOBAOBINDALIPAY";
117
- errorEnum["REGISTERWALLET"] = "REGISTERWALLET";
118
- errorEnum["NOALIPAYID"] = "NOALIPAYID";
119
- errorEnum["TRUSTLOGINERROR"] = "TRUSTLOGINERROR";
120
- errorEnum["SIGNIN"] = "SIGNIN";
121
- errorEnum["GETSIGNPARAMSERROR"] = "GETSIGNPARAMSERROR";
122
- return errorEnum;
74
+ export var ERROR = /*#__PURE__*/function (ERROR) {
75
+ ERROR["PARAMS"] = "PARAMS";
76
+ ERROR["TIMEOUT"] = "TIMEOUT";
77
+ ERROR["NETWORK"] = "NETWORK";
78
+ ERROR["SYSTEM"] = "SYSTEM";
79
+ ERROR["LOGIN"] = "LOGIN";
80
+ ERROR["GATEWAY"] = "GATEWAY";
81
+ ERROR["VALIDATION"] = "VALIDATION";
82
+ ERROR["TAOBAOBINDALIPAY"] = "TAOBAOBINDALIPAY";
83
+ ERROR["REGISTERWALLET"] = "REGISTERWALLET";
84
+ ERROR["NOALIPAYID"] = "NOALIPAYID";
85
+ ERROR["TRUSTLOGINERROR"] = "TRUSTLOGINERROR";
86
+ ERROR["SIGNIN"] = "SIGNIN";
87
+ ERROR["GETSIGNPARAMSERROR"] = "GETSIGNPARAMSERROR";
88
+ return ERROR;
123
89
  }({});
124
- export var eventCodeEnum = /*#__PURE__*/function (eventCodeEnum) {
125
- eventCodeEnum["SDK_START_OF_LOADING"] = "SDK_START_OF_LOADING";
126
- eventCodeEnum["SDK_END_OF_LOADING"] = "SDK_END_OF_LOADING";
127
- eventCodeEnum["SDK_INTERNAL_ERROR"] = "SDK_INTERNAL_ERROR";
128
- eventCodeEnum["SDK_CREATEPAYMENT_PARAMETER_ERROR"] = "SDK_CREATEPAYMENT_PARAMETER_ERROR";
129
- eventCodeEnum["SDK_INIT_PARAMETER_ERROR"] = "SDK_INIT_PARAMETER_ERROR";
130
- eventCodeEnum["SDK_CREATECOMPONENT_ERROR"] = "SDK_CREATECOMPONENT_ERROR";
131
- eventCodeEnum["SDK_CALL_URL_ERROR"] = "SDK_CALL_URL_ERROR";
132
- eventCodeEnum["SDK_CALL_URL_SUCCESS"] = "SDK_CALL_URL_SUCCESS";
133
- return eventCodeEnum;
90
+ export var Target = /*#__PURE__*/function (Target) {
91
+ Target["BLANK"] = "_blank";
92
+ Target["SELF"] = "_self";
93
+ return Target;
134
94
  }({});
@@ -1,5 +1,5 @@
1
- import { Iselector, renderDisplayTypeEnum } from '../types';
1
+ import { createPaymentParams, IcreateComponent } from '../types';
2
2
  /**
3
- * @description context中需要包含app节点,用于插入selector中
3
+ * @description context中需要包含app节点,用于插入params.selector中
4
4
  */
5
- export declare const createIframeNode: (context: any, selector: Iselector, renderDisplayType: renderDisplayTypeEnum) => Promise<void>;
5
+ export declare const createIframeNode: (context: any, params: createPaymentParams | IcreateComponent) => Promise<void>;
@@ -1,19 +1,19 @@
1
1
  import { getType } from '.';
2
2
  import { ERRORMESSAGE, EVENT } from "../constant";
3
- import { messageName, renderDisplayTypeEnum } from "../types";
3
+ import { messageName } from "../types";
4
4
  /**
5
- * @description context中需要包含app节点,用于插入selector中
5
+ * @description context中需要包含app节点,用于插入params.selector中
6
6
  */
7
- export var createIframeNode = function createIframeNode(context, selector, renderDisplayType) {
7
+ export var createIframeNode = function createIframeNode(context, params) {
8
8
  return new Promise(function (resolve, reject) {
9
9
  var dorpinDom = null;
10
- if (getType(selector) === 'string') {
11
- dorpinDom = document.querySelector(selector);
10
+ if (getType(params.selector) === 'string') {
11
+ dorpinDom = document.querySelector(params.selector);
12
12
  }
13
13
  if (dorpinDom === null) {
14
14
  var error = {
15
- code: ERRORMESSAGE.CREATEPAYMENT_PARAMETER_ERROR.code,
16
- message: "Failed to execute 'querySelector' on 'Document': ".concat(selector, " is not a valid selector")
15
+ errorCode: ERRORMESSAGE.CREATEPAYMENT_PARAMETER_ERROR.errorCode,
16
+ errorMessage: "Failed to execute 'querySelector' on 'Document': ".concat(params.selector, " is not a valid selector")
17
17
  };
18
18
  reject(error);
19
19
  context._dispatchToSDK({
@@ -26,7 +26,7 @@ export var createIframeNode = function createIframeNode(context, selector, rende
26
26
  });
27
27
  return;
28
28
  }
29
- if (renderDisplayType === renderDisplayTypeEnum.popup) dorpinDom.innerHTML = '';
29
+ dorpinDom.innerHTML = '';
30
30
  if (context.app) {
31
31
  dorpinDom.appendChild(context.app);
32
32
  }
@@ -1,4 +1,4 @@
1
- import { errorEnum } from '../types';
1
+ import { ERROR } from '../types';
2
2
  /**
3
3
  * Copyright (c) 2022 International Business Group, Ant Group. All rights reserved.
4
4
  * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), the rights to use, copy, modify, merge, and/or distribute the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
@@ -31,14 +31,14 @@ declare const safeJson: (data: any, obj: any) => any;
31
31
  declare const fomatGetwayError: (headers: Record<string, any>, traceId: string) => {
32
32
  success: boolean;
33
33
  traceId: string;
34
- errorCode: errorEnum;
34
+ errorCode: ERROR;
35
35
  resultStatus: any;
36
36
  errorMessage?: undefined;
37
37
  result?: undefined;
38
38
  } | {
39
39
  success: boolean;
40
40
  traceId: string;
41
- errorCode: errorEnum;
41
+ errorCode: ERROR;
42
42
  errorMessage: string;
43
43
  result: {
44
44
  resultStatus: any;
@@ -50,6 +50,4 @@ declare const fomatGetwayError: (headers: Record<string, any>, traceId: string)
50
50
  declare const isPC: () => boolean;
51
51
  declare const queryParse: (url?: string) => Record<string, any>;
52
52
  declare const getDesignFontSize: () => number;
53
- declare const amsSetSize: (event?: any, dom?: any) => void;
54
- declare const addSetFontSizeEvent: () => void;
55
- export { getType, EventCenter, getViewPort, getOrigin, serialize, isJsonString, isDom, device, fomatGetwayError, safeJson, isPC, queryParse, getDesignFontSize, amsSetSize, addSetFontSizeEvent };
53
+ export { getType, EventCenter, getViewPort, getOrigin, serialize, isJsonString, isDom, device, fomatGetwayError, safeJson, isPC, queryParse, getDesignFontSize, };