@tripian/core 9.0.11 → 9.0.12

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
@@ -194,7 +194,7 @@ declare class API {
194
194
  /**
195
195
  * Coupon
196
196
  */
197
- businessCouponApplications: (page: number, limit?: number) => Promise<Model.DataPayload<Model.CouponApplication[]>>;
197
+ businessCouponApplications: (page: number, status: 'waiting' | 'reviewed', limit?: number) => Promise<Model.DataPayload<Model.CouponApplication[]>>;
198
198
  businessCouponApplication: (applicationId: number) => Promise<Model.CouponApplication | undefined>;
199
199
  businessCouponApplicationAdd: (couponApplicationRequest: Model.CouponApplicationRequest) => Promise<number>;
200
200
  private businessCouponApplicationUserUpdate;