@springtree/eva-services-core-management 1.87.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.
@@ -28,6 +28,20 @@ var CoreManagement;
28
28
  }
29
29
  }
30
30
  CoreManagement.AddPackageToCarrier = AddPackageToCarrier;
31
+ /**
32
+ * Add personalized promotion products for a user.
33
+ *
34
+ * @export
35
+ * @class AddPersonalizedPromotionsProducts
36
+ * @implements {EvaService}
37
+ */
38
+ class AddPersonalizedPromotionsProducts {
39
+ constructor() {
40
+ this.name = 'CoreManagement:AddPersonalizedPromotionsProducts';
41
+ this.path = '/message/AddPersonalizedPromotionsProducts';
42
+ }
43
+ }
44
+ CoreManagement.AddPersonalizedPromotionsProducts = AddPersonalizedPromotionsProducts;
31
45
  /**
32
46
  * Adds or updates the given products to the assortment.
33
47
 
@@ -101,6 +115,20 @@ But if the list is a mixed product list, all updates will be applied according t
101
115
  }
102
116
  }
103
117
  CoreManagement.ArchiveDiscount = ArchiveDiscount;
118
+ /**
119
+ * Archive a personalized promotion.
120
+ *
121
+ * @export
122
+ * @class ArchivePersonalizedPromotion
123
+ * @implements {EvaService}
124
+ */
125
+ class ArchivePersonalizedPromotion {
126
+ constructor() {
127
+ this.name = 'CoreManagement:ArchivePersonalizedPromotion';
128
+ this.path = '/message/ArchivePersonalizedPromotion';
129
+ }
130
+ }
131
+ CoreManagement.ArchivePersonalizedPromotion = ArchivePersonalizedPromotion;
104
132
  /**
105
133
  * Archive a point awarding rule
106
134
  *
@@ -227,6 +255,20 @@ But if the list is a mixed product list, all updates will be applied according t
227
255
  }
228
256
  }
229
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;
230
272
  /**
231
273
  * Removes all unused settings. Set ReportOnly to let this service return all settings that would be deleted.
232
274
  *
@@ -996,6 +1038,20 @@ A ShippingMethod, OrganizationUnit and Priority are required
996
1038
  }
997
1039
  }
998
1040
  CoreManagement.CreatePaymentType = CreatePaymentType;
1041
+ /**
1042
+ * Create a new personalized promotion.
1043
+ *
1044
+ * @export
1045
+ * @class CreatePersonalizedPromotion
1046
+ * @implements {EvaService}
1047
+ */
1048
+ class CreatePersonalizedPromotion {
1049
+ constructor() {
1050
+ this.name = 'CoreManagement:CreatePersonalizedPromotion';
1051
+ this.path = '/message/CreatePersonalizedPromotion';
1052
+ }
1053
+ }
1054
+ CoreManagement.CreatePersonalizedPromotion = CreatePersonalizedPromotion;
999
1055
  /**
1000
1056
  * Create a point awarding rule.
1001
1057
  *
@@ -1195,7 +1251,7 @@ Optionally adds a record in the ProductUnitOfMeasure conversion table for the su
1195
1251
  }
1196
1252
  CoreManagement.CreateRepair = CreateRepair;
1197
1253
  /**
1198
- * Creates a new case interaction associated with a specific repair
1254
+ * Creates a new interaction associated with a specific repair
1199
1255
  *
1200
1256
  * @export
1201
1257
  * @class CreateRepairInteraction
@@ -4096,6 +4152,20 @@ At this moment the supported DeviceTypes are:
4096
4152
  }
4097
4153
  }
4098
4154
  CoreManagement.GetPaymentTypesForFilter = GetPaymentTypesForFilter;
4155
+ /**
4156
+ * Get personalized promotion by its ID.
4157
+ *
4158
+ * @export
4159
+ * @class GetPersonalizedPromotionByID
4160
+ * @implements {EvaService}
4161
+ */
4162
+ class GetPersonalizedPromotionByID {
4163
+ constructor() {
4164
+ this.name = 'CoreManagement:GetPersonalizedPromotionByID';
4165
+ this.path = '/message/GetPersonalizedPromotionByID';
4166
+ }
4167
+ }
4168
+ CoreManagement.GetPersonalizedPromotionByID = GetPersonalizedPromotionByID;
4099
4169
  /**
4100
4170
  * Get loyalty point rule.
4101
4171
  *
@@ -4583,6 +4653,20 @@ These handlers are custom build to fetch values for ProductRequirements from ext
4583
4653
  }
4584
4654
  }
4585
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;
4586
4670
  /**
4587
4671
  * Get the configured UserRequirements for the current, or given, `OrganizationUnit`.
4588
4672
  *
@@ -5450,6 +5534,27 @@ All available filters are typed in the PageConfig.Filter property.
5450
5534
  }
5451
5535
  }
5452
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;
5453
5558
  /**
5454
5559
  * List paymenttransactions
5455
5560
 
@@ -5480,6 +5585,20 @@ All available filters are typed in the PageConfig.Filter property.
5480
5585
  }
5481
5586
  }
5482
5587
  CoreManagement.ListPaymentTypes = ListPaymentTypes;
5588
+ /**
5589
+ * List personalized promotions. Returns a paged response.
5590
+ *
5591
+ * @export
5592
+ * @class ListPersonalizedPromotions
5593
+ * @implements {EvaService}
5594
+ */
5595
+ class ListPersonalizedPromotions {
5596
+ constructor() {
5597
+ this.name = 'CoreManagement:ListPersonalizedPromotions';
5598
+ this.path = '/message/ListPersonalizedPromotions';
5599
+ }
5600
+ }
5601
+ CoreManagement.ListPersonalizedPromotions = ListPersonalizedPromotions;
5483
5602
  /**
5484
5603
  * List loyalty point rules. Returns a paged response.
5485
5604
  *
@@ -5701,6 +5820,20 @@ It is required to supply some OrganizationUnitIDs or some ProductIDs in the Page
5701
5820
  }
5702
5821
  }
5703
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;
5704
5837
  /**
5705
5838
  * List Repairs, optionally filtered.
5706
5839
  *
@@ -6013,6 +6146,20 @@ The page size `Limit` has a maximum value of `1.024` for this service (unless `D
6013
6146
  }
6014
6147
  }
6015
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;
6016
6163
  /**
6017
6164
  * List the UserRequirementSets.
6018
6165
  *
@@ -6216,6 +6363,25 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
6216
6363
  }
6217
6364
  }
6218
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;
6219
6385
  /**
6220
6386
  * Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
6221
6387
  *
@@ -6286,6 +6452,20 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
6286
6452
  }
6287
6453
  }
6288
6454
  CoreManagement.RemovePackageFromCarrier = RemovePackageFromCarrier;
6455
+ /**
6456
+ * Remove personalized promotion products attached to a user. Either ProductIDs or RemoveAll is required.
6457
+ *
6458
+ * @export
6459
+ * @class RemovePersonalizedPromotionProducts
6460
+ * @implements {EvaService}
6461
+ */
6462
+ class RemovePersonalizedPromotionProducts {
6463
+ constructor() {
6464
+ this.name = 'CoreManagement:RemovePersonalizedPromotionProducts';
6465
+ this.path = '/message/RemovePersonalizedPromotionProducts';
6466
+ }
6467
+ }
6468
+ CoreManagement.RemovePersonalizedPromotionProducts = RemovePersonalizedPromotionProducts;
6289
6469
  /**
6290
6470
  * Removes products from an assortment. When the product is not part of the assortment an error is returned.
6291
6471
  *
@@ -6342,6 +6522,20 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
6342
6522
  }
6343
6523
  }
6344
6524
  CoreManagement.SearchStockMutations = SearchStockMutations;
6525
+ /**
6526
+ * Set selected products for personalized promotion for the logged in user or the given user. Ovewrites existing selection.
6527
+ *
6528
+ * @export
6529
+ * @class SelectUserPersonalizedPromotionProducts
6530
+ * @implements {EvaService}
6531
+ */
6532
+ class SelectUserPersonalizedPromotionProducts {
6533
+ constructor() {
6534
+ this.name = 'CoreManagement:SelectUserPersonalizedPromotionProducts';
6535
+ this.path = '/message/SelectUserPersonalizedPromotionProducts';
6536
+ }
6537
+ }
6538
+ CoreManagement.SelectUserPersonalizedPromotionProducts = SelectUserPersonalizedPromotionProducts;
6345
6539
  /**
6346
6540
  * TODO: Needs documentation
6347
6541
  *
@@ -6535,6 +6729,20 @@ When using this service make sure the `Workforce:AssignEmployeeRights` setting i
6535
6729
  }
6536
6730
  }
6537
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;
6538
6746
  /**
6539
6747
  * Removes the value for an AppSetting
6540
6748
 
@@ -7251,6 +7459,20 @@ A ShippingMethod, OrganizationUnit and Priority are required
7251
7459
  }
7252
7460
  }
7253
7461
  CoreManagement.UpdatePaymentType = UpdatePaymentType;
7462
+ /**
7463
+ * Update an existing personalized promotion.
7464
+ *
7465
+ * @export
7466
+ * @class UpdatePersonalizedPromotion
7467
+ * @implements {EvaService}
7468
+ */
7469
+ class UpdatePersonalizedPromotion {
7470
+ constructor() {
7471
+ this.name = 'CoreManagement:UpdatePersonalizedPromotion';
7472
+ this.path = '/message/UpdatePersonalizedPromotion';
7473
+ }
7474
+ }
7475
+ CoreManagement.UpdatePersonalizedPromotion = UpdatePersonalizedPromotion;
7254
7476
  /**
7255
7477
  * Update a point awarding rule
7256
7478
  *
@@ -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":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -34,6 +34,20 @@
34
34
  }
35
35
  }
36
36
  CoreManagement.AddPackageToCarrier = AddPackageToCarrier;
37
+ /**
38
+ * Add personalized promotion products for a user.
39
+ *
40
+ * @export
41
+ * @class AddPersonalizedPromotionsProducts
42
+ * @implements {EvaService}
43
+ */
44
+ class AddPersonalizedPromotionsProducts {
45
+ constructor() {
46
+ this.name = 'CoreManagement:AddPersonalizedPromotionsProducts';
47
+ this.path = '/message/AddPersonalizedPromotionsProducts';
48
+ }
49
+ }
50
+ CoreManagement.AddPersonalizedPromotionsProducts = AddPersonalizedPromotionsProducts;
37
51
  /**
38
52
  * Adds or updates the given products to the assortment.
39
53
 
@@ -107,6 +121,20 @@
107
121
  }
108
122
  }
109
123
  CoreManagement.ArchiveDiscount = ArchiveDiscount;
124
+ /**
125
+ * Archive a personalized promotion.
126
+ *
127
+ * @export
128
+ * @class ArchivePersonalizedPromotion
129
+ * @implements {EvaService}
130
+ */
131
+ class ArchivePersonalizedPromotion {
132
+ constructor() {
133
+ this.name = 'CoreManagement:ArchivePersonalizedPromotion';
134
+ this.path = '/message/ArchivePersonalizedPromotion';
135
+ }
136
+ }
137
+ CoreManagement.ArchivePersonalizedPromotion = ArchivePersonalizedPromotion;
110
138
  /**
111
139
  * Archive a point awarding rule
112
140
  *
@@ -233,6 +261,20 @@
233
261
  }
234
262
  }
235
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;
236
278
  /**
237
279
  * Removes all unused settings. Set ReportOnly to let this service return all settings that would be deleted.
238
280
  *
@@ -1002,6 +1044,20 @@
1002
1044
  }
1003
1045
  }
1004
1046
  CoreManagement.CreatePaymentType = CreatePaymentType;
1047
+ /**
1048
+ * Create a new personalized promotion.
1049
+ *
1050
+ * @export
1051
+ * @class CreatePersonalizedPromotion
1052
+ * @implements {EvaService}
1053
+ */
1054
+ class CreatePersonalizedPromotion {
1055
+ constructor() {
1056
+ this.name = 'CoreManagement:CreatePersonalizedPromotion';
1057
+ this.path = '/message/CreatePersonalizedPromotion';
1058
+ }
1059
+ }
1060
+ CoreManagement.CreatePersonalizedPromotion = CreatePersonalizedPromotion;
1005
1061
  /**
1006
1062
  * Create a point awarding rule.
1007
1063
  *
@@ -1201,7 +1257,7 @@
1201
1257
  }
1202
1258
  CoreManagement.CreateRepair = CreateRepair;
1203
1259
  /**
1204
- * Creates a new case interaction associated with a specific repair
1260
+ * Creates a new interaction associated with a specific repair
1205
1261
  *
1206
1262
  * @export
1207
1263
  * @class CreateRepairInteraction
@@ -4102,6 +4158,20 @@
4102
4158
  }
4103
4159
  }
4104
4160
  CoreManagement.GetPaymentTypesForFilter = GetPaymentTypesForFilter;
4161
+ /**
4162
+ * Get personalized promotion by its ID.
4163
+ *
4164
+ * @export
4165
+ * @class GetPersonalizedPromotionByID
4166
+ * @implements {EvaService}
4167
+ */
4168
+ class GetPersonalizedPromotionByID {
4169
+ constructor() {
4170
+ this.name = 'CoreManagement:GetPersonalizedPromotionByID';
4171
+ this.path = '/message/GetPersonalizedPromotionByID';
4172
+ }
4173
+ }
4174
+ CoreManagement.GetPersonalizedPromotionByID = GetPersonalizedPromotionByID;
4105
4175
  /**
4106
4176
  * Get loyalty point rule.
4107
4177
  *
@@ -4589,6 +4659,20 @@
4589
4659
  }
4590
4660
  }
4591
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;
4592
4676
  /**
4593
4677
  * Get the configured UserRequirements for the current, or given, `OrganizationUnit`.
4594
4678
  *
@@ -5456,6 +5540,27 @@
5456
5540
  }
5457
5541
  }
5458
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;
5459
5564
  /**
5460
5565
  * List paymenttransactions
5461
5566
 
@@ -5486,6 +5591,20 @@
5486
5591
  }
5487
5592
  }
5488
5593
  CoreManagement.ListPaymentTypes = ListPaymentTypes;
5594
+ /**
5595
+ * List personalized promotions. Returns a paged response.
5596
+ *
5597
+ * @export
5598
+ * @class ListPersonalizedPromotions
5599
+ * @implements {EvaService}
5600
+ */
5601
+ class ListPersonalizedPromotions {
5602
+ constructor() {
5603
+ this.name = 'CoreManagement:ListPersonalizedPromotions';
5604
+ this.path = '/message/ListPersonalizedPromotions';
5605
+ }
5606
+ }
5607
+ CoreManagement.ListPersonalizedPromotions = ListPersonalizedPromotions;
5489
5608
  /**
5490
5609
  * List loyalty point rules. Returns a paged response.
5491
5610
  *
@@ -5707,6 +5826,20 @@
5707
5826
  }
5708
5827
  }
5709
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;
5710
5843
  /**
5711
5844
  * List Repairs, optionally filtered.
5712
5845
  *
@@ -6019,6 +6152,20 @@
6019
6152
  }
6020
6153
  }
6021
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;
6022
6169
  /**
6023
6170
  * List the UserRequirementSets.
6024
6171
  *
@@ -6222,6 +6369,25 @@
6222
6369
  }
6223
6370
  }
6224
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;
6225
6391
  /**
6226
6392
  * Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
6227
6393
  *
@@ -6292,6 +6458,20 @@
6292
6458
  }
6293
6459
  }
6294
6460
  CoreManagement.RemovePackageFromCarrier = RemovePackageFromCarrier;
6461
+ /**
6462
+ * Remove personalized promotion products attached to a user. Either ProductIDs or RemoveAll is required.
6463
+ *
6464
+ * @export
6465
+ * @class RemovePersonalizedPromotionProducts
6466
+ * @implements {EvaService}
6467
+ */
6468
+ class RemovePersonalizedPromotionProducts {
6469
+ constructor() {
6470
+ this.name = 'CoreManagement:RemovePersonalizedPromotionProducts';
6471
+ this.path = '/message/RemovePersonalizedPromotionProducts';
6472
+ }
6473
+ }
6474
+ CoreManagement.RemovePersonalizedPromotionProducts = RemovePersonalizedPromotionProducts;
6295
6475
  /**
6296
6476
  * Removes products from an assortment. When the product is not part of the assortment an error is returned.
6297
6477
  *
@@ -6348,6 +6528,20 @@
6348
6528
  }
6349
6529
  }
6350
6530
  CoreManagement.SearchStockMutations = SearchStockMutations;
6531
+ /**
6532
+ * Set selected products for personalized promotion for the logged in user or the given user. Ovewrites existing selection.
6533
+ *
6534
+ * @export
6535
+ * @class SelectUserPersonalizedPromotionProducts
6536
+ * @implements {EvaService}
6537
+ */
6538
+ class SelectUserPersonalizedPromotionProducts {
6539
+ constructor() {
6540
+ this.name = 'CoreManagement:SelectUserPersonalizedPromotionProducts';
6541
+ this.path = '/message/SelectUserPersonalizedPromotionProducts';
6542
+ }
6543
+ }
6544
+ CoreManagement.SelectUserPersonalizedPromotionProducts = SelectUserPersonalizedPromotionProducts;
6351
6545
  /**
6352
6546
  * TODO: Needs documentation
6353
6547
  *
@@ -6541,6 +6735,20 @@
6541
6735
  }
6542
6736
  }
6543
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;
6544
6752
  /**
6545
6753
  * Removes the value for an AppSetting
6546
6754
 
@@ -7257,6 +7465,20 @@
7257
7465
  }
7258
7466
  }
7259
7467
  CoreManagement.UpdatePaymentType = UpdatePaymentType;
7468
+ /**
7469
+ * Update an existing personalized promotion.
7470
+ *
7471
+ * @export
7472
+ * @class UpdatePersonalizedPromotion
7473
+ * @implements {EvaService}
7474
+ */
7475
+ class UpdatePersonalizedPromotion {
7476
+ constructor() {
7477
+ this.name = 'CoreManagement:UpdatePersonalizedPromotion';
7478
+ this.path = '/message/UpdatePersonalizedPromotion';
7479
+ }
7480
+ }
7481
+ CoreManagement.UpdatePersonalizedPromotion = UpdatePersonalizedPromotion;
7260
7482
  /**
7261
7483
  * Update a point awarding rule
7262
7484
  *