@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/easy/TDate.d.ts +16 -0
- package/easy/easy.d.ts +2 -0
- package/index.d.ts +1 -1
- package/index.js +4 -4
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/providers/gyg/API.d.ts +4 -4
- package/tcore.umd.js +4 -4
- package/tcore.umd.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tripian/core",
|
|
3
|
-
"version": "
|
|
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
|
+
"@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",
|
package/providers/gyg/API.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Model, { Providers } from '@tripian/model';
|
|
2
|
-
export
|
|
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
|
|
10
|
+
export type GygTourDataOptionAvailability = {
|
|
11
11
|
availability_id: number;
|
|
12
12
|
} & Providers.Gyg.TourAvailability & Providers.Gyg.TourOptionPricing;
|
|
13
|
-
export
|
|
13
|
+
export type GygTourDataOption = Providers.Gyg.TourOption & {
|
|
14
14
|
availabilities: GygTourDataOptionAvailability[];
|
|
15
15
|
};
|
|
16
|
-
export
|
|
16
|
+
export type GygTourData = {
|
|
17
17
|
tour: Providers.Gyg.Tour;
|
|
18
18
|
availableDates: string[];
|
|
19
19
|
formPersonsCategories: GygTourDataFormPersonsCategory[];
|