@qite/tide-client 1.0.91 → 1.0.93

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.
@@ -23,6 +23,8 @@ export interface BookingPackageItem {
23
23
  returnFlightStartDate?: string;
24
24
  returnFlightEndDate?: string;
25
25
  flightDescription?: string;
26
+ flightPrice: number;
27
+ averageFlightPricePerPerson: number;
26
28
  tagIds: number[];
27
29
  toDate: string;
28
30
  type: number;
@@ -1,15 +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
- price: number;
8
- amount: number;
9
- total: number;
10
- pricePerPax: BookingPricePerPax[];
11
- isInPackage: boolean;
12
- isSeparate: boolean;
13
- showPrice: boolean;
14
- requirementType?: number;
15
- }
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.91",
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.93",
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
+ }
@@ -24,6 +24,8 @@ export interface BookingPackageItem {
24
24
  returnFlightStartDate?: string;
25
25
  returnFlightEndDate?: string;
26
26
  flightDescription?: string;
27
+ flightPrice: number;
28
+ averageFlightPricePerPerson: number;
27
29
  tagIds: number[];
28
30
  toDate: string;
29
31
  type: number;
@@ -1,18 +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
-
9
- price: number;
10
- amount: number;
11
- total: number;
12
- pricePerPax: BookingPricePerPax[];
13
-
14
- isInPackage: boolean;
15
- isSeparate: boolean;
16
- showPrice: boolean;
17
- requirementType?: number;
18
- }
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
+ }