@tripian/core 6.0.70 → 6.0.72

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
@@ -169,6 +169,13 @@ declare class API {
169
169
  * Business Pre Registers
170
170
  */
171
171
  businessPreRegister: (preRegister: Model.PreRegister) => Promise<boolean>;
172
+ /**
173
+ * Coupon
174
+ */
175
+ businessCouponApplicationFileUpload: (file: string) => Promise<{
176
+ url: string;
177
+ }>;
178
+ businessCouponApplicationAdd: (couponApplication: Model.CouponApplication) => Promise<number>;
172
179
  /**
173
180
  * Logs
174
181
  */
@@ -93,6 +93,8 @@ interface ApiConstModel {
93
93
  BUSINESS_OFFER_CUSTOMERS: ApiConst;
94
94
  BUSINESS_OFFER_FILE_UPLOAD: ApiConst;
95
95
  RECOMMENDATIONS: ApiConst;
96
+ BUSINESS_COUPON_FILE_UPLOAD: ApiConst;
97
+ BUSINESS_COUPON_APPLICATION_ADD: ApiConst;
96
98
  LOGS: ApiConst;
97
99
  }
98
100
  export { ApiConst, ApiConstModel };