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.
@@ -98,7 +98,13 @@ export interface PrebookRateRequestV3 {
98
98
  usePaymentSdk?: boolean;
99
99
  trackingId?: string;
100
100
  voucherCode?: string;
101
- uberVoucherValue?: number;
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
- uberVoucher: {
125
- voucherValue: number;
126
- voucherCurrency: string;
127
- convertedVoucherValue: number;
128
- convertedVoucherCurrency: string;
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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "whitelabel-db",
3
- "version": "1.1.20",
3
+ "version": "1.1.21",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",