eservices-core 1.3.359 → 1.3.361

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.
@@ -0,0 +1,13 @@
1
+ export interface IEnumReadParams {
2
+ enumName: string;
3
+ }
4
+ export interface IEnumData {
5
+ "values": {
6
+ "name": string;
7
+ "value": string | number;
8
+ "description": null;
9
+ }[];
10
+ "name": string;
11
+ "description": null | string;
12
+ "isFlags": boolean;
13
+ }
@@ -132,4 +132,10 @@ export declare type EqualCriterionExpression = {
132
132
  export declare type IncludeCriterionExpression = {
133
133
  include: [entityName: string, filters: Record<CriterionExpressionField, CriterionExpressionValue>];
134
134
  };
135
+ export declare enum StatusStore {
136
+ NotInit = 0,
137
+ Loading = 1,
138
+ Failed = 2,
139
+ Done = 3
140
+ }
135
141
  export {};
@@ -87,7 +87,7 @@ export interface IMetadataField {
87
87
  */
88
88
  relatedLocalFieldReferencedEntity: null | string;
89
89
  required: boolean;
90
- type: "Reference" | "ValueType" | "Aggregate" | "Owned" | "ReferenceArray" | "Unknown";
90
+ type: "Reference" | "ValueType" | "Aggregate" | "Owned" | "ReferenceArray" | "Unknown" | "Enum";
91
91
  valueUnit: null | string;
92
92
  }
93
93
  interface IReferenceMetadataField {