@tripian/core 7.0.5 → 7.0.9

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
@@ -196,6 +196,11 @@ declare class API {
196
196
  */
197
197
  coupons: (page: number, limit?: number) => Promise<Model.DataPayload<Model.Coupon[]>>;
198
198
  payment: (voucherOfferId: number) => Promise<Model.Coupon>;
199
+ /**
200
+ * Wallet
201
+ */
202
+ campaignReport: (campaignId: number) => Promise<Model.CampaignReport>;
203
+ campaignReportPay: (campaignId: number, id: number) => Promise<Model.CampaignReport>;
199
204
  /**
200
205
  * Logs
201
206
  */
@@ -104,6 +104,8 @@ interface ApiConstModel {
104
104
  BUSINESS_COUPON_FILE_UPLOAD: ApiConst;
105
105
  COUPONS: ApiConst;
106
106
  PAYMENT: ApiConst;
107
+ CAMPAIGN_REPORT: ApiConst;
108
+ CAMPAIGN_REPORT_PAY: ApiConst;
107
109
  LOGS: ApiConst;
108
110
  }
109
111
  export { ApiConst, ApiConstModel };