@tripian/core 7.1.5 → 7.1.7

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
@@ -186,8 +186,8 @@ declare class API {
186
186
  businessCouponApplication: (applicationId: number) => Promise<Model.CouponApplication | undefined>;
187
187
  businessCouponApplicationAdd: (couponApplicationRequest: Model.CouponApplicationRequest) => Promise<number>;
188
188
  private businessCouponApplicationUserUpdate;
189
- businessCouponApplicationUserApprove: (applicationId: number, travelerId: number, campaignId: number) => Promise<Model.CouponApplication | undefined>;
190
- businessCouponApplicationUserReject: (applicationId: number, travelerId: number, notes: string) => Promise<Model.CouponApplication | undefined>;
189
+ businessCouponApplicationUserApprove: (applicationId: number, travelerId: number, campaignId: number, bookingDate: string) => Promise<Model.CouponApplication | undefined>;
190
+ businessCouponApplicationUserReject: (applicationId: number, travelerId: number, campaignId: number, bookingDate: string, notes: string) => Promise<Model.CouponApplication | undefined>;
191
191
  businessCouponApplicationFileUpload: (file: string) => Promise<{
192
192
  url: string;
193
193
  }>;