@aristid/leav-types 0.0.7-dbcccce → 0.0.7-dd6e343f
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 +14 -1
- package/apps/core/config/test.d.ts +1 -0
- package/apps/core/src/__tests__/e2e/api/getConditionPart/getConditionPart.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 +31 -1
- package/apps/core/src/_types/dbProfiler.d.ts +20 -1
- package/apps/core/src/_types/errors.d.ts +3 -1
- package/apps/core/src/_types/forms.d.ts +17 -7
- 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/permissions.d.ts +2 -1
- package/apps/core/src/_types/queryInfos.d.ts +6 -1
- package/apps/core/src/_types/record.d.ts +4 -4
- package/apps/core/src/_types/tree.d.ts +2 -1
- package/apps/core/src/_types/value.d.ts +66 -5
- package/apps/core/src/_types/views.d.ts +38 -43
- package/apps/core/src/app/application/applicationApp.d.ts +6 -8
- package/apps/core/src/app/auth/authApp.d.ts +7 -6
- package/apps/core/src/app/core/actionListApp.d.ts +2 -4
- package/apps/core/src/app/core/apiKeyApp/apiKeyApp.d.ts +2 -4
- package/apps/core/src/app/core/attributeApp/attributeApp.d.ts +2 -5
- package/apps/core/src/app/core/coreApp.d.ts +2 -4
- package/apps/core/src/app/core/exportApp.d.ts +2 -4
- package/apps/core/src/app/core/filesManagerApp.d.ts +3 -5
- package/apps/core/src/app/core/formApp/_types.d.ts +10 -0
- package/apps/core/src/app/core/formApp/formApp.d.ts +4 -5
- package/apps/core/src/app/core/globalSettingsApp.d.ts +3 -6
- package/apps/core/src/app/core/importApp.d.ts +2 -4
- package/apps/core/src/app/core/libraryApp/libraryApp.d.ts +2 -5
- package/apps/core/src/app/core/logApp.d.ts +2 -4
- package/apps/core/src/app/core/permissionApp/permissionApp.d.ts +2 -4
- package/apps/core/src/app/core/pluginsApp.d.ts +2 -3
- package/apps/core/src/app/core/recordApp/recordApp.d.ts +2 -5
- package/apps/core/src/app/core/tasksManagerApp.d.ts +2 -3
- package/apps/core/src/app/core/treeApp/treeApp.d.ts +5 -6
- package/apps/core/src/app/core/userDataApp.d.ts +2 -4
- package/apps/core/src/app/core/valueApp.d.ts +2 -4
- package/apps/core/src/app/core/versionProfileApp/versionProfileApp.d.ts +2 -4
- package/apps/core/src/app/core/viewApp.d.ts +5 -5
- package/apps/core/src/app/endpoint/endpointApp.d.ts +3 -8
- package/apps/core/src/app/graphql/graphqlApp.d.ts +8 -0
- 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/filesManager/helpers/handleFileSystemEvent/handleMoveEvent.d.ts +1 -1
- package/apps/core/src/domain/form/formDomain.d.ts +9 -1
- 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/import/importDomain.d.ts +1 -1
- package/apps/core/src/domain/indexationManager/indexationManagerDomain.d.ts +4 -2
- package/apps/core/src/domain/permission/_types.d.ts +11 -11
- package/apps/core/src/domain/permission/helpers/globalPermission.d.ts +4 -13
- package/apps/core/src/domain/permission/helpers/permissionByUserGroups.d.ts +24 -6
- package/apps/core/src/domain/permission/helpers/reducePermissionsArray.d.ts +1 -1
- package/apps/core/src/domain/permission/helpers/treeBasedPermissions.d.ts +0 -4
- package/apps/core/src/domain/permission/recordPermissionDomain.d.ts +4 -1
- package/apps/core/src/domain/permission/treeNodePermissionDomain.d.ts +2 -2
- package/apps/core/src/domain/record/_types.d.ts +4 -3
- package/apps/core/src/domain/record/helpers/createRecord.d.ts +22 -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 +34 -3
- package/apps/core/src/domain/tree/treeDomain.d.ts +2 -2
- 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 +54 -24
- 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/helpers/getSearchVariableName.d.ts +1 -1
- package/apps/core/src/infra/record/recordRepo.d.ts +11 -0
- package/apps/core/src/infra/tree/treeRepo.d.ts +4 -3
- package/apps/core/src/infra/value/valueRepo.d.ts +17 -10
- package/apps/core/src/infra/view/_types.d.ts +1 -0
- package/apps/core/src/interface/server.d.ts +7 -0
- package/apps/core/src/pluginsLoader.d.ts +1 -1
- package/apps/core/src/utils/dataloader.d.ts +8 -0
- package/apps/core/src/utils/helpers/getSystemQueryContext.d.ts +8 -0
- package/apps/core/src/utils/index.d.ts +1 -0
- package/apps/core/src/utils/utils.d.ts +1 -0
- package/libs/utils/src/types/forms.d.ts +8 -1
- package/package.json +19 -4
|
@@ -25,6 +25,14 @@ export declare namespace db {
|
|
|
25
25
|
export declare namespace diskCache {
|
|
26
26
|
let directory: string;
|
|
27
27
|
}
|
|
28
|
+
export declare namespace dataLoaders {
|
|
29
|
+
namespace valueRepo {
|
|
30
|
+
namespace getValues {
|
|
31
|
+
let enableCache: string | boolean;
|
|
32
|
+
let useBatch: string | boolean;
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
|
28
36
|
export declare namespace auth {
|
|
29
37
|
let scheme: string;
|
|
30
38
|
let key: string;
|
|
@@ -41,6 +49,8 @@ export declare namespace auth {
|
|
|
41
49
|
let wellKnownEndpoint: string;
|
|
42
50
|
let clientId: string;
|
|
43
51
|
let postLogoutRedirectUri: string;
|
|
52
|
+
let skipLogoutConfirmationPage: string | boolean;
|
|
53
|
+
let idTokenUserClaim: string;
|
|
44
54
|
}
|
|
45
55
|
let testApiKey: string;
|
|
46
56
|
}
|
|
@@ -67,10 +77,13 @@ export declare namespace logs {
|
|
|
67
77
|
let level: string;
|
|
68
78
|
let transport: string;
|
|
69
79
|
let destinationFile: string;
|
|
80
|
+
let useJsonFormat: string | boolean;
|
|
70
81
|
}
|
|
71
82
|
export declare namespace permissions {
|
|
72
83
|
let _default_1: boolean;
|
|
73
84
|
export { _default_1 as default };
|
|
85
|
+
let enableCache_1: string | boolean;
|
|
86
|
+
export { enableCache_1 as enableCache };
|
|
74
87
|
}
|
|
75
88
|
export declare namespace amqp {
|
|
76
89
|
namespace connOpt {
|
|
@@ -186,5 +199,5 @@ export declare namespace elasticSearch {
|
|
|
186
199
|
let url_1: string;
|
|
187
200
|
export { url_1 as url };
|
|
188
201
|
}
|
|
189
|
-
export declare let pluginsPath: string;
|
|
202
|
+
export declare let pluginsPath: string | any[];
|
|
190
203
|
export { _export as export, _import as import };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -7,6 +7,7 @@ export declare const mockActionStringOutput: {
|
|
|
7
7
|
input_types: ActionsListIOTypes[];
|
|
8
8
|
params?: import("../../_types/actionsList").ActionsListParamsConfig<Record<string | number | symbol, boolean>>[];
|
|
9
9
|
error_message?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
10
|
+
compute: boolean;
|
|
10
11
|
action: (values: import("../../_types/value").IValue[], params: {} & {}, ctx: import("../../_types/actionsList").IActionsListContext) => import("../../_types/actionsList").IActionsListFunctionResult | Promise<import("../../_types/actionsList").IActionsListFunctionResult>;
|
|
11
12
|
};
|
|
12
13
|
export declare const mockActionNumberOutput: {
|
|
@@ -17,6 +18,7 @@ export declare const mockActionNumberOutput: {
|
|
|
17
18
|
input_types: ActionsListIOTypes[];
|
|
18
19
|
params?: import("../../_types/actionsList").ActionsListParamsConfig<Record<string | number | symbol, boolean>>[];
|
|
19
20
|
error_message?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
21
|
+
compute: boolean;
|
|
20
22
|
action: (values: import("../../_types/value").IValue[], params: {} & {}, ctx: import("../../_types/actionsList").IActionsListContext) => import("../../_types/actionsList").IActionsListFunctionResult | Promise<import("../../_types/actionsList").IActionsListFunctionResult>;
|
|
21
23
|
};
|
|
22
24
|
export declare const mockActionBooleanOutput: {
|
|
@@ -27,6 +29,7 @@ export declare const mockActionBooleanOutput: {
|
|
|
27
29
|
input_types: ActionsListIOTypes[];
|
|
28
30
|
params?: import("../../_types/actionsList").ActionsListParamsConfig<Record<string | number | symbol, boolean>>[];
|
|
29
31
|
error_message?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
32
|
+
compute: boolean;
|
|
30
33
|
action: (values: import("../../_types/value").IValue[], params: {} & {}, ctx: import("../../_types/actionsList").IActionsListContext) => import("../../_types/actionsList").IActionsListFunctionResult | Promise<import("../../_types/actionsList").IActionsListFunctionResult>;
|
|
31
34
|
};
|
|
32
35
|
export declare const mockActionObjectOutput: {
|
|
@@ -37,6 +40,7 @@ export declare const mockActionObjectOutput: {
|
|
|
37
40
|
input_types: ActionsListIOTypes[];
|
|
38
41
|
params?: import("../../_types/actionsList").ActionsListParamsConfig<Record<string | number | symbol, boolean>>[];
|
|
39
42
|
error_message?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
43
|
+
compute: boolean;
|
|
40
44
|
action: (values: import("../../_types/value").IValue[], params: {} & {}, ctx: import("../../_types/actionsList").IActionsListContext) => import("../../_types/actionsList").IActionsListFunctionResult | Promise<import("../../_types/actionsList").IActionsListFunctionResult>;
|
|
41
45
|
};
|
|
42
46
|
export declare const mockActionAllOutput: {
|
|
@@ -47,6 +51,7 @@ export declare const mockActionAllOutput: {
|
|
|
47
51
|
output_types: ActionsListIOTypes[];
|
|
48
52
|
params?: import("../../_types/actionsList").ActionsListParamsConfig<Record<string | number | symbol, boolean>>[];
|
|
49
53
|
error_message?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
54
|
+
compute: boolean;
|
|
50
55
|
action: (values: import("../../_types/value").IValue[], params: {} & {}, ctx: import("../../_types/actionsList").IActionsListContext) => import("../../_types/actionsList").IActionsListFunctionResult | Promise<import("../../_types/actionsList").IActionsListFunctionResult>;
|
|
51
56
|
};
|
|
52
57
|
export declare const mockActionValidateFormat: {
|
|
@@ -57,6 +62,7 @@ export declare const mockActionValidateFormat: {
|
|
|
57
62
|
input_types: ActionsListIOTypes[];
|
|
58
63
|
params?: import("../../_types/actionsList").ActionsListParamsConfig<Record<string | number | symbol, boolean>>[];
|
|
59
64
|
error_message?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
65
|
+
compute: boolean;
|
|
60
66
|
action: (values: import("../../_types/value").IValue[], params: {} & {}, ctx: import("../../_types/actionsList").IActionsListContext) => import("../../_types/actionsList").IActionsListFunctionResult | Promise<import("../../_types/actionsList").IActionsListFunctionResult>;
|
|
61
67
|
};
|
|
62
68
|
export declare const mockAvailActions: IActionsListFunction[];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import { AttributeFormats, AttributeTypes, IAttribute } from '../../_types/attribute';
|
|
1
|
+
import { AttributeFormats, AttributeTypes, MultiLinkDisplayOption, IAttribute } from '../../_types/attribute';
|
|
2
2
|
export declare const mockAttrSimple: IAttribute;
|
|
3
|
+
export declare const mockUniqueAttrSimple: IAttribute;
|
|
3
4
|
export declare const mockAttrId: IAttribute;
|
|
4
5
|
export declare const mockAttrAdv: IAttribute;
|
|
5
6
|
export declare const mockAttrAdvMultiVal: IAttribute;
|
|
@@ -15,6 +16,8 @@ export declare const mockAttrTree: {
|
|
|
15
16
|
linked_tree: string;
|
|
16
17
|
system?: boolean;
|
|
17
18
|
readonly?: boolean;
|
|
19
|
+
required?: boolean;
|
|
20
|
+
character_limit?: number;
|
|
18
21
|
format?: AttributeFormats;
|
|
19
22
|
linked_library?: string;
|
|
20
23
|
embedded_fields?: import("../../_types/attribute").IEmbeddedAttribute[];
|
|
@@ -26,8 +29,9 @@ export declare const mockAttrTree: {
|
|
|
26
29
|
values_list?: import("../../_types/attribute").IValuesListConf;
|
|
27
30
|
reverse_link?: string | IAttribute;
|
|
28
31
|
unique?: boolean;
|
|
29
|
-
maxLength?: number;
|
|
30
32
|
description?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
33
|
+
settings?: import("../../_types/shared").IKeyValue<any>;
|
|
34
|
+
multi_link_display_option?: MultiLinkDisplayOption;
|
|
31
35
|
label?: import("../../_types/systemTranslation").ISystemTranslation | string;
|
|
32
36
|
};
|
|
33
37
|
export declare const mockAttrTreeVersionable: IAttribute;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const baseAttributes: string[];
|
|
@@ -30,7 +30,7 @@ export type ActionsListParamsConfig<ParamsRequired extends Record<string, boolea
|
|
|
30
30
|
type: 'boolean' | 'string' | 'number';
|
|
31
31
|
description: string;
|
|
32
32
|
required: ParamsRequired[Name];
|
|
33
|
-
|
|
33
|
+
helper_value: string;
|
|
34
34
|
};
|
|
35
35
|
}[keyof ParamsRequired];
|
|
36
36
|
export interface IActionsListFunctionResult {
|
|
@@ -57,6 +57,7 @@ export interface IActionsListFunction<ParamsRequired extends Record<string | num
|
|
|
57
57
|
output_types: ActionsListIOTypes[];
|
|
58
58
|
params?: Array<ActionsListParamsConfig<ParamsRequired>>;
|
|
59
59
|
error_message?: ISystemTranslation;
|
|
60
|
+
compute: boolean;
|
|
60
61
|
action: (values: IValue[], params: PartialByCondition<ActionsListParams<keyof ParamsRequired>, ParamsRequired>, ctx: IActionsListContext) => IActionsListFunctionResult | Promise<IActionsListFunctionResult>;
|
|
61
62
|
}
|
|
62
63
|
export interface IActionsListSavedAction {
|
|
@@ -1,13 +1,15 @@
|
|
|
1
1
|
import { ActionsListEvents, ActionsListIOTypes, ActionsListConfig } from './actionsList';
|
|
2
2
|
import { ITreePermissionsConf } from './permissions';
|
|
3
3
|
import { IRecord } from './record';
|
|
4
|
-
import { IGetCoreEntitiesParams } from './shared';
|
|
4
|
+
import { IGetCoreEntitiesParams, IKeyValue } from './shared';
|
|
5
5
|
import { ISystemTranslation } from './systemTranslation';
|
|
6
6
|
import { ITreeElement } from './tree';
|
|
7
7
|
import { IDateRangeValue } from './value';
|
|
8
8
|
export interface IAttribute extends ICoreEntity {
|
|
9
9
|
system?: boolean;
|
|
10
10
|
readonly?: boolean;
|
|
11
|
+
required?: boolean;
|
|
12
|
+
character_limit?: number;
|
|
11
13
|
type: AttributeTypes;
|
|
12
14
|
format?: AttributeFormats;
|
|
13
15
|
linked_library?: string;
|
|
@@ -21,8 +23,9 @@ export interface IAttribute extends ICoreEntity {
|
|
|
21
23
|
values_list?: IValuesListConf;
|
|
22
24
|
reverse_link?: string | IAttribute;
|
|
23
25
|
unique?: boolean;
|
|
24
|
-
maxLength?: number;
|
|
25
26
|
description?: ISystemTranslation;
|
|
27
|
+
settings?: IKeyValue<any>;
|
|
28
|
+
multi_link_display_option?: MultiLinkDisplayOption;
|
|
26
29
|
}
|
|
27
30
|
export declare enum ValueVersionMode {
|
|
28
31
|
SIMPLE = "simple",
|
|
@@ -86,6 +89,11 @@ export declare enum AttributeFormats {
|
|
|
86
89
|
COLOR = "color",
|
|
87
90
|
RICH_TEXT = "rich_text"
|
|
88
91
|
}
|
|
92
|
+
export declare enum MultiLinkDisplayOption {
|
|
93
|
+
AVATAR = "avatar",
|
|
94
|
+
TAG = "tag",
|
|
95
|
+
BADGE_QTY = "badge_qty"
|
|
96
|
+
}
|
|
89
97
|
export declare enum IOTypes {
|
|
90
98
|
STRING = "string",
|
|
91
99
|
NUMBER = "number",
|
|
@@ -5,6 +5,7 @@ export interface IConfig {
|
|
|
5
5
|
server: IServer;
|
|
6
6
|
db: IDb;
|
|
7
7
|
diskCache: IDiskCache;
|
|
8
|
+
dataLoaders: IDataLoaders;
|
|
8
9
|
auth: IAuth;
|
|
9
10
|
mailer: IMailer;
|
|
10
11
|
lang: ILang;
|
|
@@ -28,7 +29,7 @@ export interface IConfig {
|
|
|
28
29
|
dbProfiler: IDbProfilerConfig;
|
|
29
30
|
instanceId: string;
|
|
30
31
|
elasticSearch: IElasticSearchConfig;
|
|
31
|
-
pluginsPath: string;
|
|
32
|
+
pluginsPath: string[];
|
|
32
33
|
}
|
|
33
34
|
export declare enum CoreMode {
|
|
34
35
|
SERVER = "server",
|
|
@@ -75,11 +76,15 @@ export interface IAuth {
|
|
|
75
76
|
wellKnownEndpoint?: string;
|
|
76
77
|
clientId?: string;
|
|
77
78
|
postLogoutRedirectUri?: string;
|
|
79
|
+
skipLogoutConfirmationPage?: boolean;
|
|
80
|
+
idTokenUserClaim?: string;
|
|
78
81
|
} | {
|
|
79
82
|
enable: true;
|
|
80
83
|
wellKnownEndpoint: string;
|
|
81
84
|
clientId: string;
|
|
82
85
|
postLogoutRedirectUri: string;
|
|
86
|
+
skipLogoutConfirmationPage?: boolean;
|
|
87
|
+
idTokenUserClaim: string;
|
|
83
88
|
};
|
|
84
89
|
testApiKey?: string;
|
|
85
90
|
}
|
|
@@ -103,6 +108,7 @@ export interface ILogs {
|
|
|
103
108
|
}
|
|
104
109
|
export interface IPermissions {
|
|
105
110
|
default: boolean;
|
|
111
|
+
enableCache: boolean;
|
|
106
112
|
}
|
|
107
113
|
export interface IAmqp {
|
|
108
114
|
connOpt: Options.Connect;
|
|
@@ -172,6 +178,30 @@ export interface IImport {
|
|
|
172
178
|
groupData: number;
|
|
173
179
|
maxStackedElements: number;
|
|
174
180
|
}
|
|
181
|
+
/**
|
|
182
|
+
* Data loaders configuration for performances
|
|
183
|
+
*/
|
|
184
|
+
export interface IDataLoaders {
|
|
185
|
+
valueRepo: {
|
|
186
|
+
getValues: {
|
|
187
|
+
/**
|
|
188
|
+
* @default false
|
|
189
|
+
*
|
|
190
|
+
* Enable cache inside data loaders in the query context
|
|
191
|
+
* Before enable, ensure that it has no side effects, for instance on saveValue/deleteValue mutations
|
|
192
|
+
*/
|
|
193
|
+
enableCache: boolean;
|
|
194
|
+
/**
|
|
195
|
+
* @default true
|
|
196
|
+
*
|
|
197
|
+
* Enable: do batch arangodb query
|
|
198
|
+
* Disable: do one arangodb query per value, as before data loader use. For rollback if issue with batch query
|
|
199
|
+
* Temporary, to be removed in future
|
|
200
|
+
*/
|
|
201
|
+
useBatch: boolean;
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
}
|
|
175
205
|
export interface IDiskCache {
|
|
176
206
|
directory: string;
|
|
177
207
|
}
|
|
@@ -2,7 +2,26 @@ import { AqlQuery } from 'arangojs/aql';
|
|
|
2
2
|
export interface IDbProfilerQuery {
|
|
3
3
|
count: number;
|
|
4
4
|
query: string | AqlQuery;
|
|
5
|
-
callers:
|
|
5
|
+
callers: Record<string, {
|
|
6
|
+
/**
|
|
7
|
+
* Stacktrace of caller
|
|
8
|
+
*/
|
|
9
|
+
stack: string;
|
|
10
|
+
count: number;
|
|
11
|
+
/**
|
|
12
|
+
* Stats for each call for that query
|
|
13
|
+
*/
|
|
14
|
+
stats: Array<{
|
|
15
|
+
/**
|
|
16
|
+
* Arangodb query execution time in ms
|
|
17
|
+
*/
|
|
18
|
+
executionTimeMs: number | null;
|
|
19
|
+
/**
|
|
20
|
+
* Time spent in nodejs to process the query in ms
|
|
21
|
+
*/
|
|
22
|
+
nodejsTimeMs: number;
|
|
23
|
+
}>;
|
|
24
|
+
}>;
|
|
6
25
|
}
|
|
7
26
|
export interface IDbProfiler {
|
|
8
27
|
totalCount: number;
|
|
@@ -63,6 +63,7 @@ export declare enum Errors {
|
|
|
63
63
|
PREVIEWS_SETTINGS_NOT_ALLOWED = "PREVIEWS_SETTINGS_NOT_ALLOWED",
|
|
64
64
|
PROTECTED_ENDPOINT = "PROTECTED_ENDPOINT",
|
|
65
65
|
READONLY_ATTRIBUTE = "READONLY_ATTRIBUTE",
|
|
66
|
+
REQUIRED_ATTRIBUTE = "REQUIRED_ATTRIBUTE",
|
|
66
67
|
REQUIRED_ATTRIBUTE_FORMAT = "REQUIRED_ATTRIBUTE_FORMAT",
|
|
67
68
|
REQUIRED_ATTRIBUTE_LABEL = "REQUIRED_ATTRIBUTE_LABEL",
|
|
68
69
|
REQUIRED_ATTRIBUTE_LINKED_LIBRARY = "REQUIRED_ATTRIBUTE_LINKED_LIBRARY",
|
|
@@ -96,7 +97,8 @@ export declare enum Errors {
|
|
|
96
97
|
UNKNOWN_VERSION_TREE = "UNKNOWN_VERSION_TREE",
|
|
97
98
|
UNKNOWN_VIEW = "UNKNOWN_VIEW",
|
|
98
99
|
USER_IS_NOT_VIEW_OWNER = "USER_IS_NOT_VIEW_OWNER",
|
|
99
|
-
VALUE_NOT_UNIQUE = "VALUE_NOT_UNIQUE"
|
|
100
|
+
VALUE_NOT_UNIQUE = "VALUE_NOT_UNIQUE",
|
|
101
|
+
VALUE_EXCEEDS_CHARACTER_LIMIT = "VALUE_EXCEEDS_CHARACTER_LIMIT"
|
|
100
102
|
}
|
|
101
103
|
export interface IExtendedErrorMsg {
|
|
102
104
|
msg: Errors | string;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IAttribute } from './attribute';
|
|
1
2
|
import { IKeyValue } from './shared';
|
|
2
3
|
import { IValue } from './value';
|
|
3
4
|
export interface IForm extends ICoreEntity {
|
|
@@ -5,6 +6,11 @@ export interface IForm extends ICoreEntity {
|
|
|
5
6
|
system?: boolean;
|
|
6
7
|
dependencyAttributes?: string[];
|
|
7
8
|
elements?: IFormDependentElements[];
|
|
9
|
+
sidePanel: IFormSidePanel;
|
|
10
|
+
}
|
|
11
|
+
export interface IFormSidePanel {
|
|
12
|
+
enable: boolean;
|
|
13
|
+
isOpenByDefault: boolean;
|
|
8
14
|
}
|
|
9
15
|
export interface IRecordForm {
|
|
10
16
|
id: string;
|
|
@@ -12,10 +18,12 @@ export interface IRecordForm {
|
|
|
12
18
|
system: boolean;
|
|
13
19
|
recordId: string;
|
|
14
20
|
dependencyAttributes?: string[];
|
|
15
|
-
elements:
|
|
21
|
+
elements: IFormElement[];
|
|
22
|
+
sidePanel: IFormSidePanel;
|
|
16
23
|
}
|
|
17
24
|
export declare enum FormElementTypes {
|
|
18
25
|
field = "field",
|
|
26
|
+
tabs = "tabs",
|
|
19
27
|
layout = "layout"
|
|
20
28
|
}
|
|
21
29
|
export type IFormStrict = Required<IForm>;
|
|
@@ -34,17 +42,19 @@ export interface IFormElement {
|
|
|
34
42
|
uiElementType: string;
|
|
35
43
|
containerId: string;
|
|
36
44
|
settings?: IKeyValue<any>;
|
|
45
|
+
children?: IFormElement[];
|
|
37
46
|
}
|
|
38
|
-
export interface
|
|
39
|
-
|
|
47
|
+
export interface IFormElementValues {
|
|
48
|
+
id: string;
|
|
49
|
+
values: IValue[];
|
|
40
50
|
valueError?: string;
|
|
41
51
|
}
|
|
42
|
-
export type IFormElementWithValuesAndChildren = IFormElementWithValues & {
|
|
43
|
-
children: IFormElementWithValuesAndChildren[];
|
|
44
|
-
};
|
|
45
52
|
/**
|
|
46
|
-
* Accepted fields to filter
|
|
53
|
+
* Accepted fields to filter an attribute list
|
|
47
54
|
*/
|
|
48
55
|
export interface IFormFilterOptions extends ICoreEntityFilterOptions {
|
|
49
56
|
library?: string;
|
|
50
57
|
}
|
|
58
|
+
export interface IFormElementJoinLibraryContext {
|
|
59
|
+
mandatoryAttribute: IAttribute;
|
|
60
|
+
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
+
import { IKeyValue } from './shared';
|
|
1
2
|
export interface IGlobalSettings {
|
|
3
|
+
defaultApp: string;
|
|
2
4
|
name: string;
|
|
3
5
|
icon?: {
|
|
4
6
|
library: string;
|
|
@@ -8,4 +10,5 @@ export interface IGlobalSettings {
|
|
|
8
10
|
library: string;
|
|
9
11
|
recordId: string;
|
|
10
12
|
};
|
|
13
|
+
settings?: IKeyValue<any>;
|
|
11
14
|
}
|
|
@@ -3,9 +3,11 @@ import { IPreviewVersion } from './filesManager';
|
|
|
3
3
|
import { ITreePermissionsConf } from './permissions';
|
|
4
4
|
import { IRecordIdentityConf } from './record';
|
|
5
5
|
import { ISystemTranslation } from './systemTranslation';
|
|
6
|
+
import { IKeyValue } from './shared';
|
|
6
7
|
export interface ILibrary extends ICoreEntity {
|
|
7
8
|
system?: boolean;
|
|
8
9
|
behavior?: LibraryBehavior;
|
|
10
|
+
mandatoryAttribute?: string;
|
|
9
11
|
/**
|
|
10
12
|
* List of attributes usable in this library
|
|
11
13
|
*/
|
|
@@ -31,6 +33,7 @@ export interface ILibrary extends ICoreEntity {
|
|
|
31
33
|
recordId: string;
|
|
32
34
|
};
|
|
33
35
|
previewsSettings?: ILibraryPreviewsSettings[];
|
|
36
|
+
settings?: IKeyValue<any>;
|
|
34
37
|
}
|
|
35
38
|
export interface ILibraryFilterOptions extends ICoreEntityFilterOptions {
|
|
36
39
|
system?: boolean;
|
|
@@ -43,8 +46,9 @@ export interface ILibraryPreviewsSettings {
|
|
|
43
46
|
}
|
|
44
47
|
export declare enum LibraryBehavior {
|
|
45
48
|
STANDARD = "standard",
|
|
49
|
+
DIRECTORIES = "directories",
|
|
46
50
|
FILES = "files",
|
|
47
|
-
|
|
51
|
+
JOIN = "join"
|
|
48
52
|
}
|
|
49
53
|
export declare const USERS_LIBRARY = "users";
|
|
50
54
|
export declare const USERS_GROUPS_LIBRARY = "users_groups";
|
|
@@ -76,7 +76,8 @@ export declare enum AdminPermissionsActions {
|
|
|
76
76
|
CREATE_API_KEY = "admin_create_api_key",
|
|
77
77
|
EDIT_API_KEY = "admin_edit_api_key",
|
|
78
78
|
DELETE_API_KEY = "admin_delete_api_key",
|
|
79
|
-
EDIT_GLOBAL_SETTINGS = "admin_edit_global_settings"
|
|
79
|
+
EDIT_GLOBAL_SETTINGS = "admin_edit_global_settings",
|
|
80
|
+
ACCESS_LOGS = "admin_access_logs"
|
|
80
81
|
}
|
|
81
82
|
export type PermissionsActions = LibraryPermissionsActions | RecordPermissionsActions | RecordAttributePermissionsActions | AdminPermissionsActions | AttributePermissionsActions | TreePermissionsActions | TreeNodePermissionsActions | ApplicationPermissionsActions;
|
|
82
83
|
export interface ILabeledPermissionsAction {
|
|
@@ -1,16 +1,21 @@
|
|
|
1
|
+
import DataLoader from 'dataloader';
|
|
1
2
|
import type LeavError from 'errors/LeavError';
|
|
2
3
|
import { IDbProfiler } from './dbProfiler';
|
|
3
4
|
import { IValueVersion } from './value';
|
|
4
5
|
export interface IQueryInfos {
|
|
5
6
|
userId: string;
|
|
7
|
+
groupsId?: string[];
|
|
6
8
|
lang?: string;
|
|
7
9
|
defaultLang?: string;
|
|
8
10
|
queryId?: string;
|
|
9
11
|
version?: IValueVersion;
|
|
10
12
|
treeId?: string;
|
|
11
|
-
groupsId?: string[];
|
|
12
13
|
applicationId?: string;
|
|
13
14
|
dbProfiler?: IDbProfiler;
|
|
14
15
|
trigger?: string;
|
|
15
16
|
errors?: Array<LeavError<unknown>>;
|
|
17
|
+
/**
|
|
18
|
+
* For request duration store dataloader on demand with getOrCreateDataLoaderInCtx
|
|
19
|
+
*/
|
|
20
|
+
dataLoaders?: Record<string, DataLoader<unknown, unknown>>;
|
|
16
21
|
}
|
|
@@ -75,10 +75,10 @@ export interface IQueryField {
|
|
|
75
75
|
export interface IRecordIdentity {
|
|
76
76
|
id: string;
|
|
77
77
|
library: ILibrary;
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
78
|
+
getLabel?: () => Promise<string | null>;
|
|
79
|
+
getSubLabel?: () => Promise<string | null>;
|
|
80
|
+
getColor?: () => Promise<string | null>;
|
|
81
|
+
getPreview?: () => Promise<IPreview | null>;
|
|
82
82
|
}
|
|
83
83
|
export interface IRecordIdentityConf {
|
|
84
84
|
label?: string;
|
|
@@ -11,6 +11,7 @@ export interface ITree extends ICoreEntity {
|
|
|
11
11
|
behavior?: TreeBehavior;
|
|
12
12
|
system?: boolean;
|
|
13
13
|
permissions_conf?: ITreeNodePermissionsConf;
|
|
14
|
+
settings?: IKeyValue<any>;
|
|
14
15
|
}
|
|
15
16
|
export interface ITreeFilterOptions extends ICoreEntityFilterOptions {
|
|
16
17
|
system?: boolean;
|
|
@@ -37,7 +38,7 @@ export type ITreeNodeLight = Pick<ITreeNode, 'id' | 'order'>;
|
|
|
37
38
|
export interface ITreeNodeWithTreeId extends ITreeNode {
|
|
38
39
|
treeId: string;
|
|
39
40
|
}
|
|
40
|
-
export type
|
|
41
|
+
export type TreePath = ITreeNode[];
|
|
41
42
|
export declare enum TreeBehavior {
|
|
42
43
|
STANDARD = "standard",
|
|
43
44
|
FILES = "files"
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { AnyPrimitive, Override } from '@leav/utils';
|
|
2
2
|
import { IDbEdge } from 'infra/db/_types';
|
|
3
3
|
import { IRecord } from './record';
|
|
4
|
-
import { ITreeNode,
|
|
4
|
+
import { ITreeNode, TreePath } from './tree';
|
|
5
|
+
import { EMPTY_VALUE } from 'infra/value/valueRepo';
|
|
6
|
+
import { AttributeTypes } from './attribute';
|
|
5
7
|
export type IValueFromGql = Override<Omit<IValue, 'version'>, {
|
|
6
8
|
value: IValue['payload'];
|
|
7
9
|
metadata: Array<{
|
|
@@ -28,8 +30,13 @@ export interface IDbValueVersion {
|
|
|
28
30
|
export interface IValueMetadata {
|
|
29
31
|
[fieldName: string]: IStandardValue | AnyPrimitive;
|
|
30
32
|
}
|
|
31
|
-
export
|
|
32
|
-
|
|
33
|
+
export type EmptyValue = typeof EMPTY_VALUE;
|
|
34
|
+
interface ICommonGenericSaveValue {
|
|
35
|
+
/**
|
|
36
|
+
* The id of the edge for advanced, advanced link or tree values
|
|
37
|
+
* In case of advanced reverse link from simple link, this is the id of the linked record
|
|
38
|
+
*/
|
|
39
|
+
id_value?: string | null;
|
|
33
40
|
attribute?: string;
|
|
34
41
|
created_at?: number;
|
|
35
42
|
modified_at?: number;
|
|
@@ -37,21 +44,60 @@ export interface IGenericValue {
|
|
|
37
44
|
modified_by?: string;
|
|
38
45
|
version?: IValueVersion;
|
|
39
46
|
metadata?: IValueMetadata;
|
|
47
|
+
}
|
|
48
|
+
export interface IGenericValue extends ICommonGenericSaveValue {
|
|
40
49
|
isInherited?: boolean;
|
|
41
50
|
isCalculated?: boolean;
|
|
42
51
|
}
|
|
43
52
|
export interface IStandardValue extends IGenericValue {
|
|
44
|
-
|
|
53
|
+
/**
|
|
54
|
+
* Computed value after get actions on attribute are done
|
|
55
|
+
* TODO remove that any when possible
|
|
56
|
+
* TODO remove optional when possible
|
|
57
|
+
*/
|
|
58
|
+
payload?: any | EmptyValue;
|
|
59
|
+
/**
|
|
60
|
+
* Raw value from the database, before any computation
|
|
61
|
+
* TODO, remove that any when possible
|
|
62
|
+
*/
|
|
45
63
|
raw_payload?: any;
|
|
46
64
|
}
|
|
47
65
|
export interface ILinkValue extends IGenericValue {
|
|
66
|
+
/**
|
|
67
|
+
* Linked record
|
|
68
|
+
* TODO remove optional when possible
|
|
69
|
+
*/
|
|
48
70
|
payload?: IRecord;
|
|
49
71
|
}
|
|
50
72
|
export interface ITreeValue extends IGenericValue {
|
|
73
|
+
/**
|
|
74
|
+
* Linked tree node
|
|
75
|
+
* TODO remove optional when possible
|
|
76
|
+
*/
|
|
51
77
|
payload?: ITreeNode;
|
|
52
78
|
treeId: string;
|
|
53
79
|
}
|
|
54
80
|
export type IValue = IStandardValue | ILinkValue | ITreeValue;
|
|
81
|
+
type IGenericSaveValue = ICommonGenericSaveValue;
|
|
82
|
+
export interface ISaveStandardValue extends IGenericSaveValue {
|
|
83
|
+
/**
|
|
84
|
+
* Any base type value to save
|
|
85
|
+
*/
|
|
86
|
+
payload: number | string | boolean | EmptyValue | null;
|
|
87
|
+
}
|
|
88
|
+
export interface ISaveLinkValue extends IGenericSaveValue {
|
|
89
|
+
/**
|
|
90
|
+
* Record id to link
|
|
91
|
+
*/
|
|
92
|
+
payload: string | null;
|
|
93
|
+
}
|
|
94
|
+
export interface ISaveTreeValue extends IGenericSaveValue {
|
|
95
|
+
/**
|
|
96
|
+
* Tree node id to link
|
|
97
|
+
*/
|
|
98
|
+
payload: string | null;
|
|
99
|
+
}
|
|
100
|
+
export type ISaveValue = ISaveStandardValue | ISaveLinkValue | ISaveTreeValue;
|
|
55
101
|
export interface IDateRangeValue<T = string | number> {
|
|
56
102
|
from: T;
|
|
57
103
|
to: T;
|
|
@@ -65,7 +111,7 @@ export interface IValuesOptions {
|
|
|
65
111
|
export interface IFindValueTree {
|
|
66
112
|
name: string;
|
|
67
113
|
currentIndex: number;
|
|
68
|
-
elements:
|
|
114
|
+
elements: TreePath;
|
|
69
115
|
}
|
|
70
116
|
export interface IValueEdge extends IDbEdge {
|
|
71
117
|
attribute: string;
|
|
@@ -76,3 +122,18 @@ export interface IValueEdge extends IDbEdge {
|
|
|
76
122
|
version?: IDbValueVersion;
|
|
77
123
|
metadata?: IValueMetadata;
|
|
78
124
|
}
|
|
125
|
+
export interface IValueByAttributeType {
|
|
126
|
+
[AttributeTypes.SIMPLE]: IStandardValue;
|
|
127
|
+
[AttributeTypes.SIMPLE_LINK]: ILinkValue;
|
|
128
|
+
[AttributeTypes.ADVANCED]: IStandardValue;
|
|
129
|
+
[AttributeTypes.ADVANCED_LINK]: ILinkValue;
|
|
130
|
+
[AttributeTypes.TREE]: ITreeValue;
|
|
131
|
+
}
|
|
132
|
+
export interface ISaveValueByAttributeType {
|
|
133
|
+
[AttributeTypes.SIMPLE]: ISaveStandardValue;
|
|
134
|
+
[AttributeTypes.SIMPLE_LINK]: ISaveLinkValue;
|
|
135
|
+
[AttributeTypes.ADVANCED]: ISaveStandardValue;
|
|
136
|
+
[AttributeTypes.ADVANCED_LINK]: ISaveLinkValue;
|
|
137
|
+
[AttributeTypes.TREE]: ISaveTreeValue;
|
|
138
|
+
}
|
|
139
|
+
export {};
|