@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.
@@ -237,6 +237,19 @@ But if the list is a mixed product list, all updates will be applied according t
237
237
  request?: EVA.Core.Management.AuditingValidateConfiguration;
238
238
  response?: EVA.Core.Management.AuditingConfigurationResponse;
239
239
  }
240
+ /**
241
+ * Block a users subscription without unsubscribing.
242
+ *
243
+ * @export
244
+ * @class BlockUserSubscription
245
+ * @implements {EvaService}
246
+ */
247
+ class BlockUserSubscription implements IEvaServiceDefinition {
248
+ name: string;
249
+ path: string;
250
+ request?: EVA.Core.Management.BlockUserSubscription;
251
+ response?: EVA.Core.EmptyResponseMessage;
252
+ }
240
253
  /**
241
254
  * Removes all unused settings. Set ReportOnly to let this service return all settings that would be deleted.
242
255
  *
@@ -1152,7 +1165,7 @@ Optionally adds a record in the ProductUnitOfMeasure conversion table for the su
1152
1165
  response?: EVA.Core.Management.CreateRepairResponse;
1153
1166
  }
1154
1167
  /**
1155
- * Creates a new case interaction associated with a specific repair
1168
+ * Creates a new interaction associated with a specific repair
1156
1169
  *
1157
1170
  * @export
1158
1171
  * @class CreateRepairInteraction
@@ -3445,6 +3458,19 @@ At this moment the supported DeviceTypes are:
3445
3458
  request?: EVA.Core.Management.GetDiscountCampaignByID;
3446
3459
  response?: EVA.Core.Management.GetDiscountCampaignByIDResponse;
3447
3460
  }
3461
+ /**
3462
+ * Get discount coupons by discount ID
3463
+ *
3464
+ * @export
3465
+ * @class GetDiscountCouponByID
3466
+ * @implements {EvaService}
3467
+ */
3468
+ class GetDiscountCouponByID implements IEvaServiceDefinition {
3469
+ name: string;
3470
+ path: string;
3471
+ request?: EVA.Core.Management.GetDiscountCouponByID;
3472
+ response?: EVA.Core.Management.GetDiscountCouponByIDResponse;
3473
+ }
3448
3474
  /**
3449
3475
  * Get discount coupons by discount ID
3450
3476
  *
@@ -3861,19 +3887,6 @@ At this moment the supported DeviceTypes are:
3861
3887
  request?: EVA.Core.Management.GetPersonalizedPromotionByID;
3862
3888
  response?: EVA.Core.Management.GetPersonalizedPromotionByIDResponse;
3863
3889
  }
3864
- /**
3865
- * Get all your personalized promotion products.
3866
- *
3867
- * @export
3868
- * @class GetPersonalizedPromotionProducts
3869
- * @implements {EvaService}
3870
- */
3871
- class GetPersonalizedPromotionProducts implements IEvaServiceDefinition {
3872
- name: string;
3873
- path: string;
3874
- request?: EVA.Core.Management.GetPersonalizedPromotionProducts;
3875
- response?: EVA.Core.Management.GetPersonalizedPromotionProductsResponse;
3876
- }
3877
3890
  /**
3878
3891
  * Get loyalty point rule.
3879
3892
  *
@@ -4327,6 +4340,19 @@ These handlers are custom build to fetch values for ProductRequirements from ext
4327
4340
  request?: EVA.Core.Management.GetUserOrigins;
4328
4341
  response?: EVA.Core.Management.GetUserOriginsResponse;
4329
4342
  }
4343
+ /**
4344
+ * Get all products for a personalized promotion for the logged in user or the given user.
4345
+ *
4346
+ * @export
4347
+ * @class GetUserPersonalizedPromotionProducts
4348
+ * @implements {EvaService}
4349
+ */
4350
+ class GetUserPersonalizedPromotionProducts implements IEvaServiceDefinition {
4351
+ name: string;
4352
+ path: string;
4353
+ request?: EVA.Core.Management.GetUserPersonalizedPromotionProducts;
4354
+ response?: EVA.Core.Management.GetUserPersonalizedPromotionProductsResponse;
4355
+ }
4330
4356
  /**
4331
4357
  * Get the configured UserRequirements for the current, or given, `OrganizationUnit`.
4332
4358
  *
@@ -4819,6 +4845,19 @@ or to get a specific product in an assortment by filtering on both.
4819
4845
  request?: EVA.Core.Management.ListDiscountTemplates;
4820
4846
  response?: EVA.Core.Management.ListDiscountTemplatesResponse;
4821
4847
  }
4848
+ /**
4849
+ * Lists the available discount user usage reload strategies.
4850
+ *
4851
+ * @export
4852
+ * @class ListDiscountUserUsageReloadStrategies
4853
+ * @implements {EvaService}
4854
+ */
4855
+ class ListDiscountUserUsageReloadStrategies implements IEvaServiceDefinition {
4856
+ name: string;
4857
+ path: string;
4858
+ request?: EVA.Core.Management.ListDiscountUserUsageReloadStrategies;
4859
+ response?: EVA.Core.Management.ListDiscountUserUsageReloadStrategiesResponse;
4860
+ }
4822
4861
  /**
4823
4862
  * List the EmployeeData
4824
4863
  *
@@ -5135,6 +5174,26 @@ All available filters are typed in the PageConfig.Filter property.
5135
5174
  request?: EVA.Core.Management.ListPaymentTransactionCaptures;
5136
5175
  response?: EVA.Core.Management.ListPaymentTransactionCapturesResponse;
5137
5176
  }
5177
+ /**
5178
+ * List paymenttransactionssettlements
5179
+
5180
+ Filters available to be sent in the request:
5181
+ - FinancialPeriodID
5182
+ - PaymentReference
5183
+ - MerchantReference
5184
+ - Type
5185
+ - SubType
5186
+ *
5187
+ * @export
5188
+ * @class ListPaymentTransactionSettlements
5189
+ * @implements {EvaService}
5190
+ */
5191
+ class ListPaymentTransactionSettlements implements IEvaServiceDefinition {
5192
+ name: string;
5193
+ path: string;
5194
+ request?: EVA.Core.Management.ListPaymentTransactionSettlements;
5195
+ response?: EVA.Core.Management.ListPaymentTransactionsSettlementsResponse;
5196
+ }
5138
5197
  /**
5139
5198
  * List paymenttransactions
5140
5199
 
@@ -5163,19 +5222,6 @@ All available filters are typed in the PageConfig.Filter property.
5163
5222
  request?: EVA.Core.Management.ListPaymentTypes;
5164
5223
  response?: EVA.Core.Management.ListPaymentTypesResponse;
5165
5224
  }
5166
- /**
5167
- * List personalized promotion products for a user.
5168
- *
5169
- * @export
5170
- * @class ListPersonalizedPromotionProducts
5171
- * @implements {EvaService}
5172
- */
5173
- class ListPersonalizedPromotionProducts implements IEvaServiceDefinition {
5174
- name: string;
5175
- path: string;
5176
- request?: EVA.Core.Management.ListPersonalizedPromotionProducts;
5177
- response?: EVA.Core.Management.ListPersonalizedPromotionProductsResponse;
5178
- }
5179
5225
  /**
5180
5226
  * List personalized promotions. Returns a paged response.
5181
5227
  *
@@ -5395,6 +5441,19 @@ It is required to supply some OrganizationUnitIDs or some ProductIDs in the Page
5395
5441
  request?: EVA.Core.Management.ListRefundCorrectionReasons;
5396
5442
  response?: EVA.Core.Management.ListRefundCorrectionReasonsResponse;
5397
5443
  }
5444
+ /**
5445
+ * List the repair interactions
5446
+ *
5447
+ * @export
5448
+ * @class ListRepairInteractions
5449
+ * @implements {EvaService}
5450
+ */
5451
+ class ListRepairInteractions implements IEvaServiceDefinition {
5452
+ name: string;
5453
+ path: string;
5454
+ request?: EVA.Core.Management.ListRepairInteractions;
5455
+ response?: EVA.Core.Management.ListRepairInteractionsResponse;
5456
+ }
5398
5457
  /**
5399
5458
  * List Repairs, optionally filtered.
5400
5459
  *
@@ -5685,6 +5744,19 @@ The page size `Limit` has a maximum value of `1.024` for this service (unless `D
5685
5744
  request?: EVA.Core.Management.ListUserOrganizationUnitRoles;
5686
5745
  response?: EVA.Core.Management.ListUserOrganizationUnitRolesResponse;
5687
5746
  }
5747
+ /**
5748
+ * Get all personalized promotions for the logged in user or the given user.
5749
+ *
5750
+ * @export
5751
+ * @class ListUserPersonalizedPromotions
5752
+ * @implements {EvaService}
5753
+ */
5754
+ class ListUserPersonalizedPromotions implements IEvaServiceDefinition {
5755
+ name: string;
5756
+ path: string;
5757
+ request?: EVA.Core.Management.ListUserPersonalizedPromotions;
5758
+ response?: EVA.Core.Management.ListUserPersonalizedPromotionsResponse;
5759
+ }
5688
5760
  /**
5689
5761
  * List the UserRequirementSets.
5690
5762
  *
@@ -5874,6 +5946,24 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
5874
5946
  request?: EVA.Core.Management.PushUserBoughtProduct;
5875
5947
  response?: EVA.Core.EmptyResponseMessage;
5876
5948
  }
5949
+ /**
5950
+ * The service enables endpoints to push user subscriptions based on the user backend id and subscription backend id.
5951
+ Multiple subscriptions can be pushed at once.
5952
+
5953
+ Additionally, a SubscriptionID and Balance can be provided
5954
+ NOTE THAT Only subscriptions that allow for local storage can be pushed. Subscriptions fully depending on external services cannot be pushed.
5955
+ NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA loyalty handler.
5956
+ *
5957
+ * @export
5958
+ * @class PushUserSubscription
5959
+ * @implements {EvaService}
5960
+ */
5961
+ class PushUserSubscription implements IEvaServiceDefinition {
5962
+ name: string;
5963
+ path: string;
5964
+ request?: EVA.Core.Management.PushUserSubscription;
5965
+ response?: EVA.Core.EmptyResponseMessage;
5966
+ }
5877
5967
  /**
5878
5968
  * Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
5879
5969
  *
@@ -6005,16 +6095,16 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
6005
6095
  response?: EVA.Core.Management.SearchStockMutationsResponse;
6006
6096
  }
6007
6097
  /**
6008
- * Set selected products for your personalized promotion. Ovewrites existing selection.
6098
+ * Set selected products for personalized promotion for the logged in user or the given user. Ovewrites existing selection.
6009
6099
  *
6010
6100
  * @export
6011
- * @class SelectPersonalizedPromotionProducts
6101
+ * @class SelectUserPersonalizedPromotionProducts
6012
6102
  * @implements {EvaService}
6013
6103
  */
