whitelabel-db 1.1.20 → 1.1.21
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/dist/libs/liteapiv3.d.ts +15 -7
- package/package.json +1 -1
package/dist/libs/liteapiv3.d.ts
CHANGED
|
@@ -98,7 +98,13 @@ export interface PrebookRateRequestV3 {
|
|
|
98
98
|
usePaymentSdk?: boolean;
|
|
99
99
|
trackingId?: string;
|
|
100
100
|
voucherCode?: string;
|
|
101
|
-
|
|
101
|
+
ancillaryVouchers?: {
|
|
102
|
+
ancillary: string;
|
|
103
|
+
value: number;
|
|
104
|
+
currency: string;
|
|
105
|
+
convertedValue: number;
|
|
106
|
+
convertedCurrency: string;
|
|
107
|
+
}[];
|
|
102
108
|
}
|
|
103
109
|
export interface PrebookRateV3 {
|
|
104
110
|
prebookId: string;
|
|
@@ -121,12 +127,14 @@ export interface PrebookRateV3 {
|
|
|
121
127
|
voucherCode: string;
|
|
122
128
|
voucherTotalAmount: number;
|
|
123
129
|
isPackageRate: boolean;
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
+
ancillaryVouchersRequest?: {
|
|
131
|
+
ancillary: string;
|
|
132
|
+
value: number;
|
|
133
|
+
currency: string;
|
|
134
|
+
convertedValue: number;
|
|
135
|
+
convertedCurrency: string;
|
|
136
|
+
}[];
|
|
137
|
+
ancillariesTotalAmount?: number;
|
|
130
138
|
}
|
|
131
139
|
export interface GuestInfoV3 {
|
|
132
140
|
guestFirstName: string;
|