@qite/tide-client 1.1.56 → 1.1.58

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.
@@ -11,6 +11,8 @@ export * from "./booking-price-detail";
11
11
  export * from "./booking-price-details";
12
12
  export * from "./booking-price-per-pax";
13
13
  export * from "./booking-product-notification";
14
+ export * from "./booking-room-status";
15
+ export * from "./booking-room-status-option";
14
16
  export * from "./booking-travel-agent";
15
17
  export * from "./booking-validity-line";
16
18
  export * from "./booking-voucher-result";
@@ -14,11 +14,14 @@ export * from "./booking-package-hotel";
14
14
  export * from "./booking-package-hotel-option";
15
15
  export * from "./booking-package-hotel-room";
16
16
  export * from "./booking-package-line";
17
+ export * from "./booking-package-option";
17
18
  export * from "./booking-package-pax";
18
19
  export * from "./booking-package-request-room";
19
20
  export * from "./booking-package-room";
20
21
  export * from "./booking-package-room-option";
22
+ export * from "./booking-package-tag";
21
23
  export * from "./per-booking-package-option";
22
24
  export * from "./per-package-option";
23
25
  export * from "./per-pax-package-option";
24
26
  export * from "./per-unit-package-option";
27
+ export * from "./room-option-pax-type";
@@ -28,4 +28,6 @@ export declare const ServiceType: {
28
28
  voucher: number;
29
29
  reduction: number;
30
30
  rocket: number;
31
+ tent: number;
32
+ camp: number;
31
33
  };
@@ -1,3 +1,4 @@
1
1
  export * from "./column";
2
2
  export * from "./filter-item";
3
3
  export * from "./odata-params";
4
+ export * from "./page-result";
@@ -1,9 +1,8 @@
1
- import { AdditionalServices, FlightMetaDataLine } from ".";
1
+ import { FlightMetaDataLine } from ".";
2
2
  export interface FlightMetaData {
3
3
  flightLines: FlightMetaDataLine[];
4
4
  pnr: string;
5
5
  orderId: string;
6
- additionalServices: AdditionalServices;
7
6
  isLowCost: boolean;
8
7
  luggageIncluded: boolean;
9
8
  validatingAirlines: string;
@@ -1,4 +1,4 @@
1
- export * from "./additional-services";
1
+ export * from "../odata/page-result";
2
2
  export * from "./confirmed-dossier-check";
3
3
  export * from "./country-item";
4
4
  export * from "./crm-contact-request";
@@ -25,7 +25,6 @@ export * from "./member-login-request";
25
25
  export * from "./member-login-response";
26
26
  export * from "./member-reset-password-request";
27
27
  export * from "./note";
28
- export * from "./page-result";
29
28
  export * from "./pax";
30
29
  export * from "./payment";
31
30
  export * from "./person-country-preference";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qite/tide-client",
3
- "version": "1.1.56",
3
+ "version": "1.1.58",
4
4
  "description": "Frontend client for Tide",
5
5
  "main": "build/index.js",
6
6
  "scripts": {
@@ -11,6 +11,8 @@ export * from "./booking-price-detail";
11
11
  export * from "./booking-price-details";
12
12
  export * from "./booking-price-per-pax";
13
13
  export * from "./booking-product-notification";
14
+ export * from "./booking-room-status";
15
+ export * from "./booking-room-status-option";
14
16
  export * from "./booking-travel-agent";
15
17
  export * from "./booking-validity-line";
16
18
  export * from "./booking-voucher-result";
@@ -14,11 +14,14 @@ export * from "./booking-package-hotel";
14
14
  export * from "./booking-package-hotel-option";
15
15
  export * from "./booking-package-hotel-room";
16
16
  export * from "./booking-package-line";
17
+ export * from "./booking-package-option";
17
18
  export * from "./booking-package-pax";
18
19
  export * from "./booking-package-request-room";
19
20
  export * from "./booking-package-room";
20
21
  export * from "./booking-package-room-option";
22
+ export * from "./booking-package-tag";
21
23
  export * from "./per-booking-package-option";
22
24
  export * from "./per-package-option";
23
25
  export * from "./per-pax-package-option";
24
26
  export * from "./per-unit-package-option";
27
+ export * from "./room-option-pax-type";
@@ -28,4 +28,6 @@ export const ServiceType = {
28
28
  voucher: 26,
29
29
  reduction: 27,
30
30
  rocket: 28,
31
+ tent: 29,
32
+ camp: 30,
31
33
  };
@@ -1,3 +1,4 @@
1
1
  export * from "./column";
2
2
  export * from "./filter-item";
3
3
  export * from "./odata-params";
4
+ export * from "./page-result";
@@ -0,0 +1,5 @@
1
+ export interface PageResult<T> {
2
+ count: number;
3
+ items: T[];
4
+ nextPageLink: string;
5
+ }
@@ -1,10 +1,9 @@
1
- import { AdditionalServices, FlightMetaDataLine } from ".";
1
+ import { FlightMetaDataLine } from ".";
2
2
 
3
3
  export interface FlightMetaData {
4
4
  flightLines: FlightMetaDataLine[];
5
5
  pnr: string;
6
6
  orderId: string;
7
- additionalServices: AdditionalServices;
8
7
  isLowCost: boolean;
9
8
  luggageIncluded: boolean;
10
9
  validatingAirlines: string;
@@ -1,4 +1,4 @@
1
- export * from "./additional-services";
1
+ export * from "../odata/page-result";
2
2
  export * from "./confirmed-dossier-check";
3
3
  export * from "./country-item";
4
4
  export * from "./crm-contact-request";
@@ -25,7 +25,6 @@ export * from "./member-login-request";
25
25
  export * from "./member-login-response";
26
26
  export * from "./member-reset-password-request";
27
27
  export * from "./note";
28
- export * from "./page-result";
29
28
  export * from "./pax";
30
29
  export * from "./payment";
31
30
  export * from "./person-country-preference";
@@ -1,6 +0,0 @@
1
- export interface AdditionalServices {
2
- luggageExtraCostPerPiece: number;
3
- luggageExtraIsPerPassenger: boolean;
4
- productCode: string;
5
- accommodationCode: string;
6
- }