@be-link/pos-cli-nodejs 1.0.149 → 1.0.151
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/package.json
CHANGED
|
@@ -394,7 +394,7 @@ export declare namespace Service {
|
|
|
394
394
|
/** 供应商id */
|
|
395
395
|
supplierIds?: string[];
|
|
396
396
|
/** 订单来源人门店ID */
|
|
397
|
-
|
|
397
|
+
fromEcsStoreIds?: string[];
|
|
398
398
|
/** 支付时间范围 */
|
|
399
399
|
paidAtRange?: [number, number];
|
|
400
400
|
/** 来源类型 */
|
|
@@ -824,7 +824,7 @@ export declare namespace Service {
|
|
|
824
824
|
/** 供应商id */
|
|
825
825
|
supplierIds?: string[];
|
|
826
826
|
/** 订单来源人门店ID */
|
|
827
|
-
|
|
827
|
+
fromEcsStoreIds?: string[];
|
|
828
828
|
/** 支付时间范围 */
|
|
829
829
|
paidAtRange?: [number, number];
|
|
830
830
|
/** 来源类型 */
|
|
@@ -55,7 +55,6 @@ declare class ItemInfoProxyV1 extends ItemInfoProxy {
|
|
|
55
55
|
get categoryTwo(): string;
|
|
56
56
|
get isSelfLead(): number;
|
|
57
57
|
get isHighCommission(): number;
|
|
58
|
-
get sourceType(): import("vitality-meta/enums/pos").OrderSourceTypeEnum;
|
|
59
58
|
get canUpdateMealInfo(): number | boolean;
|
|
60
59
|
get storeId(): string | undefined;
|
|
61
60
|
get venueId(): string | undefined;
|
|
@@ -22,7 +22,6 @@ class ItemInfoProxyV1 extends ItemInfoProxy {
|
|
|
22
22
|
get categoryTwo() { return this.itemInfo.categoryTwo; }
|
|
23
23
|
get isSelfLead() { return this.itemInfo.isSelfLead; }
|
|
24
24
|
get isHighCommission() { return this.itemInfo.isHighCommission; }
|
|
25
|
-
get sourceType() { return this.itemInfo.sourceType; }
|
|
26
25
|
get canUpdateMealInfo() { return this.itemInfo.canUpdateMealInfo; }
|
|
27
26
|
get storeId() { return this.itemInfo.storeId; }
|
|
28
27
|
get venueId() { return this.itemInfo.storeId; }
|