@springtree/eva-services-core-management 1.88.0 → 1.89.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 +108 -31
- package/lib/EVA.Core.Management.Services.d.ts.map +1 -1
- package/lib/EVA.Core.Management.Services.js +117 -35
- package/lib/EVA.Core.Management.Services.js.map +1 -1
- package/lib/eva-services-core-management.es5.js +117 -35
- package/lib/eva-services-core-management.es5.js.map +1 -1
- package/lib/eva-services-core-management.umd.js +117 -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
|
|
@@ -4152,20 +4166,6 @@ At this moment the supported DeviceTypes are:
|
|
|
4152
4166
|
}
|
|
4153
4167
|
}
|
|
4154
4168
|
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
4169
|
/**
|
|
4170
4170
|
* Get loyalty point rule.
|
|
4171
4171
|
*
|
|
@@ -4653,6 +4653,20 @@ These handlers are custom build to fetch values for ProductRequirements from ext
|
|
|
4653
4653
|
}
|
|
4654
4654
|
}
|
|
4655
4655
|
CoreManagement.GetUserOrigins = GetUserOrigins;
|
|
4656
|
+
/**
|
|
4657
|
+
* Get all products for a personalized promotion for the logged in user or the given user.
|
|
4658
|
+
*
|
|
4659
|
+
* @export
|
|
4660
|
+
* @class GetUserPersonalizedPromotionProducts
|
|
4661
|
+
* @implements {EvaService}
|
|
4662
|
+
*/
|
|
4663
|
+
class GetUserPersonalizedPromotionProducts {
|
|
4664
|
+
constructor() {
|
|
4665
|
+
this.name = 'CoreManagement:GetUserPersonalizedPromotionProducts';
|
|
4666
|
+
this.path = '/message/GetUserPersonalizedPromotionProducts';
|
|
4667
|
+
}
|
|
4668
|
+
}
|
|
4669
|
+
CoreManagement.GetUserPersonalizedPromotionProducts = GetUserPersonalizedPromotionProducts;
|
|
4656
4670
|
/**
|
|
4657
4671
|
* Get the configured UserRequirements for the current, or given, `OrganizationUnit`.
|
|
4658
4672
|
*
|
|
@@ -5520,6 +5534,27 @@ All available filters are typed in the PageConfig.Filter property.
|
|
|
5520
5534
|
}
|
|
5521
5535
|
}
|
|
5522
5536
|
CoreManagement.ListPaymentTransactionCaptures = ListPaymentTransactionCaptures;
|
|
5537
|
+
/**
|
|
5538
|
+
* List paymenttransactionssettlements
|
|
5539
|
+
|
|
5540
|
+
Filters available to be sent in the request:
|
|
5541
|
+
- FinancialPeriodID
|
|
5542
|
+
- PaymentReference
|
|
5543
|
+
- MerchantReference
|
|
5544
|
+
- Type
|
|
5545
|
+
- SubType
|
|
5546
|
+
*
|
|
5547
|
+
* @export
|
|
5548
|
+
* @class ListPaymentTransactionSettlements
|
|
5549
|
+
* @implements {EvaService}
|
|
5550
|
+
*/
|
|
5551
|
+
class ListPaymentTransactionSettlements {
|
|
5552
|
+
constructor() {
|
|
5553
|
+
this.name = 'CoreManagement:ListPaymentTransactionSettlements';
|
|
5554
|
+
this.path = '/message/ListPaymentTransactionSettlements';
|
|
5555
|
+
}
|
|
5556
|
+
}
|
|
5557
|
+
CoreManagement.ListPaymentTransactionSettlements = ListPaymentTransactionSettlements;
|
|
5523
5558
|
/**
|
|
5524
5559
|
* List paymenttransactions
|
|
5525
5560
|
|
|
@@ -5550,20 +5585,6 @@ All available filters are typed in the PageConfig.Filter property.
|
|
|
5550
5585
|
}
|
|
5551
5586
|
}
|
|
5552
5587
|
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
5588
|
/**
|
|
5568
5589
|
* List personalized promotions. Returns a paged response.
|
|
5569
5590
|
*
|
|
@@ -5799,6 +5820,20 @@ It is required to supply some OrganizationUnitIDs or some ProductIDs in the Page
|
|
|
5799
5820
|
}
|
|
5800
5821
|
}
|
|
5801
5822
|
CoreManagement.ListRefundCorrectionReasons = ListRefundCorrectionReasons;
|
|
5823
|
+
/**
|
|
5824
|
+
* List the repair interactions
|
|
5825
|
+
*
|
|
5826
|
+
* @export
|
|
5827
|
+
* @class ListRepairInteractions
|
|
5828
|
+
* @implements {EvaService}
|
|
5829
|
+
*/
|
|
5830
|
+
class ListRepairInteractions {
|
|
5831
|
+
constructor() {
|
|
5832
|
+
this.name = 'CoreManagement:ListRepairInteractions';
|
|
5833
|
+
this.path = '/message/ListRepairInteractions';
|
|
5834
|
+
}
|
|
5835
|
+
}
|
|
5836
|
+
CoreManagement.ListRepairInteractions = ListRepairInteractions;
|
|
5802
5837
|
/**
|
|
5803
5838
|
* List Repairs, optionally filtered.
|
|
5804
5839
|
*
|
|
@@ -6111,6 +6146,20 @@ The page size `Limit` has a maximum value of `1.024` for this service (unless `D
|
|
|
6111
6146
|
}
|
|
6112
6147
|
}
|
|
6113
6148
|
CoreManagement.ListUserOrganizationUnitRoles = ListUserOrganizationUnitRoles;
|
|
6149
|
+
/**
|
|
6150
|
+
* Get all personalized promotions for the logged in user or the given user.
|
|
6151
|
+
*
|
|
6152
|
+
* @export
|
|
6153
|
+
* @class ListUserPersonalizedPromotions
|
|
6154
|
+
* @implements {EvaService}
|
|
6155
|
+
*/
|
|
6156
|
+
class ListUserPersonalizedPromotions {
|
|
6157
|
+
constructor() {
|
|
6158
|
+
this.name = 'CoreManagement:ListUserPersonalizedPromotions';
|
|
6159
|
+
this.path = '/message/ListUserPersonalizedPromotions';
|
|
6160
|
+
}
|
|
6161
|
+
}
|
|
6162
|
+
CoreManagement.ListUserPersonalizedPromotions = ListUserPersonalizedPromotions;
|
|
6114
6163
|
/**
|
|
6115
6164
|
* List the UserRequirementSets.
|
|
6116
6165
|
*
|
|
@@ -6314,6 +6363,25 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
|
|
|
6314
6363
|
}
|
|
6315
6364
|
}
|
|
6316
6365
|
CoreManagement.PushUserBoughtProduct = PushUserBoughtProduct;
|
|
6366
|
+
/**
|
|
6367
|
+
* The service enables endpoints to push user subscriptions based on the user backend id and subscription backend id.
|
|
6368
|
+
Multiple subscriptions can be pushed at once.
|
|
6369
|
+
|
|
6370
|
+
Additionally, a SubscriptionID and Balance can be provided
|
|
6371
|
+
NOTE THAT Only subscriptions that allow for local storage can be pushed. Subscriptions fully depending on external services cannot be pushed.
|
|
6372
|
+
NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA loyalty handler.
|
|
6373
|
+
*
|
|
6374
|
+
* @export
|
|
6375
|
+
* @class PushUserSubscription
|
|
6376
|
+
* @implements {EvaService}
|
|
6377
|
+
*/
|
|
6378
|
+
class PushUserSubscription {
|
|
6379
|
+
constructor() {
|
|
6380
|
+
this.name = 'CoreManagement:PushUserSubscription';
|
|
6381
|
+
this.path = '/message/PushUserSubscription';
|
|
6382
|
+
}
|
|
6383
|
+
}
|
|
6384
|
+
CoreManagement.PushUserSubscription = PushUserSubscription;
|
|
6317
6385
|
/**
|
|
6318
6386
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
6319
6387
|
*
|
|
@@ -6455,19 +6523,19 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
|
|
|
6455
6523
|
}
|
|
6456
6524
|
CoreManagement.SearchStockMutations = SearchStockMutations;
|
|
6457
6525
|
/**
|
|
6458
|
-
* Set selected products for
|
|
6526
|
+
* Set selected products for personalized promotion for the logged in user or the given user. Ovewrites existing selection.
|
|
6459
6527
|
*
|
|
6460
6528
|
* @export
|
|
6461
|
-
* @class
|
|
6529
|
+
* @class SelectUserPersonalizedPromotionProducts
|
|
6462
6530
|
* @implements {EvaService}
|
|
6463
6531
|
*/
|
|
6464
|
-
class
|
|
6532
|
+
class SelectUserPersonalizedPromotionProducts {
|
|
6465
6533
|
constructor() {
|
|
6466
|
-
this.name = 'CoreManagement:
|
|
6467
|
-
this.path = '/message/
|
|
6534
|
+
this.name = 'CoreManagement:SelectUserPersonalizedPromotionProducts';
|
|
6535
|
+
this.path = '/message/SelectUserPersonalizedPromotionProducts';
|
|
6468
6536
|
}
|
|
6469
6537
|
}
|
|
6470
|
-
CoreManagement.
|
|
6538
|
+
CoreManagement.SelectUserPersonalizedPromotionProducts = SelectUserPersonalizedPromotionProducts;
|
|
6471
6539
|
/**
|
|
6472
6540
|
* TODO: Needs documentation
|
|
6473
6541
|
*
|
|
@@ -6661,6 +6729,20 @@ When using this service make sure the `Workforce:AssignEmployeeRights` setting i
|
|
|
6661
6729
|
}
|
|
6662
6730
|
}
|
|
6663
6731
|
CoreManagement.SetUserRoles = SetUserRoles;
|
|
6732
|
+
/**
|
|
6733
|
+
* Unblock a users subscription.
|
|
6734
|
+
*
|
|
6735
|
+
* @export
|
|
6736
|
+
* @class UnblockUserSubscription
|
|
6737
|
+
* @implements {EvaService}
|
|
6738
|
+
*/
|
|
6739
|
+
class UnblockUserSubscription {
|
|
6740
|
+
constructor() {
|
|
6741
|
+
this.name = 'CoreManagement:UnblockUserSubscription';
|
|
6742
|
+
this.path = '/message/UnblockUserSubscription';
|
|
6743
|
+
}
|
|
6744
|
+
}
|
|
6745
|
+
CoreManagement.UnblockUserSubscription = UnblockUserSubscription;
|
|
6664
6746
|
/**
|
|
6665
6747
|
* Removes the value for an AppSetting
|
|
6666
6748
|
|
|
@@ -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
|
|
@@ -4158,20 +4172,6 @@
|
|
|
4158
4172
|
}
|
|
4159
4173
|
}
|
|
4160
4174
|
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
4175
|
/**
|
|
4176
4176
|
* Get loyalty point rule.
|
|
4177
4177
|
*
|
|
@@ -4659,6 +4659,20 @@
|
|
|
4659
4659
|
}
|
|
4660
4660
|
}
|
|
4661
4661
|
CoreManagement.GetUserOrigins = GetUserOrigins;
|
|
4662
|
+
/**
|
|
4663
|
+
* Get all products for a personalized promotion for the logged in user or the given user.
|
|
4664
|
+
*
|
|
4665
|
+
* @export
|
|
4666
|
+
* @class GetUserPersonalizedPromotionProducts
|
|
4667
|
+
* @implements {EvaService}
|
|
4668
|
+
*/
|
|
4669
|
+
class GetUserPersonalizedPromotionProducts {
|
|
4670
|
+
constructor() {
|
|
4671
|
+
this.name = 'CoreManagement:GetUserPersonalizedPromotionProducts';
|
|
4672
|
+
this.path = '/message/GetUserPersonalizedPromotionProducts';
|
|
4673
|
+
}
|
|
4674
|
+
}
|
|
4675
|
+
CoreManagement.GetUserPersonalizedPromotionProducts = GetUserPersonalizedPromotionProducts;
|
|
4662
4676
|
/**
|
|
4663
4677
|
* Get the configured UserRequirements for the current, or given, `OrganizationUnit`.
|
|
4664
4678
|
*
|
|
@@ -5526,6 +5540,27 @@
|
|
|
5526
5540
|
}
|
|
5527
5541
|
}
|
|
5528
5542
|
CoreManagement.ListPaymentTransactionCaptures = ListPaymentTransactionCaptures;
|
|
5543
|
+
/**
|
|
5544
|
+
* List paymenttransactionssettlements
|
|
5545
|
+
|
|
5546
|
+
Filters available to be sent in the request:
|
|
5547
|
+
- FinancialPeriodID
|
|
5548
|
+
- PaymentReference
|
|
5549
|
+
- MerchantReference
|
|
5550
|
+
- Type
|
|
5551
|
+
- SubType
|
|
5552
|
+
*
|
|
5553
|
+
* @export
|
|
5554
|
+
* @class ListPaymentTransactionSettlements
|
|
5555
|
+
* @implements {EvaService}
|
|
5556
|
+
*/
|
|
5557
|
+
class ListPaymentTransactionSettlements {
|
|
5558
|
+
constructor() {
|
|
5559
|
+
this.name = 'CoreManagement:ListPaymentTransactionSettlements';
|
|
5560
|
+
this.path = '/message/ListPaymentTransactionSettlements';
|
|
5561
|
+
}
|
|
5562
|
+
}
|
|
5563
|
+
CoreManagement.ListPaymentTransactionSettlements = ListPaymentTransactionSettlements;
|
|
5529
5564
|
/**
|
|
5530
5565
|
* List paymenttransactions
|
|
5531
5566
|
|
|
@@ -5556,20 +5591,6 @@
|
|
|
5556
5591
|
}
|
|
5557
5592
|
}
|
|
5558
5593
|
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
5594
|
/**
|
|
5574
5595
|
* List personalized promotions. Returns a paged response.
|
|
5575
5596
|
*
|
|
@@ -5805,6 +5826,20 @@
|
|
|
5805
5826
|
}
|
|
5806
5827
|
}
|
|
5807
5828
|
CoreManagement.ListRefundCorrectionReasons = ListRefundCorrectionReasons;
|
|
5829
|
+
/**
|
|
5830
|
+
* List the repair interactions
|
|
5831
|
+
*
|
|
5832
|
+
* @export
|
|
5833
|
+
* @class ListRepairInteractions
|
|
5834
|
+
* @implements {EvaService}
|
|
5835
|
+
*/
|
|
5836
|
+
class ListRepairInteractions {
|
|
5837
|
+
constructor() {
|
|
5838
|
+
this.name = 'CoreManagement:ListRepairInteractions';
|
|
5839
|
+
this.path = '/message/ListRepairInteractions';
|
|
5840
|
+
}
|
|
5841
|
+
}
|
|
5842
|
+
CoreManagement.ListRepairInteractions = ListRepairInteractions;
|
|
5808
5843
|
/**
|
|
5809
5844
|
* List Repairs, optionally filtered.
|
|
5810
5845
|
*
|
|
@@ -6117,6 +6152,20 @@
|
|
|
6117
6152
|
}
|
|
6118
6153
|
}
|
|
6119
6154
|
CoreManagement.ListUserOrganizationUnitRoles = ListUserOrganizationUnitRoles;
|
|
6155
|
+
/**
|
|
6156
|
+
* Get all personalized promotions for the logged in user or the given user.
|
|
6157
|
+
*
|
|
6158
|
+
* @export
|
|
6159
|
+
* @class ListUserPersonalizedPromotions
|
|
6160
|
+
* @implements {EvaService}
|
|
6161
|
+
*/
|
|
6162
|
+
class ListUserPersonalizedPromotions {
|
|
6163
|
+
constructor() {
|
|
6164
|
+
this.name = 'CoreManagement:ListUserPersonalizedPromotions';
|
|
6165
|
+
this.path = '/message/ListUserPersonalizedPromotions';
|
|
6166
|
+
}
|
|
6167
|
+
}
|
|
6168
|
+
CoreManagement.ListUserPersonalizedPromotions = ListUserPersonalizedPromotions;
|
|
6120
6169
|
/**
|
|
6121
6170
|
* List the UserRequirementSets.
|
|
6122
6171
|
*
|
|
@@ -6320,6 +6369,25 @@
|
|
|
6320
6369
|
}
|
|
6321
6370
|
}
|
|
6322
6371
|
CoreManagement.PushUserBoughtProduct = PushUserBoughtProduct;
|
|
6372
|
+
/**
|
|
6373
|
+
* The service enables endpoints to push user subscriptions based on the user backend id and subscription backend id.
|
|
6374
|
+
Multiple subscriptions can be pushed at once.
|
|
6375
|
+
|
|
6376
|
+
Additionally, a SubscriptionID and Balance can be provided
|
|
6377
|
+
NOTE THAT Only subscriptions that allow for local storage can be pushed. Subscriptions fully depending on external services cannot be pushed.
|
|
6378
|
+
NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA loyalty handler.
|
|
6379
|
+
*
|
|
6380
|
+
* @export
|
|
6381
|
+
* @class PushUserSubscription
|
|
6382
|
+
* @implements {EvaService}
|
|
6383
|
+
*/
|
|
6384
|
+
class PushUserSubscription {
|
|
6385
|
+
constructor() {
|
|
6386
|
+
this.name = 'CoreManagement:PushUserSubscription';
|
|
6387
|
+
this.path = '/message/PushUserSubscription';
|
|
6388
|
+
}
|
|
6389
|
+
}
|
|
6390
|
+
CoreManagement.PushUserSubscription = PushUserSubscription;
|
|
6323
6391
|
/**
|
|
6324
6392
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
6325
6393
|
*
|
|
@@ -6461,19 +6529,19 @@
|
|
|
6461
6529
|
}
|
|
6462
6530
|
CoreManagement.SearchStockMutations = SearchStockMutations;
|
|
6463
6531
|
/**
|
|
6464
|
-
* Set selected products for
|
|
6532
|
+
* Set selected products for personalized promotion for the logged in user or the given user. Ovewrites existing selection.
|
|
6465
6533
|
*
|
|
6466
6534
|
* @export
|
|
6467
|
-
* @class
|
|
6535
|
+
* @class SelectUserPersonalizedPromotionProducts
|
|
6468
6536
|
* @implements {EvaService}
|
|
6469
6537
|
*/
|
|
6470
|
-
class
|
|
6538
|
+
class SelectUserPersonalizedPromotionProducts {
|
|
6471
6539
|
constructor() {
|
|
6472
|
-
this.name = 'CoreManagement:
|
|
6473
|
-
this.path = '/message/
|
|
6540
|
+
this.name = 'CoreManagement:SelectUserPersonalizedPromotionProducts';
|
|
6541
|
+
this.path = '/message/SelectUserPersonalizedPromotionProducts';
|
|
6474
6542
|
}
|
|
6475
6543
|
}
|
|
6476
|
-
CoreManagement.
|
|
6544
|
+
CoreManagement.SelectUserPersonalizedPromotionProducts = SelectUserPersonalizedPromotionProducts;
|
|
6477
6545
|
/**
|
|
6478
6546
|
* TODO: Needs documentation
|
|
6479
6547
|
*
|
|
@@ -6667,6 +6735,20 @@
|
|
|
6667
6735
|
}
|
|
6668
6736
|
}
|
|
6669
6737
|
CoreManagement.SetUserRoles = SetUserRoles;
|
|
6738
|
+
/**
|
|
6739
|
+
* Unblock a users subscription.
|
|
6740
|
+
*
|
|
6741
|
+
* @export
|
|
6742
|
+
* @class UnblockUserSubscription
|
|
6743
|
+
* @implements {EvaService}
|
|
6744
|
+
*/
|
|
6745
|
+
class UnblockUserSubscription {
|
|
6746
|
+
constructor() {
|
|
6747
|
+
this.name = 'CoreManagement:UnblockUserSubscription';
|
|
6748
|
+
this.path = '/message/UnblockUserSubscription';
|
|
6749
|
+
}
|
|
6750
|
+
}
|
|
6751
|
+
CoreManagement.UnblockUserSubscription = UnblockUserSubscription;
|
|
6670
6752
|
/**
|
|
6671
6753
|
* Removes the value for an AppSetting
|
|
6672
6754
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"eva-services-core-management.umd.js","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"eva-services-core-management.umd.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@springtree/eva-services-core-management",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.89.0",
|
|
4
4
|
"description": "The EVA service repository for EVA.Core.Management",
|
|
5
5
|
"keywords": [],
|
|
6
6
|
"author": "SpringTree <info@springtree.nl>",
|
|
@@ -33,5 +33,5 @@
|
|
|
33
33
|
"peerDependencies": {
|
|
34
34
|
"@springtree/eva-services-core": "^1.0.0"
|
|
35
35
|
},
|
|
36
|
-
"gitHead": "
|
|
36
|
+
"gitHead": "78680b6ac701b446c6cbab241de9ea02e114fd9a"
|
|
37
37
|
}
|