@alipay/ams-checkout 0.0.1733711101-dev.1 → 0.0.1733711101-dev.2
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/index.d.ts +3 -3
- package/esm/core/bus/index.js +14 -14
- package/esm/core/component/appPreloadProcessing.js +2 -2
- package/esm/core/component/ckp/index.js +6 -3
- package/esm/core/component/index.js +6 -10
- package/esm/core/instance/index.js +3 -3
- package/esm/foundation/product-processor/easysafepay/index.js +12 -12
- package/esm/foundation/service/api-bus/busManager.d.ts +3 -3
- package/esm/foundation/service/api-bus/busManager.js +14 -14
- package/esm/foundation/service/log/index.d.ts +2 -2
- package/esm/foundation/service/log/index.js +23 -8
- package/esm/foundation/service/log/keys.d.ts +13 -0
- package/esm/foundation/service/log/keys.js +103 -0
- package/esm/foundation/service/log/processor.d.ts +9 -0
- package/esm/foundation/service/log/processor.js +138 -0
- package/esm/foundation/service/log/types.d.ts +1 -1
- package/esm/foundation/service/security/index.js +6 -8
- package/esm/foundation/utils/redirect_utils.js +1 -2
- package/esm/index.js +1 -1
- package/esm/plugin/applepay/component.js +10 -8
- package/esm/plugin/applepay/index.js +10 -6
- package/esm/plugin/applepay/service.js +24 -16
- package/esm/plugin/component/cashierApp.js +3 -3
- package/esm/plugin/component/index.js +28 -24
- package/esm/plugin/paypal/index.js +1 -1
- package/esm/service/index.js +4 -2
- package/esm/util/getBackScheme.js +1 -2
- package/esm/util/index.js +4 -8
- package/esm/util/logger.d.ts +3 -3
- package/esm/util/logger.js +49 -13
- package/esm/util/spm-map.d.ts +172 -0
- package/esm/util/spm-map.js +172 -0
- package/package.json +1 -1
package/esm/util/logger.js
CHANGED
@@ -7,6 +7,8 @@ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _d
|
|
7
7
|
function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
|
8
8
|
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
|
9
9
|
function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
10
|
+
import { LogComplianceProcessor } from "../foundation/service/log/processor";
|
11
|
+
import { SPM_MAP } from "./spm-map";
|
10
12
|
export var Logger = /*#__PURE__*/function () {
|
11
13
|
function Logger(config, debug) {
|
12
14
|
_classCallCheck(this, Logger);
|
@@ -43,18 +45,30 @@ export var Logger = /*#__PURE__*/function () {
|
|
43
45
|
}, {
|
44
46
|
key: "logError",
|
45
47
|
value: function logError(error, extra) {
|
48
|
+
var _this2 = this;
|
49
|
+
var enableExtractCompliance = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : true;
|
50
|
+
var newExtra = enableExtractCompliance ? LogComplianceProcessor.extractComplianceParams(error.title, extra !== null && extra !== void 0 ? extra : {}, function (error, ext) {
|
51
|
+
_this2.logError(error, ext, false);
|
52
|
+
}) : extra !== null && extra !== void 0 ? extra : {};
|
46
53
|
var now = Date.now();
|
47
54
|
var fsDuration = now - this.componentStartTime;
|
55
|
+
var newError = _objectSpread({}, error);
|
56
|
+
var oldTitle = error === null || error === void 0 ? void 0 : error.title;
|
57
|
+
if (SPM_MAP[oldTitle]) {
|
58
|
+
newError.title = SPM_MAP[oldTitle];
|
59
|
+
}
|
60
|
+
newExtra.eventSource = 'sdk';
|
61
|
+
newExtra.eventAlias = extra !== null && extra !== void 0 && extra.eventAlias ? extra === null || extra === void 0 ? void 0 : extra.eventAlias : oldTitle;
|
48
62
|
this.logs.push({
|
49
63
|
type: 'error',
|
50
|
-
logPayload:
|
51
|
-
extra: _objectSpread(_objectSpread({},
|
64
|
+
logPayload: newError,
|
65
|
+
extra: _objectSpread(_objectSpread({}, newExtra), {}, {
|
52
66
|
fsDuration: fsDuration,
|
53
67
|
timeStamp: now
|
54
68
|
})
|
55
69
|
});
|
56
70
|
if (this.debug) {
|
57
|
-
console.
|
71
|
+
console.log('[web-sdk] Log error', newError, newExtra);
|
58
72
|
}
|
59
73
|
this.send();
|
60
74
|
return this;
|
@@ -62,18 +76,29 @@ export var Logger = /*#__PURE__*/function () {
|
|
62
76
|
}, {
|
63
77
|
key: "logInfo",
|
64
78
|
value: function logInfo(info, extra) {
|
79
|
+
var _this3 = this;
|
80
|
+
var newExtra = LogComplianceProcessor.extractComplianceParams(info.title, extra !== null && extra !== void 0 ? extra : {}, function (error, ext) {
|
81
|
+
_this3.logError(error, ext, false);
|
82
|
+
});
|
65
83
|
var now = Date.now();
|
66
84
|
var fsDuration = now - this.componentStartTime;
|
85
|
+
var newInfo = _objectSpread({}, info);
|
86
|
+
var oldTitle = info === null || info === void 0 ? void 0 : info.title;
|
87
|
+
if (SPM_MAP[oldTitle]) {
|
88
|
+
newInfo.title = SPM_MAP[oldTitle];
|
89
|
+
}
|
90
|
+
newExtra.eventSource = 'sdk';
|
91
|
+
newExtra.eventAlias = extra !== null && extra !== void 0 && extra.eventAlias ? extra === null || extra === void 0 ? void 0 : extra.eventAlias : oldTitle;
|
67
92
|
this.logs.push({
|
68
93
|
type: 'info',
|
69
|
-
logPayload:
|
70
|
-
extra: _objectSpread(_objectSpread({},
|
94
|
+
logPayload: newInfo,
|
95
|
+
extra: _objectSpread(_objectSpread({}, newExtra), {}, {
|
71
96
|
fsDuration: fsDuration,
|
72
97
|
timeStamp: now
|
73
98
|
})
|
74
99
|
});
|
75
100
|
if (this.debug) {
|
76
|
-
console.log(
|
101
|
+
console.log('[web-sdk] Log error', newInfo, newExtra);
|
77
102
|
}
|
78
103
|
this.send();
|
79
104
|
return this;
|
@@ -81,18 +106,29 @@ export var Logger = /*#__PURE__*/function () {
|
|
81
106
|
}, {
|
82
107
|
key: "reportRPC",
|
83
108
|
value: function reportRPC(rpcData, extra) {
|
109
|
+
var _this4 = this;
|
110
|
+
var newExtra = LogComplianceProcessor.extractComplianceParams(rpcData.title, extra !== null && extra !== void 0 ? extra : {}, function (error, ext) {
|
111
|
+
_this4.logError(error, ext, false);
|
112
|
+
});
|
84
113
|
var now = Date.now();
|
85
114
|
var fsDuration = now - this.componentStartTime;
|
115
|
+
var newRpcData = _objectSpread({}, rpcData);
|
116
|
+
var oldTitle = rpcData === null || rpcData === void 0 ? void 0 : rpcData.title;
|
117
|
+
if (SPM_MAP[oldTitle]) {
|
118
|
+
newRpcData.title = SPM_MAP[oldTitle];
|
119
|
+
}
|
120
|
+
newExtra.eventSource = 'sdk';
|
121
|
+
newExtra.eventAlias = extra !== null && extra !== void 0 && extra.eventAlias ? extra === null || extra === void 0 ? void 0 : extra.eventAlias : oldTitle;
|
86
122
|
this.logs.push({
|
87
123
|
type: 'rpc',
|
88
|
-
logPayload:
|
89
|
-
extra: _objectSpread(_objectSpread({},
|
124
|
+
logPayload: newRpcData,
|
125
|
+
extra: _objectSpread(_objectSpread({}, newExtra), {}, {
|
90
126
|
fsDuration: fsDuration,
|
91
127
|
timeStamp: now
|
92
128
|
})
|
93
129
|
});
|
94
130
|
if (this.debug) {
|
95
|
-
console.log(
|
131
|
+
console.log('[web-sdk] Log rpc', newRpcData, newExtra);
|
96
132
|
}
|
97
133
|
this.send();
|
98
134
|
return this;
|
@@ -151,16 +187,16 @@ export var Logger = /*#__PURE__*/function () {
|
|
151
187
|
}, {
|
152
188
|
key: "initTracker",
|
153
189
|
value: function initTracker() {
|
154
|
-
var
|
190
|
+
var _this5 = this;
|
155
191
|
if (this.isLoaded) return;
|
156
192
|
this.isLoaded = true;
|
157
193
|
try {
|
158
194
|
if (typeof localStorage !== 'undefined') {
|
159
195
|
this.loadScript(this.config.scriptUrl, function () {
|
160
196
|
var _window4;
|
161
|
-
(_window4 = window) === null || _window4 === void 0 || _window4.iTracker.initiTracker(
|
197
|
+
(_window4 = window) === null || _window4 === void 0 || _window4.iTracker.initiTracker(_this5.config);
|
162
198
|
setTimeout(function () {
|
163
|
-
|
199
|
+
_this5.reportLogs();
|
164
200
|
}, 80);
|
165
201
|
});
|
166
202
|
}
|
@@ -217,6 +253,6 @@ export var LogConfig = {
|
|
217
253
|
productId: 'ANTOM_SDK',
|
218
254
|
version: 'iteration/20231021',
|
219
255
|
mdata: {
|
220
|
-
|
256
|
+
firstLogTime: Date.now()
|
221
257
|
}
|
222
258
|
};
|
@@ -0,0 +1,172 @@
|
|
1
|
+
export declare const SPM_MAP: {
|
2
|
+
sdk_error_runtime_error: string;
|
3
|
+
sdk_event_sdkQuery_failed: string;
|
4
|
+
container_error_error_insert_js: string;
|
5
|
+
event_important_error: string;
|
6
|
+
sdk_error_parameter: string;
|
7
|
+
sdk_event_submitPay_failed: string;
|
8
|
+
sdk_event_destroyComponent: string;
|
9
|
+
container_error_page_load_failed: string;
|
10
|
+
sdk_event_eventCallback: string;
|
11
|
+
iap_net_error: string;
|
12
|
+
sdk_event_event_callback: string;
|
13
|
+
sdk_event_renderComponent: string;
|
14
|
+
sdk_event_call_url_success: string;
|
15
|
+
sdk_event_web_app_timeout: string;
|
16
|
+
container_error_jsapi_call: string;
|
17
|
+
sdk_event_appUpgradeInfo: string;
|
18
|
+
sdk_event_webAppOnLaunch: string;
|
19
|
+
sdk_event_createComponent: string;
|
20
|
+
container_error_insert_js: string;
|
21
|
+
container_error_error_jsapi_call: string;
|
22
|
+
sdk_error_receive_message_from_web: string;
|
23
|
+
sdk_error_securitySdkGetCodeFailed: string;
|
24
|
+
sdk_error_securitySdkGetTokenFailed: string;
|
25
|
+
sdk_error_securitySdkInitFailed: string;
|
26
|
+
sdk_error_caught_exception_in_callback: string;
|
27
|
+
sdk_error_call_url_failed: string;
|
28
|
+
sdk_event_webAppTimeout: string;
|
29
|
+
sdk_error_getGaidFailed: string;
|
30
|
+
sdk_error_securitySdkInitTokenFailed: string;
|
31
|
+
sdk_event_mount_element: string;
|
32
|
+
container_error_error_invalid_param: string;
|
33
|
+
container_error_error_set_ua_failed: string;
|
34
|
+
sdk_event_onAddressResult: string;
|
35
|
+
sdk_event_onAbnormalEventName: string;
|
36
|
+
event_important_log: string;
|
37
|
+
sdk_event_sdkQueryEnd: string;
|
38
|
+
container_event_manifest_load_start: string;
|
39
|
+
sdk_event_api_preheat: string;
|
40
|
+
container_event_manifest_load_complete: string;
|
41
|
+
sdk_event_apiSubmit: string;
|
42
|
+
sdk_event_securitySdkGetCodeSuccess: string;
|
43
|
+
sdk_event_securitySdkInitSuccess: string;
|
44
|
+
container_event_start_load: string;
|
45
|
+
sdk_event_getRemoteConfigStart: string;
|
46
|
+
container_event_webViewOnPageFinished: string;
|
47
|
+
container_event_page_load_success: string;
|
48
|
+
sdk_event_pre_init: string;
|
49
|
+
sdk_event_submitPay: string;
|
50
|
+
sdk_event_submitPayEnd: string;
|
51
|
+
container_stop_event_loop: string;
|
52
|
+
iap_net_start: string;
|
53
|
+
sdk_event_securitySdkPreInitSuccess: string;
|
54
|
+
sdk_event_securitySdkPreInit: string;
|
55
|
+
sdk_event_important_event: string;
|
56
|
+
sdk_event_accelerateInfo: string;
|
57
|
+
container_event_manifest_res_complete: string;
|
58
|
+
container_event_manifest_res_start: string;
|
59
|
+
sdk_event_dismissWindowCloseCancel: string;
|
60
|
+
sdk_event_jsBridgeCall_httpRequestStart: string;
|
61
|
+
sdk_event_getGaidSuccess: string;
|
62
|
+
sdk_event_securitySdkInit: string;
|
63
|
+
sdk_event_getRemoteLanguageResult: string;
|
64
|
+
sdk_event_getRemoteLanguageStart: string;
|
65
|
+
sdk_event_handleSDKPaymentResult: string;
|
66
|
+
sdk_event_handleSDKPaymentFail: string;
|
67
|
+
sdk_event_sdkQuery: string;
|
68
|
+
sdk_event_handleSDKPaymentStart: string;
|
69
|
+
sdk_event_securitySdkGetTokenSuccess: string;
|
70
|
+
sdk_event_api_onDestroy: string;
|
71
|
+
container_load_failed: string;
|
72
|
+
sdk_event_kycAppPreLoadStart: string;
|
73
|
+
sdk_event_apiOnDestroy: string;
|
74
|
+
sdk_event_getRemoteConfigResult: string;
|
75
|
+
iap_net_result: string;
|
76
|
+
sdk_event_popupWindowCloseButtonClick: string;
|
77
|
+
container_error_resourceLoadFailed: string;
|
78
|
+
container_event_startPreRenderUrl: string;
|
79
|
+
sdk_event_webAppPreLoadStart: string;
|
80
|
+
sdk_event_importantEvent: string;
|
81
|
+
container_error_registerJSAPIPlugin: string;
|
82
|
+
sdk_event_afterEventCallback: string;
|
83
|
+
sdk_event_createPayment: string;
|
84
|
+
sdk_event_sendMessageToWeb: string;
|
85
|
+
sdk_error_appHeartBeatTimeout: string;
|
86
|
+
container_event_jSEngineEvaluateJavascript: string;
|
87
|
+
container_event_jSEngineLoadJavascript: string;
|
88
|
+
sdk_event_receive_message_from_web: string;
|
89
|
+
sdk_event_receiveMessageFromWeb: string;
|
90
|
+
sdk_event_monitorFlushReport: string;
|
91
|
+
container_event_page_pv: string;
|
92
|
+
container_event_override_url_loading: string;
|
93
|
+
sdk_event_dismissWindowCloseConfirm: string;
|
94
|
+
container_load_success: string;
|
95
|
+
container_event_page_start: string;
|
96
|
+
sdk_event_webAppStartLoad: string;
|
97
|
+
container_event_startPreLoadUrl: string;
|
98
|
+
container_event_jsSEngineStart: string;
|
99
|
+
container_event_jSEngineDestroy: string;
|
100
|
+
sdk_event_send_message_to_web: string;
|
101
|
+
container_event_importantEvent: string;
|
102
|
+
sdk_event_monitorCrashTrackInit: string;
|
103
|
+
container_event_stop_event_loop: string;
|
104
|
+
sdk_event_requestAccelerateInfo: string;
|
105
|
+
native_rpc_performance: string;
|
106
|
+
container_event_jSEngineEvaluateJavascriptCallback: string;
|
107
|
+
container_event_jSEngineRegisterJsapi: string;
|
108
|
+
jSEngineEvaluateJavascriptConvertError: string;
|
109
|
+
sdk_event_security_unneeded_scenarios: string;
|
110
|
+
container_event_launch: string;
|
111
|
+
event_jsapi_call_start: string;
|
112
|
+
event_jsapi_call_end: string;
|
113
|
+
sdk_event_call_url_start: string;
|
114
|
+
sdk_event_onAbnormalKeys: string;
|
115
|
+
sdk_event_espBeforePay: string;
|
116
|
+
sdk_event_busPublishMessage: string;
|
117
|
+
sdk_event_busIsSubscribe: string;
|
118
|
+
sdk_event_busSubscribe: string;
|
119
|
+
NEW_AMSSDK_BY_MECHANT: string;
|
120
|
+
sdk_event_busClear: string;
|
121
|
+
sdk_event_busAddInterceptor: string;
|
122
|
+
sdk_error_securitySdkInitTimeout: string;
|
123
|
+
sdk_error_busPublishNoResult: string;
|
124
|
+
sdk_event_busPublishCallback: string;
|
125
|
+
sdk_error_busPublishError: string;
|
126
|
+
sdk_error_busPublishUnsubscribeError: string;
|
127
|
+
sdk_event_busUnsubscribe: string;
|
128
|
+
onBusPublishException: string;
|
129
|
+
sdk_event_apiGetValue: string;
|
130
|
+
load_channel_sdk_start: string;
|
131
|
+
preload_match: string;
|
132
|
+
preload_no_match: string;
|
133
|
+
canMakePayments_error: string;
|
134
|
+
performance_optimization_clearPreloadIframe: string;
|
135
|
+
performance_optimization_clearPreloadIframe_timeout: string;
|
136
|
+
sdk_event_call_url_failed: string;
|
137
|
+
sdk_event_applePaymentResult: string;
|
138
|
+
submitPayStatus: string;
|
139
|
+
sdk_event_appleAvailable: string;
|
140
|
+
sdk_event_appleCreateComponent: string;
|
141
|
+
sdk_event_appleShowPaymentSheet: string;
|
142
|
+
sdk_event_appleSubmitToken: string;
|
143
|
+
sdk_event_appleDestroyComponent: string;
|
144
|
+
paypal_payment_failed: string;
|
145
|
+
paypal_payment_approved: string;
|
146
|
+
paypal_payment_cancelled: string;
|
147
|
+
sdk_event_clean_component: string;
|
148
|
+
load_item_sdk_start: string;
|
149
|
+
load_item_sdk_end: string;
|
150
|
+
performance_optimization_get_previousChannel_error: string;
|
151
|
+
performance_optimization_channelType_error: string;
|
152
|
+
sdk_error_before_submit: string;
|
153
|
+
sessionDataNull: string;
|
154
|
+
'appple runtime excepiton': string;
|
155
|
+
sdk_error_created_app_process_failed: string;
|
156
|
+
sdk_error_web_app_timeout: string;
|
157
|
+
performance_optimization_preload: string;
|
158
|
+
performance_optimization_preload_path_error: string;
|
159
|
+
sdk_error_created_app_failed: string;
|
160
|
+
sdk_error_create_pop_up: string;
|
161
|
+
button_render_failed: string;
|
162
|
+
paypal_payment_loadSDK_failed: string;
|
163
|
+
load_item_sdk_error: string;
|
164
|
+
load_item_sdk_timeout: string;
|
165
|
+
MerchantValidationError: string;
|
166
|
+
PaymentAuthorizedError: string;
|
167
|
+
'ApplePaySession is only support in Safari': string;
|
168
|
+
'Abnormal params paymentSessionFactor': string;
|
169
|
+
'Abnormal params recurringInfo': string;
|
170
|
+
'Payment processing but user dismissed the sheet': string;
|
171
|
+
'User dismissed the sheet': string;
|
172
|
+
};
|
@@ -0,0 +1,172 @@
|
|
1
|
+
export var SPM_MAP = {
|
2
|
+
sdk_error_runtime_error: 'a3753.b101271.c388188.d512342',
|
3
|
+
sdk_event_sdkQuery_failed: 'a3753.b101271.c388188.d512343',
|
4
|
+
container_error_error_insert_js: 'a3753.b101271.c388188.d512344',
|
5
|
+
event_important_error: 'a3753.b101271.c388188.d512345',
|
6
|
+
sdk_error_parameter: 'a3753.b101271.c388188.d512346',
|
7
|
+
sdk_event_submitPay_failed: 'a3753.b101271.c388188.d512347',
|
8
|
+
sdk_event_destroyComponent: 'a3753.b101271.c388189.d512349',
|
9
|
+
container_error_page_load_failed: 'a3753.b101271.c388189.d512350',
|
10
|
+
sdk_event_eventCallback: 'a3753.b101271.c388189.d512353',
|
11
|
+
iap_net_error: 'a3753.b101271.c388189.d512352',
|
12
|
+
sdk_event_event_callback: 'a3753.b101271.c388189.d512353',
|
13
|
+
sdk_event_renderComponent: 'a3753.b101271.c388189.d512354',
|
14
|
+
sdk_event_call_url_success: 'a3753.b101271.c388189.d512355',
|
15
|
+
sdk_event_web_app_timeout: 'a3753.b101271.c388189.d512356',
|
16
|
+
container_error_jsapi_call: 'a3753.b101271.c388189.d512357',
|
17
|
+
sdk_event_appUpgradeInfo: 'a3753.b101271.c388189.d512358',
|
18
|
+
sdk_event_webAppOnLaunch: 'a3753.b101271.c388189.d512359',
|
19
|
+
sdk_event_createComponent: 'a3753.b101271.c388189.d512360',
|
20
|
+
container_error_insert_js: 'a3753.b101271.c388189.d512361',
|
21
|
+
container_error_error_jsapi_call: 'a3753.b101271.c388189.d512362',
|
22
|
+
sdk_error_receive_message_from_web: 'a3753.b101271.c388189.d512363',
|
23
|
+
sdk_error_securitySdkGetCodeFailed: 'a3753.b101271.c388189.d512369',
|
24
|
+
sdk_error_securitySdkGetTokenFailed: 'a3753.b101271.c388189.d513035',
|
25
|
+
sdk_error_securitySdkInitFailed: 'a3753.b101271.c388193.d513045',
|
26
|
+
sdk_error_caught_exception_in_callback: 'a3753.b101271.c388189.d513207',
|
27
|
+
sdk_error_call_url_failed: 'a3753.b101271.c388189.d513050',
|
28
|
+
sdk_event_webAppTimeout: 'a3753.b101271.c388189.d512356',
|
29
|
+
sdk_error_getGaidFailed: 'a3753.b101271.c388193.d513038',
|
30
|
+
sdk_error_securitySdkInitTokenFailed: 'a3753.b101271.c388193.d513044',
|
31
|
+
sdk_event_mount_element: 'a3753.b101271.c388193.d513193',
|
32
|
+
container_error_error_invalid_param: 'a3753.b101271.c388193.d513220',
|
33
|
+
container_error_error_set_ua_failed: 'a3753.b101271.c388193.d513221',
|
34
|
+
sdk_event_onAddressResult: 'a3753.b101271.c388193.d513194',
|
35
|
+
sdk_event_onAbnormalEventName: 'a3753.b101271.c388193.d513345',
|
36
|
+
event_important_log: 'a3753.b101271.c388193.d512370',
|
37
|
+
sdk_event_sdkQueryEnd: 'a3753.b101271.c388193.d512371',
|
38
|
+
container_event_manifest_load_start: 'a3753.b101271.c388193.d512372',
|
39
|
+
sdk_event_api_preheat: 'a3753.b101271.c388193.d512373',
|
40
|
+
container_event_manifest_load_complete: 'a3753.b101271.c388193.d512374',
|
41
|
+
sdk_event_apiSubmit: 'a3753.b101271.c388193.d512375',
|
42
|
+
sdk_event_securitySdkGetCodeSuccess: 'a3753.b101271.c388193.d512376',
|
43
|
+
sdk_event_securitySdkInitSuccess: 'a3753.b101271.c388193.d512377',
|
44
|
+
container_event_start_load: 'a3753.b101271.c388193.d512378',
|
45
|
+
sdk_event_getRemoteConfigStart: 'a3753.b101271.c388193.d512379',
|
46
|
+
container_event_webViewOnPageFinished: 'a3753.b101271.c388193.d512419',
|
47
|
+
container_event_page_load_success: 'a3753.b101271.c388193.d512420',
|
48
|
+
sdk_event_pre_init: 'a3753.b101271.c388193.d512421',
|
49
|
+
sdk_event_submitPay: 'a3753.b101271.c388193.d512422',
|
50
|
+
sdk_event_submitPayEnd: 'a3753.b101271.c388193.d512423',
|
51
|
+
container_stop_event_loop: 'a3753.b101271.c388193.d512424',
|
52
|
+
iap_net_start: 'a3753.b101271.c388193.d512425',
|
53
|
+
sdk_event_securitySdkPreInitSuccess: 'a3753.b101271.c388193.d512426',
|
54
|
+
sdk_event_securitySdkPreInit: 'a3753.b101271.c388193.d512427',
|
55
|
+
sdk_event_important_event: 'a3753.b101271.c388193.d512428',
|
56
|
+
sdk_event_accelerateInfo: 'a3753.b101271.c388193.d512429',
|
57
|
+
container_event_manifest_res_complete: 'a3753.b101271.c388193.d512430',
|
58
|
+
container_event_manifest_res_start: 'a3753.b101271.c388193.d512431',
|
59
|
+
sdk_event_dismissWindowCloseCancel: 'a3753.b101271.c388193.d512432',
|
60
|
+
sdk_event_jsBridgeCall_httpRequestStart: 'a3753.b101271.c388193.d512433',
|
61
|
+
sdk_event_getGaidSuccess: 'a3753.b101271.c388193.d512434',
|
62
|
+
sdk_event_securitySdkInit: 'a3753.b101271.c388193.d512435',
|
63
|
+
sdk_event_getRemoteLanguageResult: 'a3753.b101271.c388193.d513176',
|
64
|
+
sdk_event_getRemoteLanguageStart: 'a3753.b101271.c388193.d513175',
|
65
|
+
sdk_event_handleSDKPaymentResult: 'a3753.b101271.c388193.d512436',
|
66
|
+
sdk_event_handleSDKPaymentFail: 'a3753.b101271.c388193.d513172',
|
67
|
+
sdk_event_sdkQuery: 'a3753.b101271.c388193.d512437',
|
68
|
+
sdk_event_handleSDKPaymentStart: 'a3753.b101271.c388193.d512438',
|
69
|
+
sdk_event_securitySdkGetTokenSuccess: 'a3753.b101271.c388193.d512439',
|
70
|
+
sdk_event_api_onDestroy: 'a3753.b101271.c388193.d512440',
|
71
|
+
container_load_failed: 'a3753.b101271.c388193.d512441',
|
72
|
+
sdk_event_kycAppPreLoadStart: 'a3753.b101271.c388193.d513154',
|
73
|
+
sdk_event_apiOnDestroy: 'a3753.b101271.c388193.d512442',
|
74
|
+
sdk_event_getRemoteConfigResult: 'a3753.b101271.c388193.d512443',
|
75
|
+
iap_net_result: 'a3753.b101271.c388193.d512444',
|
76
|
+
sdk_event_popupWindowCloseButtonClick: 'a3753.b101271.c388193.d512445',
|
77
|
+
container_error_resourceLoadFailed: 'a3753.b101271.c388193.d512446',
|
78
|
+
container_event_startPreRenderUrl: 'a3753.b101271.c388193.d512447',
|
79
|
+
sdk_event_webAppPreLoadStart: 'a3753.b101271.c388193.d512448',
|
80
|
+
sdk_event_importantEvent: 'a3753.b101271.c388193.d512449',
|
81
|
+
container_error_registerJSAPIPlugin: 'a3753.b101271.c388193.d512531',
|
82
|
+
sdk_event_afterEventCallback: 'a3753.b101271.c388217.d513210',
|
83
|
+
sdk_event_createPayment: 'a3753.b101271.c388217.d513074',
|
84
|
+
sdk_event_sendMessageToWeb: 'a3753.b101271.c388217.d512452',
|
85
|
+
sdk_error_appHeartBeatTimeout: 'a3753.b101271.c388217.d512453',
|
86
|
+
container_event_jSEngineEvaluateJavascript: 'a3753.b101271.c388217.d512454',
|
87
|
+
container_event_jSEngineLoadJavascript: 'a3753.b101271.c388217.d512455',
|
88
|
+
sdk_event_receive_message_from_web: 'a3753.b101271.c388217.d512456',
|
89
|
+
sdk_event_receiveMessageFromWeb: 'a3753.b101271.c388217.d512457',
|
90
|
+
sdk_event_monitorFlushReport: 'a3753.b101271.c388217.d512458',
|
91
|
+
container_event_page_pv: 'a3753.b101271.c388217.d512459',
|
92
|
+
container_event_override_url_loading: 'a3753.b101271.c388217.d513223',
|
93
|
+
sdk_event_dismissWindowCloseConfirm: 'a3753.b101271.c388217.d512460',
|
94
|
+
container_load_success: 'a3753.b101271.c388217.d512461',
|
95
|
+
container_event_page_start: 'a3753.b101271.c388217.d512462',
|
96
|
+
sdk_event_webAppStartLoad: 'a3753.b101271.c388217.d512463',
|
97
|
+
container_event_startPreLoadUrl: 'a3753.b101271.c388217.d512464',
|
98
|
+
container_event_jsSEngineStart: 'a3753.b101271.c388217.d512465',
|
99
|
+
container_event_jSEngineDestroy: 'a3753.b101271.c388193.d512546',
|
100
|
+
sdk_event_send_message_to_web: 'a3753.b101271.c388217.d512466',
|
101
|
+
container_event_importantEvent: 'a3753.b101271.c388217.d512467',
|
102
|
+
sdk_event_monitorCrashTrackInit: 'a3753.b101271.c388217.d512468',
|
103
|
+
container_event_stop_event_loop: 'a3753.b101271.c388217.d512469',
|
104
|
+
sdk_event_requestAccelerateInfo: 'a3753.b101271.c388217.d513147',
|
105
|
+
native_rpc_performance: 'a3753.b101271.c388217.d513218',
|
106
|
+
container_event_jSEngineEvaluateJavascriptCallback: 'a3753.b101271.c388217.d512585',
|
107
|
+
container_event_jSEngineRegisterJsapi: 'a3753.b101271.c388217.d512586',
|
108
|
+
jSEngineEvaluateJavascriptConvertError: 'a3753.b101271.c388217.d512592',
|
109
|
+
sdk_event_security_unneeded_scenarios: 'a3753.b101271.c388217.d512595',
|
110
|
+
container_event_launch: 'a3753.b101271.c388217.d513256',
|
111
|
+
event_jsapi_call_start: 'a3753.b101271.c388217.d514734',
|
112
|
+
event_jsapi_call_end: 'a3753.b101271.c388217.d514735',
|
113
|
+
sdk_event_call_url_start: 'a3753.b101271.c388189.d515011',
|
114
|
+
sdk_event_onAbnormalKeys: 'a3753.b101271.c388193.d513391',
|
115
|
+
sdk_event_espBeforePay: 'a3753.b101271.c388193.d514078',
|
116
|
+
sdk_event_busPublishMessage: 'a3753.b101271.c388217.d515030',
|
117
|
+
sdk_event_busIsSubscribe: 'a3753.b101271.c388217.d515031',
|
118
|
+
sdk_event_busSubscribe: 'a3753.b101271.c388217.d515032',
|
119
|
+
NEW_AMSSDK_BY_MECHANT: 'a3753.b101271.c388193.d512449',
|
120
|
+
sdk_event_busClear: 'a3753.b101271.c388193.d518374',
|
121
|
+
sdk_event_busAddInterceptor: 'a3753.b101271.c388193.d518374',
|
122
|
+
sdk_error_securitySdkInitTimeout: 'a3753.b101271.c388193.d513045',
|
123
|
+
sdk_error_busPublishNoResult: 'a3753.b101271.c388193.d518374',
|
124
|
+
sdk_event_busPublishCallback: 'a3753.b101271.c388193.d518374',
|
125
|
+
sdk_error_busPublishError: 'a3753.b101271.c388189.d518375',
|
126
|
+
sdk_error_busPublishUnsubscribeError: 'a3753.b101271.c388189.d518375',
|
127
|
+
sdk_event_busUnsubscribe: 'a3753.b101271.c388193.d518374',
|
128
|
+
onBusPublishException: 'a3753.b101271.c388189.d518375',
|
129
|
+
sdk_event_apiGetValue: 'a3753.b101271.c388193.d512449',
|
130
|
+
load_channel_sdk_start: 'a3753.b101271.c388193.d512449',
|
131
|
+
preload_match: 'a3753.b101271.c388193.d512449',
|
132
|
+
preload_no_match: 'a3753.b101271.c388188.d512345',
|
133
|
+
canMakePayments_error: 'a3753.b101271.c388188.d512345',
|
134
|
+
performance_optimization_clearPreloadIframe: 'a3753.b101271.c388193.d512449',
|
135
|
+
performance_optimization_clearPreloadIframe_timeout: 'a3753.b101271.c388188.d512345',
|
136
|
+
sdk_event_call_url_failed: 'a3753.b101271.c388189.d513050',
|
137
|
+
sdk_event_applePaymentResult: 'a3753.b101271.c388193.d518376',
|
138
|
+
submitPayStatus: 'a3753.b101271.c388193.d518376',
|
139
|
+
sdk_event_appleAvailable: 'a3753.b101271.c388193.d518376',
|
140
|
+
sdk_event_appleCreateComponent: 'a3753.b101271.c388193.d518376',
|
141
|
+
sdk_event_appleShowPaymentSheet: 'a3753.b101271.c388193.d518376',
|
142
|
+
sdk_event_appleSubmitToken: 'a3753.b101271.c388193.d518376',
|
143
|
+
sdk_event_appleDestroyComponent: 'a3753.b101271.c388193.d518376',
|
144
|
+
paypal_payment_failed: 'a3753.b101271.c388189.d518378',
|
145
|
+
paypal_payment_approved: 'a3753.b101271.c388193.d518383',
|
146
|
+
paypal_payment_cancelled: 'a3753.b101271.c388193.d518383',
|
147
|
+
sdk_event_clean_component: 'a3753.b101271.c388193.d518383',
|
148
|
+
load_item_sdk_start: 'a3753.b101271.c388193.d512449',
|
149
|
+
load_item_sdk_end: 'a3753.b101271.c388193.d512449',
|
150
|
+
performance_optimization_get_previousChannel_error: 'a3753.b101271.c388188.d512345',
|
151
|
+
performance_optimization_channelType_error: 'a3753.b101271.c388188.d512345',
|
152
|
+
sdk_error_before_submit: 'a3753.b101271.c388188.d512345',
|
153
|
+
sessionDataNull: 'a3753.b101271.c388189.d518377',
|
154
|
+
'appple runtime excepiton': 'a3753.b101271.c388189.d518377',
|
155
|
+
sdk_error_created_app_process_failed: 'a3753.b101271.c388188.d512345',
|
156
|
+
sdk_error_web_app_timeout: 'a3753.b101271.c388188.d512345',
|
157
|
+
performance_optimization_preload: 'a3753.b101271.c388193.d512449',
|
158
|
+
performance_optimization_preload_path_error: 'a3753.b101271.c388188.d512345',
|
159
|
+
sdk_error_created_app_failed: 'a3753.b101271.c388188.d512345',
|
160
|
+
sdk_error_create_pop_up: 'a3753.b101271.c388188.d512345',
|
161
|
+
button_render_failed: 'a3753.b101271.c388189.d518378',
|
162
|
+
paypal_payment_loadSDK_failed: 'a3753.b101271.c388189.d518378',
|
163
|
+
load_item_sdk_error: 'a3753.b101271.c388188.d512345',
|
164
|
+
load_item_sdk_timeout: 'a3753.b101271.c388188.d512345',
|
165
|
+
MerchantValidationError: 'a3753.b101271.c388189.d518377',
|
166
|
+
PaymentAuthorizedError: 'a3753.b101271.c388189.d518377',
|
167
|
+
'ApplePaySession is only support in Safari': 'a3753.b101271.c388189.d518377',
|
168
|
+
'Abnormal params paymentSessionFactor': 'a3753.b101271.c388189.d518377',
|
169
|
+
'Abnormal params recurringInfo': 'a3753.b101271.c388189.d518377',
|
170
|
+
'Payment processing but user dismissed the sheet': 'a3753.b101271.c388189.d518377',
|
171
|
+
'User dismissed the sheet': 'a3753.b101271.c388189.d518377'
|
172
|
+
};
|