@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
|
@@ -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
|
|
1168
|
+
* Creates a new interaction associated with a specific repair
|
|
1156
1169
|
*
|
|
1157
1170
|
* @export
|
|
1158
1171
|
* @class CreateRepairInteraction
|
|
@@ -3861,19 +3874,6 @@ At this moment the supported DeviceTypes are:
|
|
|
3861
3874
|
request?: EVA.Core.Management.GetPersonalizedPromotionByID;
|
|
3862
3875
|
response?: EVA.Core.Management.GetPersonalizedPromotionByIDResponse;
|
|
3863
3876
|
}
|
|
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
3877
|
/**
|
|
3878
3878
|
* Get loyalty point rule.
|
|
3879
3879
|
*
|
|
@@ -4327,6 +4327,19 @@ These handlers are custom build to fetch values for ProductRequirements from ext
|
|
|
4327
4327
|
request?: EVA.Core.Management.GetUserOrigins;
|
|
4328
4328
|
response?: EVA.Core.Management.GetUserOriginsResponse;
|
|
4329
4329
|
}
|
|
4330
|
+
/**
|
|
4331
|
+
* Get all products for a personalized promotion for the logged in user or the given user.
|
|
4332
|
+
*
|
|
4333
|
+
* @export
|
|
4334
|
+
* @class GetUserPersonalizedPromotionProducts
|
|
4335
|
+
* @implements {EvaService}
|
|
4336
|
+
*/
|
|
4337
|
+
class GetUserPersonalizedPromotionProducts implements IEvaServiceDefinition {
|
|
4338
|
+
name: string;
|
|
4339
|
+
path: string;
|
|
4340
|
+
request?: EVA.Core.Management.GetUserPersonalizedPromotionProducts;
|
|
4341
|
+
response?: EVA.Core.Management.GetUserPersonalizedPromotionProductsResponse;
|
|
4342
|
+
}
|
|
4330
4343
|
/**
|
|
4331
4344
|
* Get the configured UserRequirements for the current, or given, `OrganizationUnit`.
|
|
4332
4345
|
*
|
|
@@ -5135,6 +5148,26 @@ All available filters are typed in the PageConfig.Filter property.
|
|
|
5135
5148
|
request?: EVA.Core.Management.ListPaymentTransactionCaptures;
|
|
5136
5149
|
response?: EVA.Core.Management.ListPaymentTransactionCapturesResponse;
|
|
5137
5150
|
}
|
|
5151
|
+
/**
|
|
5152
|
+
* List paymenttransactionssettlements
|
|
5153
|
+
|
|
5154
|
+
Filters available to be sent in the request:
|
|
5155
|
+
- FinancialPeriodID
|
|
5156
|
+
- PaymentReference
|
|
5157
|
+
- MerchantReference
|
|
5158
|
+
- Type
|
|
5159
|
+
- SubType
|
|
5160
|
+
*
|
|
5161
|
+
* @export
|
|
5162
|
+
* @class ListPaymentTransactionSettlements
|
|
5163
|
+
* @implements {EvaService}
|
|
5164
|
+
*/
|
|
5165
|
+
class ListPaymentTransactionSettlements implements IEvaServiceDefinition {
|
|
5166
|
+
name: string;
|
|
5167
|
+
path: string;
|
|
5168
|
+
request?: EVA.Core.Management.ListPaymentTransactionSettlements;
|
|
5169
|
+
response?: EVA.Core.Management.ListPaymentTransactionsSettlementsResponse;
|
|
5170
|
+
}
|
|
5138
5171
|
/**
|
|
5139
5172
|
* List paymenttransactions
|
|
5140
5173
|
|
|
@@ -5163,19 +5196,6 @@ All available filters are typed in the PageConfig.Filter property.
|
|
|
5163
5196
|
request?: EVA.Core.Management.ListPaymentTypes;
|
|
5164
5197
|
response?: EVA.Core.Management.ListPaymentTypesResponse;
|
|
5165
5198
|
}
|
|
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
5199
|
/**
|
|
5180
5200
|
* List personalized promotions. Returns a paged response.
|
|
5181
5201
|
*
|
|
@@ -5395,6 +5415,19 @@ It is required to supply some OrganizationUnitIDs or some ProductIDs in the Page
|
|
|
5395
5415
|
request?: EVA.Core.Management.ListRefundCorrectionReasons;
|
|
5396
5416
|
response?: EVA.Core.Management.ListRefundCorrectionReasonsResponse;
|
|
5397
5417
|
}
|
|
5418
|
+
/**
|
|
5419
|
+
* List the repair interactions
|
|
5420
|
+
*
|
|
5421
|
+
* @export
|
|
5422
|
+
* @class ListRepairInteractions
|
|
5423
|
+
* @implements {EvaService}
|
|
5424
|
+
*/
|
|
5425
|
+
class ListRepairInteractions implements IEvaServiceDefinition {
|
|
5426
|
+
name: string;
|
|
5427
|
+
path: string;
|
|
5428
|
+
request?: EVA.Core.Management.ListRepairInteractions;
|
|
5429
|
+
response?: EVA.Core.Management.ListRepairInteractionsResponse;
|
|
5430
|
+
}
|
|
5398
5431
|
/**
|
|
5399
5432
|
* List Repairs, optionally filtered.
|
|
5400
5433
|
*
|
|
@@ -5685,6 +5718,19 @@ The page size `Limit` has a maximum value of `1.024` for this service (unless `D
|
|
|
5685
5718
|
request?: EVA.Core.Management.ListUserOrganizationUnitRoles;
|
|
5686
5719
|
response?: EVA.Core.Management.ListUserOrganizationUnitRolesResponse;
|
|
5687
5720
|
}
|
|
5721
|
+
/**
|
|
5722
|
+
* Get all personalized promotions for the logged in user or the given user.
|
|
5723
|
+
*
|
|
5724
|
+
* @export
|
|
5725
|
+
* @class ListUserPersonalizedPromotions
|
|
5726
|
+
* @implements {EvaService}
|
|
5727
|
+
*/
|
|
5728
|
+
class ListUserPersonalizedPromotions implements IEvaServiceDefinition {
|
|
5729
|
+
name: string;
|
|
5730
|
+
path: string;
|
|
5731
|
+
request?: EVA.Core.Management.ListUserPersonalizedPromotions;
|
|
5732
|
+
response?: EVA.Core.Management.ListUserPersonalizedPromotionsResponse;
|
|
5733
|
+
}
|
|
5688
5734
|
/**
|
|
5689
5735
|
* List the UserRequirementSets.
|
|
5690
5736
|
*
|
|
@@ -5874,6 +5920,24 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
|
|
|
5874
5920
|
request?: EVA.Core.Management.PushUserBoughtProduct;
|
|
5875
5921
|
response?: EVA.Core.EmptyResponseMessage;
|
|
5876
5922
|
}
|
|
5923
|
+
/**
|
|
5924
|
+
* The service enables endpoints to push user subscriptions based on the user backend id and subscription backend id.
|
|
5925
|
+
Multiple subscriptions can be pushed at once.
|
|
5926
|
+
|
|
5927
|
+
Additionally, a SubscriptionID and Balance can be provided
|
|
5928
|
+
NOTE THAT Only subscriptions that allow for local storage can be pushed. Subscriptions fully depending on external services cannot be pushed.
|
|
5929
|
+
NOTE THAT Balance can only be provided for loyalty subscriptions that have a EVA loyalty handler.
|
|
5930
|
+
*
|
|
5931
|
+
* @export
|
|
5932
|
+
* @class PushUserSubscription
|
|
5933
|
+
* @implements {EvaService}
|
|
5934
|
+
*/
|
|
5935
|
+
class PushUserSubscription implements IEvaServiceDefinition {
|
|
5936
|
+
name: string;
|
|
5937
|
+
path: string;
|
|
5938
|
+
request?: EVA.Core.Management.PushUserSubscription;
|
|
5939
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
5940
|
+
}
|
|
5877
5941
|
/**
|
|
5878
5942
|
* Reallocates the stock for a StockLocationRule with `Type` = `Limitation`.
|
|
5879
5943
|
*
|
|
@@ -6005,16 +6069,16 @@ Also the MessageTemplate `QRCodePrintingTemplate` can be configured in Stencil.
|
|
|
6005
6069
|
response?: EVA.Core.Management.SearchStockMutationsResponse;
|
|
6006
6070
|
}
|
|
6007
6071
|
/**
|
|
6008
|
-
* Set selected products for
|
|
6072
|
+
* Set selected products for personalized promotion for the logged in user or the given user. Ovewrites existing selection.
|
|
6009
6073
|
*
|
|
6010
6074
|
* @export
|
|
6011
|
-
* @class
|
|
6075
|
+
* @class SelectUserPersonalizedPromotionProducts
|
|
6012
6076
|
* @implements {EvaService}
|
|
6013
6077
|
*/
|
|
6014
|
-
class
|
|
6078
|
+
class SelectUserPersonalizedPromotionProducts implements IEvaServiceDefinition {
|
|
6015
6079
|
name: string;
|
|
6016
6080
|
path: string;
|
|
6017
|
-
request?: EVA.Core.Management.
|
|
6081
|
+
request?: EVA.Core.Management.SelectUserPersonalizedPromotionProducts;
|
|
6018
6082
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6019
6083
|
}
|
|
6020
6084
|
/**
|
|
@@ -6198,6 +6262,19 @@ When using this service make sure the `Workforce:AssignEmployeeRights` setting i
|
|
|
6198
6262
|
request?: EVA.Core.Management.SetUserRoles;
|
|
6199
6263
|
response?: EVA.Core.EmptyResponseMessage;
|
|
6200
6264
|
}
|
|
6265
|
+
/**
|
|
6266
|
+
* Unblock a users subscription.
|
|
6267
|
+
*
|
|
6268
|
+
* @export
|
|
6269
|
+
* @class UnblockUserSubscription
|
|
6270
|
+
* @implements {EvaService}
|
|
6271
|
+
*/
|
|
6272
|
+
class UnblockUserSubscription implements IEvaServiceDefinition {
|
|
6273
|
+
name: string;
|
|
6274
|
+
path: string;
|
|
6275
|
+
request?: EVA.Core.Management.UnblockUserSubscription;
|
|
6276
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
6277
|
+
}
|
|
6201
6278
|
/**
|
|
6202
6279
|
* Removes the value for an AppSetting
|
|
6203
6280
|
|