@qite/tide-client 1.1.91 → 1.1.92
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.map +1 -1
- package/build/types/booking-v2/response/booking-package-item.d.ts +40 -40
- package/build/types/booking-v2/shared/booking-package.d.ts +14 -14
- package/build/types/web/agent-dossier-item.d.ts +1 -0
- package/build/types/web/agent-dossier.d.ts +1 -0
- package/package.json +64 -64
|
@@ -1,40 +1,40 @@
|
|
|
1
|
-
import { BookingPackageAllotmentInfo } from "./booking-package-allotment-info";
|
|
2
|
-
export interface BookingPackageItem {
|
|
3
|
-
accommodationCode: string;
|
|
4
|
-
accommodationName?: string;
|
|
5
|
-
externalAccommodationCode?: string;
|
|
6
|
-
airportCode?: string;
|
|
7
|
-
allotment: BookingPackageAllotmentInfo;
|
|
8
|
-
averagePricePerPerson: number;
|
|
9
|
-
catalogueId: number;
|
|
10
|
-
code: string;
|
|
11
|
-
fromDate: string;
|
|
12
|
-
latitude: number;
|
|
13
|
-
longitude: number;
|
|
14
|
-
name: string;
|
|
15
|
-
outwardFlightCode?: string;
|
|
16
|
-
outwardFlightNumbers?: string[];
|
|
17
|
-
outwardFlightStartDate?: string;
|
|
18
|
-
outwardFlightEndDate?: string;
|
|
19
|
-
price: number;
|
|
20
|
-
deposit?: number;
|
|
21
|
-
regimeCode?: string;
|
|
22
|
-
returnFlightCode?: string;
|
|
23
|
-
returnFlightNumbers?: string[];
|
|
24
|
-
returnFlightStartDate?: string;
|
|
25
|
-
returnFlightEndDate?: string;
|
|
26
|
-
flightDescription?: string;
|
|
27
|
-
flightPrice: number;
|
|
28
|
-
averageFlightPricePerPerson: number;
|
|
29
|
-
tagIds: number[];
|
|
30
|
-
toDate: string;
|
|
31
|
-
type: number;
|
|
32
|
-
includedServiceTypes: number[];
|
|
33
|
-
hotelProductCode?: string;
|
|
34
|
-
hotelStars?: string;
|
|
35
|
-
countryName?: string;
|
|
36
|
-
locationName?: string;
|
|
37
|
-
stayFromDate: Date;
|
|
38
|
-
stayToDate: Date;
|
|
39
|
-
currencyCode: string;
|
|
40
|
-
}
|
|
1
|
+
import { BookingPackageAllotmentInfo } from "./booking-package-allotment-info";
|
|
2
|
+
export interface BookingPackageItem {
|
|
3
|
+
accommodationCode: string;
|
|
4
|
+
accommodationName?: string;
|
|
5
|
+
externalAccommodationCode?: string;
|
|
6
|
+
airportCode?: string;
|
|
7
|
+
allotment: BookingPackageAllotmentInfo;
|
|
8
|
+
averagePricePerPerson: number;
|
|
9
|
+
catalogueId: number;
|
|
10
|
+
code: string;
|
|
11
|
+
fromDate: string;
|
|
12
|
+
latitude: number;
|
|
13
|
+
longitude: number;
|
|
14
|
+
name: string;
|
|
15
|
+
outwardFlightCode?: string;
|
|
16
|
+
outwardFlightNumbers?: string[];
|
|
17
|
+
outwardFlightStartDate?: string;
|
|
18
|
+
outwardFlightEndDate?: string;
|
|
19
|
+
price: number;
|
|
20
|
+
deposit?: number;
|
|
21
|
+
regimeCode?: string;
|
|
22
|
+
returnFlightCode?: string;
|
|
23
|
+
returnFlightNumbers?: string[];
|
|
24
|
+
returnFlightStartDate?: string;
|
|
25
|
+
returnFlightEndDate?: string;
|
|
26
|
+
flightDescription?: string;
|
|
27
|
+
flightPrice: number;
|
|
28
|
+
averageFlightPricePerPerson: number;
|
|
29
|
+
tagIds: number[];
|
|
30
|
+
toDate: string;
|
|
31
|
+
type: number;
|
|
32
|
+
includedServiceTypes: number[];
|
|
33
|
+
hotelProductCode?: string;
|
|
34
|
+
hotelStars?: string;
|
|
35
|
+
countryName?: string;
|
|
36
|
+
locationName?: string;
|
|
37
|
+
stayFromDate: Date;
|
|
38
|
+
stayToDate: Date;
|
|
39
|
+
currencyCode: string;
|
|
40
|
+
}
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
-
import { BookingPackageFlightInfo } from "../response/booking-package-flight-info";
|
|
2
|
-
import { BookingPackageFlight } from "./booking-package-flight";
|
|
3
|
-
import { BookingPackageOption } from "./booking-package-option";
|
|
4
|
-
import { BookingPackageTag } from "./booking-package-tag";
|
|
5
|
-
export interface BookingPackage {
|
|
6
|
-
outwardFlights: BookingPackageFlight[];
|
|
7
|
-
returnFlights: BookingPackageFlight[];
|
|
8
|
-
options: BookingPackageOption[];
|
|
9
|
-
tags: BookingPackageTag[];
|
|
10
|
-
flightInfo: BookingPackageFlightInfo;
|
|
11
|
-
currencyCode: string;
|
|
12
|
-
transactionId: string;
|
|
13
|
-
transactionExpiration: string;
|
|
14
|
-
}
|
|
1
|
+
import { BookingPackageFlightInfo } from "../response/booking-package-flight-info";
|
|
2
|
+
import { BookingPackageFlight } from "./booking-package-flight";
|
|
3
|
+
import { BookingPackageOption } from "./booking-package-option";
|
|
4
|
+
import { BookingPackageTag } from "./booking-package-tag";
|
|
5
|
+
export interface BookingPackage {
|
|
6
|
+
outwardFlights: BookingPackageFlight[];
|
|
7
|
+
returnFlights: BookingPackageFlight[];
|
|
8
|
+
options: BookingPackageOption[];
|
|
9
|
+
tags: BookingPackageTag[];
|
|
10
|
+
flightInfo: BookingPackageFlightInfo;
|
|
11
|
+
currencyCode: string;
|
|
12
|
+
transactionId: string;
|
|
13
|
+
transactionExpiration: string;
|
|
14
|
+
}
|
|
@@ -12,6 +12,7 @@ export interface AgentDossier {
|
|
|
12
12
|
agencyContactPerson: string;
|
|
13
13
|
agentId: number;
|
|
14
14
|
paxMainBookerName: string;
|
|
15
|
+
productTagIds: number[];
|
|
15
16
|
agentAllotments: AgentDossierAllotment[];
|
|
16
17
|
agentEntryLines: AgentDossierEntryLine[];
|
|
17
18
|
agentTravelers: AgentDossierTraveler[];
|
package/package.json
CHANGED
|
@@ -1,64 +1,64 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@qite/tide-client",
|
|
3
|
-
"version": "1.1.
|
|
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
|
-
"copy": "cpx \"**/*.*\" \"../travelworld.gatsby/node_modules/@qite/tide-client\""
|
|
12
|
-
},
|
|
13
|
-
"repository": {
|
|
14
|
-
"type": "git",
|
|
15
|
-
"url": "git+ssh://git@bitbucket.org/qitegeneral/tide-client.git"
|
|
16
|
-
},
|
|
17
|
-
"keywords": [
|
|
18
|
-
"tide",
|
|
19
|
-
"client"
|
|
20
|
-
],
|
|
21
|
-
"maintainers": [
|
|
22
|
-
"Loris Decoster <loris@qite.be>",
|
|
23
|
-
"Bram De Cuyper <bram.de.cuyper@qite.be>",
|
|
24
|
-
"Maarten Brysbaert <maarten.brysbaert@qite.be>"
|
|
25
|
-
],
|
|
26
|
-
"license": "OBSD",
|
|
27
|
-
"homepage": "https://bitbucket.org/qitegeneral/tide-client#readme",
|
|
28
|
-
"devDependencies": {
|
|
29
|
-
"@rollup/plugin-commonjs": "^19.0.0",
|
|
30
|
-
"@rollup/plugin-node-resolve": "^13.0.0",
|
|
31
|
-
"@types/jest": "^26.0.23",
|
|
32
|
-
"@types/moment": "^2.13.0",
|
|
33
|
-
"dotenv": "^9.0.2",
|
|
34
|
-
"jest": "^26.6.3",
|
|
35
|
-
"jest-fetch-mock": "^3.0.3",
|
|
36
|
-
"moment": "^2.0.0",
|
|
37
|
-
"prettier": "^2.3.0",
|
|
38
|
-
"rollup": "^2.48.0",
|
|
39
|
-
"rollup-plugin-typescript2": "0.36.0",
|
|
40
|
-
"ts-jest": "^26.5.6",
|
|
41
|
-
"tslib": "^2.2.0",
|
|
42
|
-
"typescript": "^4.2.4"
|
|
43
|
-
},
|
|
44
|
-
"jest": {
|
|
45
|
-
"moduleFileExtensions": [
|
|
46
|
-
"ts",
|
|
47
|
-
"js"
|
|
48
|
-
],
|
|
49
|
-
"transform": {
|
|
50
|
-
"^.+\\.ts$": "ts-jest"
|
|
51
|
-
},
|
|
52
|
-
"globals": {
|
|
53
|
-
"ts-jest": {
|
|
54
|
-
"tsconfig": "tsconfig.json"
|
|
55
|
-
}
|
|
56
|
-
},
|
|
57
|
-
"testMatch": [
|
|
58
|
-
"**/tests/**/*.test.ts"
|
|
59
|
-
]
|
|
60
|
-
},
|
|
61
|
-
"dependencies": {
|
|
62
|
-
"cpx": "^1.5.0"
|
|
63
|
-
}
|
|
64
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@qite/tide-client",
|
|
3
|
+
"version": "1.1.92",
|
|
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
|
+
"copy": "cpx \"**/*.*\" \"../travelworld.gatsby/node_modules/@qite/tide-client\""
|
|
12
|
+
},
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+ssh://git@bitbucket.org/qitegeneral/tide-client.git"
|
|
16
|
+
},
|
|
17
|
+
"keywords": [
|
|
18
|
+
"tide",
|
|
19
|
+
"client"
|
|
20
|
+
],
|
|
21
|
+
"maintainers": [
|
|
22
|
+
"Loris Decoster <loris@qite.be>",
|
|
23
|
+
"Bram De Cuyper <bram.de.cuyper@qite.be>",
|
|
24
|
+
"Maarten Brysbaert <maarten.brysbaert@qite.be>"
|
|
25
|
+
],
|
|
26
|
+
"license": "OBSD",
|
|
27
|
+
"homepage": "https://bitbucket.org/qitegeneral/tide-client#readme",
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@rollup/plugin-commonjs": "^19.0.0",
|
|
30
|
+
"@rollup/plugin-node-resolve": "^13.0.0",
|
|
31
|
+
"@types/jest": "^26.0.23",
|
|
32
|
+
"@types/moment": "^2.13.0",
|
|
33
|
+
"dotenv": "^9.0.2",
|
|
34
|
+
"jest": "^26.6.3",
|
|
35
|
+
"jest-fetch-mock": "^3.0.3",
|
|
36
|
+
"moment": "^2.0.0",
|
|
37
|
+
"prettier": "^2.3.0",
|
|
38
|
+
"rollup": "^2.48.0",
|
|
39
|
+
"rollup-plugin-typescript2": "0.36.0",
|
|
40
|
+
"ts-jest": "^26.5.6",
|
|
41
|
+
"tslib": "^2.2.0",
|
|
42
|
+
"typescript": "^4.2.4"
|
|
43
|
+
},
|
|
44
|
+
"jest": {
|
|
45
|
+
"moduleFileExtensions": [
|
|
46
|
+
"ts",
|
|
47
|
+
"js"
|
|
48
|
+
],
|
|
49
|
+
"transform": {
|
|
50
|
+
"^.+\\.ts$": "ts-jest"
|
|
51
|
+
},
|
|
52
|
+
"globals": {
|
|
53
|
+
"ts-jest": {
|
|
54
|
+
"tsconfig": "tsconfig.json"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"testMatch": [
|
|
58
|
+
"**/tests/**/*.test.ts"
|
|
59
|
+
]
|
|
60
|
+
},
|
|
61
|
+
"dependencies": {
|
|
62
|
+
"cpx": "^1.5.0"
|
|
63
|
+
}
|
|
64
|
+
}
|