@alipay/ams-checkout 0.0.1710212811-dev.3 → 0.0.1710212811-dev.30
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/callback.d.ts +9 -0
- package/esm/core/bus/ability/callback.js +55 -0
- package/esm/core/bus/ability/security.d.ts +10 -0
- package/esm/core/bus/ability/security.js +104 -0
- package/esm/core/bus/ability/tracker.d.ts +9 -0
- package/esm/core/bus/ability/tracker.js +77 -0
- package/esm/core/bus/index.d.ts +72 -0
- package/esm/core/bus/index.js +309 -0
- package/esm/core/bus/interface.d.ts +32 -0
- package/esm/core/bus/interface.js +35 -0
- package/esm/core/component/index.d.ts +15 -1
- package/esm/core/component/index.js +185 -28
- package/esm/core/instance/index.d.ts +5 -1
- package/esm/core/instance/index.js +41 -4
- package/esm/index.d.ts +0 -3
- package/esm/index.js +8 -18
- package/esm/{core/applepay/index.d.ts → plugin/applepay/component.d.ts} +15 -8
- package/esm/{core/applepay/index.js → plugin/applepay/component.js} +110 -161
- package/esm/plugin/applepay/index.d.ts +17 -0
- package/esm/plugin/applepay/index.js +100 -0
- package/esm/{common/applepay/index.d.ts → plugin/applepay/service.d.ts} +1 -1
- package/esm/{common/applepay/index.js → plugin/applepay/service.js} +19 -28
- package/esm/plugin/component/index.d.ts +2 -2
- package/esm/plugin/component/index.js +9 -9
- package/esm/plugin/const.d.ts +2 -0
- package/esm/plugin/const.js +19 -0
- package/esm/plugin/type.d.ts +33 -0
- package/esm/plugin/type.js +2 -0
- package/esm/types/index.d.ts +13 -9
- package/esm/types/index.js +4 -7
- package/package.json +1 -1
- /package/esm/{common → plugin}/applepay/interface.d.ts +0 -0
- /package/esm/{common → plugin}/applepay/interface.js +0 -0
@@ -17,8 +17,6 @@ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e
|
|
17
17
|
*/
|
18
18
|
/* eslint-disable @typescript-eslint/no-explicit-any */
|
19
19
|
import { APPLE_PAY_VERSION, APPLE_PAY_RECURRING_VERSION } from "./interface";
|
20
|
-
import { ApplePaySubTypeEnum } from "../../types";
|
21
|
-
|
22
20
|
/**
|
23
21
|
* Apple Pay Service
|
24
22
|
*/
|
@@ -41,6 +39,7 @@ var ApplePayService = /*#__PURE__*/function () {
|
|
41
39
|
merchantIdentifier: _this.merchantIdentifier,
|
42
40
|
validationUrl: event.validationURL
|
43
41
|
}).then(function (merchantSessionObjectString) {
|
42
|
+
console.log("onvalidatemerchant#merchantSessionObjectString", merchantSessionObjectString);
|
44
43
|
var merchantSessionObject = JSON.parse(merchantSessionObjectString);
|
45
44
|
_this.session.completeMerchantValidation(merchantSessionObject);
|
46
45
|
_this.applePayTrace('completeMerchantValidation');
|
@@ -91,25 +90,23 @@ var ApplePayService = /*#__PURE__*/function () {
|
|
91
90
|
order = paymentSessionFactor.order,
|
92
91
|
recurringInfo = paymentSessionFactor.recurringInfo;
|
93
92
|
_this.merchantIdentifier = merchantInfo === null || merchantInfo === void 0 ? void 0 : merchantInfo.partnerId;
|
94
|
-
if (!(extendInfo !== null && extendInfo !== void 0 && extendInfo.merchantCapabilities) || !(extendInfo !== null && extendInfo !== void 0 && extendInfo.supportedNetworks) || !(merchantInfo !== null && merchantInfo !== void 0 && merchantInfo.registeredCountry) || !(paymentAmount !== null && paymentAmount !== void 0 && paymentAmount.currency) || !(paymentAmount !== null && paymentAmount !== void 0 && paymentAmount.value)) {
|
93
|
+
if (!(extendInfo !== null && extendInfo !== void 0 && extendInfo.merchantCapabilities) || !(extendInfo !== null && extendInfo !== void 0 && extendInfo.supportedNetworks) || !(merchantInfo !== null && merchantInfo !== void 0 && merchantInfo.registeredCountry) || !(paymentAmount !== null && paymentAmount !== void 0 && paymentAmount.currency) || !(paymentAmount !== null && paymentAmount !== void 0 && paymentAmount.value) || !(merchantInfo !== null && merchantInfo !== void 0 && merchantInfo.merchantName)) {
|
95
94
|
_this.logError("invalid session data");
|
96
95
|
return;
|
97
96
|
}
|
98
|
-
// todo 补充参数校验
|
99
97
|
if (recurringInfo) {
|
100
98
|
var _recurringInfo$interv;
|
101
|
-
if (!(order !== null && order !== void 0 && order.orderDescription) || recurringInfo !== null && recurringInfo !== void 0 && recurringInfo.managementURL) {
|
102
|
-
_this.logError("invalid session data");
|
99
|
+
if (!(order !== null && order !== void 0 && order.orderDescription) || !(recurringInfo !== null && recurringInfo !== void 0 && recurringInfo.managementURL)) {
|
100
|
+
_this.logError("invalid session data in recurring");
|
103
101
|
return;
|
104
102
|
}
|
105
|
-
// && order
|
106
103
|
var lineItem = {
|
107
104
|
type: 'final',
|
108
105
|
label: recurringInfo.title,
|
109
106
|
amount: paymentAmount === null || paymentAmount === void 0 ? void 0 : paymentAmount.value,
|
110
107
|
paymentTiming: "recurring",
|
111
|
-
recurringPaymentStartDate: recurringInfo !== null && recurringInfo !== void 0 && recurringInfo.startDate ? new Date(recurringInfo.startDate) : null,
|
112
|
-
recurringPaymentEndDate: recurringInfo !== null && recurringInfo !== void 0 && recurringInfo.endDate ? new Date(recurringInfo.endDate) : null,
|
108
|
+
recurringPaymentStartDate: recurringInfo !== null && recurringInfo !== void 0 && recurringInfo.startDate ? new Date(Number(recurringInfo.startDate) * 1000) : null,
|
109
|
+
recurringPaymentEndDate: recurringInfo !== null && recurringInfo !== void 0 && recurringInfo.endDate ? new Date(Number(recurringInfo.endDate) * 1000) : null,
|
113
110
|
recurringPaymentIntervalUnit: recurringInfo !== null && recurringInfo !== void 0 && recurringInfo.intervalUnit ? recurringInfo.intervalUnit : "month",
|
114
111
|
recurringPaymentIntervalCount: (_recurringInfo$interv = recurringInfo === null || recurringInfo === void 0 ? void 0 : recurringInfo.intervalCount) !== null && _recurringInfo$interv !== void 0 ? _recurringInfo$interv : 1
|
115
112
|
};
|
@@ -117,7 +114,6 @@ var ApplePayService = /*#__PURE__*/function () {
|
|
117
114
|
// 不知道显示在哪里
|
118
115
|
paymentDescription: order === null || order === void 0 ? void 0 : order.orderDescription,
|
119
116
|
billingAgreement: recurringInfo.agreementDescription,
|
120
|
-
// todo
|
121
117
|
regularBilling: lineItem,
|
122
118
|
managementURL: recurringInfo === null || recurringInfo === void 0 ? void 0 : recurringInfo.managementURL,
|
123
119
|
tokenNotificationURL: recurringInfo === null || recurringInfo === void 0 ? void 0 : recurringInfo.tokenNotificationURL
|
@@ -127,11 +123,7 @@ var ApplePayService = /*#__PURE__*/function () {
|
|
127
123
|
supportedNetworks: extendInfo === null || extendInfo === void 0 ? void 0 : extendInfo.supportedNetworks,
|
128
124
|
countryCode: merchantInfo === null || merchantInfo === void 0 ? void 0 : merchantInfo.registeredCountry,
|
129
125
|
currencyCode: paymentAmount === null || paymentAmount === void 0 ? void 0 : paymentAmount.currency,
|
130
|
-
total:
|
131
|
-
type: 'final',
|
132
|
-
label: extendInfo === null || extendInfo === void 0 ? void 0 : extendInfo.merchantName,
|
133
|
-
amount: paymentAmount === null || paymentAmount === void 0 ? void 0 : paymentAmount.value
|
134
|
-
},
|
126
|
+
total: lineItem,
|
135
127
|
recurringPaymentRequest: recurringRequest,
|
136
128
|
lineItems: [lineItem]
|
137
129
|
};
|
@@ -144,7 +136,7 @@ var ApplePayService = /*#__PURE__*/function () {
|
|
144
136
|
currencyCode: paymentAmount === null || paymentAmount === void 0 ? void 0 : paymentAmount.currency,
|
145
137
|
total: {
|
146
138
|
type: 'final',
|
147
|
-
label:
|
139
|
+
label: merchantInfo === null || merchantInfo === void 0 ? void 0 : merchantInfo.merchantName,
|
148
140
|
amount: paymentAmount === null || paymentAmount === void 0 ? void 0 : paymentAmount.value
|
149
141
|
}
|
150
142
|
};
|
@@ -154,7 +146,6 @@ var ApplePayService = /*#__PURE__*/function () {
|
|
154
146
|
_this.session.onpaymentauthorized = _this.onpaymentauthorized;
|
155
147
|
_this.session.oncancel = function () {
|
156
148
|
_this.logError('UserCancel');
|
157
|
-
_this.session.abort();
|
158
149
|
};
|
159
150
|
_this.session.begin();
|
160
151
|
_this.applePayTrace('sessionBegin');
|
@@ -185,21 +176,13 @@ var ApplePayService = /*#__PURE__*/function () {
|
|
185
176
|
* @returns
|
186
177
|
*/
|
187
178
|
}, {
|
188
|
-
key: "
|
189
|
-
value:
|
190
|
-
if (ApplePaySubTypeEnum.ApplePayRecurringPayment === subTypeEnum) {
|
191
|
-
return window.ApplePaySession ? window.ApplePaySession.canMakePayments() && window.ApplePaySession.supportsVersion(APPLE_PAY_RECURRING_VERSION) : false;
|
192
|
-
}
|
193
|
-
return window.ApplePaySession ? window.ApplePaySession.canMakePayments() && window.ApplePaySession.supportsVersion(APPLE_PAY_VERSION) : false;
|
194
|
-
}
|
195
|
-
|
179
|
+
key: "hasActiveCard",
|
180
|
+
value: (
|
196
181
|
/**
|
197
182
|
* has Active Card in Apple Pay
|
198
183
|
* @param merchantIdentifier
|
199
184
|
*/
|
200
|
-
|
201
|
-
key: "hasActiveCard",
|
202
|
-
value: (function () {
|
185
|
+
function () {
|
203
186
|
var _hasActiveCard = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee(merchantIdentifier) {
|
204
187
|
var _window3, ApplePaySession;
|
205
188
|
return _regeneratorRuntime().wrap(function _callee$(_context) {
|
@@ -224,6 +207,14 @@ var ApplePayService = /*#__PURE__*/function () {
|
|
224
207
|
}
|
225
208
|
return hasActiveCard;
|
226
209
|
}())
|
210
|
+
}], [{
|
211
|
+
key: "canMakePayments",
|
212
|
+
value: function canMakePayments(subTypeEnum) {
|
213
|
+
if ('ApplePayRecurringPayment' === subTypeEnum) {
|
214
|
+
return window.ApplePaySession ? window.ApplePaySession.canMakePayments() && window.ApplePaySession.supportsVersion(APPLE_PAY_RECURRING_VERSION) : false;
|
215
|
+
}
|
216
|
+
return window.ApplePaySession ? window.ApplePaySession.canMakePayments() && window.ApplePaySession.supportsVersion(APPLE_PAY_VERSION) : false;
|
217
|
+
}
|
227
218
|
}]);
|
228
219
|
return ApplePayService;
|
229
220
|
}();
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import type AMSCheckout from '../../core/instance';
|
2
2
|
import type { eventPayload, eventPayloadContext, IappendIframeNodesParams, IMerchantAppointParam, Iselector } from '../../types';
|
3
|
-
import { componentSignEnum, platformEnum, renderDisplayTypeEnum } from '../../types';
|
3
|
+
import { componentSignEnum, DeviceIdParameter, platformEnum, renderDisplayTypeEnum } from '../../types';
|
4
4
|
type IrenderFuncParams = (context: ComponentApp, selector: Iselector, renderDisplayType: renderDisplayTypeEnum) => Promise<void>;
|
5
5
|
export default class ComponentApp {
|
6
6
|
app: null | HTMLIFrameElement;
|
@@ -44,7 +44,7 @@ export default class ComponentApp {
|
|
44
44
|
setPreloadRender(renderFunc: any): void;
|
45
45
|
private initSecurity;
|
46
46
|
private logDeviceId;
|
47
|
-
|
47
|
+
getDeviceIdAndLog(deviceIdParameter?: DeviceIdParameter, isPolling?: boolean): Promise<string>;
|
48
48
|
/**
|
49
49
|
* @description render iframe content
|
50
50
|
*/
|
@@ -364,7 +364,7 @@ var ComponentApp = /*#__PURE__*/function () {
|
|
364
364
|
this._actionQueryPromise = new Promise( /*#__PURE__*/function () {
|
365
365
|
var _ref2 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee2(resolve, reject) {
|
366
366
|
var _this5$_renderParams, _this5$_renderParams2, _this5$_renderParams3, _this5$_renderParams4, _this5$_renderParams5;
|
367
|
-
var envInfo, params,
|
367
|
+
var envInfo, params, _ref3, extendInfo, enableVaultingApiOptimize, enableEasypayApiOptimize, extendInfoData, _this5$_renderParams6, _this5$_renderParams7, _ref4, _ref4$productSceneVer, productSceneVersion, _ref4$productScene, productScene, _ref5, _ref5$action, _ref5$action2, _ref5$action2$autoDeb, autoDebitWithToken, _this5$_renderParams8, _action$web, _action$wap, action, signType;
|
368
368
|
return _regeneratorRuntime().wrap(function _callee2$(_context2) {
|
369
369
|
while (1) switch (_context2.prev = _context2.next) {
|
370
370
|
case 0:
|
@@ -380,7 +380,7 @@ var ComponentApp = /*#__PURE__*/function () {
|
|
380
380
|
/**
|
381
381
|
* @description Simulated or unnecessary scenarios
|
382
382
|
*/
|
383
|
-
|
383
|
+
_ref3 = ((_this5$_renderParams4 = _this5._renderParams) === null || _this5$_renderParams4 === void 0 ? void 0 : _this5$_renderParams4.paymentSessionMetaData) || {}, extendInfo = _ref3.extendInfo;
|
384
384
|
enableVaultingApiOptimize = false;
|
385
385
|
enableEasypayApiOptimize = false;
|
386
386
|
try {
|
@@ -427,8 +427,8 @@ var ComponentApp = /*#__PURE__*/function () {
|
|
427
427
|
_context2.next = 26;
|
428
428
|
break;
|
429
429
|
}
|
430
|
-
|
431
|
-
|
430
|
+
_ref4 = params.paymentSessionConfig || {}, _ref4$productSceneVer = _ref4.productSceneVersion, productSceneVersion = _ref4$productSceneVer === void 0 ? '' : _ref4$productSceneVer, _ref4$productScene = _ref4.productScene, productScene = _ref4$productScene === void 0 ? '' : _ref4$productScene;
|
431
|
+
_ref5 = ((_this5$_renderParams6 = _this5._renderParams) === null || _this5$_renderParams6 === void 0 ? void 0 : _this5$_renderParams6.paymentSessionMetaData) || {}, _ref5$action = _ref5.action, _ref5$action2 = _ref5$action === void 0 ? {} : _ref5$action, _ref5$action2$autoDeb = _ref5$action2.autoDebitWithToken, autoDebitWithToken = _ref5$action2$autoDeb === void 0 ? false : _ref5$action2$autoDeb;
|
432
432
|
if (!((_this5$_renderParams7 = _this5._renderParams) !== null && _this5$_renderParams7 !== void 0 && (_this5$_renderParams7 = _this5$_renderParams7.paymentSessionMetaData) !== null && _this5$_renderParams7 !== void 0 && (_this5$_renderParams7 = _this5$_renderParams7.action) !== null && _this5$_renderParams7 !== void 0 && _this5$_renderParams7.skipSdkQuery && enableEasypayApiOptimize)) {
|
433
433
|
_context2.next = 21;
|
434
434
|
break;
|
@@ -542,7 +542,7 @@ var ComponentApp = /*#__PURE__*/function () {
|
|
542
542
|
|
543
543
|
// eslint-disable-next-line no-async-promise-executor
|
544
544
|
this._actionSubmitPromise = new Promise( /*#__PURE__*/function () {
|
545
|
-
var
|
545
|
+
var _ref6 = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(resolve) {
|
546
546
|
var _this6$_renderParams;
|
547
547
|
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
548
548
|
while (1) switch (_context3.prev = _context3.next) {
|
@@ -605,7 +605,7 @@ var ComponentApp = /*#__PURE__*/function () {
|
|
605
605
|
}, _callee3);
|
606
606
|
}));
|
607
607
|
return function (_x3) {
|
608
|
-
return
|
608
|
+
return _ref6.apply(this, arguments);
|
609
609
|
};
|
610
610
|
}());
|
611
611
|
}
|
@@ -1196,9 +1196,9 @@ var ComponentApp = /*#__PURE__*/function () {
|
|
1196
1196
|
}
|
1197
1197
|
}, {
|
1198
1198
|
key: "handleDeclareInfo",
|
1199
|
-
value: function handleDeclareInfo(
|
1200
|
-
var
|
1201
|
-
closeDialogData =
|
1199
|
+
value: function handleDeclareInfo(_ref7) {
|
1200
|
+
var _ref7$closeDialogData = _ref7.closeDialogData,
|
1201
|
+
closeDialogData = _ref7$closeDialogData === void 0 ? {} : _ref7$closeDialogData;
|
1202
1202
|
_handleDeclareInfo({
|
1203
1203
|
closeDialogData: closeDialogData
|
1204
1204
|
});
|
@@ -0,0 +1,19 @@
|
|
1
|
+
import { ApplePayActionEnum, PaymentActionEnum } from "../core/bus/interface";
|
2
|
+
import { paymentMethodCategoryTypeEnum, productSceneEnum, ProductSceneVersion } from "../types/index";
|
3
|
+
export var ExtendPlugin = [{
|
4
|
+
sessionMatcher: {
|
5
|
+
productScene: productSceneEnum.CASHIER_PAYMENT,
|
6
|
+
productSceneVersion: ProductSceneVersion.V1,
|
7
|
+
paymentMethodCategoryType: paymentMethodCategoryTypeEnum.CARD,
|
8
|
+
paymentMethodTypes: ["CARD_APPLE_PAY"]
|
9
|
+
},
|
10
|
+
paymentChannelMatcher: {
|
11
|
+
paymentMethod: 'ApplePay'
|
12
|
+
},
|
13
|
+
busActionNames: {
|
14
|
+
canMakePayments: ApplePayActionEnum.canMakePayments,
|
15
|
+
optional_init: PaymentActionEnum.optional_init,
|
16
|
+
createComponent: ApplePayActionEnum.createComponent,
|
17
|
+
destoryComponent: ApplePayActionEnum.destoryComponent
|
18
|
+
}
|
19
|
+
}];
|
@@ -0,0 +1,33 @@
|
|
1
|
+
import { BusSubscriber } from '../core/bus';
|
2
|
+
import { paymentMethodCategoryTypeEnum, productSceneEnum, ProductSceneVersion } from '../types';
|
3
|
+
export type IExtendPlugin = IExtendPluginItem[];
|
4
|
+
export interface ComponentActionNamesType {
|
5
|
+
canMakePayments?: string;
|
6
|
+
optional_init?: string;
|
7
|
+
createComponent?: string;
|
8
|
+
mountComponent?: string;
|
9
|
+
submit?: string;
|
10
|
+
destoryComponent?: string;
|
11
|
+
}
|
12
|
+
export type IExtendPluginItem = {
|
13
|
+
/**
|
14
|
+
* 以下为sessionData匹配的场景
|
15
|
+
*/
|
16
|
+
sessionMatcher?: {
|
17
|
+
productScene: productSceneEnum;
|
18
|
+
productSceneVersion: ProductSceneVersion;
|
19
|
+
paymentMethodCategoryType: paymentMethodCategoryTypeEnum;
|
20
|
+
paymentMethodTypes: string[];
|
21
|
+
};
|
22
|
+
/**
|
23
|
+
* 用于无sessionData场景,比如:canMakePayments
|
24
|
+
*/
|
25
|
+
paymentChannelMatcher?: {
|
26
|
+
paymentMethod: string;
|
27
|
+
};
|
28
|
+
/**
|
29
|
+
* 以下plugin 实现的定义
|
30
|
+
*/
|
31
|
+
busActionNames: ComponentActionNamesType;
|
32
|
+
busSubscriber?: BusSubscriber;
|
33
|
+
};
|
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;
|
@@ -239,8 +239,8 @@ export declare enum platformEnum {
|
|
239
239
|
desktop = "desktop",
|
240
240
|
mobile = "mobile"
|
241
241
|
}
|
242
|
-
type EventCallbackResult = {
|
243
|
-
result
|
242
|
+
export type EventCallbackResult = {
|
243
|
+
result?: {
|
244
244
|
resultCode: string;
|
245
245
|
resultStatus: string;
|
246
246
|
resultMessage: string;
|
@@ -471,11 +471,15 @@ export interface CallbackEventInfo {
|
|
471
471
|
export interface MultipleCallbackEvents {
|
472
472
|
[key: string]: CallbackEventInfo;
|
473
473
|
}
|
474
|
-
export
|
475
|
-
|
476
|
-
}
|
477
|
-
export declare enum ApplePaySubTypeEnum {
|
478
|
-
ApplePayRecurringPayment = "ApplePayRecurringPayment"
|
479
|
-
}
|
474
|
+
export type PaymentMethodTypeEnum = 'ApplePay';
|
475
|
+
export type ApplePaySubTypeEnum = 'ApplePayRecurringPayment';
|
480
476
|
export type SubPaymentMethodTypeEnum = ApplePaySubTypeEnum;
|
477
|
+
export declare enum ProductSceneVersion {
|
478
|
+
V1 = "1.0",
|
479
|
+
V2 = "2.0"
|
480
|
+
}
|
481
|
+
export type IAppendParams = {
|
482
|
+
componentSign: componentSignEnum;
|
483
|
+
iframeNodesParams: IappendIframeNodesParams;
|
484
|
+
};
|
481
485
|
export {};
|
package/esm/types/index.js
CHANGED
@@ -165,11 +165,8 @@ export var RedirectType = /*#__PURE__*/function (RedirectType) {
|
|
165
165
|
RedirectType["Unknown"] = "Unknown";
|
166
166
|
return RedirectType;
|
167
167
|
}({});
|
168
|
-
export var
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
export var ApplePaySubTypeEnum = /*#__PURE__*/function (ApplePaySubTypeEnum) {
|
173
|
-
ApplePaySubTypeEnum["ApplePayRecurringPayment"] = "ApplePayRecurringPayment";
|
174
|
-
return ApplePaySubTypeEnum;
|
168
|
+
export var ProductSceneVersion = /*#__PURE__*/function (ProductSceneVersion) {
|
169
|
+
ProductSceneVersion["V1"] = "1.0";
|
170
|
+
ProductSceneVersion["V2"] = "2.0";
|
171
|
+
return ProductSceneVersion;
|
175
172
|
}({});
|
package/package.json
CHANGED
File without changes
|
File without changes
|