@tripian/core 9.0.1 → 9.0.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
@@ -191,7 +191,7 @@ declare class API {
191
191
  businessCouponApplication: (applicationId: number) => Promise<Model.CouponApplication | undefined>;
192
192
  businessCouponApplicationAdd: (couponApplicationRequest: Model.CouponApplicationRequest) => Promise<number>;
193
193
  private businessCouponApplicationUserUpdate;
194
- businessCouponApplicationUserApprove: (applicationId: number, travelerId: number, campaignId: number, bookingDate: string) => Promise<Model.CouponApplication | undefined>;
194
+ businessCouponApplicationUserApprove: (applicationId: number, travelerId: number, campaignId: number, bookingDate: string, amount?: number) => Promise<Model.CouponApplication | undefined>;
195
195
  businessCouponApplicationUserReject: (applicationId: number, travelerId: number, campaignId: number, bookingDate: string, notes: string) => Promise<Model.CouponApplication | undefined>;
196
196
  businessCouponApplicationFileUpload: (file: string) => Promise<{
197
197
  url: string;