@springtree/eva-services-core-management 2.8.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.
|
@@ -6427,6 +6427,81 @@ Sub entities will also be created or updated, but will not be removed.
|
|
|
6427
6427
|
request?: EVA.Core.Management.PushLoyaltyProgram;
|
|
6428
6428
|
response?: EVA.Core.Management.PushLoyaltyProgramResponse;
|
|
6429
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
|
+
}
|
|
6430
6505
|
/**
|
|
6431
6506
|
* Push a LoyaltyProgram.
|
|
6432
6507
|
If it doesn't exist it will be created, otherwise is will be updated.
|