@aristid/leav-types 0.0.7-a0ddd01 → 0.0.7-a25bc3a
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.
- package/apps/core/config/default.d.ts +1 -0
- package/apps/core/src/__tests__/mocks/actionsList.d.ts +6 -0
- package/apps/core/src/_types/actionsList.d.ts +1 -0
- package/apps/core/src/_types/config.d.ts +1 -0
- package/apps/core/src/_types/views.d.ts +1 -9
- package/apps/core/src/app/core/viewApp.d.ts +3 -1
- package/apps/core/src/domain/apiKey/apiKeyDomain.d.ts +3 -1
- package/apps/core/src/domain/attribute/attributeDomain.d.ts +1 -0
- package/apps/core/src/domain/export/exportDomain.d.ts +1 -1
- package/package.json +10 -3
|
@@ -7,6 +7,7 @@ export declare const mockActionStringOutput: {
|
|
|
7
7
|
input_types: ActionsListIOTypes[];
|
|
8
8
|
params?: import("../../_types/actionsList").ActionsListParamsConfig<Record<string | number | symbol, boolean>>[];
|
|
9
9
|
error_message?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
10
|
+
compute: boolean;
|
|
10
11
|
action: (values: import("../../_types/value").IValue[], params: {} & {}, ctx: import("../../_types/actionsList").IActionsListContext) => import("../../_types/actionsList").IActionsListFunctionResult | Promise<import("../../_types/actionsList").IActionsListFunctionResult>;
|
|
11
12
|
};
|
|
12
13
|
export declare const mockActionNumberOutput: {
|
|
@@ -17,6 +18,7 @@ export declare const mockActionNumberOutput: {
|
|
|
17
18
|
input_types: ActionsListIOTypes[];
|
|
18
19
|
params?: import("../../_types/actionsList").ActionsListParamsConfig<Record<string | number | symbol, boolean>>[];
|
|
19
20
|
error_message?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
21
|
+
compute: boolean;
|
|
20
22
|
action: (values: import("../../_types/value").IValue[], params: {} & {}, ctx: import("../../_types/actionsList").IActionsListContext) => import("../../_types/actionsList").IActionsListFunctionResult | Promise<import("../../_types/actionsList").IActionsListFunctionResult>;
|
|
21
23
|
};
|
|
22
24
|
export declare const mockActionBooleanOutput: {
|
|
@@ -27,6 +29,7 @@ export declare const mockActionBooleanOutput: {
|
|
|
27
29
|
input_types: ActionsListIOTypes[];
|
|
28
30
|
params?: import("../../_types/actionsList").ActionsListParamsConfig<Record<string | number | symbol, boolean>>[];
|
|
29
31
|
error_message?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
32
|
+
compute: boolean;
|
|
30
33
|
action: (values: import("../../_types/value").IValue[], params: {} & {}, ctx: import("../../_types/actionsList").IActionsListContext) => import("../../_types/actionsList").IActionsListFunctionResult | Promise<import("../../_types/actionsList").IActionsListFunctionResult>;
|
|
31
34
|
};
|
|
32
35
|
export declare const mockActionObjectOutput: {
|
|
@@ -37,6 +40,7 @@ export declare const mockActionObjectOutput: {
|
|
|
37
40
|
input_types: ActionsListIOTypes[];
|
|
38
41
|
params?: import("../../_types/actionsList").ActionsListParamsConfig<Record<string | number | symbol, boolean>>[];
|
|
39
42
|
error_message?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
43
|
+
compute: boolean;
|
|
40
44
|
action: (values: import("../../_types/value").IValue[], params: {} & {}, ctx: import("../../_types/actionsList").IActionsListContext) => import("../../_types/actionsList").IActionsListFunctionResult | Promise<import("../../_types/actionsList").IActionsListFunctionResult>;
|
|
41
45
|
};
|
|
42
46
|
export declare const mockActionAllOutput: {
|
|
@@ -47,6 +51,7 @@ export declare const mockActionAllOutput: {
|
|
|
47
51
|
output_types: ActionsListIOTypes[];
|
|
48
52
|
params?: import("../../_types/actionsList").ActionsListParamsConfig<Record<string | number | symbol, boolean>>[];
|
|
49
53
|
error_message?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
54
|
+
compute: boolean;
|
|
50
55
|
action: (values: import("../../_types/value").IValue[], params: {} & {}, ctx: import("../../_types/actionsList").IActionsListContext) => import("../../_types/actionsList").IActionsListFunctionResult | Promise<import("../../_types/actionsList").IActionsListFunctionResult>;
|
|
51
56
|
};
|
|
52
57
|
export declare const mockActionValidateFormat: {
|
|
@@ -57,6 +62,7 @@ export declare const mockActionValidateFormat: {
|
|
|
57
62
|
input_types: ActionsListIOTypes[];
|
|
58
63
|
params?: import("../../_types/actionsList").ActionsListParamsConfig<Record<string | number | symbol, boolean>>[];
|
|
59
64
|
error_message?: import("../../_types/systemTranslation").ISystemTranslation;
|
|
65
|
+
compute: boolean;
|
|
60
66
|
action: (values: import("../../_types/value").IValue[], params: {} & {}, ctx: import("../../_types/actionsList").IActionsListContext) => import("../../_types/actionsList").IActionsListFunctionResult | Promise<import("../../_types/actionsList").IActionsListFunctionResult>;
|
|
61
67
|
};
|
|
62
68
|
export declare const mockAvailActions: IActionsListFunction[];
|
|
@@ -57,6 +57,7 @@ export interface IActionsListFunction<ParamsRequired extends Record<string | num
|
|
|
57
57
|
output_types: ActionsListIOTypes[];
|
|
58
58
|
params?: Array<ActionsListParamsConfig<ParamsRequired>>;
|
|
59
59
|
error_message?: ISystemTranslation;
|
|
60
|
+
compute: boolean;
|
|
60
61
|
action: (values: IValue[], params: PartialByCondition<ActionsListParams<keyof ParamsRequired>, ParamsRequired>, ctx: IActionsListContext) => IActionsListFunctionResult | Promise<IActionsListFunctionResult>;
|
|
61
62
|
}
|
|
62
63
|
export interface IActionsListSavedAction {
|
|
@@ -23,23 +23,15 @@ declare global {
|
|
|
23
23
|
filters?: IRecordFilterLight[];
|
|
24
24
|
sort?: IRecordSortLight;
|
|
25
25
|
valuesVersions?: IViewValuesVersion;
|
|
26
|
-
|
|
26
|
+
attributes?: string[];
|
|
27
27
|
}
|
|
28
28
|
interface IViewDisplay {
|
|
29
29
|
type: ViewTypes;
|
|
30
30
|
size: ViewSizes;
|
|
31
31
|
}
|
|
32
|
-
interface IViewSettingsNameVal {
|
|
33
|
-
name: string;
|
|
34
|
-
value: unknown;
|
|
35
|
-
}
|
|
36
32
|
type ViewFromGraphQL = Omit<IView, 'valuesVersions' | 'settings'> & {
|
|
37
33
|
valuesVersions: IViewValuesVersionForGraphql[];
|
|
38
|
-
settings: IViewSettingsNameVal[];
|
|
39
34
|
};
|
|
40
|
-
interface IViewSettings {
|
|
41
|
-
[key: string]: unknown;
|
|
42
|
-
}
|
|
43
35
|
interface IViewFilterOptions extends ICoreEntityFilterOptions {
|
|
44
36
|
created_by?: string;
|
|
45
37
|
library?: string;
|
|
@@ -2,13 +2,15 @@ import { IRecordDomain } from 'domain/record/recordDomain';
|
|
|
2
2
|
import { IViewDomain } from 'domain/view/viewDomain';
|
|
3
3
|
import { IUtils } from 'utils/utils';
|
|
4
4
|
import { IAppGraphQLSchema } from '_types/graphql';
|
|
5
|
+
import { IAttributeDomain } from 'domain/attribute/attributeDomain';
|
|
5
6
|
interface IDeps {
|
|
6
7
|
'core.domain.record': IRecordDomain;
|
|
7
8
|
'core.domain.view': IViewDomain;
|
|
9
|
+
'core.domain.attribute': IAttributeDomain;
|
|
8
10
|
'core.utils': IUtils;
|
|
9
11
|
}
|
|
10
12
|
export interface IViewApp {
|
|
11
13
|
getGraphQLSchema(): Promise<IAppGraphQLSchema>;
|
|
12
14
|
}
|
|
13
|
-
export default function ({ 'core.domain.view': viewDomain, 'core.domain.record': recordDomain, 'core.utils': utils }: IDeps): IViewApp;
|
|
15
|
+
export default function ({ 'core.domain.view': viewDomain, 'core.domain.record': recordDomain, 'core.domain.attribute': attributeDomain, 'core.utils': utils }: IDeps): IViewApp;
|
|
14
16
|
export {};
|
|
@@ -6,6 +6,7 @@ import { IUtils } from 'utils/utils';
|
|
|
6
6
|
import { IApiKey, IGetCoreApiKeysParams } from '_types/apiKey';
|
|
7
7
|
import { IQueryInfos } from '_types/queryInfos';
|
|
8
8
|
import { IList } from '../../_types/list';
|
|
9
|
+
import { IConfig } from '../../_types/config';
|
|
9
10
|
export interface IApiKeyDomain {
|
|
10
11
|
getApiKeys(params: {
|
|
11
12
|
params?: IGetCoreApiKeysParams;
|
|
@@ -35,5 +36,6 @@ export interface IApiKeyDomainDeps {
|
|
|
35
36
|
'core.infra.apiKey': IApiKeyRepo;
|
|
36
37
|
'core.utils': IUtils;
|
|
37
38
|
translator: i18n;
|
|
39
|
+
config: IConfig;
|
|
38
40
|
}
|
|
39
|
-
export default function ({ 'core.domain.permission.admin': adminPermissionDomain, 'core.domain.eventsManager': eventsManagerDomain, 'core.infra.apiKey': apiKeyRepo, 'core.utils': utils }: IApiKeyDomainDeps): IApiKeyDomain;
|
|
41
|
+
export default function ({ 'core.domain.permission.admin': adminPermissionDomain, 'core.domain.eventsManager': eventsManagerDomain, 'core.infra.apiKey': apiKeyRepo, 'core.utils': utils, config }: IApiKeyDomainDeps): IApiKeyDomain;
|
|
@@ -22,7 +22,7 @@ export interface IExportDomain {
|
|
|
22
22
|
exportData(jsonMapping: string, elements: Array<{
|
|
23
23
|
[libraryId: string]: string;
|
|
24
24
|
}>, ctx: IQueryInfos): Promise<Array<{
|
|
25
|
-
[
|
|
25
|
+
[key: string]: any;
|
|
26
26
|
}>>;
|
|
27
27
|
}
|
|
28
28
|
export interface IExportDomainDeps {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aristid/leav-types",
|
|
3
|
-
"version": "0.0.7-
|
|
3
|
+
"version": "0.0.7-a25bc3a",
|
|
4
4
|
"description": "Shared Leav types",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"tscheck": "",
|
|
@@ -9,5 +9,12 @@
|
|
|
9
9
|
"publish-types": "npm publish --access public"
|
|
10
10
|
},
|
|
11
11
|
"license": "LGPL3",
|
|
12
|
-
"repository": "https://github.com/leav-solutions/leav-engine"
|
|
13
|
-
|
|
12
|
+
"repository": "https://github.com/leav-solutions/leav-engine",
|
|
13
|
+
"dependencies": {
|
|
14
|
+
"@leav/utils": "0.0.3",
|
|
15
|
+
"@types/express": "5.0.0",
|
|
16
|
+
"@types/jest": "29.5.14",
|
|
17
|
+
"arangojs": "8.1.0",
|
|
18
|
+
"jest": "29.7.0"
|
|
19
|
+
}
|
|
20
|
+
}
|