@qite/tide-client 1.1.174 → 1.1.175
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/build/index.js +7168 -7168
- package/build/types/booking-v2/request/booking-package-book-request.d.ts +26 -26
- package/build/types/booking-v2/request/booking-package-details-request.d.ts +28 -28
- package/build/types/booking-v2/request/index.d.ts +21 -21
- package/build/types/booking-v2/request/packaging/packaging-accommodation-request.d.ts +36 -36
- package/build/types/booking-v2/request/packaging/packaging-request-base.d.ts +7 -7
- package/build/types/booking-v2/response/booking-price-details.d.ts +15 -15
- package/build/types/booking-v2/response/index.d.ts +36 -36
- package/build/types/booking-v2/response/packaging/packaging-accommodation-response.d.ts +19 -19
- package/build/types/booking-v2/response/packaging/packaging-base-response.d.ts +25 -25
- package/build/types/booking-v2/response/packaging/packaging-entry.d.ts +103 -103
- package/build/types/booking-v2/response/packaging/packaging-flight-response.d.ts +20 -20
- package/build/types/booking-v2/response/packaging/packaging-transaction.d.ts +4 -4
- package/build/types/booking-v2/shared/index.d.ts +29 -29
- package/build/types/booking-v2/shared/itinerary.d.ts +41 -41
- package/build/types/hubs/search/flight-search-request.d.ts +32 -32
- package/build/types/web/index.d.ts +19 -19
- package/build/types/web/style-sheet.d.ts +7 -7
- package/build/utils/packaging-client.d.ts +52 -52
- package/build/utils/web-client.d.ts +77 -77
- package/package.json +64 -64
|
@@ -1,26 +1,26 @@
|
|
|
1
|
-
import { BookingProductNotification } from "../response";
|
|
2
|
-
import { BookingPackage } from "../shared";
|
|
3
|
-
import { BookingPackagePax } from "../shared/booking-package-pax";
|
|
4
|
-
import { BookingPackageAddress } from "./booking-package-address";
|
|
5
|
-
import { BookingPackageCustomerRequest } from "./booking-package-customer-request";
|
|
6
|
-
export interface BookingPackageBookRequest {
|
|
7
|
-
saleType?: number;
|
|
8
|
-
status: number;
|
|
9
|
-
customStatusId?: number;
|
|
10
|
-
package: BookingPackage;
|
|
11
|
-
returnPaymentUrl?: boolean;
|
|
12
|
-
redirectUrl?: string;
|
|
13
|
-
cancelUrl?: string;
|
|
14
|
-
calculateDeposit?: boolean;
|
|
15
|
-
showCommission?: boolean;
|
|
16
|
-
tagIds?: number[];
|
|
17
|
-
voucherCodes?: string[];
|
|
18
|
-
remarks?: string;
|
|
19
|
-
customerRequests: BookingPackageCustomerRequest[];
|
|
20
|
-
travellerAddressName?: string;
|
|
21
|
-
agencyAddressName?: string;
|
|
22
|
-
address?: BookingPackageAddress;
|
|
23
|
-
pax: BookingPackagePax[];
|
|
24
|
-
nonTravelPax: BookingPackagePax[];
|
|
25
|
-
notifications: BookingProductNotification[];
|
|
26
|
-
}
|
|
1
|
+
import { BookingProductNotification } from "../response";
|
|
2
|
+
import { BookingPackage } from "../shared";
|
|
3
|
+
import { BookingPackagePax } from "../shared/booking-package-pax";
|
|
4
|
+
import { BookingPackageAddress } from "./booking-package-address";
|
|
5
|
+
import { BookingPackageCustomerRequest } from "./booking-package-customer-request";
|
|
6
|
+
export interface BookingPackageBookRequest {
|
|
7
|
+
saleType?: number;
|
|
8
|
+
status: number;
|
|
9
|
+
customStatusId?: number;
|
|
10
|
+
package: BookingPackage;
|
|
11
|
+
returnPaymentUrl?: boolean;
|
|
12
|
+
redirectUrl?: string;
|
|
13
|
+
cancelUrl?: string;
|
|
14
|
+
calculateDeposit?: boolean;
|
|
15
|
+
showCommission?: boolean;
|
|
16
|
+
tagIds?: number[];
|
|
17
|
+
voucherCodes?: string[];
|
|
18
|
+
remarks?: string;
|
|
19
|
+
customerRequests: BookingPackageCustomerRequest[];
|
|
20
|
+
travellerAddressName?: string;
|
|
21
|
+
agencyAddressName?: string;
|
|
22
|
+
address?: BookingPackageAddress;
|
|
23
|
+
pax: BookingPackagePax[];
|
|
24
|
+
nonTravelPax: BookingPackagePax[];
|
|
25
|
+
notifications: BookingProductNotification[];
|
|
26
|
+
}
|
|
@@ -1,28 +1,28 @@
|
|
|
1
|
-
import { BookingPackageRequestRoom } from "../shared/booking-package-request-room";
|
|
2
|
-
import { SelectedFlight } from "./selected-flight";
|
|
3
|
-
import { SelectedHotel } from "./selected-hotel";
|
|
4
|
-
export interface BookingPackageDetailsRequest {
|
|
5
|
-
catalogueId?: number;
|
|
6
|
-
rooms: BookingPackageRequestRoom[];
|
|
7
|
-
searchType: number;
|
|
8
|
-
productCode: string;
|
|
9
|
-
allotmentName?: string;
|
|
10
|
-
tourCode?: string;
|
|
11
|
-
fromDate: string;
|
|
12
|
-
toDate: string;
|
|
13
|
-
preNights?: number | null;
|
|
14
|
-
postNights?: number | null;
|
|
15
|
-
includeFlights?: boolean;
|
|
16
|
-
includeHotels?: boolean;
|
|
17
|
-
includePaxTypes?: boolean;
|
|
18
|
-
checkExternalAvailability?: boolean;
|
|
19
|
-
cachedAllotmentPriceInfos?: number[];
|
|
20
|
-
duration?: number | null;
|
|
21
|
-
expectedPrice?: number | null;
|
|
22
|
-
routeId?: string;
|
|
23
|
-
vendorConfigurationId?: number | null;
|
|
24
|
-
searchConfigurationId?: number | null;
|
|
25
|
-
hotel?: SelectedHotel;
|
|
26
|
-
outwardFlight?: SelectedFlight;
|
|
27
|
-
returnFlight?: SelectedFlight;
|
|
28
|
-
}
|
|
1
|
+
import { BookingPackageRequestRoom } from "../shared/booking-package-request-room";
|
|
2
|
+
import { SelectedFlight } from "./selected-flight";
|
|
3
|
+
import { SelectedHotel } from "./selected-hotel";
|
|
4
|
+
export interface BookingPackageDetailsRequest {
|
|
5
|
+
catalogueId?: number;
|
|
6
|
+
rooms: BookingPackageRequestRoom[];
|
|
7
|
+
searchType: number;
|
|
8
|
+
productCode: string;
|
|
9
|
+
allotmentName?: string;
|
|
10
|
+
tourCode?: string;
|
|
11
|
+
fromDate: string;
|
|
12
|
+
toDate: string;
|
|
13
|
+
preNights?: number | null;
|
|
14
|
+
postNights?: number | null;
|
|
15
|
+
includeFlights?: boolean;
|
|
16
|
+
includeHotels?: boolean;
|
|
17
|
+
includePaxTypes?: boolean;
|
|
18
|
+
checkExternalAvailability?: boolean;
|
|
19
|
+
cachedAllotmentPriceInfos?: number[];
|
|
20
|
+
duration?: number | null;
|
|
21
|
+
expectedPrice?: number | null;
|
|
22
|
+
routeId?: string;
|
|
23
|
+
vendorConfigurationId?: number | null;
|
|
24
|
+
searchConfigurationId?: number | null;
|
|
25
|
+
hotel?: SelectedHotel;
|
|
26
|
+
outwardFlight?: SelectedFlight;
|
|
27
|
+
returnFlight?: SelectedFlight;
|
|
28
|
+
}
|
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
export * from "./available-countries-request";
|
|
2
|
-
export * from "./available-flights-request";
|
|
3
|
-
export * from "./bookable-dates-request";
|
|
4
|
-
export * from "./booking-package-address";
|
|
5
|
-
export * from "./booking-package-book-request";
|
|
6
|
-
export * from "./booking-package-customer-request";
|
|
7
|
-
export * from "./booking-package-destination";
|
|
8
|
-
export * from "./booking-package-details-request";
|
|
9
|
-
export * from "./booking-package-flight-pool-request";
|
|
10
|
-
export * from "./booking-package-request";
|
|
11
|
-
export * from "./booking-package-search-request";
|
|
12
|
-
export * from "./booking-package-update-request";
|
|
13
|
-
export * from "./booking-package-voucher-request";
|
|
14
|
-
export * from "./prices-request";
|
|
15
|
-
export * from "./selected-flight";
|
|
16
|
-
export * from "./selected-hotel";
|
|
17
|
-
export * from "./tour-codes.request";
|
|
18
|
-
export * from "./transport-dates-request";
|
|
19
|
-
export * from "./flight-lines-request";
|
|
20
|
-
export * from "./packaging/packaging-accommodation-request";
|
|
21
|
-
export * from "./packaging/packaging-request-base";
|
|
1
|
+
export * from "./available-countries-request";
|
|
2
|
+
export * from "./available-flights-request";
|
|
3
|
+
export * from "./bookable-dates-request";
|
|
4
|
+
export * from "./booking-package-address";
|
|
5
|
+
export * from "./booking-package-book-request";
|
|
6
|
+
export * from "./booking-package-customer-request";
|
|
7
|
+
export * from "./booking-package-destination";
|
|
8
|
+
export * from "./booking-package-details-request";
|
|
9
|
+
export * from "./booking-package-flight-pool-request";
|
|
10
|
+
export * from "./booking-package-request";
|
|
11
|
+
export * from "./booking-package-search-request";
|
|
12
|
+
export * from "./booking-package-update-request";
|
|
13
|
+
export * from "./booking-package-voucher-request";
|
|
14
|
+
export * from "./prices-request";
|
|
15
|
+
export * from "./selected-flight";
|
|
16
|
+
export * from "./selected-hotel";
|
|
17
|
+
export * from "./tour-codes.request";
|
|
18
|
+
export * from "./transport-dates-request";
|
|
19
|
+
export * from "./flight-lines-request";
|
|
20
|
+
export * from "./packaging/packaging-accommodation-request";
|
|
21
|
+
export * from "./packaging/packaging-request-base";
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
export interface PackagingAccommodationRequest {
|
|
2
|
-
transactionId: string;
|
|
3
|
-
agentId?: number | null;
|
|
4
|
-
officeId: number;
|
|
5
|
-
catalogueId: number;
|
|
6
|
-
searchConfigurationId: number;
|
|
7
|
-
portalId?: number | null;
|
|
8
|
-
vendorConfigurationId?: number | null;
|
|
9
|
-
language: string;
|
|
10
|
-
serviceType?: number | null;
|
|
11
|
-
fromDate: string;
|
|
12
|
-
toDate: string;
|
|
13
|
-
productCode: string;
|
|
14
|
-
destination: PackagingDestination;
|
|
15
|
-
rooms: PackagingRoom[];
|
|
16
|
-
tagIds: number[];
|
|
17
|
-
}
|
|
18
|
-
export interface PackagingRoom {
|
|
19
|
-
travellers: PackagingTraveller[];
|
|
20
|
-
}
|
|
21
|
-
export interface PackagingTraveller {
|
|
22
|
-
id: number;
|
|
23
|
-
age?: number | null;
|
|
24
|
-
dateOfBirth?: string | null;
|
|
25
|
-
}
|
|
26
|
-
export interface PackagingDestination {
|
|
27
|
-
id: number;
|
|
28
|
-
code: string;
|
|
29
|
-
isCountry: boolean;
|
|
30
|
-
isRegion: boolean;
|
|
31
|
-
isOord: boolean;
|
|
32
|
-
isLocation: boolean;
|
|
33
|
-
isAirport: boolean;
|
|
34
|
-
latitude?: number | null;
|
|
35
|
-
longitude?: number | null;
|
|
36
|
-
}
|
|
1
|
+
export interface PackagingAccommodationRequest {
|
|
2
|
+
transactionId: string;
|
|
3
|
+
agentId?: number | null;
|
|
4
|
+
officeId: number;
|
|
5
|
+
catalogueId: number;
|
|
6
|
+
searchConfigurationId: number;
|
|
7
|
+
portalId?: number | null;
|
|
8
|
+
vendorConfigurationId?: number | null;
|
|
9
|
+
language: string;
|
|
10
|
+
serviceType?: number | null;
|
|
11
|
+
fromDate: string;
|
|
12
|
+
toDate: string;
|
|
13
|
+
productCode: string;
|
|
14
|
+
destination: PackagingDestination;
|
|
15
|
+
rooms: PackagingRoom[];
|
|
16
|
+
tagIds: number[];
|
|
17
|
+
}
|
|
18
|
+
export interface PackagingRoom {
|
|
19
|
+
travellers: PackagingTraveller[];
|
|
20
|
+
}
|
|
21
|
+
export interface PackagingTraveller {
|
|
22
|
+
id: number;
|
|
23
|
+
age?: number | null;
|
|
24
|
+
dateOfBirth?: string | null;
|
|
25
|
+
}
|
|
26
|
+
export interface PackagingDestination {
|
|
27
|
+
id: number;
|
|
28
|
+
code: string;
|
|
29
|
+
isCountry: boolean;
|
|
30
|
+
isRegion: boolean;
|
|
31
|
+
isOord: boolean;
|
|
32
|
+
isLocation: boolean;
|
|
33
|
+
isAirport: boolean;
|
|
34
|
+
latitude?: number | null;
|
|
35
|
+
longitude?: number | null;
|
|
36
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export interface PackagingRequestBase<T> {
|
|
2
|
-
language: string;
|
|
3
|
-
officeId: number;
|
|
4
|
-
catalogueId: number;
|
|
5
|
-
agentId?: number;
|
|
6
|
-
payload: T;
|
|
7
|
-
}
|
|
1
|
+
export interface PackagingRequestBase<T> {
|
|
2
|
+
language: string;
|
|
3
|
+
officeId: number;
|
|
4
|
+
catalogueId: number;
|
|
5
|
+
agentId?: number;
|
|
6
|
+
payload: T;
|
|
7
|
+
}
|
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { BookingPriceDetail } from "./booking-price-detail";
|
|
2
|
-
import { BookingProductNotification } from "./booking-product-notification";
|
|
3
|
-
import { BookingRoomStatus } from "./booking-room-status";
|
|
4
|
-
import { BookingValidityLine } from "./booking-validity-line";
|
|
5
|
-
import { ChangedLine } from "./changed-line";
|
|
6
|
-
export interface BookingPriceDetails {
|
|
7
|
-
details: BookingPriceDetail[];
|
|
8
|
-
changedLines: ChangedLine[];
|
|
9
|
-
validityLines: BookingValidityLine[];
|
|
10
|
-
notifications: BookingProductNotification[];
|
|
11
|
-
roomStatusses: BookingRoomStatus[];
|
|
12
|
-
total?: number;
|
|
13
|
-
commission?: number;
|
|
14
|
-
deposit?: number;
|
|
15
|
-
}
|
|
1
|
+
import { BookingPriceDetail } from "./booking-price-detail";
|
|
2
|
+
import { BookingProductNotification } from "./booking-product-notification";
|
|
3
|
+
import { BookingRoomStatus } from "./booking-room-status";
|
|
4
|
+
import { BookingValidityLine } from "./booking-validity-line";
|
|
5
|
+
import { ChangedLine } from "./changed-line";
|
|
6
|
+
export interface BookingPriceDetails {
|
|
7
|
+
details: BookingPriceDetail[];
|
|
8
|
+
changedLines: ChangedLine[];
|
|
9
|
+
validityLines: BookingValidityLine[];
|
|
10
|
+
notifications: BookingProductNotification[];
|
|
11
|
+
roomStatusses: BookingRoomStatus[];
|
|
12
|
+
total?: number;
|
|
13
|
+
commission?: number;
|
|
14
|
+
deposit?: number;
|
|
15
|
+
}
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
export * from "./available-country";
|
|
2
|
-
export * from "./available-flight";
|
|
3
|
-
export * from "./base-price";
|
|
4
|
-
export * from "./bookable-dates";
|
|
5
|
-
export * from "./booking-package-allotment-info";
|
|
6
|
-
export * from "./booking-package-dossier";
|
|
7
|
-
export * from "./booking-package-flight-combination";
|
|
8
|
-
export * from "./booking-package-flight-info";
|
|
9
|
-
export * from "./booking-package-flight-pool";
|
|
10
|
-
export * from "./booking-package-flight-route";
|
|
11
|
-
export * from "./booking-package-hotel-pool";
|
|
12
|
-
export * from "./booking-package-item";
|
|
13
|
-
export * from "./booking-price-detail";
|
|
14
|
-
export * from "./booking-price-details";
|
|
15
|
-
export * from "./booking-price-per-pax";
|
|
16
|
-
export * from "./booking-product-notification";
|
|
17
|
-
export * from "./booking-room-status";
|
|
18
|
-
export * from "./booking-room-status-option";
|
|
19
|
-
export * from "./booking-travel-agent";
|
|
20
|
-
export * from "./booking-validity-line";
|
|
21
|
-
export * from "./booking-voucher-result";
|
|
22
|
-
export * from "./changed-line";
|
|
23
|
-
export * from "./elastic-result";
|
|
24
|
-
export * from "./elastic-result-hit";
|
|
25
|
-
export * from "./tide-elastic-product";
|
|
26
|
-
export * from "./tide-elastic-tag";
|
|
27
|
-
export * from "./tide-response";
|
|
28
|
-
export * from "./tour-codes-response";
|
|
29
|
-
export * from "./transport-dates-response";
|
|
30
|
-
export * from "./booking-package-entryline-flight-meta-data";
|
|
31
|
-
export * from "./flight-lines-by-allotment";
|
|
32
|
-
export * from "./packaging/packaging-base-response";
|
|
33
|
-
export * from "./packaging/packaging-accommodation-response";
|
|
34
|
-
export * from "./packaging/packaging-flight-response";
|
|
35
|
-
export * from "./packaging/packaging-entry";
|
|
36
|
-
export * from "./packaging/packaging-transaction";
|
|
1
|
+
export * from "./available-country";
|
|
2
|
+
export * from "./available-flight";
|
|
3
|
+
export * from "./base-price";
|
|
4
|
+
export * from "./bookable-dates";
|
|
5
|
+
export * from "./booking-package-allotment-info";
|
|
6
|
+
export * from "./booking-package-dossier";
|
|
7
|
+
export * from "./booking-package-flight-combination";
|
|
8
|
+
export * from "./booking-package-flight-info";
|
|
9
|
+
export * from "./booking-package-flight-pool";
|
|
10
|
+
export * from "./booking-package-flight-route";
|
|
11
|
+
export * from "./booking-package-hotel-pool";
|
|
12
|
+
export * from "./booking-package-item";
|
|
13
|
+
export * from "./booking-price-detail";
|
|
14
|
+
export * from "./booking-price-details";
|
|
15
|
+
export * from "./booking-price-per-pax";
|
|
16
|
+
export * from "./booking-product-notification";
|
|
17
|
+
export * from "./booking-room-status";
|
|
18
|
+
export * from "./booking-room-status-option";
|
|
19
|
+
export * from "./booking-travel-agent";
|
|
20
|
+
export * from "./booking-validity-line";
|
|
21
|
+
export * from "./booking-voucher-result";
|
|
22
|
+
export * from "./changed-line";
|
|
23
|
+
export * from "./elastic-result";
|
|
24
|
+
export * from "./elastic-result-hit";
|
|
25
|
+
export * from "./tide-elastic-product";
|
|
26
|
+
export * from "./tide-elastic-tag";
|
|
27
|
+
export * from "./tide-response";
|
|
28
|
+
export * from "./tour-codes-response";
|
|
29
|
+
export * from "./transport-dates-response";
|
|
30
|
+
export * from "./booking-package-entryline-flight-meta-data";
|
|
31
|
+
export * from "./flight-lines-by-allotment";
|
|
32
|
+
export * from "./packaging/packaging-base-response";
|
|
33
|
+
export * from "./packaging/packaging-accommodation-response";
|
|
34
|
+
export * from "./packaging/packaging-flight-response";
|
|
35
|
+
export * from "./packaging/packaging-entry";
|
|
36
|
+
export * from "./packaging/packaging-transaction";
|
|
@@ -1,19 +1,19 @@
|
|
|
1
|
-
import { PackagingBaseResponse } from "./packaging-base-response";
|
|
2
|
-
export interface PackagingAccommodationResponse extends PackagingBaseResponse {
|
|
3
|
-
rooms: PackageMainRoom[];
|
|
4
|
-
contents: string;
|
|
5
|
-
}
|
|
6
|
-
export interface PackageMainRoom {
|
|
7
|
-
options: PackageMainOption[];
|
|
8
|
-
}
|
|
9
|
-
export interface PackageMainOption {
|
|
10
|
-
price: number;
|
|
11
|
-
originalPrice: number;
|
|
12
|
-
accommodationCode: string;
|
|
13
|
-
accommodationName: string;
|
|
14
|
-
regimeCode: string;
|
|
15
|
-
regimeName: string;
|
|
16
|
-
isSelected: boolean;
|
|
17
|
-
guid: string;
|
|
18
|
-
paxIds: number[];
|
|
19
|
-
}
|
|
1
|
+
import { PackagingBaseResponse } from "./packaging-base-response";
|
|
2
|
+
export interface PackagingAccommodationResponse extends PackagingBaseResponse {
|
|
3
|
+
rooms: PackageMainRoom[];
|
|
4
|
+
contents: string;
|
|
5
|
+
}
|
|
6
|
+
export interface PackageMainRoom {
|
|
7
|
+
options: PackageMainOption[];
|
|
8
|
+
}
|
|
9
|
+
export interface PackageMainOption {
|
|
10
|
+
price: number;
|
|
11
|
+
originalPrice: number;
|
|
12
|
+
accommodationCode: string;
|
|
13
|
+
accommodationName: string;
|
|
14
|
+
regimeCode: string;
|
|
15
|
+
regimeName: string;
|
|
16
|
+
isSelected: boolean;
|
|
17
|
+
guid: string;
|
|
18
|
+
paxIds: number[];
|
|
19
|
+
}
|
|
@@ -1,25 +1,25 @@
|
|
|
1
|
-
export interface PackagingBaseResponse {
|
|
2
|
-
code: string;
|
|
3
|
-
name: string;
|
|
4
|
-
serviceType: number;
|
|
5
|
-
vendorType?: number | null;
|
|
6
|
-
vendorId?: number | null;
|
|
7
|
-
vendorConfigurationId?: number | null;
|
|
8
|
-
countryId?: number | null;
|
|
9
|
-
countryName: string;
|
|
10
|
-
regionId?: number | null;
|
|
11
|
-
regionName: string;
|
|
12
|
-
oordId?: number | null;
|
|
13
|
-
oordName: string;
|
|
14
|
-
locationId?: number | null;
|
|
15
|
-
locationName: string;
|
|
16
|
-
latitude?: number | null;
|
|
17
|
-
longitude?: number | null;
|
|
18
|
-
price: number;
|
|
19
|
-
averagePricePerPerson: number;
|
|
20
|
-
originalPrice: number;
|
|
21
|
-
originalAveragePricePerPerson: number;
|
|
22
|
-
currencyCode: string;
|
|
23
|
-
fromDate: string;
|
|
24
|
-
toDate: string;
|
|
25
|
-
}
|
|
1
|
+
export interface PackagingBaseResponse {
|
|
2
|
+
code: string;
|
|
3
|
+
name: string;
|
|
4
|
+
serviceType: number;
|
|
5
|
+
vendorType?: number | null;
|
|
6
|
+
vendorId?: number | null;
|
|
7
|
+
vendorConfigurationId?: number | null;
|
|
8
|
+
countryId?: number | null;
|
|
9
|
+
countryName: string;
|
|
10
|
+
regionId?: number | null;
|
|
11
|
+
regionName: string;
|
|
12
|
+
oordId?: number | null;
|
|
13
|
+
oordName: string;
|
|
14
|
+
locationId?: number | null;
|
|
15
|
+
locationName: string;
|
|
16
|
+
latitude?: number | null;
|
|
17
|
+
longitude?: number | null;
|
|
18
|
+
price: number;
|
|
19
|
+
averagePricePerPerson: number;
|
|
20
|
+
originalPrice: number;
|
|
21
|
+
originalAveragePricePerPerson: number;
|
|
22
|
+
currencyCode: string;
|
|
23
|
+
fromDate: string;
|
|
24
|
+
toDate: string;
|
|
25
|
+
}
|
|
@@ -1,103 +1,103 @@
|
|
|
1
|
-
import { EntryStatus } from "../../../enums";
|
|
2
|
-
export interface PackagingEntry {
|
|
3
|
-
language?: string;
|
|
4
|
-
transactionId: string;
|
|
5
|
-
magicLink?: string;
|
|
6
|
-
dossierNumber: string;
|
|
7
|
-
bookingDate?: string | null;
|
|
8
|
-
price: number;
|
|
9
|
-
depositAmount: number;
|
|
10
|
-
pax: PackagingEntryPax[];
|
|
11
|
-
rooms: PackagingEntryRoom[];
|
|
12
|
-
lines: PackagingEntryLine[];
|
|
13
|
-
address: PackagingEntryAddress;
|
|
14
|
-
status: EntryStatus;
|
|
15
|
-
customStatusId?: number;
|
|
16
|
-
redirectUrl?: string;
|
|
17
|
-
returnPaymentUrl?: boolean;
|
|
18
|
-
remarks?: string;
|
|
19
|
-
}
|
|
20
|
-
export interface PackagingEntryPax {
|
|
21
|
-
id: number;
|
|
22
|
-
lastName: string;
|
|
23
|
-
firstName: string;
|
|
24
|
-
dateOfBirth?: string | null;
|
|
25
|
-
age?: number | null;
|
|
26
|
-
isMainBooker: boolean;
|
|
27
|
-
}
|
|
28
|
-
export interface PackagingEntryRoom {
|
|
29
|
-
id: number;
|
|
30
|
-
paxIds: number[];
|
|
31
|
-
}
|
|
32
|
-
export interface PackagingEntryLine {
|
|
33
|
-
guid: string;
|
|
34
|
-
parentGuid?: string | null;
|
|
35
|
-
order: number;
|
|
36
|
-
from: string;
|
|
37
|
-
to: string;
|
|
38
|
-
moment: string;
|
|
39
|
-
serviceType: number;
|
|
40
|
-
productName: string;
|
|
41
|
-
productCode: string;
|
|
42
|
-
accommodationName?: string | null;
|
|
43
|
-
accommodationCode?: string | null;
|
|
44
|
-
regimeName?: string | null;
|
|
45
|
-
regimeCode?: string | null;
|
|
46
|
-
country?: IdName | null;
|
|
47
|
-
region?: IdName | null;
|
|
48
|
-
oord?: IdName | null;
|
|
49
|
-
location?: IdName | null;
|
|
50
|
-
longitude?: number | null;
|
|
51
|
-
latitude?: number | null;
|
|
52
|
-
pax: PackagingEntryLinePax[];
|
|
53
|
-
flightInformation?: PackagingEntryLineFlightInformation | null;
|
|
54
|
-
isChanged: boolean;
|
|
55
|
-
}
|
|
56
|
-
export interface PackagingEntryLinePax {
|
|
57
|
-
paxId: number;
|
|
58
|
-
room: number;
|
|
59
|
-
order: number;
|
|
60
|
-
}
|
|
61
|
-
export interface PackagingEntryLineFlightInformation {
|
|
62
|
-
pnr?: string | null;
|
|
63
|
-
flightLines: PackagingEntryLineFlightLine[];
|
|
64
|
-
}
|
|
65
|
-
export interface PackagingEntryLineFlightLine {
|
|
66
|
-
airlineCode: string;
|
|
67
|
-
airlineDescription: string;
|
|
68
|
-
operatingAirlineCode?: string | null;
|
|
69
|
-
operatingAirlineDescription?: string | null;
|
|
70
|
-
flightNumber: string;
|
|
71
|
-
operatingFlightNumber?: string | null;
|
|
72
|
-
departureDate: string;
|
|
73
|
-
departureTime?: string | null;
|
|
74
|
-
departureAirportCode: string;
|
|
75
|
-
departureAirportDescription: string;
|
|
76
|
-
arrivalDate: string;
|
|
77
|
-
arrivalTime?: string | null;
|
|
78
|
-
arrivalAirportCode: string;
|
|
79
|
-
arrivalAirportDescription: string;
|
|
80
|
-
durationInTicks?: number | null;
|
|
81
|
-
}
|
|
82
|
-
export interface IdName {
|
|
83
|
-
id: number;
|
|
84
|
-
name: string;
|
|
85
|
-
localizations?: IdNameLocalization[];
|
|
86
|
-
}
|
|
87
|
-
export interface IdNameLocalization {
|
|
88
|
-
languageId: number;
|
|
89
|
-
languageCode: string;
|
|
90
|
-
name: string;
|
|
91
|
-
}
|
|
92
|
-
export interface PackagingEntryAddress {
|
|
93
|
-
street: string;
|
|
94
|
-
houseNumber: string;
|
|
95
|
-
box?: string | null;
|
|
96
|
-
zipCode: string;
|
|
97
|
-
place: string;
|
|
98
|
-
country: string;
|
|
99
|
-
travelAgentId?: number;
|
|
100
|
-
phone?: string;
|
|
101
|
-
email?: string;
|
|
102
|
-
remarks?: string;
|
|
103
|
-
}
|
|
1
|
+
import { EntryStatus } from "../../../enums";
|
|
2
|
+
export interface PackagingEntry {
|
|
3
|
+
language?: string;
|
|
4
|
+
transactionId: string;
|
|
5
|
+
magicLink?: string;
|
|
6
|
+
dossierNumber: string;
|
|
7
|
+
bookingDate?: string | null;
|
|
8
|
+
price: number;
|
|
9
|
+
depositAmount: number;
|
|
10
|
+
pax: PackagingEntryPax[];
|
|
11
|
+
rooms: PackagingEntryRoom[];
|
|
12
|
+
lines: PackagingEntryLine[];
|
|
13
|
+
address: PackagingEntryAddress;
|
|
14
|
+
status: EntryStatus;
|
|
15
|
+
customStatusId?: number;
|
|
16
|
+
redirectUrl?: string;
|
|
17
|
+
returnPaymentUrl?: boolean;
|
|
18
|
+
remarks?: string;
|
|
19
|
+
}
|
|
20
|
+
export interface PackagingEntryPax {
|
|
21
|
+
id: number;
|
|
22
|
+
lastName: string;
|
|
23
|
+
firstName: string;
|
|
24
|
+
dateOfBirth?: string | null;
|
|
25
|
+
age?: number | null;
|
|
26
|
+
isMainBooker: boolean;
|
|
27
|
+
}
|
|
28
|
+
export interface PackagingEntryRoom {
|
|
29
|
+
id: number;
|
|
30
|
+
paxIds: number[];
|
|
31
|
+
}
|
|
32
|
+
export interface PackagingEntryLine {
|
|
33
|
+
guid: string;
|
|
34
|
+
parentGuid?: string | null;
|
|
35
|
+
order: number;
|
|
36
|
+
from: string;
|
|
37
|
+
to: string;
|
|
38
|
+
moment: string;
|
|
39
|
+
serviceType: number;
|
|
40
|
+
productName: string;
|
|
41
|
+
productCode: string;
|
|
42
|
+
accommodationName?: string | null;
|
|
43
|
+
accommodationCode?: string | null;
|
|
44
|
+
regimeName?: string | null;
|
|
45
|
+
regimeCode?: string | null;
|
|
46
|
+
country?: IdName | null;
|
|
47
|
+
region?: IdName | null;
|
|
48
|
+
oord?: IdName | null;
|
|
49
|
+
location?: IdName | null;
|
|
50
|
+
longitude?: number | null;
|
|
51
|
+
latitude?: number | null;
|
|
52
|
+
pax: PackagingEntryLinePax[];
|
|
53
|
+
flightInformation?: PackagingEntryLineFlightInformation | null;
|
|
54
|
+
isChanged: boolean;
|
|
55
|
+
}
|
|
56
|
+
export interface PackagingEntryLinePax {
|
|
57
|
+
paxId: number;
|
|
58
|
+
room: number;
|
|
59
|
+
order: number;
|
|
60
|
+
}
|
|
61
|
+
export interface PackagingEntryLineFlightInformation {
|
|
62
|
+
pnr?: string | null;
|
|
63
|
+
flightLines: PackagingEntryLineFlightLine[];
|
|
64
|
+
}
|
|
65
|
+
export interface PackagingEntryLineFlightLine {
|
|
66
|
+
airlineCode: string;
|
|
67
|
+
airlineDescription: string;
|
|
68
|
+
operatingAirlineCode?: string | null;
|
|
69
|
+
operatingAirlineDescription?: string | null;
|
|
70
|
+
flightNumber: string;
|
|
71
|
+
operatingFlightNumber?: string | null;
|
|
72
|
+
departureDate: string;
|
|
73
|
+
departureTime?: string | null;
|
|
74
|
+
departureAirportCode: string;
|
|
75
|
+
departureAirportDescription: string;
|
|
76
|
+
arrivalDate: string;
|
|
77
|
+
arrivalTime?: string | null;
|
|
78
|
+
arrivalAirportCode: string;
|
|
79
|
+
arrivalAirportDescription: string;
|
|
80
|
+
durationInTicks?: number | null;
|
|
81
|
+
}
|
|
82
|
+
export interface IdName {
|
|
83
|
+
id: number;
|
|
84
|
+
name: string;
|
|
85
|
+
localizations?: IdNameLocalization[];
|
|
86
|
+
}
|
|
87
|
+
export interface IdNameLocalization {
|
|
88
|
+
languageId: number;
|
|
89
|
+
languageCode: string;
|
|
90
|
+
name: string;
|
|
91
|
+
}
|
|
92
|
+
export interface PackagingEntryAddress {
|
|
93
|
+
street: string;
|
|
94
|
+
houseNumber: string;
|
|
95
|
+
box?: string | null;
|
|
96
|
+
zipCode: string;
|
|
97
|
+
place: string;
|
|
98
|
+
country: string;
|
|
99
|
+
travelAgentId?: number;
|
|
100
|
+
phone?: string;
|
|
101
|
+
email?: string;
|
|
102
|
+
remarks?: string;
|
|
103
|
+
}
|