@be-link/pos-cli-nodejs 1.0.131 → 1.0.133

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@be-link/pos-cli-nodejs",
3
- "version": "1.0.131",
3
+ "version": "1.0.133",
4
4
  "description": "正向订单服务Nodejs客户端",
5
5
  "main": "index.js",
6
6
  "repository": {
@@ -12,6 +12,7 @@ export declare abstract class ItemInfoProxy {
12
12
  abstract get categoryOne(): string;
13
13
  abstract get categoryTwo(): string;
14
14
  abstract get isSelfLead(): number;
15
+ abstract get isHighCommission(): number | boolean | undefined;
15
16
  abstract get canUpdateMealInfo(): number | boolean;
16
17
  /** @deprecated 请使用 venueId 代替 */
17
18
  abstract get storeId(): string | undefined;
@@ -52,6 +53,7 @@ declare class ItemInfoProxyV1 extends ItemInfoProxy {
52
53
  get categoryOne(): string;
53
54
  get categoryTwo(): string;
54
55
  get isSelfLead(): number;
56
+ get isHighCommission(): number;
55
57
  get canUpdateMealInfo(): number | boolean;
56
58
  get storeId(): string | undefined;
57
59
  get venueId(): string | undefined;
@@ -106,6 +108,7 @@ declare class ItemInfoProxyV2 extends ItemInfoProxy {
106
108
  get categoryOne(): string;
107
109
  get categoryTwo(): string;
108
110
  get isSelfLead(): number;
111
+ get isHighCommission(): number | undefined;
109
112
  get canUpdateMealInfo(): number;
110
113
  get storeId(): string;
111
114
  get venueId(): string;
@@ -21,6 +21,7 @@ class ItemInfoProxyV1 extends ItemInfoProxy {
21
21
  get categoryOne() { return this.itemInfo.categoryOne; }
22
22
  get categoryTwo() { return this.itemInfo.categoryTwo; }
23
23
  get isSelfLead() { return this.itemInfo.isSelfLead; }
24
+ get isHighCommission() { return this.itemInfo.isHighCommission; }
24
25
  get canUpdateMealInfo() { return this.itemInfo.canUpdateMealInfo; }
25
26
  get storeId() { return this.itemInfo.storeId; }
26
27
  get venueId() { return this.itemInfo.storeId; }
@@ -69,6 +70,7 @@ class ItemInfoProxyV2 extends ItemInfoProxy {
69
70
  get categoryOne() { return this.itemInfo.basicInfo.categoryOne; }
70
71
  get categoryTwo() { return this.itemInfo.basicInfo.categoryTwo; }
71
72
  get isSelfLead() { return this.itemInfo.attributes.isSelfLead; }
73
+ get isHighCommission() { return this.itemInfo.attributes.isHighCommission; }
72
74
  get canUpdateMealInfo() { return this.itemInfo.attributes.canModifyMeal; }
73
75
  get storeId() { return this.itemInfo.basicInfo.venueId; }
74
76
  get venueId() { return this.itemInfo.basicInfo.venueId; }