@be-link/pos-cli-nodejs 1.0.58 → 1.0.60
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
|
@@ -11,6 +11,7 @@ export declare abstract class SkuInfoProxy {
|
|
|
11
11
|
abstract get remainingQuantity(): number;
|
|
12
12
|
abstract get departureDate(): number;
|
|
13
13
|
abstract get type(): SkuTypeEnum;
|
|
14
|
+
abstract get itemId(): string;
|
|
14
15
|
abstract get applicablePeople(): string | undefined;
|
|
15
16
|
abstract get singleRoomPrice(): number | undefined;
|
|
16
17
|
abstract get singleRoomSettlementPrice(): number | undefined;
|
|
@@ -31,6 +32,7 @@ declare class SkuInfoProxyV1 extends SkuInfoProxy {
|
|
|
31
32
|
get departureDate(): number;
|
|
32
33
|
get costDays(): number | undefined;
|
|
33
34
|
get type(): SkuTypeEnum;
|
|
35
|
+
get itemId(): string;
|
|
34
36
|
get applicablePeople(): import("vitality-meta/enums/pos").ApplicablePeopleEnum;
|
|
35
37
|
get singleRoomPrice(): undefined;
|
|
36
38
|
get singleRoomSettlementPrice(): undefined;
|
|
@@ -50,6 +52,7 @@ declare class SkuInfoProxyV2 extends SkuInfoProxy {
|
|
|
50
52
|
get remainingQuantity(): number;
|
|
51
53
|
get departureDate(): number;
|
|
52
54
|
get type(): SkuTypeEnum;
|
|
55
|
+
get itemId(): string;
|
|
53
56
|
get applicablePeople(): undefined;
|
|
54
57
|
get singleRoomPrice(): number;
|
|
55
58
|
get singleRoomSettlementPrice(): number;
|
|
@@ -69,6 +72,7 @@ declare class ShuttleBusSkuInfoProxyV2 extends SkuInfoProxy {
|
|
|
69
72
|
get remainingQuantity(): number;
|
|
70
73
|
get departureDate(): number;
|
|
71
74
|
get type(): SkuTypeEnum;
|
|
75
|
+
get itemId(): string;
|
|
72
76
|
get applicablePeople(): undefined;
|
|
73
77
|
get singleRoomPrice(): undefined;
|
|
74
78
|
get singleRoomSettlementPrice(): undefined;
|
|
@@ -24,6 +24,7 @@ class SkuInfoProxyV1 extends SkuInfoProxy {
|
|
|
24
24
|
get departureDate() { return this.orderSkuInfo.departureDate; }
|
|
25
25
|
get costDays() { return this.orderSkuInfo.costDays; }
|
|
26
26
|
get type() { return this.orderSkuInfo.type; }
|
|
27
|
+
get itemId() { return this.orderSkuInfo.itemId; }
|
|
27
28
|
// uniq V1
|
|
28
29
|
get applicablePeople() { return this.orderSkuInfo.applicablePeople; }
|
|
29
30
|
// uniq V2
|
|
@@ -48,6 +49,7 @@ class SkuInfoProxyV2 extends SkuInfoProxy {
|
|
|
48
49
|
get remainingQuantity() { return this.orderSkuInfo.remainQuantity; }
|
|
49
50
|
get departureDate() { return this.orderSkuInfo.departureDate; }
|
|
50
51
|
get type() { return this.orderSkuInfo.type; }
|
|
52
|
+
get itemId() { return this.orderSkuInfo.itemId; }
|
|
51
53
|
// uniq V1
|
|
52
54
|
get applicablePeople() { return undefined; }
|
|
53
55
|
// uniq item V2
|
|
@@ -72,6 +74,7 @@ class ShuttleBusSkuInfoProxyV2 extends SkuInfoProxy {
|
|
|
72
74
|
get remainingQuantity() { return this.orderSkuInfo.remainQuantity; }
|
|
73
75
|
get departureDate() { return this.orderSkuInfo.departureDate; }
|
|
74
76
|
get type() { return this.orderSkuInfo.type; }
|
|
77
|
+
get itemId() { return this.orderSkuInfo.itemId; }
|
|
75
78
|
// uniq V1
|
|
76
79
|
get applicablePeople() { return undefined; }
|
|
77
80
|
// uniq V2
|