@aristid/leav-types 0.0.7-763e02a → 0.0.7-772f4dca

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 (99) 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/getConditionPart/getConditionPart.test.d.ts +1 -0
  4. package/apps/core/src/__tests__/e2e/api/joinLibraries/joinLibraries.test.d.ts +1 -0
  5. package/apps/core/src/__tests__/mockers/amqp.d.ts +8 -0
  6. package/apps/core/src/__tests__/mockers/logger.d.ts +7 -0
  7. package/apps/core/src/__tests__/mocks/attribute.d.ts +4 -1
  8. package/apps/core/src/__tests__/mocks/cache.d.ts +4 -0
  9. package/apps/core/src/_constants/attributes.d.ts +1 -0
  10. package/apps/core/src/_types/attribute.d.ts +8 -1
  11. package/apps/core/src/_types/config.d.ts +5 -1
  12. package/apps/core/src/_types/dbProfiler.d.ts +20 -1
  13. package/apps/core/src/_types/forms.d.ts +17 -7
  14. package/apps/core/src/_types/globalSettings.d.ts +2 -0
  15. package/apps/core/src/_types/library.d.ts +5 -1
  16. package/apps/core/src/_types/permissions.d.ts +2 -1
  17. package/apps/core/src/_types/queryInfos.d.ts +6 -1
  18. package/apps/core/src/_types/record.d.ts +4 -4
  19. package/apps/core/src/_types/tree.d.ts +2 -1
  20. package/apps/core/src/_types/value.d.ts +66 -5
  21. package/apps/core/src/_types/views.d.ts +4 -0
  22. package/apps/core/src/app/application/applicationApp.d.ts +3 -7
  23. package/apps/core/src/app/auth/authApp.d.ts +7 -6
  24. package/apps/core/src/app/core/actionListApp.d.ts +2 -4
  25. package/apps/core/src/app/core/apiKeyApp/apiKeyApp.d.ts +2 -4
  26. package/apps/core/src/app/core/attributeApp/attributeApp.d.ts +2 -5
  27. package/apps/core/src/app/core/coreApp.d.ts +2 -4
  28. package/apps/core/src/app/core/exportApp.d.ts +2 -4
  29. package/apps/core/src/app/core/filesManagerApp.d.ts +3 -5
  30. package/apps/core/src/app/core/formApp/_types.d.ts +10 -0
  31. package/apps/core/src/app/core/formApp/formApp.d.ts +4 -5
  32. package/apps/core/src/app/core/globalSettingsApp.d.ts +3 -6
  33. package/apps/core/src/app/core/importApp.d.ts +2 -4
  34. package/apps/core/src/app/core/libraryApp/libraryApp.d.ts +2 -5
  35. package/apps/core/src/app/core/logApp.d.ts +2 -4
  36. package/apps/core/src/app/core/permissionApp/permissionApp.d.ts +2 -4
  37. package/apps/core/src/app/core/pluginsApp.d.ts +2 -3
  38. package/apps/core/src/app/core/recordApp/recordApp.d.ts +2 -5
  39. package/apps/core/src/app/core/tasksManagerApp.d.ts +2 -3
  40. package/apps/core/src/app/core/treeApp/treeApp.d.ts +5 -6
  41. package/apps/core/src/app/core/userDataApp.d.ts +2 -4
  42. package/apps/core/src/app/core/valueApp.d.ts +2 -4
  43. package/apps/core/src/app/core/versionProfileApp/versionProfileApp.d.ts +2 -4
  44. package/apps/core/src/app/core/viewApp.d.ts +2 -4
  45. package/apps/core/src/app/endpoint/endpointApp.d.ts +3 -8
  46. package/apps/core/src/app/graphql/graphqlApp.d.ts +8 -0
  47. package/apps/core/src/domain/attribute/helpers/ifLibraryJoinLinkAttribute.d.ts +11 -0
  48. package/apps/core/src/domain/attribute/helpers/ifLibraryJoinLinkAttribute.spec.d.ts +1 -0
  49. package/apps/core/src/domain/attribute/helpers/index.d.ts +1 -0
  50. package/apps/core/src/domain/filesManager/helpers/handleFileSystemEvent/handleMoveEvent.d.ts +1 -1
  51. package/apps/core/src/domain/form/formDomain.d.ts +9 -1
  52. package/apps/core/src/domain/globalSettings/globalSettingsDomain.d.ts +5 -1
  53. package/apps/core/src/domain/helpers/calculationVariable/index.d.ts +2 -1
  54. package/apps/core/src/domain/import/importDomain.d.ts +1 -1
  55. package/apps/core/src/domain/indexationManager/indexationManagerDomain.d.ts +4 -2
  56. package/apps/core/src/domain/permission/_types.d.ts +11 -11
  57. package/apps/core/src/domain/permission/helpers/globalPermission.d.ts +1 -1
  58. package/apps/core/src/domain/permission/helpers/permissionByUserGroups.d.ts +22 -4
  59. package/apps/core/src/domain/permission/helpers/reducePermissionsArray.d.ts +1 -1
  60. package/apps/core/src/domain/permission/recordPermissionDomain.d.ts +4 -1
  61. package/apps/core/src/domain/record/_types.d.ts +4 -3
  62. package/apps/core/src/domain/record/helpers/createRecord.d.ts +21 -0
  63. package/apps/core/src/domain/record/helpers/deleteRecord.d.ts +19 -0
  64. package/apps/core/src/domain/record/helpers/getAccessPermissionFilters.d.ts +24 -0
  65. package/apps/core/src/domain/record/helpers/index.d.ts +3 -0
  66. package/apps/core/src/domain/record/recordDomain.d.ts +23 -3
  67. package/apps/core/src/domain/tree/treeDomain.d.ts +2 -2
  68. package/apps/core/src/domain/value/helpers/{canSaveValue.d.ts → canSaveRecordValue.d.ts} +3 -3
  69. package/apps/core/src/domain/value/helpers/isEmptyValue.d.ts +5 -0
  70. package/apps/core/src/domain/value/helpers/prepareValue.d.ts +3 -3
  71. package/apps/core/src/domain/value/helpers/saveOneValue.d.ts +2 -2
  72. package/apps/core/src/domain/value/helpers/validateValue.d.ts +4 -4
  73. package/apps/core/src/domain/value/valueDomain.d.ts +11 -4
  74. package/apps/core/src/errors/LeavError.d.ts +6 -0
  75. package/apps/core/src/infra/attributeTypes/attributeAdvancedLinkRepo.d.ts +5 -2
  76. package/apps/core/src/infra/attributeTypes/attributeAdvancedRepo.d.ts +3 -1
  77. package/apps/core/src/infra/attributeTypes/attributeSimpleLinkRepo.d.ts +5 -2
  78. package/apps/core/src/infra/attributeTypes/attributeSimpleRepo.d.ts +3 -1
  79. package/apps/core/src/infra/attributeTypes/attributeTreeRepo.d.ts +3 -1
  80. package/apps/core/src/infra/attributeTypes/attributeTypesRepo.d.ts +29 -23
  81. package/apps/core/src/infra/db/dbUtils.d.ts +1 -3
  82. package/apps/core/src/infra/db/migrations/008-addSkeletonApp.d.ts +7 -0
  83. package/apps/core/src/infra/db/migrations/009-addDisplayMultiLinkOptAttributeProperty.d.ts +11 -0
  84. package/apps/core/src/infra/db/migrations/010-formSidePanel.d.ts +8 -0
  85. package/apps/core/src/infra/db/migrations/011-moveSkeletonApptoAppStudio.d.ts +7 -0
  86. package/apps/core/src/infra/oidc/oidcClientService.d.ts +3 -1
  87. package/apps/core/src/infra/permission/permissionRepo.d.ts +9 -1
  88. package/apps/core/src/infra/record/helpers/getSearchVariableName.d.ts +1 -1
  89. package/apps/core/src/infra/record/recordRepo.d.ts +2 -0
  90. package/apps/core/src/infra/tree/treeRepo.d.ts +3 -3
  91. package/apps/core/src/infra/value/valueRepo.d.ts +10 -5
  92. package/apps/core/src/interface/server.d.ts +7 -0
  93. package/apps/core/src/pluginsLoader.d.ts +1 -1
  94. package/apps/core/src/utils/dataloader.d.ts +8 -0
  95. package/apps/core/src/utils/helpers/getSystemQueryContext.d.ts +8 -0
  96. package/apps/core/src/utils/index.d.ts +1 -0
  97. package/apps/core/src/utils/utils.d.ts +1 -0
  98. package/libs/utils/src/types/forms.d.ts +8 -1
  99. package/package.json +5 -2
