@aristid/leav-types 0.0.7-a8412c1 → 0.0.7-aaf726f

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.
@@ -1,4 +1,4 @@
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
3
  export declare const mockUniqueAttrSimple: IAttribute;
4
4
  export declare const mockAttrId: IAttribute;
@@ -31,6 +31,7 @@ export declare const mockAttrTree: {
31
31
  unique?: boolean;
32
32
  description?: import("../../_types/systemTranslation").ISystemTranslation;
33
33
  settings?: import("../../_types/shared").IKeyValue<any>;
34
+ multi_link_display_option?: MultiLinkDisplayOption;
34
35
  label?: import("../../_types/systemTranslation").ISystemTranslation | string;
35
36
  };
36
37
  export declare const mockAttrTreeVersionable: IAttribute;
@@ -25,6 +25,7 @@ export interface IAttribute extends ICoreEntity {
25
25
  unique?: boolean;
26
26
  description?: ISystemTranslation;
27
27
  settings?: IKeyValue<any>;
28
+ multi_link_display_option?: MultiLinkDisplayOption;
28
29
  }
29
30
  export declare enum ValueVersionMode {
30
31
  SIMPLE = "simple",
@@ -88,6 +89,11 @@ export declare enum AttributeFormats {
88
89
  COLOR = "color",
89
90
  RICH_TEXT = "rich_text"
90
91
  }
92
+ export declare enum MultiLinkDisplayOption {
93
+ AVATAR = "avatar",
94
+ TAG = "tag",
95
+ BADGE_QTY = "badge_qty"
96
+ }
91
97
  export declare enum IOTypes {
92
98
  STRING = "string",
93
99
  NUMBER = "number",
@@ -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;
@@ -1,4 +1,5 @@
1
1
  import { ErrorTypes } from '@leav/utils';
2
+ import { Errors } from '_types/errors';
2
3
  import { ICursorPaginationParams, IPaginationParams } from '_types/list';
3
4
  import { IRecord, IRecordFilterLight, IRecordSortLight } from '_types/record';
4
5
  import { IValue, IValuesOptions, IValueVersion } from '_types/value';
@@ -20,10 +21,9 @@ export interface ICreateRecordParams {
20
21
  };
21
22
  }
22
23
  export interface ICreateRecordValueError {
23
- attributeId: string;
24
- type: ErrorTypes;
24
+ attribute: string;
25
+ type: ErrorTypes | Errors;
25
26
  message: string;
26
- id_value?: string;
27
27
  input?: any;
28
28
  }
29
29
  export interface ICreateRecordResult {
@@ -82,6 +82,12 @@ export interface IRecordDomain {
82
82
  filters?: IRecordFilterLight[];
83
83
  ctx: IQueryInfos;
84
84
  }): Promise<IRecord[]>;
85
+ activateRecordsBatch(params: {
86
+ libraryId: string;
87
+ recordsIds?: string[];
88
+ filters?: IRecordFilterLight[];
89
+ ctx: IQueryInfos;
90
+ }): Promise<IRecord[]>;
85
91
  purgeInactiveRecords(params: {
86
92
  libraryId: string;
87
93
  ctx: IQueryInfos;
@@ -14,6 +14,12 @@ export default class LeavError<T, E = ErrorTypes> extends Error {
14
14
  fields?: ErrorFieldDetail<T>;
15
15
  type: E;
16
16
  record?: ILeavErrorRecord;
17
+ /**
18
+ * Use this ID to identify the error in logs or for debugging purposes.
19
+ * It is generated using uuid v1, which includes a timestamp and a unique identifier.
20
+ * This allows for tracking the error across different systems and logs.
21
+ */
22
+ errorId: string;
17
23
  constructor(type: E, message?: string, details?: ILeavErrorDetails);
18
24
  }
19
25
  export {};
@@ -0,0 +1,11 @@
1
+ import { type i18n } from 'i18next';
2
+ import { type IDbService } from '../dbService';
3
+ import { type IConfig } from '../../../_types/config';
4
+ import { type IMigration } from '../../../_types/migration';
5
+ interface IDeps {
6
+ 'core.infra.db.dbService'?: IDbService;
7
+ translator?: i18n;
8
+ config?: IConfig;
9
+ }
10
+ export default function ({ 'core.infra.db.dbService': dbService }?: IDeps): IMigration;
11
+ export {};
@@ -55,5 +55,6 @@ export interface IFormLinkFieldSettings extends ICommonFieldsSettings {
55
55
  label: Record<string, string>;
56
56
  }>;
57
57
  displayRecordIdentity: boolean;
58
+ tagDisplayMode: boolean;
58
59
  }
59
60
  export declare const FORM_ROOT_CONTAINER_ID = "__root";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aristid/leav-types",
3
- "version": "0.0.7-a8412c1",
3
+ "version": "0.0.7-aaf726f",
4
4
  "description": "Shared Leav types",
5
5
  "scripts": {
6
6
  "tscheck": "",