@aristid/leav-types 0.0.7-683846a → 0.0.7-690195df

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 (126) hide show
  1. package/apps/core/config/default.d.ts +15 -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/globalSetup.d.ts +6 -1
  5. package/apps/core/src/__tests__/e2e/api/joinLibraries/joinLibraries.test.d.ts +1 -0
  6. package/apps/core/src/__tests__/integration/globalSetup.d.ts +1 -0
  7. package/apps/core/src/__tests__/integration/globalSetupHook.d.ts +1 -0
  8. package/apps/core/src/__tests__/integration/infra/attributeAdvancedLinkRepo.test.d.ts +1 -0
  9. package/apps/core/src/__tests__/integration/infra/attributeAdvancedRepo.test.d.ts +1 -0
  10. package/apps/core/src/__tests__/integration/infra/attributeSimpleLinkRepo.test.d.ts +1 -0
  11. package/apps/core/src/__tests__/integration/infra/attributeSimpleRepo.test.d.ts +1 -0
  12. package/apps/core/src/__tests__/integration/infra/attributeTreeRepo.test.d.ts +1 -0
  13. package/apps/core/src/__tests__/integration/infra/integrationTestRepoUtils.d.ts +7 -0
  14. package/apps/core/src/__tests__/integration/infra/recordRepo.test.d.ts +1 -0
  15. package/apps/core/src/__tests__/integration/infra/treeRepo.test.d.ts +1 -0
  16. package/apps/core/src/__tests__/integration/teardown.d.ts +1 -0
  17. package/apps/core/src/__tests__/mockers/amqp.d.ts +8 -0
  18. package/apps/core/src/__tests__/mockers/logger.d.ts +7 -0
  19. package/apps/core/src/__tests__/mocks/attribute.d.ts +6 -2
  20. package/apps/core/src/__tests__/mocks/cache.d.ts +4 -0
  21. package/apps/core/src/__tests__/mocks/view.d.ts +1 -0
  22. package/apps/core/src/_constants/attributes.d.ts +1 -0
  23. package/apps/core/src/_constants/globalSettings.d.ts +1 -0
  24. package/apps/core/src/_types/actionsList.d.ts +1 -1
  25. package/apps/core/src/_types/attribute.d.ts +10 -2
  26. package/apps/core/src/_types/config.d.ts +34 -2
  27. package/apps/core/src/_types/dbProfiler.d.ts +20 -1
  28. package/apps/core/src/_types/errors.d.ts +3 -1
  29. package/apps/core/src/_types/events.d.ts +45 -0
  30. package/apps/core/src/_types/forms.d.ts +10 -0
  31. package/apps/core/src/_types/globalSettings.d.ts +3 -0
  32. package/apps/core/src/_types/library.d.ts +12 -1
  33. package/apps/core/src/_types/permissions.d.ts +3 -1
  34. package/apps/core/src/_types/queryInfos.d.ts +6 -1
  35. package/apps/core/src/_types/record.d.ts +4 -4
  36. package/apps/core/src/_types/tree.d.ts +2 -1
  37. package/apps/core/src/_types/value.d.ts +66 -5
  38. package/apps/core/src/_types/views.d.ts +38 -35
  39. package/apps/core/src/app/application/applicationApp.d.ts +6 -8
  40. package/apps/core/src/app/auth/authApp.d.ts +7 -6
  41. package/apps/core/src/app/core/actionListApp.d.ts +2 -4
  42. package/apps/core/src/app/core/apiKeyApp/apiKeyApp.d.ts +2 -4
  43. package/apps/core/src/app/core/attributeApp/attributeApp.d.ts +2 -5
  44. package/apps/core/src/app/core/coreApp.d.ts +2 -4
  45. package/apps/core/src/app/core/exportApp.d.ts +2 -4
  46. package/apps/core/src/app/core/filesManagerApp.d.ts +3 -5
  47. package/apps/core/src/app/core/formApp/formApp.d.ts +6 -5
  48. package/apps/core/src/app/core/globalSettingsApp.d.ts +3 -6
  49. package/apps/core/src/app/core/importApp.d.ts +2 -4
  50. package/apps/core/src/app/core/libraryApp/libraryApp.d.ts +2 -5
  51. package/apps/core/src/app/core/logApp.d.ts +2 -4
  52. package/apps/core/src/app/core/permissionApp/permissionApp.d.ts +2 -4
  53. package/apps/core/src/app/core/pluginsApp.d.ts +2 -3
  54. package/apps/core/src/app/core/recordApp/recordApp.d.ts +2 -5
  55. package/apps/core/src/app/core/tasksManagerApp.d.ts +2 -3
  56. package/apps/core/src/app/core/treeApp/treeApp.d.ts +5 -6
  57. package/apps/core/src/app/core/userDataApp.d.ts +2 -4
  58. package/apps/core/src/app/core/valueApp.d.ts +2 -4
  59. package/apps/core/src/app/core/versionProfileApp/versionProfileApp.d.ts +2 -4
  60. package/apps/core/src/app/core/viewApp.d.ts +2 -4
  61. package/apps/core/src/app/endpoint/endpointApp.d.ts +3 -8
  62. package/apps/core/src/app/graphql/graphqlApp.d.ts +8 -0
  63. package/apps/core/src/domain/attribute/attributeDomain.d.ts +1 -0
  64. package/apps/core/src/domain/attribute/helpers/ifLibraryJoinLinkAttribute.d.ts +11 -0
  65. package/apps/core/src/domain/attribute/helpers/ifLibraryJoinLinkAttribute.spec.d.ts +1 -0
  66. package/apps/core/src/domain/attribute/helpers/index.d.ts +1 -0
  67. package/apps/core/src/domain/eventsManager/eventsManagerDomain.d.ts +3 -2
  68. package/apps/core/src/domain/filesManager/helpers/handleFileSystemEvent/handleMoveEvent.d.ts +1 -1
  69. package/apps/core/src/domain/globalSettings/globalSettingsDomain.d.ts +5 -1
  70. package/apps/core/src/domain/helpers/calculationVariable/index.d.ts +2 -1
  71. package/apps/core/src/domain/import/importDomain.d.ts +12 -2
  72. package/apps/core/src/domain/indexationManager/indexationManagerDomain.d.ts +4 -2
  73. package/apps/core/src/domain/log/logDomain.d.ts +3 -1
  74. package/apps/core/src/domain/permission/_types.d.ts +11 -11
  75. package/apps/core/src/domain/permission/helpers/globalPermission.d.ts +4 -13
  76. package/apps/core/src/domain/permission/helpers/permissionByUserGroups.d.ts +24 -6
  77. package/apps/core/src/domain/permission/helpers/reducePermissionsArray.d.ts +1 -1
  78. package/apps/core/src/domain/permission/helpers/treeBasedPermissions.d.ts +0 -4
  79. package/apps/core/src/domain/permission/permissionDomain.d.ts +1 -0
  80. package/apps/core/src/domain/permission/recordPermissionDomain.d.ts +4 -1
  81. package/apps/core/src/domain/permission/treeNodePermissionDomain.d.ts +2 -2
  82. package/apps/core/src/domain/record/_types.d.ts +4 -3
  83. package/apps/core/src/domain/record/helpers/createRecord.d.ts +22 -0
  84. package/apps/core/src/domain/record/helpers/deleteRecord.d.ts +19 -0
  85. package/apps/core/src/domain/record/helpers/getAccessPermissionFilters.d.ts +24 -0
  86. package/apps/core/src/domain/record/helpers/index.d.ts +3 -0
  87. package/apps/core/src/domain/record/recordDomain.d.ts +34 -3
  88. package/apps/core/src/domain/tree/treeDomain.d.ts +2 -2
  89. package/apps/core/src/domain/value/helpers/{canSaveValue.d.ts → canSaveRecordValue.d.ts} +3 -3
  90. package/apps/core/src/domain/value/helpers/isEmptyValue.d.ts +5 -0
  91. package/apps/core/src/domain/value/helpers/prepareValue.d.ts +3 -3
  92. package/apps/core/src/domain/value/helpers/saveOneValue.d.ts +2 -2
  93. package/apps/core/src/domain/value/helpers/validateValue.d.ts +4 -4
  94. package/apps/core/src/domain/value/valueDomain.d.ts +11 -4
  95. package/apps/core/src/domain/view/viewDomain.d.ts +1 -0
  96. package/apps/core/src/errors/LeavError.d.ts +6 -0
  97. package/apps/core/src/infra/attributeTypes/attributeAdvancedLinkRepo.d.ts +5 -2
  98. package/apps/core/src/infra/attributeTypes/attributeAdvancedRepo.d.ts +3 -1
  99. package/apps/core/src/infra/attributeTypes/attributeSimpleLinkRepo.d.ts +5 -2
  100. package/apps/core/src/infra/attributeTypes/attributeSimpleRepo.d.ts +3 -1
  101. package/apps/core/src/infra/attributeTypes/attributeTreeRepo.d.ts +3 -1
  102. package/apps/core/src/infra/attributeTypes/attributeTypesRepo.d.ts +54 -24
  103. package/apps/core/src/infra/attributeTypes/helpers/getConditionPart.d.ts +1 -1
  104. package/apps/core/src/infra/db/dbUtils.d.ts +1 -3
  105. package/apps/core/src/infra/db/migrations/006-addRequiredAttributeProperty.d.ts +11 -0
  106. package/apps/core/src/infra/db/migrations/007-updateHexColor.d.ts +9 -0
  107. package/apps/core/src/infra/db/migrations/008-addSkeletonApp.d.ts +7 -0
  108. package/apps/core/src/infra/db/migrations/009-addDisplayMultiLinkOptAttributeProperty.d.ts +11 -0
  109. package/apps/core/src/infra/db/migrations/010-formSidePanel.d.ts +8 -0
  110. package/apps/core/src/infra/db/migrations/011-moveSkeletonApptoAppStudio.d.ts +7 -0
  111. package/apps/core/src/infra/oidc/oidcClientService.d.ts +3 -1
  112. package/apps/core/src/infra/permission/permissionRepo.d.ts +9 -1
  113. package/apps/core/src/infra/record/helpers/getSearchVariableName.d.ts +1 -1
  114. package/apps/core/src/infra/record/recordRepo.d.ts +11 -0
  115. package/apps/core/src/infra/tree/treeRepo.d.ts +4 -3
  116. package/apps/core/src/infra/value/valueRepo.d.ts +17 -10
  117. package/apps/core/src/infra/view/_types.d.ts +1 -0
  118. package/apps/core/src/interface/server.d.ts +7 -0
  119. package/apps/core/src/pluginsLoader.d.ts +1 -1
  120. package/apps/core/src/utils/dataloader.d.ts +9 -0
  121. package/apps/core/src/utils/dataloader.spec.d.ts +1 -0
  122. package/apps/core/src/utils/helpers/getSystemQueryContext.d.ts +8 -0
  123. package/apps/core/src/utils/index.d.ts +1 -0
  124. package/apps/core/src/utils/utils.d.ts +1 -0
  125. package/libs/utils/src/types/forms.d.ts +7 -1
  126. package/package.json +11 -3
