@springtree/eva-services-core-management 2.16.4 → 2.17.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.
|
@@ -6466,6 +6466,45 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
|
|
|
6466
6466
|
request?: EVA.Core.Management.PushCase;
|
|
6467
6467
|
response?: EVA.Core.Management.PushCaseResponse;
|
|
6468
6468
|
}
|
|
6469
|
+
/**
|
|
6470
|
+
* TODO: Needs documentation
|
|
6471
|
+
*
|
|
6472
|
+
* @export
|
|
6473
|
+
* @class PushCompany
|
|
6474
|
+
* @implements {EvaService}
|
|
6475
|
+
*/
|
|
6476
|
+
class PushCompany implements IEvaServiceDefinition {
|
|
6477
|
+
name: string;
|
|
6478
|
+
path: string;
|
|
6479
|
+
request?: EVA.Core.Management.PushCompany;
|
|
6480
|
+
response?: EVA.Core.Management.PushCompanyResponse;
|
|
6481
|
+
}
|
|
6482
|
+
/**
|
|
6483
|
+
* TODO: Needs documentation
|
|
6484
|
+
*
|
|
6485
|
+
* @export
|
|
6486
|
+
* @class PushCompany_Async
|
|
6487
|
+
* @implements {EvaService}
|
|
6488
|
+
*/
|
|
6489
|
+
class PushCompany_Async implements IEvaServiceDefinition {
|
|
6490
|
+
name: string;
|
|
6491
|
+
path: string;
|
|
6492
|
+
request?: EVA.Core.Management.PushCompany;
|
|
6493
|
+
response?: EVA.Core.AsyncRequestResponse;
|
|
6494
|
+
}
|
|
6495
|
+
/**
|
|
6496
|
+
* TODO: Needs documentation
|
|
6497
|
+
*
|
|
6498
|
+
* @export
|
|
6499
|
+
* @class PushCompany_AsyncResult
|
|
6500
|
+
* @implements {EvaService}
|
|
6501
|
+
*/
|
|
6502
|
+
class PushCompany_AsyncResult implements IEvaServiceDefinition {
|
|
6503
|
+
name: string;
|
|
6504
|
+
path: string;
|
|
6505
|
+
request?: EVA.Core.AsyncRequestResultRequest;
|
|
6506
|
+
response?: EVA.Core.Management.PushCompanyResponse;
|
|
6507
|
+
}
|
|
6469
6508
|
/**
|
|
6470
6509
|
* Push a DiscountCoupon
|
|
6471
6510
|
*
|
|
@@ -6656,6 +6695,51 @@ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA
|
|
|
6656
6695
|
request?: EVA.Core.Management.RebalanceLoyaltyPoints;
|
|
6657
6696
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6658
6697
|
}
|
|
6698
|
+
/**
|
|
6699
|
+
* Asynchronously rebalance loyalty points of multiple users for a loyalty program.
|
|
6700
|
+
This service is not transactional, meaning that if a mutation fails, other mutations that have already succeeded will not be reverted.
|
|
6701
|
+
The maximum amount of users that can be rebalanced in a single request is 10,000.
|
|
6702
|
+
*
|
|
6703
|
+
* @export
|
|
6704
|
+
* @class RebalanceLoyaltyPointsForUsers
|
|
6705
|
+
* @implements {EvaService}
|
|
6706
|
+
*/
|
|
6707
|
+
class RebalanceLoyaltyPointsForUsers implements IEvaServiceDefinition {
|
|
6708
|
+
name: string;
|
|
6709
|
+
path: string;
|
|
6710
|
+
request?: EVA.Core.Management.RebalanceLoyaltyPointsForUsers;
|
|
6711
|
+
response?: EVA.Core.Management.RebalanceLoyaltyPointsForUsersResponse;
|
|
6712
|
+
}
|
|
6713
|
+
/**
|
|
6714
|
+
* Asynchronously rebalance loyalty points of multiple users for a loyalty program.
|
|
6715
|
+
This service is not transactional, meaning that if a mutation fails, other mutations that have already succeeded will not be reverted.
|
|
6716
|
+
The maximum amount of users that can be rebalanced in a single request is 10,000.
|
|
6717
|
+
*
|
|
6718
|
+
* @export
|
|
6719
|
+
* @class RebalanceLoyaltyPointsForUsers_Async
|
|
6720
|
+
* @implements {EvaService}
|
|
6721
|
+
*/
|
|
6722
|
+
class RebalanceLoyaltyPointsForUsers_Async implements IEvaServiceDefinition {
|
|
6723
|
+
name: string;
|
|
6724
|
+
path: string;
|
|
6725
|
+
request?: EVA.Core.Management.RebalanceLoyaltyPointsForUsers;
|
|
6726
|
+
response?: EVA.Core.AsyncRequestResponse;
|
|
6727
|
+
}
|
|
6728
|
+
/**
|
|
6729
|
+
* Asynchronously rebalance loyalty points of multiple users for a loyalty program.
|
|
6730
|
+
This service is not transactional, meaning that if a mutation fails, other mutations that have already succeeded will not be reverted.
|
|
6731
|
+
The maximum amount of users that can be rebalanced in a single request is 10,000.
|
|
6732
|
+
*
|
|
6733
|
+
* @export
|
|
6734
|
+
* @class RebalanceLoyaltyPointsForUsers_AsyncResult
|
|
6735
|
+
* @implements {EvaService}
|
|
6736
|
+
*/
|
|
6737
|
+
class RebalanceLoyaltyPointsForUsers_AsyncResult implements IEvaServiceDefinition {
|
|
6738
|
+
name: string;
|
|
6739
|
+
path: string;
|
|
6740
|
+
request?: EVA.Core.AsyncRequestResultRequest;
|
|
6741
|
+
response?: EVA.Core.Management.RebalanceLoyaltyPointsForUsersResponse;
|
|
6742
|
+
}
|
|
6659
6743
|
/**
|
|
6660
6744
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
6661
6745
|
*
|