@springtree/eva-services-core-management 1.88.0 → 1.90.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 +160 -31
- package/lib/EVA.Core.Management.Services.d.ts.map +1 -1
- package/lib/EVA.Core.Management.Services.js +173 -35
- package/lib/EVA.Core.Management.Services.js.map +1 -1
- package/lib/eva-services-core-management.es5.js +173 -35
- package/lib/eva-services-core-management.es5.js.map +1 -1
- package/lib/eva-services-core-management.umd.js +173 -35
- package/lib/eva-services-core-management.umd.js.map +1 -1
- package/package.json +2 -2
|
@@ -255,6 +255,20 @@ But if the list is a mixed product list, all updates will be applied according t
|
|
|
255
255
|
}
|
|
256
256
|
}
|
|
257
257
|
CoreManagement.AuditingValidateConfiguration = AuditingValidateConfiguration;
|
|
258
|
+
/**
|
|
259
|
+
* Block a users subscription without unsubscribing.
|
|
260
|
+
*
|
|
261
|
+
* @export
|
|
262
|
+
* @class BlockUserSubscription
|
|
263
|
+
* @implements {EvaService}
|
|
264
|
+
*/
|
|
265
|
+
class BlockUserSubscription {
|
|
266
|
+
constructor() {
|
|
267
|
+
this.name = 'CoreManagement:BlockUserSubscription';
|
|
268
|
+
this.path = '/message/BlockUserSubscription';
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
CoreManagement.BlockUserSubscription = BlockUserSubscription;
|
|
258
272
|
/**
|
|
259
273
|
* Removes all unused settings. Set ReportOnly to let this service return all settings that would be deleted.
|
|
260
274
|
*
|
|
@@ -1237,7 +1251,7 @@ Optionally adds a record in the ProductUnitOfMeasure conversion table for the su
|
|
|
1237
1251
|
}
|
|
1238
1252
|
CoreManagement.CreateRepair = CreateRepair;
|
|
1239
1253
|
/**
|
|
1240
|
-
* Creates a new
|
|
1254
|
+
* Creates a new interaction associated with a specific repair
|
|
1241
1255
|
*
|
|
1242
1256
|
* @export
|
|
1243
1257
|
* @class CreateRepairInteraction
|
|
@@ -3704,6 +3718,20 @@ At this moment the supported DeviceTypes are:
|
|
|
3704
3718
|
}
|
|
3705
3719
|
}
|
|
3706
3720
|
CoreManagement.GetDiscountCampaignByID = GetDiscountCampaignByID;
|
|
3721
|
+
/**
|
|
3722
|
+
* Get discount coupons by discount ID
|
|
3723
|
+
*
|
|
3724
|
+
* @export
|
|
3725
|
+
* @class GetDiscountCouponByID
|
|
3726
|
+
* @implements {EvaService}
|
|
3727
|
+
*/
|
|
3728
|
+
class GetDiscountCouponByID {
|
|
3729
|
+
constructor() {
|
|
3730
|
+
this.name = 'CoreManagement:GetDiscountCouponByID';
|
|
3731
|
+
this.path = '/message/GetDiscountCouponByID';
|
|
3732
|
+
}
|
|
3733
|
+
}
|
|
3734
|
+
CoreManagement.GetDiscountCouponByID = GetDiscountCouponByID;
|
|
3707
3735
|
/**
|
|
3708
3736
|
* Get discount coupons by discount ID
|
|
3709
3737
|
*
|
|
@@ -4152,20 +4180,6 @@ At this moment the supported DeviceTypes are:
|
|
|
4152
4180
|
}
|
|
4153
4181
|
}
|
|
4154
4182
|
CoreManagement.GetPersonalizedPromotionByID = GetPersonalizedPromotionByID;
|
|
4155
|
-
/**
|
|
4156
|
-
* Get all your personalized promotion products.
|
|
4157
|
-
*
|
|
4158
|
-
* @export
|
|
4159
|
-
* @class GetPersonalizedPromotionProducts
|
|
4160
|
-
* @implements {EvaService}
|
|
4161
|
-
*/
|
|
4162
|
-
class GetPersonalizedPromotionProducts {
|
|
4163
|
-
constructor() {
|
|
4164
|
-
this.name = 'CoreManagement:GetPersonalizedPromotionProducts';
|
|
4165
|
-
this.path = '/message/GetPersonalizedPromotionProducts';
|
|
4166
|
-
}
|
|
4167
|
-
}
|
|
4168
|
-
CoreManagement.GetPersonalizedPromotionProducts = GetPersonalizedPromotionProducts;
|
|
4169
4183
|
/**
|
|
4170
4184
|
* Get loyalty point rule.
|
|
4171
4185
|
*
|
|
@@ -4653,6 +4667,20 @@ These handlers are custom build to fetch values for ProductRequirements from ext
|
|
|
4653
4667
|
}
|
|
4654
4668
|
}
|
|
4655
4669
|
CoreManagement.GetUserOrigins = GetUserOrigins;
|
|
4670
|
+
/**
|
|
4671
|
+
* Get all products for a personalized promotion for the logged in user or the given user.
|
|
4672
|
+
*
|
|
4673
|
+
* @export
|
|
4674
|
+
* @class GetUserPersonalizedPromotionProducts
|
|
4675
|
+
* @implements {EvaService}
|
|
4676
|
+
*/
|
|
4677
|
+
class GetUserPersonalizedPromotionProducts {
|
|
4678
|
+
constructor() {
|
|
4679
|
+
this.name = 'CoreManagement:GetUserPersonalizedPromotionProducts';
|
|
4680
|
+
this.path = '/message/GetUserPersonalizedPromotionProducts';
|
|
4681
|
+
}
|
|
4682
|
+
}
|
|
4683
|
+
CoreManagement.GetUserPersonalizedPromotionProducts = GetUserPersonalizedPromotionProducts;
|
|
4656
4684
|
/**
|
|
4657
4685
|
* Get the configured UserRequirements for the current, or given, `OrganizationUnit`.
|
|
4658
4686
|
*
|
|
@@ -5182,6 +5210,20 @@ or to get a specific product in an assortment by filtering on both.
|
|
|
5182
5210
|
}
|
|
5183
5211
|
}
|
|
5184
5212
|
CoreManagement.ListDiscountTemplates = ListDiscountTemplates;
|
|
5213
|
+
/**
|
|
5214
|
+
* Lists the available discount user usage reload strategies.
|
|
5215
|
+
*
|
|
5216
|
+
* @export
|
|
5217
|
+
* @class ListDiscountUserUsageReloadStrategies
|
|
5218
|
+
* @implements {EvaService}
|
|
5219
|
+
*/
|
|
5220
|
+
class ListDiscountUserUsageReloadStrategies {
|
|
5221
|
+
constructor() {
|
|
5222
|
+
this.name = 'CoreManagement:ListDiscountUserUsageReloadStrategies';
|
|
5223
|
+
this.path = '/message/ListDiscountUserUsageReloadStrategies';
|
|
5224
|
+
}
|
|
5225
|
+
}
|
|
5226
|
+
CoreManagement.ListDiscountUserUsageReloadStrategies = ListDiscountUserUsageReloadStrategies;
|
|
5185
5227
|
/**
|
|
5186
5228
|
* List the EmployeeData
|
|
5187
5229
|
*
|
|
@@ -5520,6 +5562,27 @@ All available filters are typed in the PageConfig.Filter property.
|
|
|
5520
5562
|
}
|
|
5521
5563
|
}
|
|
5522
5564
|
CoreManagement.ListPaymentTransactionCaptures = ListPaymentTransactionCaptures;
|
|
5565
|
+
/**
|
|
5566
|
+
* List paymenttransactionssettlements
|
|
5567
|
+
|
|
5568
|
+
Filters available to be sent in the request:
|
|
5569
|
+
- FinancialPeriodID
|
|
5570
|
+
- PaymentReference
|
|
5571
|
+
- MerchantReference
|
|
5572
|
+
- Type
|
|
5573
|
+
- SubType
|
|
5574
|
+
*
|
|
5575
|
+
* @export
|
|
5576
|
+
* @class ListPaymentTransactionSettlements
|
|
5577
|
+
* @implements {EvaService}
|
|
5578
|
+
*/
|
|
5579
|
+
class ListPaymentTransactionSettlements {
|
|
5580
|
+
constructor() {
|
|
5581
|
+
this.name = 'CoreManagement:ListPaymentTransactionSettlements';
|
|
5582
|
+
this.path = '/message/ListPaymentTransactionSettlements';
|
|
5583
|
+
}
|
|
5584
|
+
}
|
|
5585
|
+
CoreManagement.ListPaymentTransactionSettlements = ListPaymentTransactionSettlements;
|
|
5523
5586
|
/**
|
|
5524
5587
|
* List paymenttransactions
|
|
5525
5588
|
|
|
@@ -5550,20 +5613,6 @@ All available filters are typed in the PageConfig.Filter property.
|
|
|
5550
5613
|
}
|
|
5551
5614
|
}
|
|
5552
5615
|
CoreManagement.ListPaymentTypes = ListPaymentTypes;
|
|
5553
|
-
/**
|
|
5554
|
-
* List personalized promotion products for a user.
|
|
5555
|
-
*
|
|
5556
|
-
* @export
|
|
5557
|
-
* @class ListPersonalizedPromotionProducts
|
|
5558
|
-
* @implements {EvaService}
|
|
5559
|
-
*/
|
|
5560
|
-
class ListPersonalizedPromotionProducts {
|
|
5561
|
-
constructor() {
|
|
5562
|
-
this.name = 'CoreManagement:ListPersonalizedPromotionProducts';
|
|
5563
|
-
this.path = '/message/ListPersonalizedPromotionProducts';
|
|
5564
|
-
}
|
|
5565
|
-
}
|
|
5566
|
-
CoreManagement.ListPersonalizedPromotionProducts = ListPersonalizedPromotionProducts;
|
|
5567
5616
|
/**
|
|
5568
5617
|
* List personalized promotions. Returns a paged response.
|
|
5569
5618
|
*
|
|
@@ -5799,6 +5848,20 @@ It is required to supply some OrganizationUnitIDs or some ProductIDs in the Page
|
|
|
5799
5848
|
}
|
|
5800
5849
|
}
|
|
5801
5850
|
CoreManagement.ListRefundCorrectionReasons = ListRefundCorrectionReasons;
|
|
5851
|
+
/**
|
|
5852
|
+
* List the repair interactions
|
|
5853
|
+
*
|
|
5854
|
+
* @export
|
|
5855
|
+
* @class ListRepairInteractions
|
|
5856
|
+
* @implements {EvaService}
|
|
5857
|
+
*/
|
|
5858
|
+
class ListRepairInteractions {
|
|
5859
|
+
constructor() {
|
|
5860
|
+
this.name = 'CoreManagement:ListRepairInteractions';
|
|
5861
|
+
this.path = '/message/ListRepairInteractions';
|
|
5862
|
+
}
|
|
5863
|
+
}
|
|
5864
|
+
CoreManagement.ListRepairInteractions = ListRepairInteractions;
|
|
5802
5865
|
/**
|
|
5803
5866
|
* List Repairs, optionally filtered.
|
|
5804
5867
|
*
|
|
@@ -6111,6 +6174,20 @@ The page size `Limit` has a maximum value of `1.024` for this service (unless `D
|
|
|
6111
6174
|
}
|
|
6112
6175
|
}
|
|
6113
6176
|
CoreManagement.ListUserOrganizationUnitRoles = ListUserOrganizationUnitRoles;
|
|
6177
|
+
/**
|
|
6178
|
+
* Get all personalized promotions for the logged in user or the given user.
|
|
6179
|
+
*
|
|
6180
|
+
* @export
|
|
6181
|
+
* @class ListUserPersonalizedPromotions
|
|
6182
|
+
* @implements {EvaService}
|
|
6183
|
+
*/
|
|
6184
|
+
class ListUserPersonalizedPromotions {
|
|
6185
|
+
constructor() {
|
|
6186
|
+
this.name = 'CoreManagement:ListUserPersonalizedPromotions';
|
|
6187
|
+
this.path = '/message/ListUserPersonalizedPromotions';
|
|
6188
|
+
}
|
|
6189
|
+
}
|
|
6190
|
+
CoreManagement.ListUserPersonalizedPromotions = ListUserPersonalizedPromotions;
|
|
6114
6191
|
/**
|
|
6115
6192
|
* List the UserRequirementSets.
|
|
6116
6193
|
*
|
|
@@ -6314,6 +6391,25 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
|
|
|
6314
6391
|
}
|
|
6315
6392
|
}
|
|
6316
6393
|
CoreManagement.PushUserBoughtProduct = PushUserBoughtProduct;
|
|
6394
|
+
/**
|
|
6395
|
+
* The service enables endpoints to push user subscriptions based on the user backend id and subscription backend id.
|
|
6396
|
+
Multiple subscriptions can be pushed at once.
|
|
6397
|
+
|
|
6398
|
+
Additionally, a SubscriptionID and Balance can be provided
|
|
6399
|
+
NOTE THAT Only subscriptions that allow for local storage can be pushed. Subscriptions fully depending on external services cannot be pushed.
|
|
6400
|
+
NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA loyalty handler.
|
|
6401
|
+
*
|
|
6402
|
+
* @export
|
|
6403
|
+
* @class PushUserSubscription
|
|
6404
|
+
* @implements {EvaService}
|
|
6405
|
+
*/
|
|
6406
|
+
class PushUserSubscription {
|
|
6407
|
+
constructor() {
|
|
6408
|
+
this.name = 'CoreManagement:PushUserSubscription';
|
|
6409
|
+
this.path = '/message/PushUserSubscription';
|
|
6410
|
+
}
|
|
6411
|
+
}
|
|
6412
|
+
CoreManagement.PushUserSubscription = PushUserSubscription;
|
|
6317
6413
|
/**
|
|
6318
6414
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
6319
6415
|
*
|
|
@@ -6455,19 +6551,19 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
|
|
|
6455
6551
|
}
|
|
6456
6552
|
CoreManagement.SearchStockMutations = SearchStockMutations;
|
|
6457
6553
|
/**
|
|
6458
|
-
* Set selected products for
|
|
6554
|
+
* Set selected products for personalized promotion for the logged in user or the given user. Ovewrites existing selection.
|
|
6459
6555
|
*
|
|
6460
6556
|
* @export
|
|
6461
|
-
* @class
|
|
6557
|
+
* @class SelectUserPersonalizedPromotionProducts
|
|
6462
6558
|
* @implements {EvaService}
|
|
6463
6559
|
*/
|
|
6464
|
-
class
|
|
6560
|
+
class SelectUserPersonalizedPromotionProducts {
|
|
6465
6561
|
constructor() {
|
|
6466
|
-
this.name = 'CoreManagement:
|
|
6467
|
-
this.path = '/message/
|
|
6562
|
+
this.name = 'CoreManagement:SelectUserPersonalizedPromotionProducts';
|
|
6563
|
+
this.path = '/message/SelectUserPersonalizedPromotionProducts';
|
|
6468
6564
|
}
|
|
6469
6565
|
}
|
|
6470
|
-
CoreManagement.
|
|
6566
|
+
CoreManagement.SelectUserPersonalizedPromotionProducts = SelectUserPersonalizedPromotionProducts;
|
|
6471
6567
|
/**
|
|
6472
6568
|
* TODO: Needs documentation
|
|
6473
6569
|
*
|
|
@@ -6661,6 +6757,20 @@ When using this service make sure the `Workforce:AssignEmployeeRights` setting i
|
|
|
6661
6757
|
}
|
|
6662
6758
|
}
|
|
6663
6759
|
CoreManagement.SetUserRoles = SetUserRoles;
|
|
6760
|
+
/**
|
|
6761
|
+
* Unblock a users subscription.
|
|
6762
|
+
*
|
|
6763
|
+
* @export
|
|
6764
|
+
* @class UnblockUserSubscription
|
|
6765
|
+
* @implements {EvaService}
|
|
6766
|
+
*/
|
|
6767
|
+
class UnblockUserSubscription {
|
|
6768
|
+
constructor() {
|
|
6769
|
+
this.name = 'CoreManagement:UnblockUserSubscription';
|
|
6770
|
+
this.path = '/message/UnblockUserSubscription';
|
|
6771
|
+
}
|
|
6772
|
+
}
|
|
6773
|
+
CoreManagement.UnblockUserSubscription = UnblockUserSubscription;
|
|
6664
6774
|
/**
|
|
6665
6775
|
* Removes the value for an AppSetting
|
|
6666
6776
|
|
|
@@ -7998,6 +8108,34 @@ The data for this service can be gotten by first calling DownloadAssortmentProdu
|
|
|
7998
8108
|
}
|
|
7999
8109
|
}
|
|
8000
8110
|
CoreManagement.UploadCouponExcel = UploadCouponExcel;
|
|
8111
|
+
/**
|
|
8112
|
+
* Upload an excel with coupons.
|
|
8113
|
+
*
|
|
8114
|
+
* @export
|
|
8115
|
+
* @class UploadCouponExcel_Async
|
|
8116
|
+
* @implements {EvaService}
|
|
8117
|
+
*/
|
|
8118
|
+
class UploadCouponExcel_Async {
|
|
8119
|
+
constructor() {
|
|
8120
|
+
this.name = 'CoreManagement:UploadCouponExcel_Async';
|
|
8121
|
+
this.path = '/async-message/UploadCouponExcel';
|
|
8122
|
+
}
|
|
8123
|
+
}
|
|
8124
|
+
CoreManagement.UploadCouponExcel_Async = UploadCouponExcel_Async;
|
|
8125
|
+
/**
|
|
8126
|
+
* Upload an excel with coupons.
|
|
8127
|
+
*
|
|
8128
|
+
* @export
|
|
8129
|
+
* @class UploadCouponExcel_AsyncResult
|
|
8130
|
+
* @implements {EvaService}
|
|
8131
|
+
*/
|
|
8132
|
+
class UploadCouponExcel_AsyncResult {
|
|
8133
|
+
constructor() {
|
|
8134
|
+
this.name = 'CoreManagement:UploadCouponExcel_AsyncResult';
|
|
8135
|
+
this.path = '/async-result/UploadCouponExcel';
|
|
8136
|
+
}
|
|
8137
|
+
}
|
|
8138
|
+
CoreManagement.UploadCouponExcel_AsyncResult = UploadCouponExcel_AsyncResult;
|
|
8001
8139
|
/**
|
|
8002
8140
|
* Upload the Excel based on the sample from `DownloadCustomersSample`.
|
|
8003
8141
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eva-services-core-management.es5.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"eva-services-core-management.es5.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
|
@@ -261,6 +261,20 @@
|
|
|
261
261
|
}
|
|
262
262
|
}
|
|
263
263
|
CoreManagement.AuditingValidateConfiguration = AuditingValidateConfiguration;
|
|
264
|
+
/**
|
|
265
|
+
* Block a users subscription without unsubscribing.
|
|
266
|
+
*
|
|
267
|
+
* @export
|
|
268
|
+
* @class BlockUserSubscription
|
|
269
|
+
* @implements {EvaService}
|
|
270
|
+
*/
|
|
271
|
+
class BlockUserSubscription {
|
|
272
|
+
constructor() {
|
|
273
|
+
this.name = 'CoreManagement:BlockUserSubscription';
|
|
274
|
+
this.path = '/message/BlockUserSubscription';
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
CoreManagement.BlockUserSubscription = BlockUserSubscription;
|
|
264
278
|
/**
|
|
265
279
|
* Removes all unused settings. Set ReportOnly to let this service return all settings that would be deleted.
|
|
266
280
|
*
|
|
@@ -1243,7 +1257,7 @@
|
|
|
1243
1257
|
}
|
|
1244
1258
|
CoreManagement.CreateRepair = CreateRepair;
|
|
1245
1259
|
/**
|
|
1246
|
-
* Creates a new
|
|
1260
|
+
* Creates a new interaction associated with a specific repair
|
|
1247
1261
|
*
|
|
1248
1262
|
* @export
|
|
1249
1263
|
* @class CreateRepairInteraction
|
|
@@ -3710,6 +3724,20 @@
|
|
|
3710
3724
|
}
|
|
3711
3725
|
}
|
|
3712
3726
|
CoreManagement.GetDiscountCampaignByID = GetDiscountCampaignByID;
|
|
3727
|
+
/**
|
|
3728
|
+
* Get discount coupons by discount ID
|
|
3729
|
+
*
|
|
3730
|
+
* @export
|
|
3731
|
+
* @class GetDiscountCouponByID
|
|
3732
|
+
* @implements {EvaService}
|
|
3733
|
+
*/
|
|
3734
|
+
class GetDiscountCouponByID {
|
|
3735
|
+
constructor() {
|
|
3736
|
+
this.name = 'CoreManagement:GetDiscountCouponByID';
|
|
3737
|
+
this.path = '/message/GetDiscountCouponByID';
|
|
3738
|
+
}
|
|
3739
|
+
}
|
|
3740
|
+
CoreManagement.GetDiscountCouponByID = GetDiscountCouponByID;
|
|
3713
3741
|
/**
|
|
3714
3742
|
* Get discount coupons by discount ID
|
|
3715
3743
|
*
|
|
@@ -4158,20 +4186,6 @@
|
|
|
4158
4186
|
}
|
|
4159
4187
|
}
|
|
4160
4188
|
CoreManagement.GetPersonalizedPromotionByID = GetPersonalizedPromotionByID;
|
|
4161
|
-
/**
|
|
4162
|
-
* Get all your personalized promotion products.
|
|
4163
|
-
*
|
|
4164
|
-
* @export
|
|
4165
|
-
* @class GetPersonalizedPromotionProducts
|
|
4166
|
-
* @implements {EvaService}
|
|
4167
|
-
*/
|
|
4168
|
-
class GetPersonalizedPromotionProducts {
|
|
4169
|
-
constructor() {
|
|
4170
|
-
this.name = 'CoreManagement:GetPersonalizedPromotionProducts';
|
|
4171
|
-
this.path = '/message/GetPersonalizedPromotionProducts';
|
|
4172
|
-
}
|
|
4173
|
-
}
|
|
4174
|
-
CoreManagement.GetPersonalizedPromotionProducts = GetPersonalizedPromotionProducts;
|
|
4175
4189
|
/**
|
|
4176
4190
|
* Get loyalty point rule.
|
|
4177
4191
|
*
|
|
@@ -4659,6 +4673,20 @@
|
|
|
4659
4673
|
}
|
|
4660
4674
|
}
|
|
4661
4675
|
CoreManagement.GetUserOrigins = GetUserOrigins;
|
|
4676
|
+
/**
|
|
4677
|
+
* Get all products for a personalized promotion for the logged in user or the given user.
|
|
4678
|
+
*
|
|
4679
|
+
* @export
|
|
4680
|
+
* @class GetUserPersonalizedPromotionProducts
|
|
4681
|
+
* @implements {EvaService}
|
|
4682
|
+
*/
|
|
4683
|
+
class GetUserPersonalizedPromotionProducts {
|
|
4684
|
+
constructor() {
|
|
4685
|
+
this.name = 'CoreManagement:GetUserPersonalizedPromotionProducts';
|
|
4686
|
+
this.path = '/message/GetUserPersonalizedPromotionProducts';
|
|
4687
|
+
}
|
|
4688
|
+
}
|
|
4689
|
+
CoreManagement.GetUserPersonalizedPromotionProducts = GetUserPersonalizedPromotionProducts;
|
|
4662
4690
|
/**
|
|
4663
4691
|
* Get the configured UserRequirements for the current, or given, `OrganizationUnit`.
|
|
4664
4692
|
*
|
|
@@ -5188,6 +5216,20 @@
|
|
|
5188
5216
|
}
|
|
5189
5217
|
}
|
|
5190
5218
|
CoreManagement.ListDiscountTemplates = ListDiscountTemplates;
|
|
5219
|
+
/**
|
|
5220
|
+
* Lists the available discount user usage reload strategies.
|
|
5221
|
+
*
|
|
5222
|
+
* @export
|
|
5223
|
+
* @class ListDiscountUserUsageReloadStrategies
|
|
5224
|
+
* @implements {EvaService}
|
|
5225
|
+
*/
|
|
5226
|
+
class ListDiscountUserUsageReloadStrategies {
|
|
5227
|
+
constructor() {
|
|
5228
|
+
this.name = 'CoreManagement:ListDiscountUserUsageReloadStrategies';
|
|
5229
|
+
this.path = '/message/ListDiscountUserUsageReloadStrategies';
|
|
5230
|
+
}
|
|
5231
|
+
}
|
|
5232
|
+
CoreManagement.ListDiscountUserUsageReloadStrategies = ListDiscountUserUsageReloadStrategies;
|
|
5191
5233
|
/**
|
|
5192
5234
|
* List the EmployeeData
|
|
5193
5235
|
*
|
|
@@ -5526,6 +5568,27 @@
|
|
|
5526
5568
|
}
|
|
5527
5569
|
}
|
|
5528
5570
|
CoreManagement.ListPaymentTransactionCaptures = ListPaymentTransactionCaptures;
|
|
5571
|
+
/**
|
|
5572
|
+
* List paymenttransactionssettlements
|
|
5573
|
+
|
|
5574
|
+
Filters available to be sent in the request:
|
|
5575
|
+
- FinancialPeriodID
|
|
5576
|
+
- PaymentReference
|
|
5577
|
+
- MerchantReference
|
|
5578
|
+
- Type
|
|
5579
|
+
- SubType
|
|
5580
|
+
*
|
|
5581
|
+
* @export
|
|
5582
|
+
* @class ListPaymentTransactionSettlements
|
|
5583
|
+
* @implements {EvaService}
|
|
5584
|
+
*/
|
|
5585
|
+
class ListPaymentTransactionSettlements {
|
|
5586
|
+
constructor() {
|
|
5587
|
+
this.name = 'CoreManagement:ListPaymentTransactionSettlements';
|
|
5588
|
+
this.path = '/message/ListPaymentTransactionSettlements';
|
|
5589
|
+
}
|
|
5590
|
+
}
|
|
5591
|
+
CoreManagement.ListPaymentTransactionSettlements = ListPaymentTransactionSettlements;
|
|
5529
5592
|
/**
|
|
5530
5593
|
* List paymenttransactions
|
|
5531
5594
|
|
|
@@ -5556,20 +5619,6 @@
|
|
|
5556
5619
|
}
|
|
5557
5620
|
}
|
|
5558
5621
|
CoreManagement.ListPaymentTypes = ListPaymentTypes;
|
|
5559
|
-
/**
|
|
5560
|
-
* List personalized promotion products for a user.
|
|
5561
|
-
*
|
|
5562
|
-
* @export
|
|
5563
|
-
* @class ListPersonalizedPromotionProducts
|
|
5564
|
-
* @implements {EvaService}
|
|
5565
|
-
*/
|
|
5566
|
-
class ListPersonalizedPromotionProducts {
|
|
5567
|
-
constructor() {
|
|
5568
|
-
this.name = 'CoreManagement:ListPersonalizedPromotionProducts';
|
|
5569
|
-
this.path = '/message/ListPersonalizedPromotionProducts';
|
|
5570
|
-
}
|
|
5571
|
-
}
|
|
5572
|
-
CoreManagement.ListPersonalizedPromotionProducts = ListPersonalizedPromotionProducts;
|
|
5573
5622
|
/**
|
|
5574
5623
|
* List personalized promotions. Returns a paged response.
|
|
5575
5624
|
*
|
|
@@ -5805,6 +5854,20 @@
|
|
|
5805
5854
|
}
|
|
5806
5855
|
}
|
|
5807
5856
|
CoreManagement.ListRefundCorrectionReasons = ListRefundCorrectionReasons;
|
|
5857
|
+
/**
|
|
5858
|
+
* List the repair interactions
|
|
5859
|
+
*
|
|
5860
|
+
* @export
|
|
5861
|
+
* @class ListRepairInteractions
|
|
5862
|
+
* @implements {EvaService}
|
|
5863
|
+
*/
|
|
5864
|
+
class ListRepairInteractions {
|
|
5865
|
+
constructor() {
|
|
5866
|
+
this.name = 'CoreManagement:ListRepairInteractions';
|
|
5867
|
+
this.path = '/message/ListRepairInteractions';
|
|
5868
|
+
}
|
|
5869
|
+
}
|
|
5870
|
+
CoreManagement.ListRepairInteractions = ListRepairInteractions;
|
|
5808
5871
|
/**
|
|
5809
5872
|
* List Repairs, optionally filtered.
|
|
5810
5873
|
*
|
|
@@ -6117,6 +6180,20 @@
|
|
|
6117
6180
|
}
|
|
6118
6181
|
}
|
|
6119
6182
|
CoreManagement.ListUserOrganizationUnitRoles = ListUserOrganizationUnitRoles;
|
|
6183
|
+
/**
|
|
6184
|
+
* Get all personalized promotions for the logged in user or the given user.
|
|
6185
|
+
*
|
|
6186
|
+
* @export
|
|
6187
|
+
* @class ListUserPersonalizedPromotions
|
|
6188
|
+
* @implements {EvaService}
|
|
6189
|
+
*/
|
|
6190
|
+
class ListUserPersonalizedPromotions {
|
|
6191
|
+
constructor() {
|
|
6192
|
+
this.name = 'CoreManagement:ListUserPersonalizedPromotions';
|
|
6193
|
+
this.path = '/message/ListUserPersonalizedPromotions';
|
|
6194
|
+
}
|
|
6195
|
+
}
|
|
6196
|
+
CoreManagement.ListUserPersonalizedPromotions = ListUserPersonalizedPromotions;
|
|
6120
6197
|
/**
|
|
6121
6198
|
* List the UserRequirementSets.
|
|
6122
6199
|
*
|
|
@@ -6320,6 +6397,25 @@
|
|
|
6320
6397
|
}
|
|
6321
6398
|
}
|
|
6322
6399
|
CoreManagement.PushUserBoughtProduct = PushUserBoughtProduct;
|
|
6400
|
+
/**
|
|
6401
|
+
* The service enables endpoints to push user subscriptions based on the user backend id and subscription backend id.
|
|
6402
|
+
Multiple subscriptions can be pushed at once.
|
|
6403
|
+
|
|
6404
|
+
Additionally, a SubscriptionID and Balance can be provided
|
|
6405
|
+
NOTE THAT Only subscriptions that allow for local storage can be pushed. Subscriptions fully depending on external services cannot be pushed.
|
|
6406
|
+
NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA loyalty handler.
|
|
6407
|
+
*
|
|
6408
|
+
* @export
|
|
6409
|
+
* @class PushUserSubscription
|
|
6410
|
+
* @implements {EvaService}
|
|
6411
|
+
*/
|
|
6412
|
+
class PushUserSubscription {
|
|
6413
|
+
constructor() {
|
|
6414
|
+
this.name = 'CoreManagement:PushUserSubscription';
|
|
6415
|
+
this.path = '/message/PushUserSubscription';
|
|
6416
|
+
}
|
|
6417
|
+
}
|
|
6418
|
+
CoreManagement.PushUserSubscription = PushUserSubscription;
|
|
6323
6419
|
/**
|
|
6324
6420
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
6325
6421
|
*
|
|
@@ -6461,19 +6557,19 @@
|
|
|
6461
6557
|
}
|
|
6462
6558
|
CoreManagement.SearchStockMutations = SearchStockMutations;
|
|
6463
6559
|
/**
|
|
6464
|
-
* Set selected products for
|
|
6560
|
+
* Set selected products for personalized promotion for the logged in user or the given user. Ovewrites existing selection.
|
|
6465
6561
|
*
|
|
6466
6562
|
* @export
|
|
6467
|
-
* @class
|
|
6563
|
+
* @class SelectUserPersonalizedPromotionProducts
|
|
6468
6564
|
* @implements {EvaService}
|
|
6469
6565
|
*/
|
|
6470
|
-
class
|
|
6566
|
+
class SelectUserPersonalizedPromotionProducts {
|
|
6471
6567
|
constructor() {
|
|
6472
|
-
this.name = 'CoreManagement:
|
|
6473
|
-
this.path = '/message/
|
|
6568
|
+
this.name = 'CoreManagement:SelectUserPersonalizedPromotionProducts';
|
|
6569
|
+
this.path = '/message/SelectUserPersonalizedPromotionProducts';
|
|
6474
6570
|
}
|
|
6475
6571
|
}
|
|
6476
|
-
CoreManagement.
|
|
6572
|
+
CoreManagement.SelectUserPersonalizedPromotionProducts = SelectUserPersonalizedPromotionProducts;
|
|
6477
6573
|
/**
|
|
6478
6574
|
* TODO: Needs documentation
|
|
6479
6575
|
*
|
|
@@ -6667,6 +6763,20 @@
|
|
|
6667
6763
|
}
|
|
6668
6764
|
}
|
|
6669
6765
|
CoreManagement.SetUserRoles = SetUserRoles;
|
|
6766
|
+
/**
|
|
6767
|
+
* Unblock a users subscription.
|
|
6768
|
+
*
|
|
6769
|
+
* @export
|
|
6770
|
+
* @class UnblockUserSubscription
|
|
6771
|
+
* @implements {EvaService}
|
|
6772
|
+
*/
|
|
6773
|
+
class UnblockUserSubscription {
|
|
6774
|
+
constructor() {
|
|
6775
|
+
this.name = 'CoreManagement:UnblockUserSubscription';
|
|
6776
|
+
this.path = '/message/UnblockUserSubscription';
|
|
6777
|
+
}
|
|
6778
|
+
}
|
|
6779
|
+
CoreManagement.UnblockUserSubscription = UnblockUserSubscription;
|
|
6670
6780
|
/**
|
|
6671
6781
|
* Removes the value for an AppSetting
|
|
6672
6782
|
|
|
@@ -8004,6 +8114,34 @@
|
|
|
8004
8114
|
}
|
|
8005
8115
|
}
|
|
8006
8116
|
CoreManagement.UploadCouponExcel = UploadCouponExcel;
|
|
8117
|
+
/**
|
|
8118
|
+
* Upload an excel with coupons.
|
|
8119
|
+
*
|
|
8120
|
+
* @export
|
|
8121
|
+
* @class UploadCouponExcel_Async
|
|
8122
|
+
* @implements {EvaService}
|
|
8123
|
+
*/
|
|
8124
|
+
class UploadCouponExcel_Async {
|
|
8125
|
+
constructor() {
|
|
8126
|
+
this.name = 'CoreManagement:UploadCouponExcel_Async';
|
|
8127
|
+
this.path = '/async-message/UploadCouponExcel';
|
|
8128
|
+
}
|
|
8129
|
+
}
|
|
8130
|
+
CoreManagement.UploadCouponExcel_Async = UploadCouponExcel_Async;
|
|
8131
|
+
/**
|
|
8132
|
+
* Upload an excel with coupons.
|
|
8133
|
+
*
|
|
8134
|
+
* @export
|
|
8135
|
+
* @class UploadCouponExcel_AsyncResult
|
|
8136
|
+
* @implements {EvaService}
|
|
8137
|
+
*/
|
|
8138
|
+
class UploadCouponExcel_AsyncResult {
|
|
8139
|
+
constructor() {
|
|
8140
|
+
this.name = 'CoreManagement:UploadCouponExcel_AsyncResult';
|
|
8141
|
+
this.path = '/async-result/UploadCouponExcel';
|
|
8142
|
+
}
|
|
8143
|
+
}
|
|
8144
|
+
CoreManagement.UploadCouponExcel_AsyncResult = UploadCouponExcel_AsyncResult;
|
|
8007
8145
|
/**
|
|
8008
8146
|
* Upload the Excel based on the sample from `DownloadCustomersSample`.
|
|
8009
8147
|
|