@springtree/eva-services-core-management 2.0.1 → 2.1.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.
@@ -607,6 +607,19 @@ An example of this might be tips left by a customer.
607
607
  request?: EVA.Core.Management.CreateEmployeeUser;
608
608
  response?: EVA.Core.Management.CreateEmployeeUserResponse;
609
609
  }
610
+ /**
611
+ * Create a new entity field validator
612
+ *
613
+ * @export
614
+ * @class CreateEntityFieldValidator
615
+ * @implements {EvaService}
616
+ */
617
+ class CreateEntityFieldValidator implements IEvaServiceDefinition {
618
+ name: string;
619
+ path: string;
620
+ request?: EVA.Core.Management.CreateEntityFieldValidator;
621
+ response?: EVA.Core.Management.CreateEntityFieldValidatorResponse;
622
+ }
610
623
  /**
611
624
  * TODO: Needs documentation
612
625
  *
@@ -1711,6 +1724,19 @@ Name is required
1711
1724
  request?: EVA.Core.Management.DeleteEmployeeData;
1712
1725
  response?: EVA.Core.EmptyResponseMessage;
1713
1726
  }
1727
+ /**
1728
+ * Delete a entity field validator
1729
+ *
1730
+ * @export
1731
+ * @class DeleteEntityFieldValidator
1732
+ * @implements {EvaService}
1733
+ */
1734
+ class DeleteEntityFieldValidator implements IEvaServiceDefinition {
1735
+ name: string;
1736
+ path: string;
1737
+ request?: EVA.Core.Management.DeleteEntityFieldValidator;
1738
+ response?: EVA.Core.EmptyResponseMessage;
1739
+ }
1714
1740
  /**
1715
1741
  * TODO: Needs documentation
1716
1742
  *
@@ -3601,6 +3627,19 @@ At this moment the supported DeviceTypes are:
3601
3627
  request?: EVA.Core.Management.GetEmployeeDataByUserID;
3602
3628
  response?: EVA.Core.Management.GetEmployeeDataByIDResponse;
3603
3629
  }
3630
+ /**
3631
+ * Get a entity field validator
3632
+ *
3633
+ * @export
3634
+ * @class GetEntityFieldValidator
3635
+ * @implements {EvaService}
3636
+ */
3637
+ class GetEntityFieldValidator implements IEvaServiceDefinition {
3638
+ name: string;
3639
+ path: string;
3640
+ request?: EVA.Core.Management.GetEntityFieldValidator;
3641
+ response?: EVA.Core.Management.GetEntityFieldValidatorResponse;
3642
+ }
3604
3643
  /**
3605
3644
  * Retrieve the currently assigned functionalities flattened on specified OU.
3606
3645
  *
@@ -4956,6 +4995,32 @@ or to get a specific product in an assortment by filtering on both.
4956
4995
  request?: EVA.Core.Management.ListEmployeeDatas;
4957
4996
  response?: EVA.Core.Management.ListEmployeeDatasResponse;
4958
4997
  }
4998
+ /**
4999
+ * List all entity field validator entities and entity names
5000
+ *
5001
+ * @export
5002
+ * @class ListEntityFieldValidatorEntityFieldNames
5003
+ * @implements {EvaService}
5004
+ */
5005
+ class ListEntityFieldValidatorEntityFieldNames implements IEvaServiceDefinition {
5006
+ name: string;
5007
+ path: string;
5008
+ request?: EVA.Core.Management.ListEntityFieldValidatorEntityFieldNames;
5009
+ response?: EVA.Core.Management.ListEntityFieldValidatorEntityFieldNamesResponse;
5010
+ }
5011
+ /**
5012
+ * list all entity field validators
5013
+ *
5014
+ * @export
5015
+ * @class ListEntityFieldValidators
5016
+ * @implements {EvaService}
5017
+ */
5018
+ class ListEntityFieldValidators implements IEvaServiceDefinition {
5019
+ name: string;
5020
+ path: string;
5021
+ request?: EVA.Core.Management.ListEntityFieldValidators;
5022
+ response?: EVA.Core.Management.ListEntityFieldValidatorsResponse;
5023
+ }
4959
5024
  /**
4960
5025
  * List the ExchangeRates
4961
5026
  *
@@ -6811,6 +6876,19 @@ When the budget is cleared or raised above the current `TotalDiscountGiven`, or
6811
6876
  request?: EVA.Core.Management.UpdateDiscountTemplate;
6812
6877
  response?: EVA.Core.EmptyResponseMessage;
6813
6878
  }
6879
+ /**
6880
+ * Update a entity field validator
6881
+ *
6882
+ * @export
6883
+ * @class UpdateEntityFieldValidator
6884
+ * @implements {EvaService}
6885
+ */
6886
+ class UpdateEntityFieldValidator implements IEvaServiceDefinition {
6887
+ name: string;
6888
+ path: string;
6889
+ request?: EVA.Core.Management.UpdateEntityFieldValidator;
6890
+ response?: EVA.Core.EmptyResponseMessage;
6891
+ }
6814
6892
  /**
6815
6893
  * TODO: Needs documentation
6816
6894
  *