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

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.
@@ -15,6 +15,7 @@ export declare const mockAttrTree: {
15
15
  linked_tree: string;
16
16
  system?: boolean;
17
17
  readonly?: boolean;
18
+ required?: boolean;
18
19
  format?: AttributeFormats;
19
20
  linked_library?: string;
20
21
  embedded_fields?: import("../../_types/attribute").IEmbeddedAttribute[];
@@ -30,7 +30,7 @@ export type ActionsListParamsConfig<ParamsRequired extends Record<string, boolea
30
30
  type: 'boolean' | 'string' | 'number';
31
31
  description: string;
32
32
  required: ParamsRequired[Name];
33
- default_value: string;
33
+ helper_value: string;
34
34
  };
35
35
  }[keyof ParamsRequired];
36
36
  export interface IActionsListFunctionResult {
@@ -8,6 +8,7 @@ import { IDateRangeValue } from './value';
8
8
  export interface IAttribute extends ICoreEntity {
9
9
  system?: boolean;
10
10
  readonly?: boolean;
11
+ required?: boolean;
11
12
  type: AttributeTypes;
12
13
  format?: AttributeFormats;
13
14
  linked_library?: string;
@@ -63,6 +63,7 @@ export declare enum Errors {
63
63
  PREVIEWS_SETTINGS_NOT_ALLOWED = "PREVIEWS_SETTINGS_NOT_ALLOWED",
64
64
  PROTECTED_ENDPOINT = "PROTECTED_ENDPOINT",
65
65
  READONLY_ATTRIBUTE = "READONLY_ATTRIBUTE",
66
+ REQUIRED_ATTRIBUTE = "REQUIRED_ATTRIBUTE",
66
67
  REQUIRED_ATTRIBUTE_FORMAT = "REQUIRED_ATTRIBUTE_FORMAT",
67
68
  REQUIRED_ATTRIBUTE_LABEL = "REQUIRED_ATTRIBUTE_LABEL",
68
69
  REQUIRED_ATTRIBUTE_LINKED_LIBRARY = "REQUIRED_ATTRIBUTE_LINKED_LIBRARY",
@@ -21,7 +21,7 @@ declare global {
21
21
  color?: string;
22
22
  display?: IViewDisplay;
23
23
  filters?: IRecordFilterLight[];
24
- sort?: IRecordSortLight;
24
+ sort?: IRecordSortLight[];
25
25
  valuesVersions?: IViewValuesVersion;
26
26
  attributes?: string[];
27
27
  }
@@ -0,0 +1,7 @@
1
+ import { IDbService } from '../dbService';
2
+ import { IMigration } from '_types/migration';
3
+ interface IDeps {
4
+ 'core.infra.db.dbService'?: IDbService;
5
+ }
6
+ export default function ({ 'core.infra.db.dbService': dbService }?: IDeps): IMigration;
7
+ 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 {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aristid/leav-types",
3
- "version": "0.0.7-b70e858",
3
+ "version": "0.0.7-bcac760",
4
4
  "description": "Shared Leav types",
5
5
  "scripts": {
6
6
  "tscheck": "",
@@ -12,9 +12,14 @@
12
12
  "repository": "https://github.com/leav-solutions/leav-engine",
13
13
  "dependencies": {
14
14
  "@leav/utils": "0.0.3",
15
+ "@types/amqplib": "^0",
15
16
  "@types/express": "5.0.0",
16
17
  "@types/jest": "29.5.14",
18
+ "amqplib": "0.10.5",
17
19
  "arangojs": "8.1.0",
18
- "jest": "29.7.0"
20
+ "awilix": "12.0.4",
21
+ "i18next": "24.2.0",
22
+ "jest": "29.7.0",
23
+ "winston": "2.4.6"
19
24
  }
20
25
  }