eservices-core 1.3.253 → 1.3.255
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/dist/backend/src/types/metadata-type.d.ts +7 -2
- package/dist/eservices-core.cjs.js +8 -8
- package/dist/eservices-core.es.js +1846 -1814
- package/dist/eservices-core.umd.js +8 -8
- package/dist/frontend/core/index.d.ts +2 -2
- package/dist/frontend/src/constants.d.ts +2 -0
- package/dist/frontend/src/hooks/use-list-configuration.d.ts +2 -1
- package/dist/frontend/src/index.d.ts +5 -3
- package/dist/frontend/src/methods/convert-list-config.d.ts +1 -0
- package/dist/frontend/src/methods/get-links.d.ts +7 -0
- package/dist/frontend/src/methods/universal-resolve-entity-name.d.ts +5 -0
- package/dist/frontend/src/types/list-type.d.ts +5 -0
- package/package.json +1 -1
|
@@ -8,9 +8,10 @@ export interface IExtendedMetadata extends IMetadata {
|
|
|
8
8
|
*/
|
|
9
9
|
fieldNameForLabel?: string;
|
|
10
10
|
/**
|
|
11
|
-
* @description
|
|
11
|
+
* @description Если в сущности есть Id и CatalogId, то для такой сущности нужно СТАРАТЬСЯ использовать CatalogId.
|
|
12
|
+
* Под СТАРАТЬСЯ подразумевается то, что не все методы работают с CatalogId, а до сих пор принимают Id.
|
|
12
13
|
*/
|
|
13
|
-
|
|
14
|
+
useCatalogInsteadId: boolean;
|
|
14
15
|
/**
|
|
15
16
|
* @description Тестовая переменная, хранящая в себе набор фильтров, которые нужно применить к сущности.
|
|
16
17
|
*/
|
|
@@ -19,6 +20,10 @@ export interface IExtendedMetadata extends IMetadata {
|
|
|
19
20
|
* @description Расширенный набор(массив) полей
|
|
20
21
|
*/
|
|
21
22
|
fields: IExtendedMetadataField[];
|
|
23
|
+
/**
|
|
24
|
+
* @description Имеется ли в данной сущности CatalogId (Лучше использовать constants CATALOG_NAME_FIELD)
|
|
25
|
+
*/
|
|
26
|
+
hasCatalogId: boolean;
|
|
22
27
|
/**
|
|
23
28
|
* @description Расширенный объект полей, для удобного доступа по имени
|
|
24
29
|
*/
|