@tripian/core 9.1.78 → 9.1.80

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
@@ -12,6 +12,7 @@ import ProvidersRezdyAPI from './providers/rezdy/API';
12
12
  import ProvidersVidereoAPI from './providers/videreo/API';
13
13
  import ProvidersToristyAPI from './providers/toristy/API';
14
14
  import ProvidersVictoryAPI from './providers/victory/API';
15
+ import ProvidersRadialStorageAPI from './providers/radial-storage/API';
15
16
  declare let api: API;
16
17
  /**
17
18
  * This function initilize for web sdk.
@@ -27,6 +28,7 @@ type Providers = {
27
28
  videreo?: ProvidersVidereoAPI;
28
29
  toristy?: ProvidersToristyAPI;
29
30
  victory?: ProvidersVictoryAPI;
31
+ radialStorage?: ProvidersRadialStorageAPI;
30
32
  yelpInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string, lang?: string) => void;
31
33
  gygInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string, lang?: string, currency?: string) => void;
32
34
  bbInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string) => Promise<void>;
@@ -36,6 +38,7 @@ type Providers = {
36
38
  videreoInit: (apiUrl: string, proxyURL: string) => void;
37
39
  toristyInit: (apiUrl: string, apiToken: string, proxyURL: string) => void;
38
40
  victoryInit: (apiUrl: string, apiToken: string, apiSecret: string, proxyURL: string) => void;
41
+ radialStorageInit: () => void;
39
42
  };
40
43
  declare const providers: Providers;
41
44
  declare const ver: string;