eservices-core 1.2.6 → 1.2.8
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.
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { MetadataResponse } from "./../index";
|
|
1
|
+
import { IListCell, MetadataResponse } from "./../index";
|
|
2
2
|
import { MasterEntities } from "../types";
|
|
3
3
|
import { ExtendedMetadataField } from "./../../../backend/src/types/main";
|
|
4
4
|
export default class metadataService {
|
|
@@ -6,4 +6,5 @@ export default class metadataService {
|
|
|
6
6
|
static get(entity: string, criteria?: string, id?: any): Promise<MetadataResponse>;
|
|
7
7
|
static getById(entity: string, id: any, masterEntities?: MasterEntities): Promise<MetadataResponse>;
|
|
8
8
|
static getFieldInformation(entity: string, field: string): Promise<ExtendedMetadataField | null>;
|
|
9
|
+
static getTreatmentListField(entity: string, field: string): Promise<IListCell>;
|
|
9
10
|
}
|