@be-link/pos-cli-nodejs 1.0.177 → 1.0.178
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
|
@@ -16,6 +16,7 @@ export declare abstract class ItemInfoProxy {
|
|
|
16
16
|
abstract get canUpdateMealInfo(): number | boolean;
|
|
17
17
|
abstract get quantity(): number | undefined;
|
|
18
18
|
abstract get commissionFee(): number | undefined;
|
|
19
|
+
abstract get unitDeposit(): number | undefined;
|
|
19
20
|
/** @deprecated 请使用 venueId 代替 */
|
|
20
21
|
abstract get storeId(): string | undefined;
|
|
21
22
|
abstract get venueId(): string | undefined;
|
|
@@ -60,6 +61,7 @@ declare class ItemInfoProxyV1 extends ItemInfoProxy {
|
|
|
60
61
|
get canUpdateMealInfo(): number | boolean;
|
|
61
62
|
get quantity(): number | undefined;
|
|
62
63
|
get commissionFee(): number | undefined;
|
|
64
|
+
get unitDeposit(): number | undefined;
|
|
63
65
|
get storeId(): string | undefined;
|
|
64
66
|
get venueId(): string | undefined;
|
|
65
67
|
get status(): string;
|
|
@@ -118,6 +120,7 @@ declare class ItemInfoProxyV2 extends ItemInfoProxy {
|
|
|
118
120
|
get canUpdateMealInfo(): number;
|
|
119
121
|
get quantity(): number | undefined;
|
|
120
122
|
get commissionFee(): number | undefined;
|
|
123
|
+
get unitDeposit(): number | undefined;
|
|
121
124
|
get storeId(): string;
|
|
122
125
|
get venueId(): string;
|
|
123
126
|
get status(): ItemStatus;
|
|
@@ -25,6 +25,7 @@ class ItemInfoProxyV1 extends ItemInfoProxy {
|
|
|
25
25
|
get canUpdateMealInfo() { return this.itemInfo.canUpdateMealInfo; }
|
|
26
26
|
get quantity() { return this.itemInfo.quantity; }
|
|
27
27
|
get commissionFee() { return this.itemInfo.commissionFee; }
|
|
28
|
+
get unitDeposit() { return this.itemInfo.unitDeposit; }
|
|
28
29
|
get storeId() { return this.itemInfo.storeId; }
|
|
29
30
|
get venueId() { return this.itemInfo.storeId; }
|
|
30
31
|
get status() { return this.itemInfo.status; }
|
|
@@ -81,6 +82,9 @@ class ItemInfoProxyV2 extends ItemInfoProxy {
|
|
|
81
82
|
get commissionFee() {
|
|
82
83
|
return this.itemInfo.commissionFee;
|
|
83
84
|
}
|
|
85
|
+
get unitDeposit() {
|
|
86
|
+
return this.itemInfo.unitDeposit;
|
|
87
|
+
}
|
|
84
88
|
get storeId() { return this.itemInfo.basicInfo.venueId; }
|
|
85
89
|
get venueId() { return this.itemInfo.basicInfo.venueId; }
|
|
86
90
|
get status() { return this.itemInfo.basicInfo.status; }
|