@springtree/eva-services-core-management 1.90.0 → 1.92.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 +52 -13
- package/lib/EVA.Core.Management.Services.d.ts.map +1 -1
- package/lib/EVA.Core.Management.Services.js +56 -14
- package/lib/EVA.Core.Management.Services.js.map +1 -1
- package/lib/eva-services-core-management.es5.js +56 -14
- package/lib/eva-services-core-management.es5.js.map +1 -1
- package/lib/eva-services-core-management.umd.js +56 -14
- package/lib/eva-services-core-management.umd.js.map +1 -1
- package/package.json +2 -2
|
@@ -2016,6 +2016,19 @@ It's not possible to delete a scope that is still in use by an OrganizationUnitS
|
|
|
2016
2016
|
request?: EVA.Core.Management.DeletePaymentType;
|
|
2017
2017
|
response?: EVA.Core.EmptyResponseMessage;
|
|
2018
2018
|
}
|
|
2019
|
+
/**
|
|
2020
|
+
* Delete a PriceList
|
|
2021
|
+
*
|
|
2022
|
+
* @export
|
|
2023
|
+
* @class DeletePriceList
|
|
2024
|
+
* @implements {EvaService}
|
|
2025
|
+
*/
|
|
2026
|
+
class DeletePriceList implements IEvaServiceDefinition {
|
|
2027
|
+
name: string;
|
|
2028
|
+
path: string;
|
|
2029
|
+
request?: EVA.Core.Management.DeletePriceList;
|
|
2030
|
+
response?: EVA.Core.EmptyResponseMessage;
|
|
2031
|
+
}
|
|
2019
2032
|
/**
|
|
2020
2033
|
* Delete an existing PriceListAdjustment
|
|
2021
2034
|
*
|
|
@@ -3393,6 +3406,19 @@ At this moment the supported DeviceTypes are:
|
|
|
3393
3406
|
request?: EVA.Core.Management.GetCustomFieldByID;
|
|
3394
3407
|
response?: EVA.Core.Management.GetCustomFieldByIDResponse;
|
|
3395
3408
|
}
|
|
3409
|
+
/**
|
|
3410
|
+
* TODO: Needs documentation
|
|
3411
|
+
*
|
|
3412
|
+
* @export
|
|
3413
|
+
* @class GetCustomFieldMetadata
|
|
3414
|
+
* @implements {EvaService}
|
|
3415
|
+
*/
|
|
3416
|
+
class GetCustomFieldMetadata implements IEvaServiceDefinition {
|
|
3417
|
+
name: string;
|
|
3418
|
+
path: string;
|
|
3419
|
+
request?: EVA.Core.Management.GetCustomFieldMetadata;
|
|
3420
|
+
response?: EVA.Core.Management.GetCustomFieldMetadataResponse;
|
|
3421
|
+
}
|
|
3396
3422
|
/**
|
|
3397
3423
|
* Get the CustomFieldTypes
|
|
3398
3424
|
*
|
|
@@ -3562,19 +3588,6 @@ At this moment the supported DeviceTypes are:
|
|
|
3562
3588
|
request?: EVA.Core.Management.GetFraudItem;
|
|
3563
3589
|
response?: EVA.Core.Management.GetFraudItemResponse;
|
|
3564
3590
|
}
|
|
3565
|
-
/**
|
|
3566
|
-
* Retrieve the available and allocated functionalities for given user.
|
|
3567
|
-
*
|
|
3568
|
-
* @export
|
|
3569
|
-
* @class GetFunctionalitiesByUserID
|
|
3570
|
-
* @implements {EvaService}
|
|
3571
|
-
*/
|
|
3572
|
-
class GetFunctionalitiesByUserID implements IEvaServiceDefinition {
|
|
3573
|
-
name: string;
|
|
3574
|
-
path: string;
|
|
3575
|
-
request?: EVA.Core.Management.GetFunctionalitiesByUserID;
|
|
3576
|
-
response?: EVA.Core.Management.GetFunctionalitiesByUserIDResponse;
|
|
3577
|
-
}
|
|
3578
3591
|
/**
|
|
3579
3592
|
* Returns all available categories for functionalities
|
|
3580
3593
|
*
|
|
@@ -4405,6 +4418,19 @@ These handlers are custom build to fetch values for ProductRequirements from ext
|
|
|
4405
4418
|
request?: EVA.Core.Management.GetUserRolesByUserID;
|
|
4406
4419
|
response?: EVA.Core.Management.GetUserRolesByUserIDResponse;
|
|
4407
4420
|
}
|
|
4421
|
+
/**
|
|
4422
|
+
* Generate a user subscription identifier barcode for the given user and subscription
|
|
4423
|
+
*
|
|
4424
|
+
* @export
|
|
4425
|
+
* @class GetUserSubscriptionBarcode
|
|
4426
|
+
* @implements {EvaService}
|
|
4427
|
+
*/
|
|
4428
|
+
class GetUserSubscriptionBarcode implements IEvaServiceDefinition {
|
|
4429
|
+
name: string;
|
|
4430
|
+
path: string;
|
|
4431
|
+
request?: EVA.Core.Management.GetUserSubscriptionBarcode;
|
|
4432
|
+
response?: EVA.Core.Management.GetUserSubscriptionBarcodeResponse;
|
|
4433
|
+
}
|
|
4408
4434
|
/**
|
|
4409
4435
|
* Gets an VisibilityGroup by its ID and returns the basic information.
|
|
4410
4436
|
*
|
|
@@ -4780,6 +4806,19 @@ or to get a specific product in an assortment by filtering on both.
|
|
|
4780
4806
|
request?: EVA.Core.Management.ListCustomFieldDataTypesOperators;
|
|
4781
4807
|
response?: EVA.Core.Management.ListCustomFieldDataTypeOperatorsResponse;
|
|
4782
4808
|
}
|
|
4809
|
+
/**
|
|
4810
|
+
* Get all eligibility fields for the given custom field type.
|
|
4811
|
+
*
|
|
4812
|
+
* @export
|
|
4813
|
+
* @class ListCustomFieldEligibilityScripts
|
|
4814
|
+
* @implements {EvaService}
|
|
4815
|
+
*/
|
|
4816
|
+
class ListCustomFieldEligibilityScripts implements IEvaServiceDefinition {
|
|
4817
|
+
name: string;
|
|
4818
|
+
path: string;
|
|
4819
|
+
request?: EVA.Core.Management.ListCustomFieldEligibilityScripts;
|
|
4820
|
+
response?: EVA.Core.Management.ListCustomFieldEligibilityScriptsResponse;
|
|
4821
|
+
}
|
|
4783
4822
|
/**
|
|
4784
4823
|
* List options for custom fields
|
|
4785
4824
|
*
|