@springtree/eva-services-core-management 2.26.1 → 2.28.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.
|
@@ -3031,7 +3031,8 @@ File in state processing or processed can't be deleted due to generated financia
|
|
|
3031
3031
|
response?: EVA.Core.ResourceResponseMessage;
|
|
3032
3032
|
}
|
|
3033
3033
|
/**
|
|
3034
|
-
* Download an overview of the stock for the specified organization units.
|
|
3034
|
+
* Download an overview of the stock for the specified organization units or the specified organization unit set.
|
|
3035
|
+
NOTE THAT when `OrganizationUnitSetID` is provided, `OrganizationUnitIDs` is ignored.
|
|
3035
3036
|
*
|
|
3036
3037
|
* @export
|
|
3037
3038
|
* @class DownloadStockOverview
|
|
@@ -3044,7 +3045,8 @@ File in state processing or processed can't be deleted due to generated financia
|
|
|
3044
3045
|
response?: EVA.Core.ResourceWithBlobIDResponseMessage;
|
|
3045
3046
|
}
|
|
3046
3047
|
/**
|
|
3047
|
-
* Download an overview of the stock for the specified organization units.
|
|
3048
|
+
* Download an overview of the stock for the specified organization units or the specified organization unit set.
|
|
3049
|
+
NOTE THAT when `OrganizationUnitSetID` is provided, `OrganizationUnitIDs` is ignored.
|
|
3048
3050
|
*
|
|
3049
3051
|
* @export
|
|
3050
3052
|
* @class DownloadStockOverview_Async
|
|
@@ -3057,7 +3059,8 @@ File in state processing or processed can't be deleted due to generated financia
|
|
|
3057
3059
|
response?: EVA.Core.AsyncRequestResponse;
|
|
3058
3060
|
}
|
|
3059
3061
|
/**
|
|
3060
|
-
* Download an overview of the stock for the specified organization units.
|
|
3062
|
+
* Download an overview of the stock for the specified organization units or the specified organization unit set.
|
|
3063
|
+
NOTE THAT when `OrganizationUnitSetID` is provided, `OrganizationUnitIDs` is ignored.
|
|
3061
3064
|
*
|
|
3062
3065
|
* @export
|
|
3063
3066
|
* @class DownloadStockOverview_AsyncResult
|
|
@@ -4339,7 +4342,7 @@ At this moment the supported DeviceTypes are:
|
|
|
4339
4342
|
response?: EVA.Core.Management.GetOrderLoyaltyProgramPaymentTypesResponse;
|
|
4340
4343
|
}
|
|
4341
4344
|
/**
|
|
4342
|
-
*
|
|
4345
|
+
* Retrieves the details of the organization unit company corresponding to the specified ID.
|
|
4343
4346
|
*
|
|
4344
4347
|
* @export
|
|
4345
4348
|
* @class GetOrganizationUnitCompany
|
|
@@ -4941,6 +4944,19 @@ These handlers are custom build to fetch values for ProductRequirements from ext
|
|
|
4941
4944
|
request?: EVA.Core.Management.GetSurveyQuestions;
|
|
4942
4945
|
response?: EVA.Core.Management.GetSurveyQuestionsResponse;
|
|
4943
4946
|
}
|
|
4947
|
+
/**
|
|
4948
|
+
* Returns all translatable items within the survey.
|
|
4949
|
+
*
|
|
4950
|
+
* @export
|
|
4951
|
+
* @class GetSurveyTranslatableItems
|
|
4952
|
+
* @implements {EvaService}
|
|
4953
|
+
*/
|
|
4954
|
+
class GetSurveyTranslatableItems implements IEvaServiceDefinition {
|
|
4955
|
+
name: string;
|
|
4956
|
+
path: string;
|
|
4957
|
+
request?: EVA.Core.Management.GetSurveyTranslatableItems;
|
|
4958
|
+
response?: EVA.Core.Management.GetSurveyTranslatableItemsResponse;
|
|
4959
|
+
}
|
|
4944
4960
|
/**
|
|
4945
4961
|
* List the UnitOfMeasures
|
|
4946
4962
|
*
|
|
@@ -5498,6 +5514,19 @@ or to get a specific product in an assortment by filtering on both.
|
|
|
5498
5514
|
request?: EVA.Core.Management.ListCustomFields;
|
|
5499
5515
|
response?: EVA.Core.Management.ListCustomFieldsResponse;
|
|
5500
5516
|
}
|
|
5517
|
+
/**
|
|
5518
|
+
* List the available custom fields for a given survey context
|
|
5519
|
+
*
|
|
5520
|
+
* @export
|
|
5521
|
+
* @class ListCustomFieldsForSurvey
|
|
5522
|
+
* @implements {EvaService}
|
|
5523
|
+
*/
|
|
5524
|
+
class ListCustomFieldsForSurvey implements IEvaServiceDefinition {
|
|
5525
|
+
name: string;
|
|
5526
|
+
path: string;
|
|
5527
|
+
request?: EVA.Core.Management.ListCustomFieldsForSurvey;
|
|
5528
|
+
response?: EVA.Core.Management.ListCustomFieldsForSurveyResponse;
|
|
5529
|
+
}
|
|
5501
5530
|
/**
|
|
5502
5531
|
* List the DiscountCampaigns
|
|
5503
5532
|
*
|
|
@@ -6198,19 +6227,6 @@ It is required to supply some OrganizationUnitIDs or some ProductIDs in the Page
|
|
|
6198
6227
|
request?: EVA.Core.Management.ListProductRequirements;
|
|
6199
6228
|
response?: EVA.Core.Management.ListProductRequirementsResponse;
|
|
6200
6229
|
}
|
|
6201
|
-
/**
|
|
6202
|
-
* Lists the persisted output of product search templates
|
|
6203
|
-
*
|
|
6204
|
-
* @export
|
|
6205
|
-
* @class ListProductSearchTemplateResults
|
|
6206
|
-
* @implements {EvaService}
|
|
6207
|
-
*/
|
|
6208
|
-
class ListProductSearchTemplateResults implements IEvaServiceDefinition {
|
|
6209
|
-
name: string;
|
|
6210
|
-
path: string;
|
|
6211
|
-
request?: EVA.Core.Management.ListProductSearchTemplateResults;
|
|
6212
|
-
response?: EVA.Core.Management.ListProductSearchTemplateResultsResponse;
|
|
6213
|
-
}
|
|
6214
6230
|
/**
|
|
6215
6231
|
* List the ProductSearchTemplates
|
|
6216
6232
|
*
|
|
@@ -7369,6 +7385,19 @@ The maximum amount of users that can be rebalanced in a single request is 10,000
|
|
|
7369
7385
|
request?: EVA.Core.Management.SearchDiscountsByQuery;
|
|
7370
7386
|
response?: EVA.Core.Management.SearchDiscountsByQueryResponse;
|
|
7371
7387
|
}
|
|
7388
|
+
/**
|
|
7389
|
+
* Searches for organization unit companies based on the provided query and filter criteria.
|
|
7390
|
+
*
|
|
7391
|
+
* @export
|
|
7392
|
+
* @class SearchOrganizationUnitCompany
|
|
7393
|
+
* @implements {EvaService}
|
|
7394
|
+
*/
|
|
7395
|
+
class SearchOrganizationUnitCompany implements IEvaServiceDefinition {
|
|
7396
|
+
name: string;
|
|
7397
|
+
path: string;
|
|
7398
|
+
request?: EVA.Core.Management.SearchOrganizationUnitCompany;
|
|
7399
|
+
response?: EVA.Core.Management.SearchOrganizationUnitCompanyResponse;
|
|
7400
|
+
}
|
|
7372
7401
|
/**
|
|
7373
7402
|
* This service allows retrieval of StockMutations, filtered by a Query and/or a set of filters.
|
|
7374
7403
|
*
|
|
@@ -7622,6 +7651,19 @@ Will apply all changes or no changes in case of an error
|
|
|
7622
7651
|
request?: EVA.Core.Management.SetSurveyQuestionSequences;
|
|
7623
7652
|
response?: EVA.Core.EmptyResponseMessage;
|
|
7624
7653
|
}
|
|
7654
|
+
/**
|
|
7655
|
+
* Set all translatable items within the survey.
|
|
7656
|
+
*
|
|
7657
|
+
* @export
|
|
7658
|
+
* @class SetSurveyTranslatableItems
|
|
7659
|
+
* @implements {EvaService}
|
|
7660
|
+
*/
|
|
7661
|
+
class SetSurveyTranslatableItems implements IEvaServiceDefinition {
|
|
7662
|
+
name: string;
|
|
7663
|
+
path: string;
|
|
7664
|
+
request?: EVA.Core.Management.SetSurveyTranslatableItems;
|
|
7665
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
7666
|
+
}
|
|
7625
7667
|
/**
|
|
7626
7668
|
* Update the Roles for an User. The roles provided will replace any existing roles on this user!
|
|
7627
7669
|
|