@tripian/core 9.1.73 → 9.1.74
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/index.js +2 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/providers/gyg/API.d.ts +2 -2
- package/providers/rezdy/API.d.ts +1 -1
- package/tcore.umd.js +2 -2
- package/tcore.umd.js.map +1 -1
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tripian/core",
|
|
3
|
-
"version": "9.1.
|
|
3
|
+
"version": "9.1.74",
|
|
4
4
|
"description": "Tripian Inc Web SDK",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@tripian/model": "9.1.
|
|
8
|
+
"@tripian/model": "9.1.74",
|
|
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
|
@@ -26,12 +26,12 @@ declare class API {
|
|
|
26
26
|
private sandbox;
|
|
27
27
|
private lang;
|
|
28
28
|
private currency;
|
|
29
|
-
constructor(apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string, lang: string, currency
|
|
29
|
+
constructor(apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string, lang: string, currency?: string);
|
|
30
30
|
categories: (limit?: number) => Promise<Providers.Gyg.Category[]>;
|
|
31
31
|
category: (categoryId: number) => Promise<Providers.Gyg.Category>;
|
|
32
32
|
private defaultTours;
|
|
33
33
|
private ticketTours;
|
|
34
|
-
toursAll: (cityName: string, cityCoordinate?: Model.Coordinate, radius?: number, date?: Providers.Gyg.TourDateRange, categoryIds?: number[], unique?: boolean,
|
|
34
|
+
toursAll: (cityName: string, cityCoordinate?: Model.Coordinate, radius?: number, date?: Providers.Gyg.TourDateRange, limit?: number, categoryIds?: number[], unique?: boolean, preformatted?: string) => Promise<Providers.Gyg.CatalogGroup[]>;
|
|
35
35
|
tours: (cityName: string, cityCoordinate?: Model.Coordinate, radius?: number, date?: Providers.Gyg.TourDateRange, categoryIds?: number[], unique?: boolean, limit?: number, preformatted?: string) => Promise<Providers.Gyg.CatalogGroup[]>;
|
|
36
36
|
tour: (tourId: number, preformatted?: string) => Promise<Providers.Gyg.Tour>;
|
|
37
37
|
private tourOptions_1;
|
package/providers/rezdy/API.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ declare class API {
|
|
|
5
5
|
private apiUrl;
|
|
6
6
|
private apiKey;
|
|
7
7
|
constructor(apiUrl: string, apiToken: string, proxyURL: string);
|
|
8
|
-
searchProducts: (
|
|
8
|
+
searchProducts: (limit?: number, offset?: number) => Promise<Providers.Rezdy.Product[]>;
|
|
9
9
|
productInfo: (productCode: string) => Promise<Providers.Rezdy.Product>;
|
|
10
10
|
}
|
|
11
11
|
export default API;
|