@aristid/leav-types 0.0.7-bcac760 → 0.0.7-bf0c716

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.
Files changed (69) hide show
  1. package/apps/core/config/default.d.ts +4 -1
  2. package/apps/core/config/test.d.ts +1 -0
  3. package/apps/core/src/__tests__/e2e/api/joinLibraries/joinLibraries.test.d.ts +1 -0
  4. package/apps/core/src/__tests__/mockers/amqp.d.ts +8 -0
  5. package/apps/core/src/__tests__/mockers/logger.d.ts +7 -0
  6. package/apps/core/src/__tests__/mocks/attribute.d.ts +5 -2
  7. package/apps/core/src/__tests__/mocks/cache.d.ts +4 -0
  8. package/apps/core/src/__tests__/mocks/view.d.ts +1 -0
  9. package/apps/core/src/_constants/attributes.d.ts +1 -0
  10. package/apps/core/src/_constants/globalSettings.d.ts +1 -0
  11. package/apps/core/src/_types/attribute.d.ts +9 -2
  12. package/apps/core/src/_types/config.d.ts +5 -1
  13. package/apps/core/src/_types/errors.d.ts +2 -1
  14. package/apps/core/src/_types/forms.d.ts +10 -0
  15. package/apps/core/src/_types/globalSettings.d.ts +3 -0
  16. package/apps/core/src/_types/library.d.ts +5 -1
  17. package/apps/core/src/_types/queryInfos.d.ts +1 -1
  18. package/apps/core/src/_types/tree.d.ts +1 -0
  19. package/apps/core/src/_types/value.d.ts +63 -3
  20. package/apps/core/src/_types/views.d.ts +38 -35
  21. package/apps/core/src/app/application/applicationApp.d.ts +3 -1
  22. package/apps/core/src/app/auth/authApp.d.ts +3 -1
  23. package/apps/core/src/app/core/formApp/formApp.d.ts +3 -1
  24. package/apps/core/src/domain/attribute/attributeDomain.d.ts +1 -0
  25. package/apps/core/src/domain/attribute/helpers/ifLibraryJoinLinkAttribute.d.ts +11 -0
  26. package/apps/core/src/domain/attribute/helpers/ifLibraryJoinLinkAttribute.spec.d.ts +1 -0
  27. package/apps/core/src/domain/attribute/helpers/index.d.ts +1 -0
  28. package/apps/core/src/domain/globalSettings/globalSettingsDomain.d.ts +5 -1
  29. package/apps/core/src/domain/helpers/calculationVariable/index.d.ts +2 -1
  30. package/apps/core/src/domain/permission/_types.d.ts +1 -9
  31. package/apps/core/src/domain/permission/helpers/globalPermission.d.ts +1 -1
  32. package/apps/core/src/domain/permission/helpers/permissionByUserGroups.d.ts +22 -4
  33. package/apps/core/src/domain/permission/helpers/reducePermissionsArray.d.ts +1 -1
  34. package/apps/core/src/domain/record/_types.d.ts +4 -3
  35. package/apps/core/src/domain/record/helpers/createRecord.d.ts +21 -0
  36. package/apps/core/src/domain/record/helpers/deleteRecord.d.ts +19 -0
  37. package/apps/core/src/domain/record/helpers/getAccessPermissionFilters.d.ts +24 -0
  38. package/apps/core/src/domain/record/helpers/index.d.ts +3 -0
  39. package/apps/core/src/domain/record/recordDomain.d.ts +26 -3
  40. package/apps/core/src/domain/value/helpers/{canSaveValue.d.ts → canSaveRecordValue.d.ts} +3 -3
  41. package/apps/core/src/domain/value/helpers/isEmptyValue.d.ts +5 -0
  42. package/apps/core/src/domain/value/helpers/prepareValue.d.ts +3 -3
  43. package/apps/core/src/domain/value/helpers/saveOneValue.d.ts +2 -2
  44. package/apps/core/src/domain/value/helpers/validateValue.d.ts +4 -4
  45. package/apps/core/src/domain/value/valueDomain.d.ts +11 -4
  46. package/apps/core/src/domain/view/viewDomain.d.ts +1 -0
  47. package/apps/core/src/errors/LeavError.d.ts +6 -0
  48. package/apps/core/src/infra/attributeTypes/attributeAdvancedLinkRepo.d.ts +5 -2
  49. package/apps/core/src/infra/attributeTypes/attributeAdvancedRepo.d.ts +3 -1
  50. package/apps/core/src/infra/attributeTypes/attributeSimpleLinkRepo.d.ts +5 -2
  51. package/apps/core/src/infra/attributeTypes/attributeSimpleRepo.d.ts +3 -1
  52. package/apps/core/src/infra/attributeTypes/attributeTreeRepo.d.ts +3 -1
  53. package/apps/core/src/infra/attributeTypes/attributeTypesRepo.d.ts +29 -23
  54. package/apps/core/src/infra/attributeTypes/helpers/getConditionPart.d.ts +1 -1
  55. package/apps/core/src/infra/db/dbUtils.d.ts +1 -3
  56. package/apps/core/src/infra/db/migrations/007-updateHexColor.d.ts +9 -0
  57. package/apps/core/src/infra/db/migrations/008-addSkeletonApp.d.ts +7 -0
  58. package/apps/core/src/infra/db/migrations/009-addDisplayMultiLinkOptAttributeProperty.d.ts +11 -0
  59. package/apps/core/src/infra/db/migrations/010-formSidePanel.d.ts +8 -0
  60. package/apps/core/src/infra/oidc/oidcClientService.d.ts +3 -1
  61. package/apps/core/src/infra/permission/permissionRepo.d.ts +9 -1
  62. package/apps/core/src/infra/record/recordRepo.d.ts +2 -0
  63. package/apps/core/src/infra/tree/treeRepo.d.ts +1 -1
  64. package/apps/core/src/infra/value/valueRepo.d.ts +10 -5
  65. package/apps/core/src/infra/view/_types.d.ts +1 -0
  66. package/apps/core/src/pluginsLoader.d.ts +1 -1
  67. package/apps/core/src/utils/utils.d.ts +1 -0
  68. package/libs/utils/src/types/forms.d.ts +7 -1
  69. package/package.json +5 -2
