@qite/tide-client 1.0.67 → 1.0.70
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/types/offer/booking-v2/request/booking-package-details-request.d.ts +15 -15
- package/build/types/offer/booking-v2/request/booking-package-search-request.d.ts +1 -0
- package/build/types/offer/booking-v2/response/booking-package-allotment-info.d.ts +1 -0
- package/build/types/offer/booking-v2/response/booking-package-item.d.ts +3 -0
- package/package.json +56 -56
- package/src/types/offer/booking-v2/request/booking-package-details-request.ts +16 -16
- package/src/types/offer/booking-v2/request/booking-package-search-request.ts +1 -0
- package/src/types/offer/booking-v2/response/booking-package-allotment-info.ts +1 -0
- package/src/types/offer/booking-v2/response/booking-package-item.ts +3 -0
- package/src/types/offer/booking-v2/shared/booking-package-flight-meta-data.ts +1 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
import { BookingPackageRequestRoom } from "../shared/booking-package-request-room";
|
|
2
|
-
export interface BookingPackageDetailsRequest {
|
|
3
|
-
catalogueId?: number;
|
|
4
|
-
rooms: BookingPackageRequestRoom[];
|
|
5
|
-
searchType: number;
|
|
6
|
-
productCode: string;
|
|
7
|
-
allotmentName?: string;
|
|
8
|
-
tourCode?: string;
|
|
9
|
-
fromDate: string;
|
|
10
|
-
toDate: string;
|
|
11
|
-
preNights?: number;
|
|
12
|
-
postNights?: number;
|
|
13
|
-
includeFlights?: boolean;
|
|
14
|
-
checkExternalAvailability?: boolean;
|
|
15
|
-
}
|
|
1
|
+
import { BookingPackageRequestRoom } from "../shared/booking-package-request-room";
|
|
2
|
+
export interface BookingPackageDetailsRequest {
|
|
3
|
+
catalogueId?: number;
|
|
4
|
+
rooms: BookingPackageRequestRoom[];
|
|
5
|
+
searchType: number;
|
|
6
|
+
productCode: string;
|
|
7
|
+
allotmentName?: string;
|
|
8
|
+
tourCode?: string;
|
|
9
|
+
fromDate: string;
|
|
10
|
+
toDate: string;
|
|
11
|
+
preNights?: number;
|
|
12
|
+
postNights?: number;
|
|
13
|
+
includeFlights?: boolean;
|
|
14
|
+
checkExternalAvailability?: boolean;
|
|
15
|
+
}
|
|
@@ -13,15 +13,18 @@ export interface BookingPackageItem {
|
|
|
13
13
|
name: string;
|
|
14
14
|
outwardFlightCode?: string;
|
|
15
15
|
outwardFlightNumbers?: string[];
|
|
16
|
+
outwardFlightStartDate?: string;
|
|
16
17
|
price: number;
|
|
17
18
|
regimeCode?: string;
|
|
18
19
|
returnFlightCode?: string;
|
|
19
20
|
returnFlightNumbers?: string[];
|
|
21
|
+
returnFlightEndDate?: string;
|
|
20
22
|
flightDescription?: string;
|
|
21
23
|
tagIds: number[];
|
|
22
24
|
toDate: string;
|
|
23
25
|
type: number;
|
|
24
26
|
includedServiceTypes: number[];
|
|
27
|
+
hotelProductCode?: string;
|
|
25
28
|
hotelStars?: string;
|
|
26
29
|
countryName?: string;
|
|
27
30
|
locationName?: string;
|
package/package.json
CHANGED
|
@@ -1,56 +1,56 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@qite/tide-client",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Frontend client for Tide",
|
|
5
|
-
"main": "build/index.js",
|
|
6
|
-
"scripts": {
|
|
7
|
-
"build": "rollup -c",
|
|
8
|
-
"tsc": "tsc --noEmit",
|
|
9
|
-
"format": "prettier --write .",
|
|
10
|
-
"test": "jest"
|
|
11
|
-
},
|
|
12
|
-
"repository": {
|
|
13
|
-
"type": "git",
|
|
14
|
-
"url": "git+ssh://git@bitbucket.org/qitegeneral/tide-client.git"
|
|
15
|
-
},
|
|
16
|
-
"keywords": [
|
|
17
|
-
"tide",
|
|
18
|
-
"client"
|
|
19
|
-
],
|
|
20
|
-
"author": "Kristof Colpaert <kristof.colpaert@qite.be>",
|
|
21
|
-
"license": "OBSD",
|
|
22
|
-
"homepage": "https://bitbucket.org/qitegeneral/tide-client#readme",
|
|
23
|
-
"devDependencies": {
|
|
24
|
-
"@rollup/plugin-commonjs": "^19.0.0",
|
|
25
|
-
"@rollup/plugin-node-resolve": "^13.0.0",
|
|
26
|
-
"@types/jest": "^26.0.23",
|
|
27
|
-
"@types/moment": "^2.13.0",
|
|
28
|
-
"dotenv": "^9.0.2",
|
|
29
|
-
"jest": "^26.6.3",
|
|
30
|
-
"jest-fetch-mock": "^3.0.3",
|
|
31
|
-
"momentjs": "^2.0.0",
|
|
32
|
-
"prettier": "^2.3.0",
|
|
33
|
-
"rollup": "^2.48.0",
|
|
34
|
-
"rollup-plugin-typescript2": "^0.30.0",
|
|
35
|
-
"ts-jest": "^26.5.6",
|
|
36
|
-
"tslib": "^2.2.0",
|
|
37
|
-
"typescript": "^4.2.4"
|
|
38
|
-
},
|
|
39
|
-
"jest": {
|
|
40
|
-
"moduleFileExtensions": [
|
|
41
|
-
"ts",
|
|
42
|
-
"js"
|
|
43
|
-
],
|
|
44
|
-
"transform": {
|
|
45
|
-
"^.+\\.ts$": "ts-jest"
|
|
46
|
-
},
|
|
47
|
-
"globals": {
|
|
48
|
-
"ts-jest": {
|
|
49
|
-
"tsconfig": "tsconfig.json"
|
|
50
|
-
}
|
|
51
|
-
},
|
|
52
|
-
"testMatch": [
|
|
53
|
-
"**/tests/**/*.test.ts"
|
|
54
|
-
]
|
|
55
|
-
}
|
|
56
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@qite/tide-client",
|
|
3
|
+
"version": "1.0.70",
|
|
4
|
+
"description": "Frontend client for Tide",
|
|
5
|
+
"main": "build/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "rollup -c",
|
|
8
|
+
"tsc": "tsc --noEmit",
|
|
9
|
+
"format": "prettier --write .",
|
|
10
|
+
"test": "jest"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+ssh://git@bitbucket.org/qitegeneral/tide-client.git"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"tide",
|
|
18
|
+
"client"
|
|
19
|
+
],
|
|
20
|
+
"author": "Kristof Colpaert <kristof.colpaert@qite.be>",
|
|
21
|
+
"license": "OBSD",
|
|
22
|
+
"homepage": "https://bitbucket.org/qitegeneral/tide-client#readme",
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@rollup/plugin-commonjs": "^19.0.0",
|
|
25
|
+
"@rollup/plugin-node-resolve": "^13.0.0",
|
|
26
|
+
"@types/jest": "^26.0.23",
|
|
27
|
+
"@types/moment": "^2.13.0",
|
|
28
|
+
"dotenv": "^9.0.2",
|
|
29
|
+
"jest": "^26.6.3",
|
|
30
|
+
"jest-fetch-mock": "^3.0.3",
|
|
31
|
+
"momentjs": "^2.0.0",
|
|
32
|
+
"prettier": "^2.3.0",
|
|
33
|
+
"rollup": "^2.48.0",
|
|
34
|
+
"rollup-plugin-typescript2": "^0.30.0",
|
|
35
|
+
"ts-jest": "^26.5.6",
|
|
36
|
+
"tslib": "^2.2.0",
|
|
37
|
+
"typescript": "^4.2.4"
|
|
38
|
+
},
|
|
39
|
+
"jest": {
|
|
40
|
+
"moduleFileExtensions": [
|
|
41
|
+
"ts",
|
|
42
|
+
"js"
|
|
43
|
+
],
|
|
44
|
+
"transform": {
|
|
45
|
+
"^.+\\.ts$": "ts-jest"
|
|
46
|
+
},
|
|
47
|
+
"globals": {
|
|
48
|
+
"ts-jest": {
|
|
49
|
+
"tsconfig": "tsconfig.json"
|
|
50
|
+
}
|
|
51
|
+
},
|
|
52
|
+
"testMatch": [
|
|
53
|
+
"**/tests/**/*.test.ts"
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
}
|
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { BookingPackageRequestRoom } from "../shared/booking-package-request-room";
|
|
2
|
-
|
|
3
|
-
export interface BookingPackageDetailsRequest {
|
|
4
|
-
catalogueId?: number;
|
|
5
|
-
rooms: BookingPackageRequestRoom[];
|
|
6
|
-
searchType: number;
|
|
7
|
-
productCode: string;
|
|
8
|
-
allotmentName?: string;
|
|
9
|
-
tourCode?: string;
|
|
10
|
-
fromDate: string;
|
|
11
|
-
toDate: string;
|
|
12
|
-
preNights?: number;
|
|
13
|
-
postNights?: number;
|
|
14
|
-
includeFlights?: boolean;
|
|
15
|
-
checkExternalAvailability?: boolean;
|
|
16
|
-
}
|
|
1
|
+
import { BookingPackageRequestRoom } from "../shared/booking-package-request-room";
|
|
2
|
+
|
|
3
|
+
export interface BookingPackageDetailsRequest {
|
|
4
|
+
catalogueId?: number;
|
|
5
|
+
rooms: BookingPackageRequestRoom[];
|
|
6
|
+
searchType: number;
|
|
7
|
+
productCode: string;
|
|
8
|
+
allotmentName?: string;
|
|
9
|
+
tourCode?: string;
|
|
10
|
+
fromDate: string;
|
|
11
|
+
toDate: string;
|
|
12
|
+
preNights?: number;
|
|
13
|
+
postNights?: number;
|
|
14
|
+
includeFlights?: boolean;
|
|
15
|
+
checkExternalAvailability?: boolean;
|
|
16
|
+
}
|
|
@@ -14,15 +14,18 @@ export interface BookingPackageItem {
|
|
|
14
14
|
name: string;
|
|
15
15
|
outwardFlightCode?: string;
|
|
16
16
|
outwardFlightNumbers?: string[];
|
|
17
|
+
outwardFlightStartDate?: string;
|
|
17
18
|
price: number;
|
|
18
19
|
regimeCode?: string;
|
|
19
20
|
returnFlightCode?: string;
|
|
20
21
|
returnFlightNumbers?: string[];
|
|
22
|
+
returnFlightEndDate?: string;
|
|
21
23
|
flightDescription?: string;
|
|
22
24
|
tagIds: number[];
|
|
23
25
|
toDate: string;
|
|
24
26
|
type: number;
|
|
25
27
|
includedServiceTypes: number[];
|
|
28
|
+
hotelProductCode?: string;
|
|
26
29
|
hotelStars?: string;
|
|
27
30
|
countryName?: string;
|
|
28
31
|
locationName?: string;
|