@alipay/ams-checkout 1.23.0 → 1.24.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 (124) hide show
  1. package/dist/umd/ams-checkout.min.js +1 -1
  2. package/esm/config/index.d.ts +7 -7
  3. package/esm/config/index.js +10 -10
  4. package/esm/constant/index.d.ts +6 -0
  5. package/esm/constant/index.js +8 -0
  6. package/esm/core/bus/ability/globalData.d.ts +10 -0
  7. package/esm/core/bus/ability/globalData.js +89 -0
  8. package/esm/core/bus/ability/request.d.ts +10 -0
  9. package/esm/core/bus/ability/request.js +151 -0
  10. package/esm/core/bus/interface.d.ts +12 -0
  11. package/esm/core/bus/interface.js +16 -2
  12. package/esm/core/component/address.d.ts +2 -2
  13. package/esm/core/component/appPreloadProcessing.js +2 -0
  14. package/esm/core/component/ckp/index.d.ts +3 -3
  15. package/esm/core/component/ckp/index.js +6 -5
  16. package/esm/core/component/element/components/address.d.ts +19 -0
  17. package/esm/core/component/element/components/address.js +68 -0
  18. package/esm/core/component/element/components/auth.d.ts +17 -0
  19. package/esm/core/component/element/components/auth.js +60 -0
  20. package/esm/core/component/element/components/payment.d.ts +19 -0
  21. package/esm/core/component/element/components/payment.js +74 -0
  22. package/esm/core/component/element/index.d.ts +47 -0
  23. package/esm/core/component/element/index.js +816 -0
  24. package/esm/core/component/element/mock.d.ts +4 -0
  25. package/esm/core/component/element/mock.js +491 -0
  26. package/esm/core/component/element/type.d.ts +184 -0
  27. package/esm/core/component/element/type.js +35 -0
  28. package/esm/core/component/element/utils.d.ts +13 -0
  29. package/esm/core/component/element/utils.js +6 -0
  30. package/esm/core/component/index.d.ts +5 -5
  31. package/esm/core/component/index.js +20 -16
  32. package/esm/core/drop-in/index.d.ts +2 -2
  33. package/esm/core/drop-in/index.js +2 -2
  34. package/esm/core/instance/index.d.ts +5 -5
  35. package/esm/core/instance/index.js +11 -10
  36. package/esm/foundation/core/index.d.ts +26 -0
  37. package/esm/foundation/core/index.js +301 -0
  38. package/esm/foundation/index.d.ts +72 -0
  39. package/esm/foundation/index.js +42 -0
  40. package/esm/foundation/product-processor/easysafepay/deps.d.ts +15 -0
  41. package/esm/foundation/product-processor/easysafepay/deps.js +9 -0
  42. package/esm/foundation/product-processor/easysafepay/index.d.ts +26 -0
  43. package/esm/foundation/product-processor/easysafepay/index.js +536 -0
  44. package/esm/foundation/service/container/index.d.ts +28 -0
  45. package/esm/foundation/service/container/index.js +256 -0
  46. package/esm/foundation/service/container/popup.d.ts +17 -0
  47. package/esm/foundation/service/container/popup.js +103 -0
  48. package/esm/foundation/service/container/utils.d.ts +7 -0
  49. package/esm/foundation/service/container/utils.js +48 -0
  50. package/esm/foundation/service/event-bus/ability/callback.d.ts +9 -0
  51. package/esm/foundation/service/event-bus/ability/callback.js +55 -0
  52. package/esm/foundation/service/event-bus/ability/globalData.d.ts +10 -0
  53. package/esm/foundation/service/event-bus/ability/globalData.js +89 -0
  54. package/esm/foundation/service/event-bus/ability/request.d.ts +10 -0
  55. package/esm/foundation/service/event-bus/ability/request.js +151 -0
  56. package/esm/foundation/service/event-bus/ability/security.d.ts +12 -0
  57. package/esm/foundation/service/event-bus/ability/security.js +151 -0
  58. package/esm/foundation/service/event-bus/ability/tracker.d.ts +9 -0
  59. package/esm/foundation/service/event-bus/ability/tracker.js +80 -0
  60. package/esm/foundation/service/event-bus/busManager.d.ts +127 -0
  61. package/esm/foundation/service/event-bus/busManager.js +398 -0
  62. package/esm/foundation/service/event-bus/index.d.ts +20 -0
  63. package/esm/foundation/service/event-bus/index.js +88 -0
  64. package/esm/foundation/service/event-center.d.ts +75 -0
  65. package/esm/foundation/service/event-center.js +244 -0
  66. package/esm/foundation/service/global-data/index.d.ts +11 -0
  67. package/esm/foundation/service/global-data/index.js +69 -0
  68. package/esm/foundation/service/index.d.ts +19 -0
  69. package/esm/foundation/service/index.js +82 -0
  70. package/esm/foundation/service/log/index.d.ts +43 -0
  71. package/esm/foundation/service/log/index.js +235 -0
  72. package/esm/foundation/service/log/types.d.ts +32 -0
  73. package/esm/foundation/service/log/types.js +1 -0
  74. package/esm/foundation/service/requester/deps.d.ts +17 -0
  75. package/esm/foundation/service/requester/deps.js +11 -0
  76. package/esm/foundation/service/requester/requester.d.ts +22 -0
  77. package/esm/foundation/service/requester/requester.js +211 -0
  78. package/esm/foundation/service/security/index.d.ts +26 -0
  79. package/esm/foundation/service/security/index.js +216 -0
  80. package/esm/{util → foundation/service/security}/security.d.ts +2 -2
  81. package/esm/{util → foundation/service/security}/security.js +3 -3
  82. package/esm/foundation/types/index.d.ts +4 -0
  83. package/esm/foundation/types/index.js +4 -0
  84. package/esm/foundation/utils/gray_scale_utils.d.ts +7 -0
  85. package/esm/foundation/utils/gray_scale_utils.js +40 -0
  86. package/esm/foundation/utils/payment_context_utils.d.ts +13 -0
  87. package/esm/foundation/utils/payment_context_utils.js +57 -0
  88. package/esm/foundation/utils/redirect_utils.d.ts +6 -0
  89. package/esm/foundation/utils/redirect_utils.js +99 -0
  90. package/esm/foundation/utils/system_events.d.ts +4 -0
  91. package/esm/foundation/utils/system_events.js +71 -0
  92. package/esm/foundation/utils/web_app_url_utils.d.ts +37 -0
  93. package/esm/foundation/utils/web_app_url_utils.js +97 -0
  94. package/esm/index.d.ts +16 -10
  95. package/esm/index.js +70 -59
  96. package/esm/plugin/applepay/component.js +3 -3
  97. package/esm/plugin/applepay/service.d.ts +2 -2
  98. package/esm/plugin/applepay/service.js +2 -2
  99. package/esm/plugin/component/cashierApp.d.ts +7 -5
  100. package/esm/plugin/component/cashierApp.js +16 -8
  101. package/esm/plugin/component/channel.d.ts +4 -4
  102. package/esm/plugin/component/component.inline.style.d.ts +4 -4
  103. package/esm/plugin/component/component.inline.style.js +10 -7
  104. package/esm/plugin/component/component.popup.style.d.ts +15 -6
  105. package/esm/plugin/component/component.popup.style.js +33 -15
  106. package/esm/plugin/component/index.d.ts +8 -7
  107. package/esm/plugin/component/index.js +153 -98
  108. package/esm/plugin/const.js +5 -5
  109. package/esm/plugin/drop-in/index.d.ts +5 -5
  110. package/esm/plugin/drop-in/index.js +7 -7
  111. package/esm/plugin/payment-element/utils.d.ts +1 -1
  112. package/esm/plugin/payment-element/utils.js +2 -1
  113. package/esm/plugin/type.d.ts +4 -4
  114. package/esm/service/element.d.ts +4 -0
  115. package/esm/service/element.js +51 -0
  116. package/esm/service/index.d.ts +1 -0
  117. package/esm/service/index.js +2 -0
  118. package/esm/types/index.d.ts +240 -38
  119. package/esm/types/index.js +103 -59
  120. package/esm/util/createIframeNode.d.ts +2 -2
  121. package/esm/util/createIframeNode.js +3 -3
  122. package/esm/util/index.d.ts +1 -1
  123. package/esm/util/index.js +3 -4
  124. package/package.json +2 -1
