@qite/tide-client 1.0.93 → 1.0.94
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/response/booking-price-detail.d.ts +16 -16
- package/build/types/offer/booking-v2/response/booking-travel-agent.d.ts +7 -7
- package/build/types/offer/booking-v2/shared/booking-package-option.d.ts +1 -0
- package/package.json +56 -56
- package/src/types/offer/booking-v2/response/booking-price-detail.ts +19 -19
- package/src/types/offer/booking-v2/response/booking-travel-agent.ts +7 -7
- package/src/types/offer/booking-v2/shared/booking-package-option.ts +1 -0
|
@@ -1,16 +1,16 @@
|
|
|
1
|
-
import { BookingPricePerPax } from "./booking-price-per-pax";
|
|
2
|
-
export interface BookingPriceDetail {
|
|
3
|
-
productName: string;
|
|
4
|
-
productCode: string;
|
|
5
|
-
priceDescription: string;
|
|
6
|
-
accommodationCode: string;
|
|
7
|
-
accommodationName: string;
|
|
8
|
-
price: number;
|
|
9
|
-
amount: number;
|
|
10
|
-
total: number;
|
|
11
|
-
pricePerPax: BookingPricePerPax[];
|
|
12
|
-
isInPackage: boolean;
|
|
13
|
-
isSeparate: boolean;
|
|
14
|
-
showPrice: boolean;
|
|
15
|
-
requirementType?: number;
|
|
16
|
-
}
|
|
1
|
+
import { BookingPricePerPax } from "./booking-price-per-pax";
|
|
2
|
+
export interface BookingPriceDetail {
|
|
3
|
+
productName: string;
|
|
4
|
+
productCode: string;
|
|
5
|
+
priceDescription: string;
|
|
6
|
+
accommodationCode: string;
|
|
7
|
+
accommodationName: string;
|
|
8
|
+
price: number;
|
|
9
|
+
amount: number;
|
|
10
|
+
total: number;
|
|
11
|
+
pricePerPax: BookingPricePerPax[];
|
|
12
|
+
isInPackage: boolean;
|
|
13
|
+
isSeparate: boolean;
|
|
14
|
+
showPrice: boolean;
|
|
15
|
+
requirementType?: number;
|
|
16
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export interface BookingTravelAgent {
|
|
2
|
-
id: number;
|
|
3
|
-
name: string;
|
|
4
|
-
location: string;
|
|
5
|
-
postalCode: string;
|
|
6
|
-
affiliateSlug: string;
|
|
7
|
-
}
|
|
1
|
+
export interface BookingTravelAgent {
|
|
2
|
+
id: number;
|
|
3
|
+
name: string;
|
|
4
|
+
location: string;
|
|
5
|
+
postalCode: string;
|
|
6
|
+
affiliateSlug: string;
|
|
7
|
+
}
|
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.94",
|
|
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,19 +1,19 @@
|
|
|
1
|
-
import { BookingPricePerPax } from "./booking-price-per-pax";
|
|
2
|
-
|
|
3
|
-
export interface BookingPriceDetail {
|
|
4
|
-
productName: string;
|
|
5
|
-
productCode: string;
|
|
6
|
-
priceDescription: string;
|
|
7
|
-
accommodationCode: string;
|
|
8
|
-
accommodationName: string;
|
|
9
|
-
|
|
10
|
-
price: number;
|
|
11
|
-
amount: number;
|
|
12
|
-
total: number;
|
|
13
|
-
pricePerPax: BookingPricePerPax[];
|
|
14
|
-
|
|
15
|
-
isInPackage: boolean;
|
|
16
|
-
isSeparate: boolean;
|
|
17
|
-
showPrice: boolean;
|
|
18
|
-
requirementType?: number;
|
|
19
|
-
}
|
|
1
|
+
import { BookingPricePerPax } from "./booking-price-per-pax";
|
|
2
|
+
|
|
3
|
+
export interface BookingPriceDetail {
|
|
4
|
+
productName: string;
|
|
5
|
+
productCode: string;
|
|
6
|
+
priceDescription: string;
|
|
7
|
+
accommodationCode: string;
|
|
8
|
+
accommodationName: string;
|
|
9
|
+
|
|
10
|
+
price: number;
|
|
11
|
+
amount: number;
|
|
12
|
+
total: number;
|
|
13
|
+
pricePerPax: BookingPricePerPax[];
|
|
14
|
+
|
|
15
|
+
isInPackage: boolean;
|
|
16
|
+
isSeparate: boolean;
|
|
17
|
+
showPrice: boolean;
|
|
18
|
+
requirementType?: number;
|
|
19
|
+
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
export interface BookingTravelAgent {
|
|
2
|
-
id: number;
|
|
3
|
-
name: string;
|
|
4
|
-
location: string;
|
|
5
|
-
postalCode: string;
|
|
6
|
-
affiliateSlug: string;
|
|
7
|
-
}
|
|
1
|
+
export interface BookingTravelAgent {
|
|
2
|
+
id: number;
|
|
3
|
+
name: string;
|
|
4
|
+
location: string;
|
|
5
|
+
postalCode: string;
|
|
6
|
+
affiliateSlug: string;
|
|
7
|
+
}
|