@pisell/pisellos 2.3.90 → 2.3.92
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/promotion/index.js +0 -9
- package/dist/modules/ProductList/index.js +1 -1
- package/dist/server/index.d.ts +3 -0
- package/dist/server/index.js +978 -885
- package/dist/solution/BookingByStep/index.d.ts +2 -2
- package/dist/solution/Sales/index.d.ts +4 -3
- package/dist/solution/Sales/index.js +23 -16
- package/lib/model/strategy/adapter/promotion/index.js +1 -46
- package/lib/modules/ProductList/index.js +1 -1
- package/lib/server/index.d.ts +3 -0
- package/lib/server/index.js +44 -1
- package/lib/solution/BookingByStep/index.d.ts +2 -2
- package/lib/solution/Sales/index.d.ts +4 -3
- package/lib/solution/Sales/index.js +19 -14
- package/package.json +1 -1
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
// 导出评估器
|
|
2
|
-
export { PromotionEvaluator } from "./evaluator";
|
|
3
|
-
|
|
4
|
-
// 导出适配器
|
|
5
|
-
export { PromotionAdapter } from "./adapter";
|
|
6
|
-
export { default } from "./adapter";
|
|
7
|
-
|
|
8
|
-
// 导出策略配置示例常量
|
|
9
|
-
export { X_ITEMS_FOR_Y_PRICE_STRATEGY, BUY_X_GET_Y_FREE_STRATEGY, ITEM_REWARD_STRATEGY } from "./examples";
|
|
@@ -218,7 +218,7 @@ export var ProductList = /*#__PURE__*/function (_BaseModule) {
|
|
|
218
218
|
open_quotation: 1
|
|
219
219
|
}), {}, {
|
|
220
220
|
open_bundle: 0,
|
|
221
|
-
exclude_extension_type: ['product_party', 'product_event', 'product_series_event', 'product_package_ticket', 'ticket', 'event_item'],
|
|
221
|
+
exclude_extension_type: ['product_party', 'product_event', 'product_series_event', 'product_package_ticket', 'ticket', 'event_item', 'appointment_ticket'],
|
|
222
222
|
with: _toConsumableArray(PRODUCT_QUERY_DATA_VARIANT_RELATIONS),
|
|
223
223
|
status: status,
|
|
224
224
|
num: 500,
|
package/dist/server/index.d.ts
CHANGED
|
@@ -128,6 +128,9 @@ declare class Server {
|
|
|
128
128
|
private runCheckoutSync;
|
|
129
129
|
private omitCheckoutSyncMode;
|
|
130
130
|
private buildRemoteCheckoutData;
|
|
131
|
+
private buildCheckoutDeviceHeaders;
|
|
132
|
+
private applyKioskCheckoutOperator;
|
|
133
|
+
private resolveKioskCheckoutOperatorId;
|
|
131
134
|
private mergeCheckoutSyncPayments;
|
|
132
135
|
private persistSyncedCheckoutOrder;
|
|
133
136
|
/**
|