@@ -0,0 +1,60 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
3
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
4
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
5
+ 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; }
6
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
7
+ 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); }
8
+ import { createIframe } from "../../../../foundation/service/container/utils";
9
+ import { createInlineBaseElement } from "../../../../plugin/component/component.inline.style";
10
+ export var ElementAuthComponent = /*#__PURE__*/function () {
11
+ function ElementAuthComponent() {
12
+ _classCallCheck(this, ElementAuthComponent);
13
+ _defineProperty(this, "elementContainer", void 0);
14
+ }
15
+ _createClass(ElementAuthComponent, [{
16
+ key: "create",
17
+ value: function create(options) {}
18
+ }, {
19
+ key: "mount",
20
+ value: function mount(options) {
21
+ var _this = this;
22
+ return new Promise(function (resolve) {
23
+ try {
24
+ var selector = options.selector,
25
+ url = options.url;
26
+ var containerId = (selector === null || selector === void 0 ? void 0 : selector.indexOf('#')) === -1 ? selector : selector.slice(1);
27
+ var containerSelector = "antom-sdk-web-app-".concat(containerId);
28
+ var container = createInlineBaseElement(selector);
29
+ var webApp = createIframe(containerSelector);
30
+ webApp.src = url;
31
+ container.appendChild(webApp);
32
+ _this.elementContainer = container;
33
+ resolve(webApp);
34
+ } catch (error) {
35
+ resolve(undefined);
36
+ }
37
+ });
38
+ }
39
+ }, {
40
+ key: "update",
41
+ value: function update() {
42
+ var _this$elementContaine, _this$elementContaine2;
43
+ var height = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 100;
44
+ var iframes = (_this$elementContaine = this.elementContainer) === null || _this$elementContaine === void 0 || (_this$elementContaine2 = _this$elementContaine.getElementsByTagName) === null || _this$elementContaine2 === void 0 ? void 0 : _this$elementContaine2.call(_this$elementContaine, 'iframe');
45
+ if (iframes !== null && iframes !== void 0 && iframes[0]) {
46
+ var iframe = iframes[0];
47
+ iframe.style.opacity = '1';
48
+ iframe.style.overflow = 'visible';
49
+ iframe.style.height = "".concat(height, "px");
50
+ }
51
+ }
52
+ }, {
53
+ key: "unmount",
54
+ value: function unmount() {
55
+ var _this$elementContaine3, _this$elementContaine4;
56
+ (_this$elementContaine3 = this.elementContainer) === null || _this$elementContaine3 === void 0 || (_this$elementContaine4 = _this$elementContaine3.remove) === null || _this$elementContaine4 === void 0 || _this$elementContaine4.call(_this$elementContaine3);
57
+ }
58
+ }]);
59
+ return ElementAuthComponent;
60
+ }();
@@ -0,0 +1,19 @@
1
+ import { PaymentMountOptions } from '../type';
2
+ interface ElementPaymentMountOptions extends Omit<PaymentMountOptions, 'type'> {
3
+ selector: string;
4
+ }
5
+ export declare class ElementPaymentComponent {
6
+ private sdk;
7
+ private elementContainer;
8
+ private isConnect;
9
+ constructor();
10
+ create(options: {
11
+ environment: string;
12
+ locale: string;
13
+ appVersion: string;
14
+ }, isConnect: boolean): void;
15
+ mount(sessionData: string, options: ElementPaymentMountOptions): Promise<HTMLIFrameElement | undefined>;
16
+ update(): void;
17
+ unmount(): void;
18
+ }
19
+ export {};
@@ -0,0 +1,74 @@
1
+ function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
2
+ function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
3
+ function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
4
+ function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
5
+ function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
6
+ function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
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
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
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 AMSPaymentElement from "../../../../index";
11
+ export var ElementPaymentComponent = /*#__PURE__*/function () {
12
+ function ElementPaymentComponent() {
13
+ _classCallCheck(this, ElementPaymentComponent);
14
+ _defineProperty(this, "sdk", void 0);
15
+ _defineProperty(this, "elementContainer", void 0);
16
+ _defineProperty(this, "isConnect", void 0);
17
+ }
18
+ _createClass(ElementPaymentComponent, [{
19
+ key: "create",
20
+ value: function create(options, isConnect) {
21
+ this.isConnect = isConnect;
22
+ this.sdk = new AMSPaymentElement(_objectSpread(_objectSpread({}, options), {}, {
23
+ analytics: {
24
+ enabled: true
25
+ },
26
+ onEventCallback: function onEventCallback(state) {}
27
+ }));
28
+ }
29
+ }, {
30
+ key: "mount",
31
+ value: function mount(sessionData, options) {
32
+ var _this = this;
33
+ var elementContainer = document.querySelector(options.selector);
34
+ if (this.isConnect) {
35
+ elementContainer.style.display = 'none';
36
+ }
37
+ return new Promise(function (resolve) {
38
+ _this.sdk.mountComponent({
39
+ sessionData: sessionData,
40
+ appearance: options.appearance,
41
+ debugProps: options.debugProps,
42
+ notRedirectAfterComplete: true,
43
+ appendAliasContainerId: true
44
+ }, options.selector).then(function () {
45
+ var _elementContainer$get;
46
+ _this.elementContainer = elementContainer;
47
+ var iframes = elementContainer === null || elementContainer === void 0 || (_elementContainer$get = elementContainer.getElementsByTagName) === null || _elementContainer$get === void 0 ? void 0 : _elementContainer$get.call(elementContainer, 'iframe');
48
+ resolve(iframes === null || iframes === void 0 ? void 0 : iframes[0]);
49
+ }, function () {
50
+ resolve(undefined);
51
+ });
52
+ });
53
+ }
54
+ }, {
55
+ key: "update",
56
+ value: function update() {
57
+ if (this.elementContainer && this.isConnect) {
58
+ this.elementContainer.style.display = 'initial';
59
+ }
60
+ // 下发数据
61
+ }
62
+ }, {
63
+ key: "unmount",
64
+ value: function unmount() {
65
+ var _this$elementContaine, _this$elementContaine2;
66
+ var containers = (_this$elementContaine = this.elementContainer) === null || _this$elementContaine === void 0 || (_this$elementContaine2 = _this$elementContaine.getElementsByTagName) === null || _this$elementContaine2 === void 0 ? void 0 : _this$elementContaine2.call(_this$elementContaine, 'div');
67
+ if (containers !== null && containers !== void 0 && containers[0]) {
68
+ var _containers$, _containers$$remove;
69
+ (_containers$ = containers[0]) === null || _containers$ === void 0 || (_containers$$remove = _containers$.remove) === null || _containers$$remove === void 0 || _containers$$remove.call(_containers$);
70
+ }
71
+ }
72
+ }]);
73
+ return ElementPaymentComponent;
74
+ }();
@@ -0,0 +1,47 @@
1
+ import { IElementOptions } from '../../../types';
2
+ import type { AddressMountOptions, AddressMountResult, LinkAuthMountOptions, LinkAuthMountResult, PaymentMountOptions, PaymentMountResult } from './type';
3
+ export declare class ElementComponent {
4
+ private parseData;
5
+ private loading;
6
+ private sessionData;
7
+ private elementContainer;
8
+ private authBase;
9
+ private addressBase;
10
+ private paymentBase;
11
+ private _options;
12
+ private eventService;
13
+ private requestService;
14
+ private sdkActionRes;
15
+ private oneAccountRes;
16
+ private launchSource;
17
+ private isConnect;
18
+ private iframeSrc;
19
+ private mountOptions;
20
+ private iframes;
21
+ private componentsCount;
22
+ private eventCallback;
23
+ constructor(options: IElementOptions);
24
+ private createElement;
25
+ private createIframeSrc;
26
+ private addListener;
27
+ private launchFunc;
28
+ private showIframe;
29
+ private afterInit;
30
+ private sendRenderData;
31
+ private removeListener;
32
+ private registerEventListener;
33
+ private mountAuth;
34
+ private mountAddress;
35
+ private mountPayment;
36
+ mount(renderOptions: AddressMountOptions, sdkSelector: string): AddressMountResult;
37
+ mount(renderOptions: PaymentMountOptions, sdkSelector: string): PaymentMountResult;
38
+ mount(renderOptions: LinkAuthMountOptions, sdkSelector: string): LinkAuthMountResult;
39
+ private removeIframe;
40
+ unmount(): void;
41
+ private onAfterSubmitFunc;
42
+ private onSubmitRiskFunc;
43
+ private onSubmit;
44
+ private onValidateFunc;
45
+ private validatePromiseFuncs;
46
+ submitPayment(): Promise<void>;
47
+ }