@@ -1,7 +1,7 @@
1
1
  import { IList, IPaginationParams } from '_types/list';
2
2
  import { IQueryInfos } from '_types/queryInfos';
3
3
  import { IRecord } from '_types/record';
4
- import { IGetCoreTreesParams, ITree, ITreeElement, ITreeNode, ITreeNodeLight, TreePaths } from '_types/tree';
4
+ import { IGetCoreTreesParams, ITree, ITreeElement, ITreeNode, ITreeNodeLight, TreePath } from '_types/tree';
5
5
  import { IDbService } from '../db/dbService';
6
6
  import { IDbUtils } from '../db/dbUtils';
7
7
  export interface ITreeRepo {
@@ -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, including element itself, but excluding tree root
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
@@ -124,7 +124,7 @@ export interface ITreeRepo {
124
124
  treeId: string;
125
125
  nodeId: string;
126
126
  ctx: IQueryInfos;
127
- }): Promise<TreePaths>;
127
+ }): Promise<TreePath>;
128
128
  getLinkedRecords(params: {
129
129
  treeId: string;
130
130
  attribute: string;
@@ -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: IValue;
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: IValue;
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
- isValueUnique({ library, recordId, attribute, value, ctx }: {
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
- recordId: string;
43
+ excludedRecordId?: string;
39
44
  attribute: IAttribute;
40
45
  value: IValue;
41
46
  ctx: IQueryInfos;
@@ -3,6 +3,7 @@ import { IAuthApp } from 'app/auth/authApp';
3
3
  import { ICoreApp } from 'app/core/coreApp';
4
4
  import { IGraphqlApp } from 'app/graphql/graphqlApp';
5
5
  import { AwilixContainer } from 'awilix';
6
+ import { Express } from 'express';
6
7
  import { IUtils } from 'utils/utils';
7
8
  import * as winston from 'winston';
8
9
  import { IConfig } from '_types/config';
@@ -13,6 +14,12 @@ export interface IServer {
13
14
  init(): Promise<void>;
14
15
  initConsumers(): Promise<void>;
15
16
  }
17
+ export interface IServerRouteAppModule {
18
+ /**
19
+ * @param app Express instance, can be used to extend the app
20
+ */
21
+ registerRoute(app: Express): void;
22
+ }
16
23
  interface IDeps {
17
24
  config?: IConfig;
18
25
  'core.interface.helpers.handleGraphqlError'?: HandleGraphqlErrorFunc;
@@ -1,2 +1,2 @@
1
1
  import { AwilixContainer } from 'awilix';
2
- export declare const initPlugins: (folder: string | null, depsManager: AwilixContainer) => Promise<void>;
2
+ export declare const initPlugins: (pluginsPath: string[], depsManager: AwilixContainer) => Promise<void>;
@@ -0,0 +1,8 @@
1
+ import DataLoader from 'dataloader';
2
+ import { IQueryInfos } from '_types/queryInfos';
3
+ /**
4
+ * Get or create a DataLoader in the request context.
5
+ * Each usage (not each call) of this function should use a unique name to avoid conflicts among different DataLoaders.
6
+ * Name is used has key to store the DataLoader in ctx.dataLoaders.
7
+ */
8
+ export declare function getOrCreateDataLoaderInCtx<DL extends DataLoader<unknown, unknown>>(ctx: IQueryInfos, name: string, create: () => DL): DL;
@@ -0,0 +1,8 @@
1
+ import { IConfig } from '_types/config';
2
+ import { IQueryInfos } from '_types/queryInfos';
3
+ interface IDeps {
4
+ config?: IConfig;
5
+ }
6
+ export type GetSystemQueryContext = () => IQueryInfos;
7
+ export default function ({ config }: IDeps): GetSystemQueryContext;
8
+ export {};
@@ -1,3 +1,4 @@
1
1
  export { default as logger } from './logger/logger';
2
2
  export { default } from './utils';
3
+ export { default as getSystemQueryContext } from './helpers/getSystemQueryContext';
3
4
  export { TypeGuards } from './typeGuards';
@@ -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,9 @@ 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",
9
+ LINK = "link"
8
10
  }
9
11
  export declare enum FormFieldTypes {
10
12
  TEXT_INPUT = "input_field",
@@ -41,6 +43,10 @@ export interface IFormTabsSettings {
41
43
  export interface IFormTextBlockSettings {
42
44
  content?: string;
43
45
  }
46
+ export interface IFormFrameSettings {
47
+ url: string;
48
+ height?: string;
49
+ }
44
50
  export interface IFormDateFieldSettings extends ICommonFieldsSettings {
45
51
  withTime: boolean;
46
52
  }
@@ -50,5 +56,6 @@ export interface IFormLinkFieldSettings extends ICommonFieldsSettings {
50
56
  label: Record<string, string>;
51
57
  }>;
52
58
  displayRecordIdentity: boolean;
59
+ tagDisplayMode: boolean;
53
60
  }
54
61
  export declare const FORM_ROOT_CONTAINER_ID = "__root";
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "@aristid/leav-types",
3
- "version": "0.0.7-763e02a",
3
+ "version": "0.0.7-772f4dca",
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 build-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
15
  "repository": "https://github.com/leav-solutions/leav-engine",