@springtree/eva-services-core-management 2.36.0 → 2.37.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.
|
@@ -531,19 +531,6 @@ An example of this might be tips left by a customer.
|
|
|
531
531
|
request?: EVA.Core.Management.CreateCheckoutOptionCategory;
|
|
532
532
|
response?: EVA.Core.Management.CreateCheckoutOptionCategoryResponse;
|
|
533
533
|
}
|
|
534
|
-
/**
|
|
535
|
-
* Create a new ClientApplication.
|
|
536
|
-
*
|
|
537
|
-
* @export
|
|
538
|
-
* @class CreateClientApplication
|
|
539
|
-
* @implements {EvaService}
|
|
540
|
-
*/
|
|
541
|
-
class CreateClientApplication implements IEvaServiceDefinition {
|
|
542
|
-
name: string;
|
|
543
|
-
path: string;
|
|
544
|
-
request?: EVA.Core.Management.CreateClientApplication;
|
|
545
|
-
response?: EVA.Core.Management.CreateClientApplicationResponse;
|
|
546
|
-
}
|
|
547
534
|
/**
|
|
548
535
|
* Creates a new Company, which represents a legal entity in EVA. Both Users and OrganizationUnits can have a Company that they are a part of.
|
|
549
536
|
*
|
|
@@ -1811,19 +1798,6 @@ The survey is re-enabled when a new version is published.
|
|
|
1811
1798
|
request?: EVA.Core.Management.DeleteCheckoutOptionCategory;
|
|
1812
1799
|
response?: EVA.Core.EmptyResponseMessage;
|
|
1813
1800
|
}
|
|
1814
|
-
/**
|
|
1815
|
-
* Delete a ClientApplication
|
|
1816
|
-
*
|
|
1817
|
-
* @export
|
|
1818
|
-
* @class DeleteClientApplication
|
|
1819
|
-
* @implements {EvaService}
|
|
1820
|
-
*/
|
|
1821
|
-
class DeleteClientApplication implements IEvaServiceDefinition {
|
|
1822
|
-
name: string;
|
|
1823
|
-
path: string;
|
|
1824
|
-
request?: EVA.Core.Management.DeleteClientApplication;
|
|
1825
|
-
response?: EVA.Core.EmptyResponseMessage;
|
|
1826
|
-
}
|
|
1827
1801
|
/**
|
|
1828
1802
|
* Deletes a Company. If a Company is still in use by Users or OrganizationUnits this service will return an error.
|
|
1829
1803
|
*
|
|
@@ -3818,19 +3792,6 @@ If available a Description and/or DefaultValue will be returned
|
|
|
3818
3792
|
request?: EVA.Core.Management.GetCheckoutOptionHandlers;
|
|
3819
3793
|
response?: EVA.Core.Management.GetCheckoutOptionHandlersResponse;
|
|
3820
3794
|
}
|
|
3821
|
-
/**
|
|
3822
|
-
* Gets an ClientApplication by its ID
|
|
3823
|
-
*
|
|
3824
|
-
* @export
|
|
3825
|
-
* @class GetClientApplicationByID
|
|
3826
|
-
* @implements {EvaService}
|
|
3827
|
-
*/
|
|
3828
|
-
class GetClientApplicationByID implements IEvaServiceDefinition {
|
|
3829
|
-
name: string;
|
|
3830
|
-
path: string;
|
|
3831
|
-
request?: EVA.Core.Management.GetClientApplicationByID;
|
|
3832
|
-
response?: EVA.Core.Management.GetClientApplicationByIDResponse;
|
|
3833
|
-
}
|
|
3834
3795
|
/**
|
|
3835
3796
|
* Get the details of a specific Company.
|
|
3836
3797
|
*
|
|
@@ -5462,19 +5423,6 @@ or to get a specific product in an assortment by filtering on both.
|
|
|
5462
5423
|
request?: EVA.Core.Management.ListCheckoutOptionCategories;
|
|
5463
5424
|
response?: EVA.Core.Management.ListCheckoutOptionCategoriesResponse;
|
|
5464
5425
|
}
|
|
5465
|
-
/**
|
|
5466
|
-
* List ClientApplications. Returns a paged response.
|
|
5467
|
-
*
|
|
5468
|
-
* @export
|
|
5469
|
-
* @class ListClientApplications
|
|
5470
|
-
* @implements {EvaService}
|
|
5471
|
-
*/
|
|
5472
|
-
class ListClientApplications implements IEvaServiceDefinition {
|
|
5473
|
-
name: string;
|
|
5474
|
-
path: string;
|
|
5475
|
-
request?: EVA.Core.Management.ListClientApplications;
|
|
5476
|
-
response?: EVA.Core.Management.ListClientApplicationsResponse;
|
|
5477
|
-
}
|
|
5478
5426
|
/**
|
|
5479
5427
|
* List Companies, optionally filtered.
|
|
5480
5428
|
*
|
|
@@ -6344,6 +6292,19 @@ It is required to supply some OrganizationUnitIDs or some ProductIDs in the Page
|
|
|
6344
6292
|
request?: EVA.Core.Management.ListReturnReasons;
|
|
6345
6293
|
response?: EVA.Core.Management.ListReturnReasonsResponse;
|
|
6346
6294
|
}
|
|
6295
|
+
/**
|
|
6296
|
+
* List role functionalities.
|
|
6297
|
+
*
|
|
6298
|
+
* @export
|
|
6299
|
+
* @class ListRoleFunctionalities
|
|
6300
|
+
* @implements {EvaService}
|
|
6301
|
+
*/
|
|
6302
|
+
class ListRoleFunctionalities implements IEvaServiceDefinition {
|
|
6303
|
+
name: string;
|
|
6304
|
+
path: string;
|
|
6305
|
+
request?: EVA.Core.Management.ListRoleFunctionalities;
|
|
6306
|
+
response?: EVA.Core.Management.ListRoleFunctionalitiesResponse;
|
|
6307
|
+
}
|
|
6347
6308
|
/**
|
|
6348
6309
|
* TODO: Needs documentation
|
|
6349
6310
|
*
|
|
@@ -8011,19 +7972,6 @@ The first supplied CheckoutOption will get `Sequence=0` and thus will be returne
|
|
|
8011
7972
|
request?: EVA.Core.Management.UpdateCheckoutOptionSequences;
|
|
8012
7973
|
response?: EVA.Core.EmptyResponseMessage;
|
|
8013
7974
|
}
|
|
8014
|
-
/**
|
|
8015
|
-
* Update an existing ClientApplication.
|
|
8016
|
-
*
|
|
8017
|
-
* @export
|
|
8018
|
-
* @class UpdateClientApplication
|
|
8019
|
-
* @implements {EvaService}
|
|
8020
|
-
*/
|
|
8021
|
-
class UpdateClientApplication implements IEvaServiceDefinition {
|
|
8022
|
-
name: string;
|
|
8023
|
-
path: string;
|
|
8024
|
-
request?: EVA.Core.Management.UpdateClientApplication;
|
|
8025
|
-
response?: EVA.Core.EmptyResponseMessage;
|
|
8026
|
-
}
|
|
8027
7975
|
/**
|
|
8028
7976
|
* Updates a Company. Fields not provided in the request are ignored.
|
|
8029
7977
|
*
|