@springtree/eva-services-core-management 2.7.0 → 2.9.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.
@@ -6399,6 +6399,19 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
6399
6399
  request?: EVA.Core.Management.PushCase;
6400
6400
  response?: EVA.Core.Management.PushCaseResponse;
6401
6401
  }
6402
+ /**
6403
+ * Push a DiscountCoupon
6404
+ *
6405
+ * @export
6406
+ * @class PushDiscountCoupons
6407
+ * @implements {EvaService}
6408
+ */
6409
+ class PushDiscountCoupons implements IEvaServiceDefinition {
6410
+ name: string;
6411
+ path: string;
6412
+ request?: EVA.Core.Management.PushDiscountCoupons;
6413
+ response?: EVA.Core.Management.PushDiscountCouponsResponse;
6414
+ }
6402
6415
  /**
6403
6416
  * Push a LoyaltyProgram.
6404
6417
  If it doesn't exist it will be created, otherwise is will be updated.
@@ -6414,6 +6427,81 @@ Sub entities will also be created or updated, but will not be removed.
6414
6427
  request?: EVA.Core.Management.PushLoyaltyProgram;
6415
6428
  response?: EVA.Core.Management.PushLoyaltyProgramResponse;
6416
6429
  }
6430
+ /**
6431
+ * Push a LoyaltyProgramGroup.
6432
+ If it doesn't exist it will be created, otherwise is will be updated.
6433
+
6434
+ ATTENTION!
6435
+ When the currency is changed, the budget usages will be reset to 0!
6436
+
6437
+ ATTENTION!
6438
+ When a change to Status, StartDate, EndDate or Currency leads to the group being deactivated, all related loyalty programs will also be deactivated.
6439
+ When a change to Status, StartDate, EndDate or Currency leads to the group being reactivated, all related loyalty programs will also be reactivated when the option ReactivateProgramsWhenPossible is set to true. Otherwise all deactivated programs need to be manually reactivated.
6440
+
6441
+ ATTENTION!
6442
+ When the budget is lowered below the current used budget and the `DeactivateWhenBudgetIsReached` is set to true, all related programs will be deactivated.
6443
+ When the budget is cleared or raised above the current used budget, or `DeactivateWhenBudgetIsReached` is set to false, and the `ReactivateProgramsWhenPossible` is set to true, all programs that were deactivate by the group budget will be reactivated when possible.
6444
+ *
6445
+ * @export
6446
+ * @class PushLoyaltyProgramGroup
6447
+ * @implements {EvaService}
6448
+ */
6449
+ class PushLoyaltyProgramGroup implements IEvaServiceDefinition {
6450
+ name: string;
6451
+ path: string;
6452
+ request?: EVA.Core.Management.PushLoyaltyProgramGroup;
6453
+ response?: EVA.Core.Management.PushLoyaltyProgramGroupResponse;
6454
+ }
6455
+ /**
6456
+ * Push a LoyaltyProgramGroup.
6457
+ If it doesn't exist it will be created, otherwise is will be updated.
6458
+
6459
+ ATTENTION!
6460
+ When the currency is changed, the budget usages will be reset to 0!
6461
+
6462
+ ATTENTION!
6463
+ When a change to Status, StartDate, EndDate or Currency leads to the group being deactivated, all related loyalty programs will also be deactivated.
6464
+ When a change to Status, StartDate, EndDate or Currency leads to the group being reactivated, all related loyalty programs will also be reactivated when the option ReactivateProgramsWhenPossible is set to true. Otherwise all deactivated programs need to be manually reactivated.
6465
+
6466
+ ATTENTION!
6467
+ When the budget is lowered below the current used budget and the `DeactivateWhenBudgetIsReached` is set to true, all related programs will be deactivated.
6468
+ When the budget is cleared or raised above the current used budget, or `DeactivateWhenBudgetIsReached` is set to false, and the `ReactivateProgramsWhenPossible` is set to true, all programs that were deactivate by the group budget will be reactivated when possible.
6469
+ *
6470
+ * @export
6471
+ * @class PushLoyaltyProgramGroup_Async
6472
+ * @implements {EvaService}
6473
+ */
6474
+ class PushLoyaltyProgramGroup_Async implements IEvaServiceDefinition {
6475
+ name: string;
6476
+ path: string;
6477
+ request?: EVA.Core.Management.PushLoyaltyProgramGroup;
6478
+ response?: EVA.Core.AsyncRequestResponse;
6479
+ }
6480
+ /**
6481
+ * Push a LoyaltyProgramGroup.
6482
+ If it doesn't exist it will be created, otherwise is will be updated.
6483
+
6484
+ ATTENTION!
6485
+ When the currency is changed, the budget usages will be reset to 0!
6486
+
6487
+ ATTENTION!
6488
+ When a change to Status, StartDate, EndDate or Currency leads to the group being deactivated, all related loyalty programs will also be deactivated.
6489
+ When a change to Status, StartDate, EndDate or Currency leads to the group being reactivated, all related loyalty programs will also be reactivated when the option ReactivateProgramsWhenPossible is set to true. Otherwise all deactivated programs need to be manually reactivated.
6490
+
6491
+ ATTENTION!
6492
+ When the budget is lowered below the current used budget and the `DeactivateWhenBudgetIsReached` is set to true, all related programs will be deactivated.
6493
+ When the budget is cleared or raised above the current used budget, or `DeactivateWhenBudgetIsReached` is set to false, and the `ReactivateProgramsWhenPossible` is set to true, all programs that were deactivate by the group budget will be reactivated when possible.
6494
+ *
6495
+ * @export
6496
+ * @class PushLoyaltyProgramGroup_AsyncResult
6497
+ * @implements {EvaService}
6498
+ */
6499
+ class PushLoyaltyProgramGroup_AsyncResult implements IEvaServiceDefinition {
6500
+ name: string;
6501
+ path: string;
6502
+ request?: EVA.Core.AsyncRequestResultRequest;
6503
+ response?: EVA.Core.Management.PushLoyaltyProgramGroupResponse;
6504
+ }
6417
6505
  /**
6418
6506
  * Push a LoyaltyProgram.
6419
6507
  If it doesn't exist it will be created, otherwise is will be updated.
@@ -8237,32 +8325,6 @@ The data for this service can be gotten by first calling DownloadAssortmentProdu
8237
8325
  request?: EVA.Core.Management.UploadCouponExcel;
8238
8326
  response?: EVA.Core.Management.UploadCouponExcelResponse;
8239
8327
  }
8240
- /**
8241
- * Upload an excel with coupons.
8242
- *
8243
- * @export
8244
- * @class UploadCouponExcel_Async
8245
- * @implements {EvaService}
8246
- */
8247
- class UploadCouponExcel_Async implements IEvaServiceDefinition {
8248
- name: string;
8249
- path: string;
8250
- request?: EVA.Core.Management.UploadCouponExcel;
8251
- response?: EVA.Core.AsyncRequestResponse;
8252
- }
8253
- /**
8254
- * Upload an excel with coupons.
8255
- *
8256
- * @export
8257
- * @class UploadCouponExcel_AsyncResult
8258
- * @implements {EvaService}
8259
- */
8260
- class UploadCouponExcel_AsyncResult implements IEvaServiceDefinition {
8261
- name: string;
8262
- path: string;
8263
- request?: EVA.Core.AsyncRequestResultRequest;
8264
- response?: EVA.Core.Management.UploadCouponExcelResponse;
8265
- }
8266
8328
  /**
8267
8329
  * Upload the Excel based on the sample from `DownloadCustomersSample`.
8268
8330