@tripian/core 7.1.1 → 7.1.3

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
+ campaignCustomerReport: (campaignId: number) => Promise<Model.CampaignCustomerReport>;
204
205
  businessReport: () => Promise<Model.BusinessReport>;
205
206
  /**
206
207
  * Logs
@@ -106,6 +106,7 @@ interface ApiConstModel {
106
106
  PAYMENT: ApiConst;
107
107
  CAMPAIGN_REPORT: ApiConst;
108
108
  CAMPAIGN_REPORT_PAY: ApiConst;
109
+ CAMPAIGN_CUSTOMER_REPORT: ApiConst;
109
110
  BUSINESS_REPORT: ApiConst;
110
111
  LOGS: ApiConst;
111
112
  }