@be-link/pos-cli-nodejs 1.0.71 → 1.0.73
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
|
@@ -206,11 +206,9 @@ export declare namespace Service {
|
|
|
206
206
|
/** 房间信息 */
|
|
207
207
|
roomInfo: {
|
|
208
208
|
/** 大床房数量 */
|
|
209
|
-
singleCount
|
|
209
|
+
singleCount: number;
|
|
210
210
|
/** 标间数量 */
|
|
211
|
-
doubleCount
|
|
212
|
-
/** 房型ID */
|
|
213
|
-
[roomId: string]: number | undefined;
|
|
211
|
+
doubleCount: number;
|
|
214
212
|
};
|
|
215
213
|
}
|
|
216
214
|
interface updateTradeOrderTouristsInfo {
|
|
@@ -14,6 +14,7 @@ export declare abstract class SkuInfoProxy {
|
|
|
14
14
|
abstract get departureDate(): number;
|
|
15
15
|
abstract get type(): SkuTypeEnum;
|
|
16
16
|
abstract get itemId(): string;
|
|
17
|
+
abstract get skuSnapShotId(): string;
|
|
17
18
|
abstract get applicablePeople(): string | undefined;
|
|
18
19
|
abstract get singleRoomPrice(): number | undefined;
|
|
19
20
|
abstract get singleRoomSettlementPrice(): number | undefined;
|
|
@@ -37,6 +38,7 @@ declare class SkuInfoProxyV1 extends SkuInfoProxy {
|
|
|
37
38
|
get costDays(): number | undefined;
|
|
38
39
|
get type(): SkuTypeEnum;
|
|
39
40
|
get itemId(): string;
|
|
41
|
+
get skuSnapShotId(): string;
|
|
40
42
|
get applicablePeople(): import("vitality-meta/enums/pos").ApplicablePeopleEnum;
|
|
41
43
|
get singleRoomPrice(): undefined;
|
|
42
44
|
get singleRoomSettlementPrice(): undefined;
|
|
@@ -59,6 +61,7 @@ declare class SkuInfoProxyV2 extends SkuInfoProxy {
|
|
|
59
61
|
get departureDate(): number;
|
|
60
62
|
get type(): SkuTypeEnum;
|
|
61
63
|
get itemId(): string;
|
|
64
|
+
get skuSnapShotId(): string;
|
|
62
65
|
get applicablePeople(): undefined;
|
|
63
66
|
get singleRoomPrice(): number;
|
|
64
67
|
get singleRoomSettlementPrice(): number;
|
|
@@ -81,6 +84,7 @@ declare class ShuttleBusSkuInfoProxyV2 extends SkuInfoProxy {
|
|
|
81
84
|
get departureDate(): number;
|
|
82
85
|
get type(): SkuTypeEnum;
|
|
83
86
|
get itemId(): string;
|
|
87
|
+
get skuSnapShotId(): string;
|
|
84
88
|
get applicablePeople(): undefined;
|
|
85
89
|
get singleRoomPrice(): undefined;
|
|
86
90
|
get singleRoomSettlementPrice(): undefined;
|
|
@@ -26,6 +26,7 @@ class SkuInfoProxyV1 extends SkuInfoProxy {
|
|
|
26
26
|
get costDays() { return this.orderSkuInfo.costDays; }
|
|
27
27
|
get type() { return this.orderSkuInfo.type; }
|
|
28
28
|
get itemId() { return this.orderSkuInfo.itemId; }
|
|
29
|
+
get skuSnapShotId() { return this.orderSkuInfo.skuSnapShotId; }
|
|
29
30
|
// uniq V1
|
|
30
31
|
get applicablePeople() { return this.orderSkuInfo.applicablePeople; }
|
|
31
32
|
// uniq V2
|
|
@@ -53,6 +54,7 @@ class SkuInfoProxyV2 extends SkuInfoProxy {
|
|
|
53
54
|
get departureDate() { return this.orderSkuInfo.departureDate; }
|
|
54
55
|
get type() { return this.orderSkuInfo.type; }
|
|
55
56
|
get itemId() { return this.orderSkuInfo.itemId; }
|
|
57
|
+
get skuSnapShotId() { return this.orderSkuInfo.skuSnapShotId; }
|
|
56
58
|
// uniq V1
|
|
57
59
|
get applicablePeople() { return undefined; }
|
|
58
60
|
// uniq item V2
|
|
@@ -80,6 +82,7 @@ class ShuttleBusSkuInfoProxyV2 extends SkuInfoProxy {
|
|
|
80
82
|
get departureDate() { return this.orderSkuInfo.departureDate; }
|
|
81
83
|
get type() { return this.orderSkuInfo.type; }
|
|
82
84
|
get itemId() { return this.orderSkuInfo.itemId; }
|
|
85
|
+
get skuSnapShotId() { return this.orderSkuInfo.skuSnapShotId; }
|
|
83
86
|
// uniq V1
|
|
84
87
|
get applicablePeople() { return undefined; }
|
|
85
88
|
// uniq V2
|