@pisell/pisellos 2.3.30 → 2.3.32
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/model/strategy/adapter/dataVariant/adapter.d.ts +50 -0
- package/dist/model/strategy/adapter/dataVariant/adapter.js +167 -0
- package/dist/model/strategy/adapter/dataVariant/evaluator.d.ts +89 -0
- package/dist/model/strategy/adapter/dataVariant/evaluator.js +780 -0
- package/dist/model/strategy/adapter/dataVariant/examples.d.ts +39 -0
- package/dist/model/strategy/adapter/dataVariant/examples.js +277 -0
- package/dist/model/strategy/adapter/dataVariant/index.d.ts +4 -0
- package/dist/model/strategy/adapter/dataVariant/index.js +4 -0
- package/dist/model/strategy/adapter/dataVariant/type.d.ts +148 -0
- package/dist/model/strategy/adapter/dataVariant/type.js +54 -0
- package/dist/model/strategy/adapter/index.d.ts +4 -0
- package/dist/model/strategy/adapter/index.js +5 -1
- package/dist/model/strategy/adapter/promotion/index.js +0 -9
- package/dist/modules/Discount/index.d.ts +5 -2
- package/dist/modules/Discount/index.js +30 -7
- package/dist/modules/Discount/types.d.ts +4 -0
- package/dist/modules/Order/index.d.ts +2 -1
- package/dist/modules/Order/index.js +25 -11
- package/dist/modules/Order/types.d.ts +2 -0
- package/dist/modules/Product/index.d.ts +1 -1
- package/dist/modules/Product/types.d.ts +22 -0
- package/dist/modules/ProductList/index.d.ts +1 -1
- package/dist/modules/ProductList/index.js +4 -2
- package/dist/modules/ProductList/types.d.ts +2 -0
- package/dist/server/index.d.ts +50 -0
- package/dist/server/index.js +1095 -849
- package/dist/server/modules/order/index.d.ts +8 -3
- package/dist/server/modules/order/index.js +765 -675
- package/dist/server/modules/products/index.d.ts +26 -7
- package/dist/server/modules/products/index.js +167 -76
- package/dist/server/modules/products/types.d.ts +14 -0
- package/dist/solution/BaseSales/index.d.ts +2 -0
- package/dist/solution/BaseSales/index.js +23 -13
- package/dist/solution/BookingByStep/index.d.ts +1 -1
- package/dist/solution/BookingTicket/types.d.ts +2 -0
- package/dist/solution/ShopDiscount/index.js +15 -14
- package/lib/model/strategy/adapter/dataVariant/adapter.d.ts +50 -0
- package/lib/model/strategy/adapter/dataVariant/adapter.js +149 -0
- package/lib/model/strategy/adapter/dataVariant/evaluator.d.ts +89 -0
- package/lib/model/strategy/adapter/dataVariant/evaluator.js +583 -0
- package/lib/model/strategy/adapter/dataVariant/examples.d.ts +39 -0
- package/lib/model/strategy/adapter/dataVariant/examples.js +293 -0
- package/lib/model/strategy/adapter/dataVariant/index.d.ts +4 -0
- package/lib/model/strategy/adapter/dataVariant/index.js +38 -0
- package/lib/model/strategy/adapter/dataVariant/type.d.ts +148 -0
- package/lib/model/strategy/adapter/dataVariant/type.js +31 -0
- package/lib/model/strategy/adapter/index.d.ts +4 -0
- package/lib/model/strategy/adapter/index.js +13 -2
- package/lib/model/strategy/adapter/promotion/index.js +0 -49
- package/lib/modules/Discount/index.d.ts +5 -2
- package/lib/modules/Discount/index.js +23 -3
- package/lib/modules/Discount/types.d.ts +4 -0
- package/lib/modules/Order/index.d.ts +2 -1
- package/lib/modules/Order/index.js +13 -1
- package/lib/modules/Order/types.d.ts +2 -0
- package/lib/modules/Product/index.d.ts +1 -1
- package/lib/modules/Product/types.d.ts +22 -0
- package/lib/modules/ProductList/index.d.ts +1 -1
- package/lib/modules/ProductList/index.js +4 -2
- package/lib/modules/ProductList/types.d.ts +2 -0
- package/lib/server/index.d.ts +50 -0
- package/lib/server/index.js +206 -29
- package/lib/server/modules/order/index.d.ts +8 -3
- package/lib/server/modules/order/index.js +152 -43
- package/lib/server/modules/products/index.d.ts +26 -7
- package/lib/server/modules/products/index.js +114 -35
- package/lib/server/modules/products/types.d.ts +14 -0
- package/lib/solution/BaseSales/index.d.ts +2 -0
- package/lib/solution/BaseSales/index.js +12 -3
- package/lib/solution/BookingByStep/index.d.ts +1 -1
- package/lib/solution/BookingTicket/types.d.ts +2 -0
- package/lib/solution/ShopDiscount/index.js +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import type { EvaluationResult, RuntimeContext } from '../../type';
|
|
2
|
+
import type { BusinessAdapter } from '../type';
|
|
3
|
+
import type { DataVariantBusinessData, DataVariantProduct } from './type';
|
|
4
|
+
/**
|
|
5
|
+
* Data Variant 适配器。
|
|
6
|
+
*
|
|
7
|
+
* 负责把智能定价运行态数据转换为 StrategyEngine 能识别的 attributes。
|
|
8
|
+
*/
|
|
9
|
+
export declare class DataVariantAdapter implements BusinessAdapter {
|
|
10
|
+
name: string;
|
|
11
|
+
version: string;
|
|
12
|
+
/**
|
|
13
|
+
* 准备批量全局上下文。
|
|
14
|
+
*
|
|
15
|
+
* 这里只放不依赖单个商品的字段,用于预计算 schedule/channel/orderType 等条件。
|
|
16
|
+
*/
|
|
17
|
+
prepareContext(businessData: DataVariantBusinessData): RuntimeContext;
|
|
18
|
+
/**
|
|
19
|
+
* 准备全局预计算上下文。
|
|
20
|
+
*/
|
|
21
|
+
prepareGlobalContext(businessData: DataVariantBusinessData): RuntimeContext;
|
|
22
|
+
/**
|
|
23
|
+
* 准备单商品上下文。
|
|
24
|
+
*
|
|
25
|
+
* 商品级条件只在当前商品 data_variants 引用到对应规则后才评估。
|
|
26
|
+
*/
|
|
27
|
+
prepareProductContext(businessData: DataVariantBusinessData, product: DataVariantProduct): RuntimeContext;
|
|
28
|
+
transformResult(result: EvaluationResult): EvaluationResult;
|
|
29
|
+
formatConfig(result: EvaluationResult, businessData?: DataVariantBusinessData): {
|
|
30
|
+
result: EvaluationResult;
|
|
31
|
+
businessData?: DataVariantBusinessData;
|
|
32
|
+
};
|
|
33
|
+
/**
|
|
34
|
+
* 构建 menu_match 使用的轻量商品对象。
|
|
35
|
+
*
|
|
36
|
+
* collection_ids 来自商品 collection 字段,避免 operator 读取复杂商品对象。
|
|
37
|
+
*/
|
|
38
|
+
buildProductValue(product: DataVariantProduct): {
|
|
39
|
+
id: number;
|
|
40
|
+
product_variant_id: number;
|
|
41
|
+
collection_ids: number[];
|
|
42
|
+
};
|
|
43
|
+
private toNumber;
|
|
44
|
+
/**
|
|
45
|
+
* 归一化客户 id:无效值返回 undefined,有效值统一为 number。
|
|
46
|
+
*/
|
|
47
|
+
private normalizeCustomerId;
|
|
48
|
+
private normalizeNumberArray;
|
|
49
|
+
}
|
|
50
|
+
export default DataVariantAdapter;
|
|
@@ -0,0 +1,167 @@
|
|
|
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
|
+
/**
|
|
11
|
+
* Data Variant 适配器。
|
|
12
|
+
*
|
|
13
|
+
* 负责把智能定价运行态数据转换为 StrategyEngine 能识别的 attributes。
|
|
14
|
+
*/
|
|
15
|
+
export var DataVariantAdapter = /*#__PURE__*/function () {
|
|
16
|
+
function DataVariantAdapter() {
|
|
17
|
+
_classCallCheck(this, DataVariantAdapter);
|
|
18
|
+
_defineProperty(this, "name", 'DataVariantAdapter');
|
|
19
|
+
_defineProperty(this, "version", '1.0.0');
|
|
20
|
+
}
|
|
21
|
+
_createClass(DataVariantAdapter, [{
|
|
22
|
+
key: "prepareContext",
|
|
23
|
+
value:
|
|
24
|
+
/**
|
|
25
|
+
* 准备批量全局上下文。
|
|
26
|
+
*
|
|
27
|
+
* 这里只放不依赖单个商品的字段,用于预计算 schedule/channel/orderType 等条件。
|
|
28
|
+
*/
|
|
29
|
+
function prepareContext(businessData) {
|
|
30
|
+
return this.prepareGlobalContext(businessData);
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* 准备全局预计算上下文。
|
|
35
|
+
*/
|
|
36
|
+
}, {
|
|
37
|
+
key: "prepareGlobalContext",
|
|
38
|
+
value: function prepareGlobalContext(businessData) {
|
|
39
|
+
var products = businessData.products,
|
|
40
|
+
scheduleDateTime = businessData.scheduleDateTime,
|
|
41
|
+
channel = businessData.channel,
|
|
42
|
+
orderType = businessData.orderType,
|
|
43
|
+
businessCode = businessData.businessCode,
|
|
44
|
+
customerId = businessData.customerId,
|
|
45
|
+
availableWalletIds = businessData.availableWalletIds,
|
|
46
|
+
custom = businessData.custom;
|
|
47
|
+
|
|
48
|
+
// customer_id 统一归一化为 number,避免 in 运算符因 string/number 不一致而误判
|
|
49
|
+
var normalizedCustomerId = this.normalizeCustomerId(customerId);
|
|
50
|
+
var normalizedAvailableWalletIds = this.normalizeNumberArray(availableWalletIds !== null && availableWalletIds !== void 0 ? availableWalletIds : custom === null || custom === void 0 ? void 0 : custom.available_wallet_ids);
|
|
51
|
+
var resolvedBusinessCode = businessCode || (custom === null || custom === void 0 ? void 0 : custom.business_code) || (custom === null || custom === void 0 ? void 0 : custom.businessCode) || '';
|
|
52
|
+
return {
|
|
53
|
+
entities: {
|
|
54
|
+
products: products
|
|
55
|
+
},
|
|
56
|
+
attributes: _objectSpread(_objectSpread({}, custom), {}, {
|
|
57
|
+
schedule: scheduleDateTime || '',
|
|
58
|
+
channel: channel || (custom === null || custom === void 0 ? void 0 : custom.channel) || '',
|
|
59
|
+
orderType: orderType || (custom === null || custom === void 0 ? void 0 : custom.orderType) || (custom === null || custom === void 0 ? void 0 : custom.order_type) || '',
|
|
60
|
+
// snake_case 与策略配置 field 对齐;customerId 保留兼容旧配置
|
|
61
|
+
customer_id: normalizedCustomerId,
|
|
62
|
+
customerId: normalizedCustomerId,
|
|
63
|
+
available_wallet_ids: normalizedAvailableWalletIds,
|
|
64
|
+
availableWalletIds: normalizedAvailableWalletIds,
|
|
65
|
+
business_code: resolvedBusinessCode
|
|
66
|
+
}),
|
|
67
|
+
metadata: {
|
|
68
|
+
timestamp: Date.now()
|
|
69
|
+
}
|
|
70
|
+
};
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
/**
|
|
74
|
+
* 准备单商品上下文。
|
|
75
|
+
*
|
|
76
|
+
* 商品级条件只在当前商品 data_variants 引用到对应规则后才评估。
|
|
77
|
+
*/
|
|
78
|
+
}, {
|
|
79
|
+
key: "prepareProductContext",
|
|
80
|
+
value: function prepareProductContext(businessData, product) {
|
|
81
|
+
var base = this.prepareGlobalContext(businessData);
|
|
82
|
+
var productValue = this.buildProductValue(product);
|
|
83
|
+
return _objectSpread(_objectSpread({}, base), {}, {
|
|
84
|
+
entities: _objectSpread(_objectSpread({}, base.entities), {}, {
|
|
85
|
+
currentProduct: product
|
|
86
|
+
}),
|
|
87
|
+
attributes: _objectSpread(_objectSpread({}, base.attributes), {}, {
|
|
88
|
+
product: productValue,
|
|
89
|
+
productIdAndVariantId: {
|
|
90
|
+
product_id: productValue.id,
|
|
91
|
+
product_variant_id: productValue.product_variant_id
|
|
92
|
+
}
|
|
93
|
+
})
|
|
94
|
+
});
|
|
95
|
+
}
|
|
96
|
+
}, {
|
|
97
|
+
key: "transformResult",
|
|
98
|
+
value: function transformResult(result) {
|
|
99
|
+
return result;
|
|
100
|
+
}
|
|
101
|
+
}, {
|
|
102
|
+
key: "formatConfig",
|
|
103
|
+
value: function formatConfig(result, businessData) {
|
|
104
|
+
return {
|
|
105
|
+
result: result,
|
|
106
|
+
businessData: businessData
|
|
107
|
+
};
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
/**
|
|
111
|
+
* 构建 menu_match 使用的轻量商品对象。
|
|
112
|
+
*
|
|
113
|
+
* collection_ids 来自商品 collection 字段,避免 operator 读取复杂商品对象。
|
|
114
|
+
*/
|
|
115
|
+
}, {
|
|
116
|
+
key: "buildProductValue",
|
|
117
|
+
value: function buildProductValue(product) {
|
|
118
|
+
var _product$id,
|
|
119
|
+
_product$product_vari,
|
|
120
|
+
_this = this;
|
|
121
|
+
var productId = this.toNumber((_product$id = product.id) !== null && _product$id !== void 0 ? _product$id : product.product_id);
|
|
122
|
+
var variantId = this.toNumber((_product$product_vari = product.product_variant_id) !== null && _product$product_vari !== void 0 ? _product$product_vari : product.variant_id);
|
|
123
|
+
var collectionIds = Array.isArray(product.collection) ? product.collection.map(function (item) {
|
|
124
|
+
return _this.toNumber(item === null || item === void 0 ? void 0 : item.id);
|
|
125
|
+
}).filter(function (id) {
|
|
126
|
+
return id > 0;
|
|
127
|
+
}) : [];
|
|
128
|
+
return {
|
|
129
|
+
id: productId,
|
|
130
|
+
product_variant_id: variantId,
|
|
131
|
+
collection_ids: collectionIds
|
|
132
|
+
};
|
|
133
|
+
}
|
|
134
|
+
}, {
|
|
135
|
+
key: "toNumber",
|
|
136
|
+
value: function toNumber(value) {
|
|
137
|
+
var parsed = Number(value);
|
|
138
|
+
return Number.isFinite(parsed) ? parsed : 0;
|
|
139
|
+
}
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* 归一化客户 id:无效值返回 undefined,有效值统一为 number。
|
|
143
|
+
*/
|
|
144
|
+
}, {
|
|
145
|
+
key: "normalizeCustomerId",
|
|
146
|
+
value: function normalizeCustomerId(value) {
|
|
147
|
+
if (value === undefined || value === null || value === '') {
|
|
148
|
+
return undefined;
|
|
149
|
+
}
|
|
150
|
+
var parsed = Number(value);
|
|
151
|
+
return Number.isFinite(parsed) && parsed > 0 ? parsed : undefined;
|
|
152
|
+
}
|
|
153
|
+
}, {
|
|
154
|
+
key: "normalizeNumberArray",
|
|
155
|
+
value: function normalizeNumberArray(value) {
|
|
156
|
+
if (!Array.isArray(value)) return [];
|
|
157
|
+
var ids = value.map(function (item) {
|
|
158
|
+
return Number(item);
|
|
159
|
+
}).filter(function (item) {
|
|
160
|
+
return Number.isFinite(item) && item > 0;
|
|
161
|
+
});
|
|
162
|
+
return Array.from(new Set(ids));
|
|
163
|
+
}
|
|
164
|
+
}]);
|
|
165
|
+
return DataVariantAdapter;
|
|
166
|
+
}();
|
|
167
|
+
export default DataVariantAdapter;
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
import type { ConditionRule, StrategyConfig } from '../../type';
|
|
2
|
+
import type { ConditionScope, DataVariantBusinessData, DataVariantMenu, DataVariantRuleMetadata, MenuScope, ResolvedDataVariantResult } from './type';
|
|
3
|
+
/**
|
|
4
|
+
* Data Variant 评估器。
|
|
5
|
+
*
|
|
6
|
+
* 当前阶段只提供策略模型能力和示例验证,不接入 ProductList 业务链路。
|
|
7
|
+
*/
|
|
8
|
+
export declare class DataVariantEvaluator {
|
|
9
|
+
private adapter;
|
|
10
|
+
private strategyConfigs;
|
|
11
|
+
constructor();
|
|
12
|
+
/**
|
|
13
|
+
* 设置策略配置列表,仅保留 metadata.type === 'data_variant' 的策略。
|
|
14
|
+
*/
|
|
15
|
+
setStrategyConfigs(configs: StrategyConfig[]): void;
|
|
16
|
+
getStrategyConfigs(): StrategyConfig<DataVariantRuleMetadata>[];
|
|
17
|
+
/**
|
|
18
|
+
* 批量解析商品 Data Variant。
|
|
19
|
+
*
|
|
20
|
+
* 先执行全局预计算,再只针对商品自身 data_variants 引用到的规则做商品级判断。
|
|
21
|
+
*/
|
|
22
|
+
resolveProducts(businessData: DataVariantBusinessData): ResolvedDataVariantResult;
|
|
23
|
+
/**
|
|
24
|
+
* 根据 operator/field 判断条件是否依赖当前商品。
|
|
25
|
+
*/
|
|
26
|
+
getConditionScope(rule: ConditionRule): ConditionScope;
|
|
27
|
+
/**
|
|
28
|
+
* 将餐牌 partyroom_package 预构建为 Map/Set 索引。
|
|
29
|
+
*/
|
|
30
|
+
buildMenuScopeMap(menuList: DataVariantMenu[]): Map<number, MenuScope>;
|
|
31
|
+
/**
|
|
32
|
+
* 从当前策略中所有 schedule_match.value 绑定的 schedule_id 提取时间点。
|
|
33
|
+
*
|
|
34
|
+
* 这里不依赖餐牌,只读取策略配置和调用方传入的 scheduleList。
|
|
35
|
+
*/
|
|
36
|
+
buildScheduleTimePoints(strategyConfigs: StrategyConfig<DataVariantRuleMetadata>[], scheduleList: NonNullable<DataVariantBusinessData['scheduleList']>): string[];
|
|
37
|
+
private buildGlobalEffectiveRuleMap;
|
|
38
|
+
private resolveProduct;
|
|
39
|
+
/**
|
|
40
|
+
* 解析套餐子商品上的 Data Variant 覆盖。
|
|
41
|
+
*
|
|
42
|
+
* bundle_item 以 bundle_product_id / bundle_variant_id 作为商品身份参与 product_match 等条件判断。
|
|
43
|
+
*/
|
|
44
|
+
private resolveProductBundleItems;
|
|
45
|
+
/**
|
|
46
|
+
* 将 bundle_item 转为 DataVariantProduct 并评估 data_variants。
|
|
47
|
+
*/
|
|
48
|
+
private resolveBundleItem;
|
|
49
|
+
/**
|
|
50
|
+
* bundle_item 的商品身份映射:bundle_product_id + bundle_variant_id。
|
|
51
|
+
*/
|
|
52
|
+
private toBundleItemDataVariantProduct;
|
|
53
|
+
/**
|
|
54
|
+
* 仅回写命中的字段,避免污染 bundle_item 的结构字段。
|
|
55
|
+
*/
|
|
56
|
+
private mergeBundleItemResolvedData;
|
|
57
|
+
private evaluateProductRules;
|
|
58
|
+
/**
|
|
59
|
+
* 拆分策略条件。
|
|
60
|
+
*
|
|
61
|
+
* 当前 MVP 支持顶层 and 原子条件拆分;复杂条件保守地放到商品级完整判断。
|
|
62
|
+
*/
|
|
63
|
+
private splitStrategyConfig;
|
|
64
|
+
private createEngine;
|
|
65
|
+
private evaluateScheduleMatch;
|
|
66
|
+
private evaluateMenuMatch;
|
|
67
|
+
private evaluateArrayIntersects;
|
|
68
|
+
private collectScheduleIdsFromStrategies;
|
|
69
|
+
private extractTimePointsFromSchedules;
|
|
70
|
+
private addDateTimePoint;
|
|
71
|
+
private addRawTimePoint;
|
|
72
|
+
private extractTimeFromDateTime;
|
|
73
|
+
private normalizeTime;
|
|
74
|
+
private timeToMinutes;
|
|
75
|
+
private isProductInMenuScope;
|
|
76
|
+
private mergeMatchedVariants;
|
|
77
|
+
private getProductDataVariants;
|
|
78
|
+
private normalizeStrategyConfigs;
|
|
79
|
+
private isStrategyActive;
|
|
80
|
+
private getStrategyPriority;
|
|
81
|
+
private createAlwaysTrueConditions;
|
|
82
|
+
private flattenConditionRules;
|
|
83
|
+
private isConditionGroup;
|
|
84
|
+
private normalizeNumberArray;
|
|
85
|
+
private normalizeComparableArray;
|
|
86
|
+
private buildProductKey;
|
|
87
|
+
private toNumber;
|
|
88
|
+
}
|
|
89
|
+
export default DataVariantEvaluator;
|