@aristid/leav-types 0.0.7-e9aa834 → 0.0.7-e9c61db6
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/apps/core/config/default.d.ts +4 -1
- package/apps/core/config/test.d.ts +1 -0
- package/apps/core/src/__tests__/e2e/api/joinLibraries/joinLibraries.test.d.ts +1 -0
- package/apps/core/src/__tests__/mockers/amqp.d.ts +8 -0
- package/apps/core/src/__tests__/mockers/logger.d.ts +7 -0
- package/apps/core/src/__tests__/mocks/actionsList.d.ts +6 -0
- package/apps/core/src/__tests__/mocks/attribute.d.ts +6 -2
- package/apps/core/src/__tests__/mocks/cache.d.ts +4 -0
- package/apps/core/src/__tests__/mocks/view.d.ts +1 -0
- package/apps/core/src/_constants/attributes.d.ts +1 -0
- package/apps/core/src/_constants/globalSettings.d.ts +1 -0
- package/apps/core/src/_types/actionsList.d.ts +2 -1
- package/apps/core/src/_types/attribute.d.ts +10 -2
- package/apps/core/src/_types/config.d.ts +5 -1
- package/apps/core/src/_types/errors.d.ts +3 -1
- package/apps/core/src/_types/forms.d.ts +10 -0
- package/apps/core/src/_types/globalSettings.d.ts +3 -0
- package/apps/core/src/_types/library.d.ts +5 -1
- package/apps/core/src/_types/queryInfos.d.ts +1 -1
- package/apps/core/src/_types/tree.d.ts +1 -0
- package/apps/core/src/_types/value.d.ts +64 -3
- package/apps/core/src/_types/views.d.ts +38 -43
- package/apps/core/src/app/application/applicationApp.d.ts +3 -1
- package/apps/core/src/app/auth/authApp.d.ts +3 -1
- package/apps/core/src/app/core/formApp/formApp.d.ts +3 -1
- package/apps/core/src/app/core/viewApp.d.ts +3 -1
- package/apps/core/src/domain/attribute/attributeDomain.d.ts +2 -0
- package/apps/core/src/domain/attribute/helpers/ifLibraryJoinLinkAttribute.d.ts +11 -0
- package/apps/core/src/domain/attribute/helpers/ifLibraryJoinLinkAttribute.spec.d.ts +1 -0
- package/apps/core/src/domain/attribute/helpers/index.d.ts +1 -0
- package/apps/core/src/domain/export/exportDomain.d.ts +8 -2
- package/apps/core/src/domain/globalSettings/globalSettingsDomain.d.ts +5 -1
- package/apps/core/src/domain/helpers/calculationVariable/index.d.ts +2 -1
- package/apps/core/src/domain/permission/_types.d.ts +1 -9
- package/apps/core/src/domain/permission/helpers/globalPermission.d.ts +1 -1
- package/apps/core/src/domain/permission/helpers/permissionByUserGroups.d.ts +22 -4
- package/apps/core/src/domain/permission/helpers/reducePermissionsArray.d.ts +1 -1
- package/apps/core/src/domain/record/_types.d.ts +4 -3
- package/apps/core/src/domain/record/helpers/createRecord.d.ts +21 -0
- package/apps/core/src/domain/record/helpers/deleteRecord.d.ts +19 -0
- package/apps/core/src/domain/record/helpers/getAccessPermissionFilters.d.ts +24 -0
- package/apps/core/src/domain/record/helpers/index.d.ts +3 -0
- package/apps/core/src/domain/record/recordDomain.d.ts +26 -3
- package/apps/core/src/domain/value/helpers/{canSaveValue.d.ts → canSaveRecordValue.d.ts} +3 -3
- package/apps/core/src/domain/value/helpers/isEmptyValue.d.ts +5 -0
- package/apps/core/src/domain/value/helpers/prepareValue.d.ts +3 -3
- package/apps/core/src/domain/value/helpers/saveOneValue.d.ts +2 -2
- package/apps/core/src/domain/value/helpers/validateValue.d.ts +4 -4
- package/apps/core/src/domain/value/valueDomain.d.ts +11 -4
- package/apps/core/src/domain/view/viewDomain.d.ts +1 -0
- package/apps/core/src/errors/ApplicationError.d.ts +1 -1
- package/apps/core/src/errors/LeavError.d.ts +9 -3
- package/apps/core/src/infra/attributeTypes/attributeAdvancedLinkRepo.d.ts +5 -2
- package/apps/core/src/infra/attributeTypes/attributeAdvancedRepo.d.ts +3 -1
- package/apps/core/src/infra/attributeTypes/attributeSimpleLinkRepo.d.ts +5 -2
- package/apps/core/src/infra/attributeTypes/attributeSimpleRepo.d.ts +3 -1
- package/apps/core/src/infra/attributeTypes/attributeTreeRepo.d.ts +3 -1
- package/apps/core/src/infra/attributeTypes/attributeTypesRepo.d.ts +29 -23
- package/apps/core/src/infra/attributeTypes/helpers/getConditionPart.d.ts +1 -1
- package/apps/core/src/infra/db/dbUtils.d.ts +1 -3
- package/apps/core/src/infra/db/migrations/005-viewSortToArray.d.ts +7 -0
- package/apps/core/src/infra/db/migrations/006-addRequiredAttributeProperty.d.ts +11 -0
- package/apps/core/src/infra/db/migrations/007-updateHexColor.d.ts +9 -0
- package/apps/core/src/infra/db/migrations/008-addSkeletonApp.d.ts +7 -0
- package/apps/core/src/infra/db/migrations/009-addDisplayMultiLinkOptAttributeProperty.d.ts +11 -0
- package/apps/core/src/infra/db/migrations/010-formSidePanel.d.ts +8 -0
- package/apps/core/src/infra/db/migrations/011-moveSkeletonApptoAppStudio.d.ts +7 -0
- package/apps/core/src/infra/oidc/oidcClientService.d.ts +3 -1
- package/apps/core/src/infra/permission/permissionRepo.d.ts +9 -1
- package/apps/core/src/infra/record/recordRepo.d.ts +2 -0
- package/apps/core/src/infra/tree/treeRepo.d.ts +1 -1
- package/apps/core/src/infra/value/valueRepo.d.ts +10 -5
- package/apps/core/src/infra/view/_types.d.ts +1 -0
- package/apps/core/src/pluginsLoader.d.ts +1 -1
- package/apps/core/src/utils/utils.d.ts +1 -0
- package/libs/utils/src/types/forms.d.ts +7 -1
- package/package.json +19 -4
|
@@ -1,13 +1,19 @@
|
|
|
1
1
|
import { AqlLiteral, GeneratedAqlQuery } from 'arangojs/aql';
|
|
2
2
|
import { IQueryInfos } from '_types/queryInfos';
|
|
3
|
-
import { IAttribute } from '../../_types/attribute';
|
|
3
|
+
import { AttributeTypes, IAttribute } from '../../_types/attribute';
|
|
4
4
|
import { AttributeCondition, IRecordFilterOption } from '../../_types/record';
|
|
5
|
-
import {
|
|
6
|
-
|
|
5
|
+
import { ISaveValueByAttributeType, IValueByAttributeType, IValuesOptions } from '../../_types/value';
|
|
6
|
+
import { IAttributeSimpleRepo } from './attributeSimpleRepo';
|
|
7
|
+
import { IAttributeSimpleLinkRepo } from './attributeSimpleLinkRepo';
|
|
8
|
+
import { IAttributeAdvancedRepo } from './attributeAdvancedRepo';
|
|
9
|
+
import { IAttributeAdvancedLinkRepo } from './attributeAdvancedLinkRepo';
|
|
10
|
+
import { IAttributeTreeRepo } from './attributeTreeRepo';
|
|
11
|
+
export type IAttributeWithRepo = IAttributeWithRevLink & {
|
|
7
12
|
_repo: IAttributeTypeRepo;
|
|
8
|
-
}
|
|
13
|
+
};
|
|
14
|
+
type IAttributeRepoByType<AttributeType extends AttributeTypes | unknown> = AttributeType extends AttributeTypes.SIMPLE ? IAttributeSimpleRepo : AttributeType extends AttributeTypes.SIMPLE_LINK ? IAttributeSimpleLinkRepo : AttributeType extends AttributeTypes.ADVANCED ? IAttributeAdvancedRepo : AttributeType extends AttributeTypes.ADVANCED_LINK ? IAttributeAdvancedLinkRepo : AttributeType extends AttributeTypes.TREE ? IAttributeTreeRepo : IAttributeTypeRepo;
|
|
9
15
|
export interface IAttributeTypesRepo {
|
|
10
|
-
getTypeRepo
|
|
16
|
+
getTypeRepo<AttributeType extends AttributeTypes | unknown>(attribute: IAttribute): IAttributeRepoByType<AttributeType>;
|
|
11
17
|
}
|
|
12
18
|
export interface IAttributeWithRevLink extends IAttribute {
|
|
13
19
|
reverse_link?: IAttribute;
|
|
@@ -17,14 +23,14 @@ export type GetConditionPartFunc = (valueIdentifier: string | AqlLiteral) => Gen
|
|
|
17
23
|
/**
|
|
18
24
|
* Define interface used for all attribute type specific files
|
|
19
25
|
*/
|
|
20
|
-
export interface IAttributeTypeRepo {
|
|
26
|
+
export interface IAttributeTypeRepo<AttributeType extends AttributeTypes = AttributeTypes, Value = IValueByAttributeType[AttributeType]> {
|
|
21
27
|
createValue({ library, recordId, attribute, value, ctx }: {
|
|
22
28
|
library: string;
|
|
23
29
|
recordId: string;
|
|
24
30
|
attribute: IAttributeWithRevLink;
|
|
25
|
-
value:
|
|
31
|
+
value: ISaveValueByAttributeType[AttributeType];
|
|
26
32
|
ctx: IQueryInfos;
|
|
27
|
-
}): Promise<
|
|
33
|
+
}): Promise<Value>;
|
|
28
34
|
/**
|
|
29
35
|
* Update an existing value. Field "id" is expected on the value
|
|
30
36
|
*/
|
|
@@ -32,9 +38,9 @@ export interface IAttributeTypeRepo {
|
|
|
32
38
|
library: string;
|
|
33
39
|
recordId: string;
|
|
34
40
|
attribute: IAttributeWithRevLink;
|
|
35
|
-
value:
|
|
41
|
+
value: ISaveValueByAttributeType[AttributeType];
|
|
36
42
|
ctx: IQueryInfos;
|
|
37
|
-
}): Promise<
|
|
43
|
+
}): Promise<Value>;
|
|
38
44
|
/**
|
|
39
45
|
* Delete an existing value. Field "id" is expected on the value
|
|
40
46
|
*/
|
|
@@ -42,17 +48,17 @@ export interface IAttributeTypeRepo {
|
|
|
42
48
|
library: string;
|
|
43
49
|
recordId: string;
|
|
44
50
|
attribute: IAttributeWithRevLink;
|
|
45
|
-
value:
|
|
51
|
+
value: Value;
|
|
46
52
|
ctx: IQueryInfos;
|
|
47
|
-
}): Promise<
|
|
53
|
+
}): Promise<Value>;
|
|
48
54
|
/**
|
|
49
55
|
* Check if a value is unique
|
|
50
56
|
*/
|
|
51
|
-
|
|
57
|
+
isValueUsed?({ library, excludedRecordId, attribute, value, ctx }: {
|
|
52
58
|
library: string;
|
|
53
|
-
|
|
59
|
+
excludedRecordId?: string;
|
|
54
60
|
attribute: IAttribute;
|
|
55
|
-
value:
|
|
61
|
+
value: Value;
|
|
56
62
|
ctx: IQueryInfos;
|
|
57
63
|
}): Promise<boolean>;
|
|
58
64
|
/**
|
|
@@ -67,7 +73,7 @@ export interface IAttributeTypeRepo {
|
|
|
67
73
|
forceGetAllValues?: boolean;
|
|
68
74
|
options?: IValuesOptions;
|
|
69
75
|
ctx: IQueryInfos;
|
|
70
|
-
}): Promise<
|
|
76
|
+
}): Promise<Value[]>;
|
|
71
77
|
/**
|
|
72
78
|
* Get all reverse values for given attribute / value
|
|
73
79
|
*
|
|
@@ -78,7 +84,7 @@ export interface IAttributeTypeRepo {
|
|
|
78
84
|
value: string;
|
|
79
85
|
forceGetAllValues: boolean;
|
|
80
86
|
ctx: IQueryInfos;
|
|
81
|
-
}): Promise<
|
|
87
|
+
}): Promise<Value[]>;
|
|
82
88
|
/**
|
|
83
89
|
* Return a specific value based on its ID. Field "id" is expect on the value
|
|
84
90
|
*
|
|
@@ -90,7 +96,7 @@ export interface IAttributeTypeRepo {
|
|
|
90
96
|
attribute: IAttribute;
|
|
91
97
|
valueId: string;
|
|
92
98
|
ctx: IQueryInfos;
|
|
93
|
-
}): Promise<
|
|
99
|
+
}): Promise<Value>;
|
|
94
100
|
/**
|
|
95
101
|
* Return AQL query part to retrieve value for this attribute.
|
|
96
102
|
* If will be concatenate with other filters and full query
|
|
@@ -118,11 +124,11 @@ export declare const ATTRIB_COLLECTION_NAME = "core_attributes";
|
|
|
118
124
|
export declare const BASE_QUERY_IDENTIFIER = "r";
|
|
119
125
|
export declare const isValuesCountCondition: (condition: AttributeCondition) => boolean;
|
|
120
126
|
interface IDeps {
|
|
121
|
-
'core.infra.attributeTypes.attributeSimple'?:
|
|
122
|
-
'core.infra.attributeTypes.attributeSimpleLink'?:
|
|
123
|
-
'core.infra.attributeTypes.attributeAdvanced'?:
|
|
124
|
-
'core.infra.attributeTypes.attributeAdvancedLink'?:
|
|
125
|
-
'core.infra.attributeTypes.attributeTree'?:
|
|
127
|
+
'core.infra.attributeTypes.attributeSimple'?: IAttributeSimpleRepo;
|
|
128
|
+
'core.infra.attributeTypes.attributeSimpleLink'?: IAttributeSimpleLinkRepo;
|
|
129
|
+
'core.infra.attributeTypes.attributeAdvanced'?: IAttributeAdvancedRepo;
|
|
130
|
+
'core.infra.attributeTypes.attributeAdvancedLink'?: IAttributeAdvancedLinkRepo;
|
|
131
|
+
'core.infra.attributeTypes.attributeTree'?: IAttributeTreeRepo;
|
|
126
132
|
}
|
|
127
133
|
export default function ({ 'core.infra.attributeTypes.attributeSimple': attributeSimpleRepo, 'core.infra.attributeTypes.attributeSimpleLink': attributeSimpleLinkRepo, 'core.infra.attributeTypes.attributeAdvanced': attributeAdvancedRepo, 'core.infra.attributeTypes.attributeAdvancedLink': attributeAdvancedLinkRepo, 'core.infra.attributeTypes.attributeTree': attributeTreeRepo }?: IDeps): IAttributeTypesRepo;
|
|
128
134
|
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { AqlLiteral, GeneratedAqlQuery } from 'arangojs/aql';
|
|
2
2
|
import { IAttribute } from '../../../_types/attribute';
|
|
3
3
|
import { AttributeCondition } from '../../../_types/record';
|
|
4
|
-
export type GetConditionPart = (valueIdentifier: string | AqlLiteral, condition: AttributeCondition, value: string | number | boolean, attribute: IAttribute) => GeneratedAqlQuery;
|
|
4
|
+
export type GetConditionPart = (valueIdentifier: string | AqlLiteral, condition: AttributeCondition, value: string | number | boolean, attribute: IAttribute, isCountFilter: boolean) => GeneratedAqlQuery;
|
|
5
5
|
export default function (): GetConditionPart;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
import { GeneratedAqlQuery } from 'arangojs/aql';
|
|
2
2
|
import { AwilixContainer } from 'awilix';
|
|
3
|
-
import { IPluginsRepo } from 'infra/plugins/pluginsRepo';
|
|
4
3
|
import * as winston from 'winston';
|
|
5
4
|
import { IConfig } from '_types/config';
|
|
6
5
|
import { IList, IPaginationParams, ISortParams } from '_types/list';
|
|
@@ -33,8 +32,7 @@ interface IDeps {
|
|
|
33
32
|
'core.infra.db.dbService'?: IDbService;
|
|
34
33
|
'core.infra.cache.cacheService'?: ICachesService;
|
|
35
34
|
'core.utils.logger'?: winston.Winston;
|
|
36
|
-
'core.infra.plugins'?: IPluginsRepo;
|
|
37
35
|
config?: IConfig;
|
|
38
36
|
}
|
|
39
|
-
export default function ({ 'core.infra.db.dbService': dbService, 'core.infra.cache.cacheService': cacheService, 'core.utils.logger': logger,
|
|
37
|
+
export default function ({ 'core.infra.db.dbService': dbService, 'core.infra.cache.cacheService': cacheService, 'core.utils.logger': logger, config }?: IDeps): IDbUtils;
|
|
40
38
|
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type i18n } from 'i18next';
|
|
2
|
+
import { type IDbService } from '../dbService';
|
|
3
|
+
import { type IConfig } from '../../../_types/config';
|
|
4
|
+
import { type IMigration } from '../../../_types/migration';
|
|
5
|
+
interface IDeps {
|
|
6
|
+
'core.infra.db.dbService'?: IDbService;
|
|
7
|
+
translator?: i18n;
|
|
8
|
+
config?: IConfig;
|
|
9
|
+
}
|
|
10
|
+
export default function ({ 'core.infra.db.dbService': dbService }?: IDeps): IMigration;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { type IDbService } from '../dbService';
|
|
2
|
+
import { type IMigration } from '../../../_types/migration';
|
|
3
|
+
import { IAttributeRepo } from 'infra/attribute/attributeRepo';
|
|
4
|
+
interface IDeps {
|
|
5
|
+
'core.infra.db.dbService'?: IDbService;
|
|
6
|
+
'core.infra.attribute'?: IAttributeRepo;
|
|
7
|
+
}
|
|
8
|
+
export default function ({ 'core.infra.db.dbService': dbService, 'core.infra.attribute': attributeRepo }?: IDeps): IMigration;
|
|
9
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IDbService } from '../dbService';
|
|
2
|
+
import { type IMigration } from '../../../_types/migration';
|
|
3
|
+
interface IDeps {
|
|
4
|
+
'core.infra.db.dbService'?: IDbService;
|
|
5
|
+
}
|
|
6
|
+
export default function ({ 'core.infra.db.dbService': dbService }?: IDeps): IMigration;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { type i18n } from 'i18next';
|
|
2
|
+
import { type IDbService } from '../dbService';
|
|
3
|
+
import { type IConfig } from '../../../_types/config';
|
|
4
|
+
import { type IMigration } from '../../../_types/migration';
|
|
5
|
+
interface IDeps {
|
|
6
|
+
'core.infra.db.dbService'?: IDbService;
|
|
7
|
+
translator?: i18n;
|
|
8
|
+
config?: IConfig;
|
|
9
|
+
}
|
|
10
|
+
export default function ({ 'core.infra.db.dbService': dbService }?: IDeps): IMigration;
|
|
11
|
+
export {};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type IDbService } from '../dbService';
|
|
2
|
+
import { type IMigration } from '../../../_types/migration';
|
|
3
|
+
interface IDeps {
|
|
4
|
+
'core.infra.db.dbService'?: IDbService;
|
|
5
|
+
}
|
|
6
|
+
export default function ({ 'core.infra.db.dbService': dbService }?: IDeps): IMigration;
|
|
7
|
+
export {};
|
|
@@ -12,7 +12,9 @@ export interface IOIDCClientService {
|
|
|
12
12
|
redirectUri: string;
|
|
13
13
|
queryId: string;
|
|
14
14
|
}) => Promise<string>;
|
|
15
|
-
getLogoutUrl: (
|
|
15
|
+
getLogoutUrl: (params: {
|
|
16
|
+
userId: string | null;
|
|
17
|
+
}) => Promise<string>;
|
|
16
18
|
saveOIDCTokens: (params: {
|
|
17
19
|
userId: string;
|
|
18
20
|
tokens: TokenSet;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IQueryInfos } from '_types/queryInfos';
|
|
2
|
-
import { IPermission, IPermissionsTreeTarget, PermissionTypes } from '../../_types/permissions';
|
|
2
|
+
import { IPermission, IPermissionsTreeTarget, PermissionsActions, PermissionTypes } from '../../_types/permissions';
|
|
3
3
|
import { IDbService } from '../db/dbService';
|
|
4
4
|
import { IDbUtils } from '../db/dbUtils';
|
|
5
5
|
export interface IPermissionRepo {
|
|
@@ -14,6 +14,14 @@ export interface IPermissionRepo {
|
|
|
14
14
|
permissionTreeTarget?: IPermissionsTreeTarget;
|
|
15
15
|
ctx: IQueryInfos;
|
|
16
16
|
}): Promise<IPermission | null>;
|
|
17
|
+
getAllPermissionsForTree({ type, applyTo, actionKey, treeId, groupsIds, ctx }: {
|
|
18
|
+
type: PermissionTypes;
|
|
19
|
+
applyTo: string;
|
|
20
|
+
actionKey: PermissionsActions;
|
|
21
|
+
treeId: string;
|
|
22
|
+
groupsIds: string[];
|
|
23
|
+
ctx: IQueryInfos;
|
|
24
|
+
}): Promise<IPermission[]>;
|
|
17
25
|
}
|
|
18
26
|
export declare const PERM_COLLECTION_NAME = "core_permissions";
|
|
19
27
|
export declare const USERS_GROUP_ATTRIBUTE_NAME = "user_groups";
|
|
@@ -11,6 +11,7 @@ import { IDbUtils } from '../db/dbUtils';
|
|
|
11
11
|
import { IFilterTypesHelper } from './helpers/filterTypes';
|
|
12
12
|
import { GetSearchVariableName } from './helpers/getSearchVariableName';
|
|
13
13
|
import { GetSearchVariablesQueryPart } from './helpers/getSearchVariablesQueryPart';
|
|
14
|
+
import { IGetAccessPermissionsValue } from 'domain/record/helpers/getAccessPermissionFilters';
|
|
14
15
|
export interface IFindRequestResult {
|
|
15
16
|
initialVars: GeneratedAqlQuery[];
|
|
16
17
|
queryPart: GeneratedAqlQuery;
|
|
@@ -44,6 +45,7 @@ export interface IRecordRepo {
|
|
|
44
45
|
retrieveInactive?: boolean;
|
|
45
46
|
fulltextSearch?: string;
|
|
46
47
|
ctx: IQueryInfos;
|
|
48
|
+
accessPermissionFilters?: IGetAccessPermissionsValue[];
|
|
47
49
|
}): Promise<IListWithCursor<IRecord>>;
|
|
48
50
|
}
|
|
49
51
|
export interface IRecordRepoDeps {
|
|
@@ -115,7 +115,7 @@ export interface ITreeRepo {
|
|
|
115
115
|
ctx: IQueryInfos;
|
|
116
116
|
}): Promise<IList<ITreeNode>>;
|
|
117
117
|
/**
|
|
118
|
-
* Return all ancestors of an element,
|
|
118
|
+
* Return all ancestors of an element, from root to element, but excluding tree root
|
|
119
119
|
*
|
|
120
120
|
* @param treeId
|
|
121
121
|
* @param element
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
import { IDbService } from 'infra/db/dbService';
|
|
2
2
|
import { IAttribute } from '_types/attribute';
|
|
3
3
|
import { IQueryInfos } from '_types/queryInfos';
|
|
4
|
-
import { IValue, IValuesOptions } from '_types/value';
|
|
4
|
+
import { ISaveValue, IValue, IValuesOptions } from '_types/value';
|
|
5
5
|
import { IAttributeTypesRepo, IAttributeWithRevLink } from '../attributeTypes/attributeTypesRepo';
|
|
6
6
|
export declare const VALUES_LINKS_COLLECTION = "core_edge_values_links";
|
|
7
7
|
export declare const VALUES_COLLECTION = "core_values";
|
|
8
|
+
export declare const EMPTY_VALUE = "__empty_value__";
|
|
8
9
|
export interface IValueRepo {
|
|
9
10
|
createValue({ library, recordId, attribute, value, ctx }: {
|
|
10
11
|
library: string;
|
|
11
12
|
recordId: string;
|
|
12
13
|
attribute: IAttributeWithRevLink;
|
|
13
|
-
value:
|
|
14
|
+
value: ISaveValue;
|
|
14
15
|
ctx: IQueryInfos;
|
|
15
16
|
}): Promise<IValue>;
|
|
16
17
|
/**
|
|
@@ -20,7 +21,7 @@ export interface IValueRepo {
|
|
|
20
21
|
library: string;
|
|
21
22
|
recordId: string;
|
|
22
23
|
attribute: IAttributeWithRevLink;
|
|
23
|
-
value:
|
|
24
|
+
value: ISaveValue;
|
|
24
25
|
ctx: IQueryInfos;
|
|
25
26
|
}): Promise<IValue>;
|
|
26
27
|
/**
|
|
@@ -33,9 +34,13 @@ export interface IValueRepo {
|
|
|
33
34
|
value: IValue;
|
|
34
35
|
ctx: IQueryInfos;
|
|
35
36
|
}): Promise<IValue>;
|
|
36
|
-
|
|
37
|
+
/**
|
|
38
|
+
* Check if a value is unique expeted for the given record
|
|
39
|
+
* if recordId is null, it will check for the whole library
|
|
40
|
+
*/
|
|
41
|
+
isValueUsed({ library, excludedRecordId, attribute, value, ctx }: {
|
|
37
42
|
library: string;
|
|
38
|
-
|
|
43
|
+
excludedRecordId?: string;
|
|
39
44
|
attribute: IAttribute;
|
|
40
45
|
value: IValue;
|
|
41
46
|
ctx: IQueryInfos;
|
|
@@ -3,6 +3,7 @@ import { IDbUtils } from 'infra/db/dbUtils';
|
|
|
3
3
|
import { IList } from '_types/list';
|
|
4
4
|
import { IGetCoreEntitiesParams } from '_types/shared';
|
|
5
5
|
import { IQueryInfos } from '../../_types/queryInfos';
|
|
6
|
+
import { IView } from '_types/views';
|
|
6
7
|
export declare const VIEWS_COLLECTION_NAME = "core_views";
|
|
7
8
|
export interface IViewRepo {
|
|
8
9
|
createView(view: IView, ctx: IQueryInfos): Promise<IView>;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { AwilixContainer } from 'awilix';
|
|
2
|
-
export declare const initPlugins: (
|
|
2
|
+
export declare const initPlugins: (pluginsPath: string[], depsManager: AwilixContainer) => Promise<void>;
|
|
@@ -79,6 +79,7 @@ export interface IUtils {
|
|
|
79
79
|
getFullApplicationEndpoint(endpoint?: string): string;
|
|
80
80
|
getCoreEntityCacheKey(entityType: string, entityId: string): string;
|
|
81
81
|
getRecordsCacheKey(libraryId: string, recordId: string): string;
|
|
82
|
+
getGlobalSettingsCacheKey(): string;
|
|
82
83
|
generateExplicitValidationError<T>(field: keyof T, message: ErrorFieldDetailMessage, lang?: string): ValidationError<T>;
|
|
83
84
|
deleteFile(path: string): Promise<void>;
|
|
84
85
|
getUnixTime(): number;
|
|
@@ -4,7 +4,8 @@ export declare enum FormUIElementTypes {
|
|
|
4
4
|
FIELDS_CONTAINER = "fields_container",
|
|
5
5
|
TAB_FIELDS_CONTAINER = "tab_fields_container",
|
|
6
6
|
TEXT_BLOCK = "text_block",
|
|
7
|
-
TABS = "tabs"
|
|
7
|
+
TABS = "tabs",
|
|
8
|
+
FRAME = "frame"
|
|
8
9
|
}
|
|
9
10
|
export declare enum FormFieldTypes {
|
|
10
11
|
TEXT_INPUT = "input_field",
|
|
@@ -41,6 +42,10 @@ export interface IFormTabsSettings {
|
|
|
41
42
|
export interface IFormTextBlockSettings {
|
|
42
43
|
content?: string;
|
|
43
44
|
}
|
|
45
|
+
export interface IFormFrameSettings {
|
|
46
|
+
url: string;
|
|
47
|
+
height?: string;
|
|
48
|
+
}
|
|
44
49
|
export interface IFormDateFieldSettings extends ICommonFieldsSettings {
|
|
45
50
|
withTime: boolean;
|
|
46
51
|
}
|
|
@@ -50,5 +55,6 @@ export interface IFormLinkFieldSettings extends ICommonFieldsSettings {
|
|
|
50
55
|
label: Record<string, string>;
|
|
51
56
|
}>;
|
|
52
57
|
displayRecordIdentity: boolean;
|
|
58
|
+
tagDisplayMode: boolean;
|
|
53
59
|
}
|
|
54
60
|
export declare const FORM_ROOT_CONTAINER_ID = "__root";
|
package/package.json
CHANGED
|
@@ -1,13 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aristid/leav-types",
|
|
3
|
-
"version": "0.0.7-
|
|
3
|
+
"version": "0.0.7-e9c61db6",
|
|
4
4
|
"description": "Shared Leav types",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"tscheck": "",
|
|
7
7
|
"test:ci": "",
|
|
8
8
|
"test:commit": "",
|
|
9
|
-
"publish-types": "npm publish --access public"
|
|
9
|
+
"publish-types": "npm publish --access public",
|
|
10
|
+
"generate": "yarn workspace core tsc --emitDeclarationOnly --declaration --outDir dist-types && mv ../../apps/core/dist-types/* . && rmdir ../../apps/core/dist-types",
|
|
11
|
+
"get-version": "jq -r '.version' package.json",
|
|
12
|
+
"set-version": "jq --arg v $1 '.version = $v' package.json > package.tmp.json && mv package.tmp.json package.json"
|
|
10
13
|
},
|
|
11
14
|
"license": "LGPL3",
|
|
12
|
-
"repository": "https://github.com/leav-solutions/leav-engine"
|
|
13
|
-
|
|
15
|
+
"repository": "https://github.com/leav-solutions/leav-engine",
|
|
16
|
+
"dependencies": {
|
|
17
|
+
"@leav/utils": "0.0.3",
|
|
18
|
+
"@types/amqplib": "^0",
|
|
19
|
+
"@types/express": "5.0.0",
|
|
20
|
+
"@types/jest": "29.5.14",
|
|
21
|
+
"amqplib": "0.10.5",
|
|
22
|
+
"arangojs": "8.1.0",
|
|
23
|
+
"awilix": "12.0.4",
|
|
24
|
+
"i18next": "24.2.0",
|
|
25
|
+
"jest": "29.7.0",
|
|
26
|
+
"winston": "2.4.6"
|
|
27
|
+
}
|
|
28
|
+
}
|