6014
- class SelectPersonalizedPromotionProducts implements IEvaServiceDefinition {
6104
+ class SelectUserPersonalizedPromotionProducts implements IEvaServiceDefinition {
6015
6105
  name: string;
6016
6106
  path: string;
6017
- request?: EVA.Core.Management.SelectPersonalizedPromotionProducts;
6107
+ request?: EVA.Core.Management.SelectUserPersonalizedPromotionProducts;
6018
6108
  response?: EVA.Core.EmptyResponseMessage;
6019
6109
  }
6020
6110
  /**
@@ -6198,6 +6288,19 @@ When using this service make sure the `Workforce:AssignEmployeeRights` setting i
6198
6288
  request?: EVA.Core.Management.SetUserRoles;
6199
6289
  response?: EVA.Core.EmptyResponseMessage;
6200
6290
  }
6291
+ /**
6292
+ * Unblock a users subscription.
6293
+ *
6294
+ * @export
6295
+ * @class UnblockUserSubscription
6296
+ * @implements {EvaService}
6297
+ */
6298
+ class UnblockUserSubscription implements IEvaServiceDefinition {
6299
+ name: string;
6300
+ path: string;
6301
+ request?: EVA.Core.Management.UnblockUserSubscription;
6302
+ response?: EVA.Core.EmptyResponseMessage;
6303
+ }
6201
6304
  /**
6202
6305
  * Removes the value for an AppSetting
6203
6306
 
@@ -7443,6 +7546,32 @@ The data for this service can be gotten by first calling DownloadAssortmentProdu
7443
7546
  request?: EVA.Core.Management.UploadCouponExcel;
7444
7547
  response?: EVA.Core.Management.UploadCouponExcelResponse;
7445
7548
  }
7549
+ /**
7550
+ * Upload an excel with coupons.
7551
+ *
7552
+ * @export
7553
+ * @class UploadCouponExcel_Async
7554
+ * @implements {EvaService}
7555
+ */
7556
+ class UploadCouponExcel_Async implements IEvaServiceDefinition {
7557
+ name: string;
7558
+ path: string;
7559
+ request?: EVA.Core.Management.UploadCouponExcel;
7560
+ response?: EVA.Core.AsyncRequestResponse;
7561
+ }
7562
+ /**
7563
+ * Upload an excel with coupons.
7564
+ *
7565
+ * @export
7566
+ * @class UploadCouponExcel_AsyncResult
7567
+ * @implements {EvaService}
7568
+ */
7569
+ class UploadCouponExcel_AsyncResult implements IEvaServiceDefinition {
7570
+ name: string;
7571
+ path: string;
7572
+ request?: EVA.Core.AsyncRequestResultRequest;
7573
+ response?: EVA.Core.Management.UploadCouponExcelResponse;
7574
+ }
7446
7575
  /**
7447
7576
  * Upload the Excel based on the sample from `DownloadCustomersSample`.
7448
7577