@aristid/leav-types 0.0.7-8c2b8a1 → 0.0.7-8ea6b77
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 +1 -0
- package/apps/core/src/__tests__/mocks/attribute.d.ts +1 -1
- package/apps/core/src/_constants/globalSettings.d.ts +1 -0
- package/apps/core/src/_types/attribute.d.ts +1 -1
- package/apps/core/src/_types/config.d.ts +2 -0
- package/apps/core/src/_types/errors.d.ts +2 -1
- package/apps/core/src/_types/globalSettings.d.ts +1 -0
- package/apps/core/src/_types/views.d.ts +4 -0
- package/apps/core/src/app/application/applicationApp.d.ts +3 -1
- package/apps/core/src/domain/helpers/calculationVariable/index.d.ts +2 -1
- package/apps/core/src/domain/record/recordDomain.d.ts +3 -1
- package/apps/core/src/infra/oidc/oidcClientService.d.ts +3 -1
- package/libs/utils/src/types/forms.d.ts +6 -1
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@ export declare const mockAttrTree: {
|
|
|
16
16
|
system?: boolean;
|
|
17
17
|
readonly?: boolean;
|
|
18
18
|
required?: boolean;
|
|
19
|
+
character_limit?: number;
|
|
19
20
|
format?: AttributeFormats;
|
|
20
21
|
linked_library?: string;
|
|
21
22
|
embedded_fields?: import("../../_types/attribute").IEmbeddedAttribute[];
|
|
@@ -27,7 +28,6 @@ export declare const mockAttrTree: {
|
|
|
27
28
|
values_list?: import("../../_types/attribute").IValuesListConf;
|
|
28
29
|
reverse_link?: string | IAttribute;
|
|
29
30
|
unique?: boolean;
|
|
30
|
-
maxLength?: number;
|
|
31
31
|
description?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
32
32
|
label?: import("../../_types/systemTranslation").ISystemTranslation | string;
|
|
33
33
|
};
|
|
@@ -9,6 +9,7 @@ export interface IAttribute extends ICoreEntity {
|
|
|
9
9
|
system?: boolean;
|
|
10
10
|
readonly?: boolean;
|
|
11
11
|
required?: boolean;
|
|
12
|
+
character_limit?: number;
|
|
12
13
|
type: AttributeTypes;
|
|
13
14
|
format?: AttributeFormats;
|
|
14
15
|
linked_library?: string;
|
|
@@ -22,7 +23,6 @@ export interface IAttribute extends ICoreEntity {
|
|
|
22
23
|
values_list?: IValuesListConf;
|
|
23
24
|
reverse_link?: string | IAttribute;
|
|
24
25
|
unique?: boolean;
|
|
25
|
-
maxLength?: number;
|
|
26
26
|
description?: ISystemTranslation;
|
|
27
27
|
}
|
|
28
28
|
export declare enum ValueVersionMode {
|
|
@@ -75,11 +75,13 @@ export interface IAuth {
|
|
|
75
75
|
wellKnownEndpoint?: string;
|
|
76
76
|
clientId?: string;
|
|
77
77
|
postLogoutRedirectUri?: string;
|
|
78
|
+
skipLogoutConfirmationPage?: boolean;
|
|
78
79
|
} | {
|
|
79
80
|
enable: true;
|
|
80
81
|
wellKnownEndpoint: string;
|
|
81
82
|
clientId: string;
|
|
82
83
|
postLogoutRedirectUri: string;
|
|
84
|
+
skipLogoutConfirmationPage?: boolean;
|
|
83
85
|
};
|
|
84
86
|
testApiKey?: string;
|
|
85
87
|
}
|
|
@@ -97,7 +97,8 @@ export declare enum Errors {
|
|
|
97
97
|
UNKNOWN_VERSION_TREE = "UNKNOWN_VERSION_TREE",
|
|
98
98
|
UNKNOWN_VIEW = "UNKNOWN_VIEW",
|
|
99
99
|
USER_IS_NOT_VIEW_OWNER = "USER_IS_NOT_VIEW_OWNER",
|
|
100
|
-
VALUE_NOT_UNIQUE = "VALUE_NOT_UNIQUE"
|
|
100
|
+
VALUE_NOT_UNIQUE = "VALUE_NOT_UNIQUE",
|
|
101
|
+
VALUE_EXCEEDS_CHARACTER_LIMIT = "VALUE_EXCEEDS_CHARACTER_LIMIT"
|
|
101
102
|
}
|
|
102
103
|
export interface IExtendedErrorMsg {
|
|
103
104
|
msg: Errors | string;
|
|
@@ -40,6 +40,10 @@ export interface IViewValuesVersionForGraphql {
|
|
|
40
40
|
export type ViewFromGraphQL = Omit<IView, 'valuesVersions' | 'settings'> & {
|
|
41
41
|
valuesVersions: IViewValuesVersionForGraphql[];
|
|
42
42
|
};
|
|
43
|
+
export type PartialViewFromGraphQL = Omit<IView, 'id' | 'valuesVersions' | 'settings'> & {
|
|
44
|
+
id: string;
|
|
45
|
+
valuesVersions: IViewValuesVersionForGraphql[];
|
|
46
|
+
};
|
|
43
47
|
export interface IViewFilterOptions extends ICoreEntityFilterOptions {
|
|
44
48
|
created_by?: string;
|
|
45
49
|
library?: string;
|
|
@@ -11,6 +11,7 @@ import { IAppGraphQLSchema } from '_types/graphql';
|
|
|
11
11
|
import { IApplicationDomain } from '../../domain/application/applicationDomain';
|
|
12
12
|
import { ValidateRequestTokenFunc } from '../helpers/validateRequestToken';
|
|
13
13
|
import { IAuthApp } from '../auth/authApp';
|
|
14
|
+
import { IGlobalSettingsDomain } from '../../domain/globalSettings/globalSettingsDomain';
|
|
14
15
|
export interface IApplicationApp {
|
|
15
16
|
registerRoute(app: Express): void;
|
|
16
17
|
getGraphQLSchema(): Promise<IAppGraphQLSchema>;
|
|
@@ -25,8 +26,9 @@ export interface IApplicationAppDeps {
|
|
|
25
26
|
'core.domain.permission': IPermissionDomain;
|
|
26
27
|
'core.domain.record': IRecordDomain;
|
|
27
28
|
'core.domain.eventsManager': IEventsManagerDomain;
|
|
29
|
+
'core.domain.globalSettings': IGlobalSettingsDomain;
|
|
28
30
|
'core.utils.logger': winston.Winston;
|
|
29
31
|
'core.utils': IUtils;
|
|
30
32
|
config: any;
|
|
31
33
|
}
|
|
32
|
-
export default function ({ 'core.app.graphql': graphqlApp, 'core.app.auth': authApp, 'core.app.helpers.initQueryContext': initQueryContext, 'core.app.helpers.validateRequestToken': validateRequestToken, 'core.app.core.subscriptionsHelper': subscriptionsHelper, 'core.domain.application': applicationDomain, 'core.domain.permission': permissionDomain, 'core.domain.record': recordDomain, 'core.domain.eventsManager': eventsManagerDomain, 'core.utils.logger': logger, 'core.utils': utils, config }: IApplicationAppDeps): IApplicationApp;
|
|
34
|
+
export default function ({ 'core.app.graphql': graphqlApp, 'core.app.auth': authApp, 'core.app.helpers.initQueryContext': initQueryContext, 'core.app.helpers.validateRequestToken': validateRequestToken, 'core.app.core.subscriptionsHelper': subscriptionsHelper, 'core.domain.application': applicationDomain, 'core.domain.permission': permissionDomain, 'core.domain.record': recordDomain, 'core.domain.eventsManager': eventsManagerDomain, 'core.domain.globalSettings': globalSettings, 'core.utils.logger': logger, 'core.utils': utils, config }: IApplicationAppDeps): IApplicationApp;
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
import { ActionsListValueType, IActionsListContext } from '_types/actionsList';
|
|
2
2
|
import { IVariableFunctions } from '../calculationsVariableFunctions';
|
|
3
|
+
import { ITreeNode } from '../../../_types/tree';
|
|
3
4
|
interface IDeps {
|
|
4
5
|
'core.domain.helpers.calculationsVariableFunctions': IVariableFunctions;
|
|
5
6
|
}
|
|
6
7
|
export interface IVariableValue {
|
|
7
8
|
recordId: string;
|
|
8
9
|
library: string;
|
|
9
|
-
payload: string | number | boolean | Record<string, any>;
|
|
10
|
+
payload: string | number | boolean | ITreeNode | Record<string, any>;
|
|
10
11
|
raw_payload?: string | number | boolean | Record<string, any>;
|
|
11
12
|
}
|
|
12
13
|
export interface ICalculationVariable {
|
|
@@ -20,6 +20,7 @@ import { IRecordPermissionDomain } from '../permission/recordPermissionDomain';
|
|
|
20
20
|
import { SendRecordUpdateEventHelper } from './helpers/sendRecordUpdateEvent';
|
|
21
21
|
import { ICreateRecordResult, IFindRecordParams } from './_types';
|
|
22
22
|
import { IFormRepo } from 'infra/form/formRepo';
|
|
23
|
+
import { IRecordAttributePermissionDomain } from 'domain/permission/recordAttributePermissionDomain';
|
|
23
24
|
export interface IRecordDomain {
|
|
24
25
|
createRecord(params: {
|
|
25
26
|
library: string;
|
|
@@ -90,6 +91,7 @@ export interface IRecordDomainDeps {
|
|
|
90
91
|
'core.domain.value': IValueDomain;
|
|
91
92
|
'core.domain.permission.record': IRecordPermissionDomain;
|
|
92
93
|
'core.domain.permission.library': ILibraryPermissionDomain;
|
|
94
|
+
'core.domain.permission.recordAttribute': IRecordAttributePermissionDomain;
|
|
93
95
|
'core.domain.helpers.getCoreEntityById': GetCoreEntityByIdFunc;
|
|
94
96
|
'core.domain.helpers.validate': IValidateHelper;
|
|
95
97
|
'core.domain.record.helpers.sendRecordUpdateEvent': SendRecordUpdateEventHelper;
|
|
@@ -102,4 +104,4 @@ export interface IRecordDomainDeps {
|
|
|
102
104
|
'core.utils': IUtils;
|
|
103
105
|
translator: i18n;
|
|
104
106
|
}
|
|
105
|
-
export default function ({ config, 'core.infra.record': recordRepo, 'core.domain.attribute': attributeDomain, 'core.domain.value': valueDomain, 'core.domain.permission.record': recordPermissionDomain, 'core.domain.permission.library': libraryPermissionDomain, 'core.domain.helpers.getCoreEntityById': getCoreEntityById, 'core.domain.helpers.validate': validateHelper, 'core.domain.record.helpers.sendRecordUpdateEvent': sendRecordUpdateEvent, 'core.infra.library': libraryRepo, 'core.infra.tree': treeRepo, 'core.infra.value': valueRepo, 'core.infra.form': formRepo, 'core.domain.eventsManager': eventsManager, 'core.infra.cache.cacheService': cacheService, 'core.utils': utils, translator }: IRecordDomainDeps): IRecordDomain;
|
|
107
|
+
export default function ({ config, 'core.infra.record': recordRepo, 'core.domain.attribute': attributeDomain, 'core.domain.value': valueDomain, 'core.domain.permission.record': recordPermissionDomain, 'core.domain.permission.library': libraryPermissionDomain, 'core.domain.permission.recordAttribute': recordAttributePermissionDomain, 'core.domain.helpers.getCoreEntityById': getCoreEntityById, 'core.domain.helpers.validate': validateHelper, 'core.domain.record.helpers.sendRecordUpdateEvent': sendRecordUpdateEvent, 'core.infra.library': libraryRepo, 'core.infra.tree': treeRepo, 'core.infra.value': valueRepo, 'core.infra.form': formRepo, 'core.domain.eventsManager': eventsManager, 'core.infra.cache.cacheService': cacheService, 'core.utils': utils, translator }: IRecordDomainDeps): IRecordDomain;
|
|
@@ -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;
|
|
17
|
+
}) => Promise<string>;
|
|
16
18
|
saveOIDCTokens: (params: {
|
|
17
19
|
userId: string;
|
|
18
20
|
tokens: TokenSet;
|
|
@@ -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
|
}
|