@be-link/pos-cli-nodejs 1.0.150 → 1.0.152
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
package/types.d.ts
CHANGED
|
@@ -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; }
|