@tripian/core 9.0.50 → 9.1.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/index.d.ts CHANGED
@@ -8,6 +8,7 @@ import ProvidersGygAPI from './providers/gyg/API';
8
8
  import ProvidersBbAPI from './providers/bb/API';
9
9
  import ProvidersTravelifyAPI from './providers/travelify/API';
10
10
  import ProvidersViatorAPI from './providers/viator/API';
11
+ import ProvidersRezdyAPI from './providers/rezdy/API';
11
12
  declare let api: API;
12
13
  /**
13
14
  * This function initilize for web sdk.
@@ -19,11 +20,13 @@ type Providers = {
19
20
  bb?: ProvidersBbAPI;
20
21
  travelify?: ProvidersTravelifyAPI;
21
22
  viator?: ProvidersViatorAPI;
23
+ rezdy?: ProvidersRezdyAPI;
22
24
  yelpInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string) => void;
23
25
  gygInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string, lang?: string, currency?: string) => void;
24
26
  bbInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string) => Promise<void>;
25
27
  travelifyInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string, clientId?: string) => void;
26
28
  viatorInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string) => void;
29
+ rezdyInit: (apiUrl: string, apiToken: string, proxyURL: string) => void;
27
30
  };
28
31
  declare const providers: Providers;
29
32
  declare const ver: string;