@springtree/eva-services-core-management 2.10.0 → 2.11.0

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.
@@ -3152,6 +3152,32 @@ A duplicated discount will not be Active and Verified.
3152
3152
  request?: EVA.Core.Management.GenerateDiscountCoupons;
3153
3153
  response?: EVA.Core.EmptyResponseMessage;
3154
3154
  }
3155
+ /**
3156
+ * Generate a batch DiscountCoupons, they will be emailed to the current user
3157
+ *
3158
+ * @export
3159
+ * @class GenerateDiscountCoupons_Async
3160
+ * @implements {EvaService}
3161
+ */
3162
+ class GenerateDiscountCoupons_Async implements IEvaServiceDefinition {
3163
+ name: string;
3164
+ path: string;
3165
+ request?: EVA.Core.Management.GenerateDiscountCoupons;
3166
+ response?: EVA.Core.AsyncRequestResponse;
3167
+ }
3168
+ /**
3169
+ * Generate a batch DiscountCoupons, they will be emailed to the current user
3170
+ *
3171
+ * @export
3172
+ * @class GenerateDiscountCoupons_AsyncResult
3173
+ * @implements {EvaService}
3174
+ */
3175
+ class GenerateDiscountCoupons_AsyncResult implements IEvaServiceDefinition {
3176
+ name: string;
3177
+ path: string;
3178
+ request?: EVA.Core.AsyncRequestResultRequest;
3179
+ response?: EVA.Core.EmptyResponseMessage;
3180
+ }
3155
3181
  /**
3156
3182
  * TODO: Needs documentation
3157
3183
  *
@@ -8312,6 +8338,32 @@ The data for this service can be gotten by first calling DownloadAssortmentProdu
8312
8338
  request?: EVA.Core.Management.UploadCouponExcel;
8313
8339
  response?: EVA.Core.Management.UploadCouponExcelResponse;
8314
8340
  }
8341
+ /**
8342
+ * Upload an excel with coupons.
8343
+ *
8344
+ * @export
8345
+ * @class UploadCouponExcel_Async
8346
+ * @implements {EvaService}
8347
+ */
8348
+ class UploadCouponExcel_Async implements IEvaServiceDefinition {
8349
+ name: string;
8350
+ path: string;
8351
+ request?: EVA.Core.Management.UploadCouponExcel;
8352
+ response?: EVA.Core.AsyncRequestResponse;
8353
+ }
8354
+ /**
8355
+ * Upload an excel with coupons.
8356
+ *
8357
+ * @export
8358
+ * @class UploadCouponExcel_AsyncResult
8359
+ * @implements {EvaService}
8360
+ */
8361
+ class UploadCouponExcel_AsyncResult implements IEvaServiceDefinition {
8362
+ name: string;
8363
+ path: string;
8364
+ request?: EVA.Core.AsyncRequestResultRequest;
8365
+ response?: EVA.Core.Management.UploadCouponExcelResponse;
8366
+ }
8315
8367
  /**
8316
8368
  * Upload the Excel based on the sample from `DownloadCustomersSample`.
8317
8369