@tripian/core 8.3.0 → 9.0.1

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/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@tripian/core",
3
- "version": "8.3.0",
3
+ "version": "9.0.1",
4
4
  "description": "Tripian Inc Web SDK",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
7
7
  "dependencies": {
8
- "@tripian/model": "8.3.0",
8
+ "@tripian/model": "9.0.1",
9
9
  "adyen-encryption": "^0.1.1",
10
10
  "axios": "^0.19.1",
11
11
  "cross-fetch": "^3.1.6",
@@ -1,5 +1,5 @@
1
1
  import Model, { Providers } from '@tripian/model';
2
- export declare type GygTourDataFormPersonsCategory = {
2
+ export type GygTourDataFormPersonsCategory = {
3
3
  addon: boolean;
4
4
  id: number;
5
5
  max_age?: number;
@@ -7,13 +7,13 @@ export declare type GygTourDataFormPersonsCategory = {
7
7
  name: string;
8
8
  stand_alone: boolean;
9
9
  };
10
- export declare type GygTourDataOptionAvailability = {
10
+ export type GygTourDataOptionAvailability = {
11
11
  availability_id: number;
12
12
  } & Providers.Gyg.TourAvailability & Providers.Gyg.TourOptionPricing;
13
- export declare type GygTourDataOption = Providers.Gyg.TourOption & {
13
+ export type GygTourDataOption = Providers.Gyg.TourOption & {
14
14
  availabilities: GygTourDataOptionAvailability[];
15
15
  };
16
- export declare type GygTourData = {
16
+ export type GygTourData = {
17
17
  tour: Providers.Gyg.Tour;
18
18
  availableDates: string[];
19
19
  formPersonsCategories: GygTourDataFormPersonsCategory[];