@tripian/core 7.1.0 → 7.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/api/API.d.ts CHANGED
@@ -201,6 +201,7 @@ declare class API {
201
201
  */
202
202
  campaignReport: (campaignId: number) => Promise<Model.CampaignReport>;
203
203
  campaignReportPay: (campaignId: number, id: number) => Promise<Model.CampaignReport>;
204
+ businessReport: () => Promise<Model.BusinessReport>;
204
205
  /**
205
206
  * Logs
206
207
  */
@@ -106,6 +106,7 @@ interface ApiConstModel {
106
106
  PAYMENT: ApiConst;
107
107
  CAMPAIGN_REPORT: ApiConst;
108
108
  CAMPAIGN_REPORT_PAY: ApiConst;
109
+ BUSINESS_REPORT: ApiConst;
109
110
  LOGS: ApiConst;
110
111
  }
111
112
  export { ApiConst, ApiConstModel };