@@ -1,16 +1,18 @@
1
1
  import { IDbService } from 'infra/db/dbService';
2
+ import { IConfig } from '_types/config';
2
3
  import { IAttribute } from '_types/attribute';
3
4
  import { IQueryInfos } from '_types/queryInfos';
4
- import { IValue, IValuesOptions } from '_types/value';
5
- import { IAttributeTypesRepo, IAttributeWithRevLink } from '../attributeTypes/attributeTypesRepo';
5
+ import { ISaveValue, IValue } from '_types/value';
6
+ import { IAttributeTypesRepo, IAttributeWithRevLink, IGetValuesOptions } from '../attributeTypes/attributeTypesRepo';
6
7
  export declare const VALUES_LINKS_COLLECTION = "core_edge_values_links";
7
8
  export declare const VALUES_COLLECTION = "core_values";
9
+ export declare const EMPTY_VALUE = "__empty_value__";
8
10
  export interface IValueRepo {
9
11
  createValue({ library, recordId, attribute, value, ctx }: {
10
12
  library: string;
11
13
  recordId: string;
12
14
  attribute: IAttributeWithRevLink;
13
- value: IValue;
15
+ value: ISaveValue;
14
16
  ctx: IQueryInfos;
15
17
  }): Promise<IValue>;
16
18
  /**
@@ -20,7 +22,7 @@ export interface IValueRepo {
20
22
  library: string;
21
23
  recordId: string;
22
24
  attribute: IAttributeWithRevLink;
23
- value: IValue;
25
+ value: ISaveValue;
24
26
  ctx: IQueryInfos;
25
27
  }): Promise<IValue>;
26
28
  /**
@@ -33,9 +35,13 @@ export interface IValueRepo {
33
35
  value: IValue;
34
36
  ctx: IQueryInfos;
35
37
  }): Promise<IValue>;
36
- isValueUnique({ library, recordId, attribute, value, ctx }: {
38
+ /**
39
+ * Check if a value is unique expeted for the given record
40
+ * if recordId is null, it will check for the whole library
41
+ */
42
+ isValueUsed({ library, excludedRecordId, attribute, value, ctx }: {
37
43
  library: string;
38
- recordId: string;
44
+ excludedRecordId?: string;
39
45
  attribute: IAttribute;
40
46
  value: IValue;
41
47
  ctx: IQueryInfos;
@@ -50,7 +56,7 @@ export interface IValueRepo {
50
56
  recordId: string;
51
57
  attribute: IAttributeWithRevLink;
52
58
  forceGetAllValues?: boolean;
53
- options?: IValuesOptions;
59
+ options?: IGetValuesOptions;
54
60
  ctx: IQueryInfos;
55
61
  }): Promise<IValue[]>;
56
62
  /**
@@ -76,8 +82,9 @@ export interface IValueRepo {
76
82
  }): Promise<void>;
77
83
  }
78
84
  interface IDeps {
79
- 'core.infra.attributeTypes'?: IAttributeTypesRepo;
80
- 'core.infra.db.dbService'?: IDbService;
85
+ config?: IConfig;
86
+ 'core.infra.attributeTypes': IAttributeTypesRepo;
87
+ 'core.infra.db.dbService': IDbService;
81
88
  }
82
- export default function ({ 'core.infra.attributeTypes': attributeTypesRepo, 'core.infra.db.dbService': dbService }?: IDeps): IValueRepo;
89
+ export default function ({ config, 'core.infra.attributeTypes': attributeTypesRepo, 'core.infra.db.dbService': dbService }: IDeps): IValueRepo;
83
90
  export {};
@@ -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>;
@@ -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,9 @@
1
+ import DataLoader from 'dataloader';
2
+ import { IQueryInfos } from '_types/queryInfos';
3
+ export declare const dataloaderCtxKey: keyof IQueryInfos;
4
+ /**
5
+ * Get or create a DataLoader in the request context.
6
+ * Each usage (not each call) of this function should use a unique name to avoid conflicts among different DataLoaders.
7
+ * Name is used has key to store the DataLoader in ctx.dataLoaders.
8
+ */
9
+ export declare function getOrCreateDataLoaderInCtx<DL extends DataLoader<unknown, unknown>>(ctx: IQueryInfos, name: string, create: () => DL): DL;
@@ -0,0 +1 @@
1
+ export {};
@@ -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,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,20 +1,28 @@
1
1
  {
2
2
  "name": "@aristid/leav-types",
3
- "version": "0.0.7-683846a",
3
+ "version": "0.0.7-690195df",
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",
13
16
  "dependencies": {
14
17
  "@leav/utils": "0.0.3",
18
+ "@types/amqplib": "^0",
15
19
  "@types/express": "5.0.0",
16
20
  "@types/jest": "29.5.14",
21
+ "amqplib": "0.10.5",
17
22
  "arangojs": "8.1.0",
18
- "jest": "29.7.0"
23
+ "awilix": "12.0.4",
24
+ "i18next": "24.2.0",
25
+ "jest": "29.7.0",
26
+ "winston": "2.4.6"
19
27
  }
20
28
  }