@@ -41,6 +41,8 @@ export declare namespace auth {
41
41
  let wellKnownEndpoint: string;
42
42
  let clientId: string;
43
43
  let postLogoutRedirectUri: string;
44
+ let skipLogoutConfirmationPage: string | boolean;
45
+ let idTokenUserClaim: string;
44
46
  }
45
47
  let testApiKey: string;
46
48
  }
@@ -67,6 +69,7 @@ export declare namespace logs {
67
69
  let level: string;
68
70
  let transport: string;
69
71
  let destinationFile: string;
72
+ let useJsonFormat: string | boolean;
70
73
  }
71
74
  export declare namespace permissions {
72
75
  let _default_1: boolean;
@@ -186,5 +189,5 @@ export declare namespace elasticSearch {
186
189
  let url_1: string;
187
190
  export { url_1 as url };
188
191
  }
189
- export declare let pluginsPath: string;
192
+ export declare let pluginsPath: string | any[];
190
193
  export { _export as export, _import as import };
@@ -50,3 +50,4 @@ export let debug: boolean;
50
50
  export namespace redis {
51
51
  let database: number;
52
52
  }
53
+ export let pluginsPath: string[];
@@ -0,0 +1,8 @@
1
+ declare const _default: {
2
+ consumer: {
3
+ channel: {
4
+ ack: jest.Mock<any, any, any>;
5
+ };
6
+ };
7
+ };
8
+ export default _default;
@@ -0,0 +1,7 @@
1
+ declare const _default: {
2
+ info: jest.Mock<any, any, any>;
3
+ warn: jest.Mock<any, any, any>;
4
+ error: jest.Mock<any, any, any>;
5
+ debug: jest.Mock<any, any, any>;
6
+ };
7
+ export default _default;
@@ -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;
@@ -16,6 +17,7 @@ export declare const mockAttrTree: {
16
17
  system?: boolean;
17
18
  readonly?: boolean;
18
19
  required?: boolean;
20
+ character_limit?: number;
19
21
  format?: AttributeFormats;
20
22
  linked_library?: string;
21
23
  embedded_fields?: import("../../_types/attribute").IEmbeddedAttribute[];
@@ -27,8 +29,9 @@ export declare const mockAttrTree: {
27
29
  values_list?: import("../../_types/attribute").IValuesListConf;
28
30
  reverse_link?: string | IAttribute;
29
31
  unique?: boolean;
30
- maxLength?: number;
31
32
  description?: import("../../_types/systemTranslation").ISystemTranslation;
33
+ settings?: import("../../_types/shared").IKeyValue<any>;
34
+ multi_link_display_option?: MultiLinkDisplayOption;
32
35
  label?: import("../../_types/systemTranslation").ISystemTranslation | string;
33
36
  };
34
37
  export declare const mockAttrTreeVersionable: IAttribute;
@@ -0,0 +1,4 @@
1
+ import { Mockify } from '@leav/utils';
2
+ import { ICacheService, ICachesService } from '../../infra/cache/cacheService';
3
+ export declare const mockCacheService: Mockify<ICacheService>;
4
+ export declare const mockCachesService: Mockify<ICachesService>;
@@ -1,2 +1,3 @@
1
+ import { IView } from '../../_types/views';
1
2
  export declare const mockViewBeforeCreation: IView;
2
3
  export declare const mockView: MandatoryId<IView>;
@@ -0,0 +1 @@
1
+ export declare const baseAttributes: string[];
@@ -1 +1,2 @@
1
1
  export declare const APP_DEFAULT_NAME = "LEAV Engine";
2
+ export declare const DEFAULT_APPLICATION = "portal";
@@ -1,7 +1,7 @@
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';
@@ -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,8 +23,9 @@ 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
+ settings?: IKeyValue<any>;
28
+ multi_link_display_option?: MultiLinkDisplayOption;
27
29
  }
28
30
  export declare enum ValueVersionMode {
29
31
  SIMPLE = "simple",
@@ -87,6 +89,11 @@ export declare enum AttributeFormats {
87
89
  COLOR = "color",
88
90
  RICH_TEXT = "rich_text"
89
91
  }
92
+ export declare enum MultiLinkDisplayOption {
93
+ AVATAR = "avatar",
94
+ TAG = "tag",
95
+ BADGE_QTY = "badge_qty"
96
+ }
90
97
  export declare enum IOTypes {
91
98
  STRING = "string",
92
99
  NUMBER = "number",
@@ -28,7 +28,7 @@ export interface IConfig {
28
28
  dbProfiler: IDbProfilerConfig;
29
29
  instanceId: string;
30
30
  elasticSearch: IElasticSearchConfig;
31
- pluginsPath: string;
31
+ pluginsPath: string[];
32
32
  }
33
33
  export declare enum CoreMode {
34
34
  SERVER = "server",
@@ -75,11 +75,15 @@ export interface IAuth {
75
75
  wellKnownEndpoint?: string;
76
76
  clientId?: string;
77
77
  postLogoutRedirectUri?: string;
78
+ skipLogoutConfirmationPage?: boolean;
79
+ idTokenUserClaim?: string;
78
80
  } | {
79
81
  enable: true;
80
82
  wellKnownEndpoint: string;
81
83
  clientId: string;
82
84
  postLogoutRedirectUri: string;
85
+ skipLogoutConfirmationPage?: boolean;
86
+ idTokenUserClaim: string;
83
87
  };
84
88
  testApiKey?: string;
85
89
  }
@@ -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;
@@ -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;
@@ -13,6 +19,7 @@ export interface IRecordForm {
13
19
  recordId: string;
14
20
  dependencyAttributes?: string[];
15
21
  elements: IFormElementWithValues[];
22
+ sidePanel: IFormSidePanel;
16
23
  }
17
24
  export declare enum FormElementTypes {
18
25
  field = "field",
@@ -48,3 +55,6 @@ export type IFormElementWithValuesAndChildren = IFormElementWithValues & {
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
- DIRECTORIES = "directories"
51
+ JOIN = "join"
48
52
  }
49
53
  export declare const USERS_LIBRARY = "users";
50
54
  export declare const USERS_GROUPS_LIBRARY = "users_groups";
@@ -3,12 +3,12 @@ import { IDbProfiler } from './dbProfiler';
3
3
  import { IValueVersion } from './value';
4
4
  export interface IQueryInfos {
5
5
  userId: string;
6
+ groupsId?: string[];
6
7
  lang?: string;
7
8
  defaultLang?: string;
8
9
  queryId?: string;
9
10
  version?: IValueVersion;
10
11
  treeId?: string;
11
- groupsId?: string[];
12
12
  applicationId?: string;
13
13
  dbProfiler?: IDbProfiler;
14
14
  trigger?: 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;
@@ -2,6 +2,8 @@ import { AnyPrimitive, Override } from '@leav/utils';
2
2
  import { IDbEdge } from 'infra/db/_types';
3
3
  import { IRecord } from './record';
4
4
  import { ITreeNode, TreePaths } 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,12 @@ export interface IDbValueVersion {
28
30
  export interface IValueMetadata {
29
31
  [fieldName: string]: IStandardValue | AnyPrimitive;
30
32
  }
31
- export interface IGenericValue {
32
- id_value?: string;
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
+ */
38
+ id_value?: string | null;
33
39
  attribute?: string;
34
40
  created_at?: number;
35
41
  modified_at?: number;
@@ -37,21 +43,60 @@ export interface IGenericValue {
37
43
  modified_by?: string;
38
44
  version?: IValueVersion;
39
45
  metadata?: IValueMetadata;
46
+ }
47
+ export interface IGenericValue extends ICommonGenericSaveValue {
40
48
  isInherited?: boolean;
41
49
  isCalculated?: boolean;
42
50
  }
43
51
  export interface IStandardValue extends IGenericValue {
44
- payload?: any;
52
+ /**
53
+ * Computed value after get actions on attribute are done
54
+ * TODO remove that any when possible
55
+ * TODO remove optional when possible
56
+ */
57
+ payload?: any | EmptyValue;
58
+ /**
59
+ * Raw value from the database, before any computation
60
+ * TODO, remove that any when possible
61
+ */
45
62
  raw_payload?: any;
46
63
  }
47
64
  export interface ILinkValue extends IGenericValue {
65
+ /**
66
+ * Linked record
67
+ * TODO remove optional when possible
68
+ */
48
69
  payload?: IRecord;
49
70
  }
50
71
  export interface ITreeValue extends IGenericValue {
72
+ /**
73
+ * Linked tree node
74
+ * TODO remove optional when possible
75
+ */
51
76
  payload?: ITreeNode;
52
77
  treeId: string;
53
78
  }
54
79
  export type IValue = IStandardValue | ILinkValue | ITreeValue;
80
+ type IGenericSaveValue = ICommonGenericSaveValue;
81
+ export interface ISaveStandardValue extends IGenericSaveValue {
82
+ /**
83
+ * Any base type value to save
84
+ */
85
+ payload: number | string | boolean | EmptyValue | null;
86
+ }
87
+ export interface ISaveLinkValue extends IGenericSaveValue {
88
+ /**
89
+ * Record id to link
90
+ */
91
+ payload: string | null;
92
+ }
93
+ export interface ISaveTreeValue extends IGenericSaveValue {
94
+ /**
95
+ * Tree node id to link
96
+ */
97
+ payload: string | null;
98
+ }
99
+ export type ISaveValue = ISaveStandardValue | ISaveLinkValue | ISaveTreeValue;
55
100
  export interface IDateRangeValue<T = string | number> {
56
101
  from: T;
57
102
  to: T;
@@ -76,3 +121,18 @@ export interface IValueEdge extends IDbEdge {
76
121
  version?: IDbValueVersion;
77
122
  metadata?: IValueMetadata;
78
123
  }
124
+ export interface IValueByAttributeType {
125
+ [AttributeTypes.SIMPLE]: IStandardValue;
126
+ [AttributeTypes.SIMPLE_LINK]: ILinkValue;
127
+ [AttributeTypes.ADVANCED]: IStandardValue;
128
+ [AttributeTypes.ADVANCED_LINK]: ILinkValue;
129
+ [AttributeTypes.TREE]: ITreeValue;
130
+ }
131
+ export interface ISaveValueByAttributeType {
132
+ [AttributeTypes.SIMPLE]: ISaveStandardValue;
133
+ [AttributeTypes.SIMPLE_LINK]: ISaveLinkValue;
134
+ [AttributeTypes.ADVANCED]: ISaveStandardValue;
135
+ [AttributeTypes.ADVANCED_LINK]: ISaveLinkValue;
136
+ [AttributeTypes.TREE]: ISaveTreeValue;
137
+ }
138
+ export {};
@@ -10,40 +10,43 @@ export declare enum ViewSizes {
10
10
  MEDIUM = "MEDIUM",
11
11
  BIG = "BIG"
12
12
  }
13
- declare global {
14
- interface IView extends ICoreEntity {
15
- shared?: boolean;
16
- created_by?: string;
17
- created_at?: number;
18
- modified_at?: number;
19
- library?: string;
20
- description?: ISystemTranslation;
21
- color?: string;
22
- display?: IViewDisplay;
23
- filters?: IRecordFilterLight[];
24
- sort?: IRecordSortLight[];
25
- valuesVersions?: IViewValuesVersion;
26
- attributes?: string[];
27
- }
28
- interface IViewDisplay {
29
- type: ViewTypes;
30
- size: ViewSizes;
31
- }
32
- type ViewFromGraphQL = Omit<IView, 'valuesVersions' | 'settings'> & {
33
- valuesVersions: IViewValuesVersionForGraphql[];
13
+ interface IViewDisplay {
14
+ type: ViewTypes;
15
+ size: ViewSizes;
16
+ }
17
+ interface IViewValuesVersion {
18
+ [treeId: string]: string;
19
+ }
20
+ export interface IView extends ICoreEntity {
21
+ shared?: boolean;
22
+ created_by?: string;
23
+ created_at?: number;
24
+ modified_at?: number;
25
+ library?: string;
26
+ description?: ISystemTranslation;
27
+ color?: string;
28
+ display?: IViewDisplay;
29
+ filters?: IRecordFilterLight[];
30
+ sort?: IRecordSortLight[];
31
+ valuesVersions?: IViewValuesVersion;
32
+ attributes?: string[];
33
+ }
34
+ export interface IViewValuesVersionForGraphql {
35
+ treeId: string;
36
+ treeNode: {
37
+ id: string;
34
38
  };
35
- interface IViewFilterOptions extends ICoreEntityFilterOptions {
36
- created_by?: string;
37
- library?: string;
38
- type?: ViewTypes;
39
- }
40
- interface IViewValuesVersion {
41
- [treeId: string]: string;
42
- }
43
- interface IViewValuesVersionForGraphql {
44
- treeId: string;
45
- treeNode: {
46
- id: string;
47
- };
48
- }
49
39
  }
40
+ export type ViewFromGraphQL = Omit<IView, 'valuesVersions' | 'settings'> & {
41
+ valuesVersions: IViewValuesVersionForGraphql[];
42
+ };
43
+ export type PartialViewFromGraphQL = Omit<IView, 'id' | 'valuesVersions' | 'settings'> & {
44
+ id: string;
45
+ valuesVersions: IViewValuesVersionForGraphql[];
46
+ };
47
+ export interface IViewFilterOptions extends ICoreEntityFilterOptions {
48
+ created_by?: string;
49
+ library?: string;
50
+ type?: ViewTypes;
51
+ }
52
+ export {};
@@ -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;
@@ -13,6 +13,7 @@ import { IOIDCClientService } from '../../infra/oidc/oidcClientService';
13
13
  import { InitQueryContextFunc } from '../helpers/initQueryContext';
14
14
  import { IConvertOIDCIdentifier } from '../helpers/convertOIDCIdentifier';
15
15
  import { IncomingHttpHeaders } from 'http';
16
+ import { IRecordRepo } from '../../infra/record/recordRepo';
16
17
  export interface IAuthApp {
17
18
  getGraphQLSchema(): IAppGraphQLSchema;
18
19
  validateRequestToken(params: {
@@ -26,6 +27,7 @@ export interface IAuthApp {
26
27
  export interface IAuthAppDeps {
27
28
  'core.domain.value': IValueDomain;
28
29
  'core.domain.record': IRecordDomain;
30
+ 'core.infra.record': IRecordRepo;
29
31
  'core.domain.apiKey': IApiKeyDomain;
30
32
  'core.domain.user': IUserDomain;
31
33
  'core.infra.cache.cacheService': ICachesService;
@@ -35,4 +37,4 @@ export interface IAuthAppDeps {
35
37
  'core.app.helpers.convertOIDCIdentifier': IConvertOIDCIdentifier;
36
38
  config: IConfig;
37
39
  }
38
- export default function ({ 'core.domain.value': valueDomain, 'core.domain.record': recordDomain, 'core.domain.apiKey': apiKeyDomain, 'core.domain.user': userDomain, 'core.utils.logger': logger, 'core.infra.cache.cacheService': cacheService, 'core.infra.oidc.oidcClientService': oidcClientService, 'core.app.helpers.initQueryContext': initQueryContext, 'core.app.helpers.convertOIDCIdentifier': convertOIDCIdentifier, config }: IAuthAppDeps): IAuthApp;
40
+ export default function ({ 'core.domain.value': valueDomain, 'core.domain.record': recordDomain, 'core.infra.record': recordRepo, 'core.domain.apiKey': apiKeyDomain, 'core.domain.user': userDomain, 'core.utils.logger': logger, 'core.infra.cache.cacheService': cacheService, 'core.infra.oidc.oidcClientService': oidcClientService, 'core.app.helpers.initQueryContext': initQueryContext, 'core.app.helpers.convertOIDCIdentifier': convertOIDCIdentifier, config }: IAuthAppDeps): IAuthApp;
@@ -4,6 +4,7 @@ import { IFormDomain } from 'domain/form/formDomain';
4
4
  import { ILibraryDomain } from 'domain/library/libraryDomain';
5
5
  import { IUtils } from 'utils/utils';
6
6
  import { IAppGraphQLSchema } from '_types/graphql';
7
+ import { IfLibraryJoinLinkAttribute } from 'domain/attribute/helpers/ifLibraryJoinLinkAttribute';
7
8
  export interface ICoreFormApp {
8
9
  getGraphQLSchema(): IAppGraphQLSchema;
9
10
  }
@@ -12,9 +13,10 @@ interface IDeps {
12
13
  'core.domain.form': IFormDomain;
13
14
  'core.domain.library': ILibraryDomain;
14
15
  'core.app.helpers.convertVersionFromGqlFormat': ConvertVersionFromGqlFormatFunc;
16
+ 'core.domain.attribute.helpers.ifLibraryJoinLinkAttribute': IfLibraryJoinLinkAttribute;
15
17
  'core.utils': IUtils;
16
18
  }
17
- export default function ({ 'core.domain.attribute': attributeDomain, 'core.domain.form': formDomain, 'core.domain.library': libraryDomain, 'core.app.helpers.convertVersionFromGqlFormat': convertVersionFromGqlFormat, 'core.utils': utils }: IDeps): {
19
+ export default function ({ 'core.domain.attribute': attributeDomain, 'core.domain.form': formDomain, 'core.domain.library': libraryDomain, 'core.app.helpers.convertVersionFromGqlFormat': convertVersionFromGqlFormat, 'core.domain.attribute.helpers.ifLibraryJoinLinkAttribute': ifLibraryJoinLinkAttribute, 'core.utils': utils }: IDeps): {
18
20
  getGraphQLSchema(): IAppGraphQLSchema;
19
21
  };
20
22
  export {};
@@ -57,6 +57,7 @@ export interface IAttributeDomain {
57
57
  attributeId: string;
58
58
  ctx: IQueryInfos;
59
59
  }): Promise<ILibrary[]>;
60
+ getFormAttributes(libraryId: string, formId: string, ctx: IQueryInfos): Promise<IAttribute[]>;
60
61
  doesCompute(attrData: IAttribute): boolean;
61
62
  }
62
63
  export interface IAttributeDomainDeps {
@@ -0,0 +1,11 @@
1
+ import { IAttribute } from '../../../_types/attribute';
2
+ import { IQueryInfos } from '../../../_types/queryInfos';
3
+ import { IAttributeDomain } from 'domain/attribute/attributeDomain';
4
+ import { GetCoreEntityByIdFunc } from 'domain/helpers/getCoreEntityById';
5
+ export type IfLibraryJoinLinkAttributeCallback<R> = (joinLibId: string, joinAttributeProps: IAttribute) => Promise<R>;
6
+ export type IfLibraryJoinLinkAttribute = <R = unknown>(attributeProps: IAttribute, callback: IfLibraryJoinLinkAttributeCallback<R>, ctx: IQueryInfos) => Promise<R | void>;
7
+ export interface IIfLibraryJoinLinkDeps {
8
+ 'core.domain.helpers.getCoreEntityById': GetCoreEntityByIdFunc;
9
+ 'core.domain.attribute': IAttributeDomain;
10
+ }
11
+ export default function ({ 'core.domain.helpers.getCoreEntityById': getCoreEntityById, 'core.domain.attribute': attributeDomain }: IIfLibraryJoinLinkDeps): IfLibraryJoinLinkAttribute;
@@ -0,0 +1 @@
1
+ export { default as ifLibraryJoinLinkAttribute } from './ifLibraryJoinLinkAttribute';
@@ -3,6 +3,8 @@ import { IAdminPermissionDomain } from 'domain/permission/adminPermissionDomain'
3
3
  import { IGlobalSettingsRepo } from 'infra/globalSettings/globalSettingsRepo';
4
4
  import { IGlobalSettings } from '_types/globalSettings';
5
5
  import { IQueryInfos } from '_types/queryInfos';
6
+ import { IUtils } from '../../utils/utils';
7
+ import { ICachesService } from '../../infra/cache/cacheService';
6
8
  export interface IGlobalSettingsDomain {
7
9
  saveSettings({ settings, ctx }: {
8
10
  settings: IGlobalSettings;
@@ -14,5 +16,7 @@ export interface IGlobalSettingsDomainDeps {
14
16
  'core.domain.permission.admin': IAdminPermissionDomain;
15
17
  'core.domain.eventsManager': IEventsManagerDomain;
16
18
  'core.infra.globalSettings': IGlobalSettingsRepo;
19
+ 'core.infra.cache.cacheService': ICachesService;
20
+ 'core.utils': IUtils;
17
21
  }
18
- export default function ({ 'core.domain.permission.admin': adminPermissionDomain, 'core.domain.eventsManager': eventsManagerDomain, 'core.infra.globalSettings': globalSettingsRepo }: IGlobalSettingsDomainDeps): IGlobalSettingsDomain;
22
+ export default function ({ 'core.domain.permission.admin': adminPermissionDomain, 'core.domain.eventsManager': eventsManagerDomain, 'core.infra.globalSettings': globalSettingsRepo, 'core.infra.cache.cacheService': cacheService, 'core.utils': utils }: IGlobalSettingsDomainDeps): IGlobalSettingsDomain;
@@ -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 {
@@ -28,14 +28,6 @@ export interface IGetPermissionsByActionsParams {
28
28
  export type PermByActionsRes = {
29
29
  [name: string]: boolean | null;
30
30
  } | null;
31
- export interface IGetPermissionByUserGroupsParams {
32
- type: PermissionTypes;
33
- action: PermissionsActions;
34
- userGroupsPaths: TreePaths[];
35
- applyTo?: string;
36
- permissionTreeTarget?: IPermissionsTreeTarget;
37
- ctx: IQueryInfos;
38
- }
39
31
  export interface IGetAdminPermissionParams {
40
32
  action: AdminPermissionsActions;
41
33
  userId: string;
@@ -63,7 +55,7 @@ export interface IGetTreeLibraryPermissionParams {
63
55
  treeId: string;
64
56
  libraryId: string;
65
57
  userId: string;
66
- getDefaultPermission?: (params?: IGetDefaultTreeLibraryPermissionParams) => boolean | null;
58
+ getDefaultPermission?: (params?: IGetDefaultTreeLibraryPermissionParams) => Promise<boolean> | boolean;
67
59
  ctx: IQueryInfos;
68
60
  }
69
61
  export interface IGetApplicationPermissionParams {
@@ -12,7 +12,7 @@ interface IGetGlobalPermissionParams {
12
12
  applyTo?: string;
13
13
  userId: string;
14
14
  action: PermissionsActions;
15
- getDefaultPermission?: (params?: IGetDefaultGlobalPermissionParams) => boolean;
15
+ getDefaultPermission?: (params?: IGetDefaultGlobalPermissionParams) => Promise<boolean> | boolean;
16
16
  }
17
17
  interface IGetInheritedGlobalPermissionParams {
18
18
  type: PermissionTypes;