@tripian/core 9.0.17 → 9.0.18

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/api/API.d.ts CHANGED
@@ -215,6 +215,7 @@ declare class API {
215
215
  campaignReportPay: (campaignId: number, id: number) => Promise<boolean>;
216
216
  campaignCustomerReport: (campaignId: number, query: Partial<Model.CampaignCustomerReportRequest>) => Promise<Model.DataPayload<Model.CampaignCustomerReport>>;
217
217
  businessReport: (query: Partial<Model.BusinessReportRequest>) => Promise<Model.DataPayload<Model.BusinessReport>>;
218
+ businessPreRegisterReport: (query: Partial<Model.BusinessPreRegisterReportRequest>) => Promise<Model.DataPayload<Model.BusinessReport>>;
218
219
  /**
219
220
  * Translations
220
221
  */
@@ -112,6 +112,7 @@ interface ApiConstModel {
112
112
  CAMPAIGN_REPORT_PAY: ApiConst;
113
113
  CAMPAIGN_CUSTOMER_REPORT: ApiConst;
114
114
  BUSINESS_REPORT: ApiConst;
115
+ BUSINESS_PRE_REGISTER_REPORT: ApiConst;
115
116
  TRANSLATIONS: ApiConst;
116
117
  LOGS: ApiConst;
117
118
  }
package/index.d.ts CHANGED
@@ -22,7 +22,7 @@ type Providers = {
22
22
  yelpInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string) => void;
23
23
  gygInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string, lang?: string, currency?: string) => void;
24
24
  bbInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string) => Promise<void>;
25
- travelifyInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string) => void;
25
+ travelifyInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string, clientId?: string) => void;
26
26
  viatorInit: (apiUrl: string, apiToken: string, sandbox: boolean, proxyURL: string) => void;
27
27
  };
28
28
  declare const providers: Providers;