@springtree/eva-services-core-management 1.93.0 → 1.94.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.
- package/lib/EVA.Core.Management.Services.d.ts +39 -0
- package/lib/EVA.Core.Management.Services.d.ts.map +1 -1
- package/lib/EVA.Core.Management.Services.js +42 -0
- package/lib/EVA.Core.Management.Services.js.map +1 -1
- package/lib/eva-services-core-management.es5.js +42 -0
- package/lib/eva-services-core-management.es5.js.map +1 -1
- package/lib/eva-services-core-management.umd.js +42 -0
- package/lib/eva-services-core-management.umd.js.map +1 -1
- package/package.json +2 -2
|
@@ -2514,6 +2514,19 @@ File in state processing or processed can't be deleted due to generated financia
|
|
|
2514
2514
|
request?: EVA.Core.Management.DownloadAssortmentProducts;
|
|
2515
2515
|
response?: EVA.Core.ResourceResponseMessage;
|
|
2516
2516
|
}
|
|
2517
|
+
/**
|
|
2518
|
+
* Exports the coupons for the given discount to Excel.
|
|
2519
|
+
*
|
|
2520
|
+
* @export
|
|
2521
|
+
* @class DownloadCouponExcel
|
|
2522
|
+
* @implements {EvaService}
|
|
2523
|
+
*/
|
|
2524
|
+
class DownloadCouponExcel implements IEvaServiceDefinition {
|
|
2525
|
+
name: string;
|
|
2526
|
+
path: string;
|
|
2527
|
+
request?: EVA.Core.Management.DownloadCouponExcel;
|
|
2528
|
+
response?: EVA.Core.ResourceWithBlobIDResponseMessage;
|
|
2529
|
+
}
|
|
2517
2530
|
/**
|
|
2518
2531
|
* Download template to upload an excel with coupons.
|
|
2519
2532
|
*
|
|
@@ -2527,6 +2540,32 @@ File in state processing or processed can't be deleted due to generated financia
|
|
|
2527
2540
|
request?: EVA.Core.Management.DownloadCouponExcelTemplate;
|
|
2528
2541
|
response?: EVA.Core.ResourceWithBlobIDResponseMessage;
|
|
2529
2542
|
}
|
|
2543
|
+
/**
|
|
2544
|
+
* Exports the coupons for the given discount to Excel.
|
|
2545
|
+
*
|
|
2546
|
+
* @export
|
|
2547
|
+
* @class DownloadCouponExcel_Async
|
|
2548
|
+
* @implements {EvaService}
|
|
2549
|
+
*/
|
|
2550
|
+
class DownloadCouponExcel_Async implements IEvaServiceDefinition {
|
|
2551
|
+
name: string;
|
|
2552
|
+
path: string;
|
|
2553
|
+
request?: EVA.Core.Management.DownloadCouponExcel;
|
|
2554
|
+
response?: EVA.Core.AsyncRequestResponse;
|
|
2555
|
+
}
|
|
2556
|
+
/**
|
|
2557
|
+
* Exports the coupons for the given discount to Excel.
|
|
2558
|
+
*
|
|
2559
|
+
* @export
|
|
2560
|
+
* @class DownloadCouponExcel_AsyncResult
|
|
2561
|
+
* @implements {EvaService}
|
|
2562
|
+
*/
|
|
2563
|
+
class DownloadCouponExcel_AsyncResult implements IEvaServiceDefinition {
|
|
2564
|
+
name: string;
|
|
2565
|
+
path: string;
|
|
2566
|
+
request?: EVA.Core.AsyncRequestResultRequest;
|
|
2567
|
+
response?: EVA.Core.ResourceWithBlobIDResponseMessage;
|
|
2568
|
+
}
|
|
2530
2569
|
/**
|
|
2531
2570
|
* Download an Excel sample which can be filled with customers. The populated excel can be uploaded through the `UploadCustomers` service.
|
|
2532
2571
|
*
|