@aristid/leav-types 0.0.7-2a7610e → 0.0.7-2d1cda7
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/src/_types/views.d.ts +1 -1
- package/apps/core/src/domain/export/exportDomain.d.ts +7 -1
- package/apps/core/src/errors/ApplicationError.d.ts +1 -1
- package/apps/core/src/errors/LeavError.d.ts +3 -3
- package/apps/core/src/infra/db/migrations/005-viewSortToArray.d.ts +7 -0
- package/package.json +7 -2
|
@@ -19,12 +19,18 @@ export interface IExportParams {
|
|
|
19
19
|
}
|
|
20
20
|
export interface IExportDomain {
|
|
21
21
|
exportExcel(params: IExportParams, task?: ITaskFuncParams): Promise<string>;
|
|
22
|
-
exportData(
|
|
22
|
+
exportData(mapping: IExportMapping, elements: Array<{
|
|
23
23
|
[libraryId: string]: string;
|
|
24
24
|
}>, ctx: IQueryInfos): Promise<Array<{
|
|
25
25
|
[key: string]: any;
|
|
26
26
|
}>>;
|
|
27
27
|
}
|
|
28
|
+
export interface IExportMapping {
|
|
29
|
+
[key: string]: {
|
|
30
|
+
attribute: string;
|
|
31
|
+
rawValue?: boolean;
|
|
32
|
+
};
|
|
33
|
+
}
|
|
28
34
|
export interface IExportDomainDeps {
|
|
29
35
|
'core.domain.record': IRecordDomain;
|
|
30
36
|
'core.domain.attribute': IAttributeDomain;
|
|
@@ -3,7 +3,7 @@ export declare enum ApplicationErrorType {
|
|
|
3
3
|
UNKNOWN_APP_ERROR = "unknown_app",
|
|
4
4
|
FORBIDDEN_ERROR = "forbidden"
|
|
5
5
|
}
|
|
6
|
-
export default class ApplicationError extends LeavError<{}> {
|
|
6
|
+
export default class ApplicationError extends LeavError<{}, ApplicationErrorType> {
|
|
7
7
|
applicationErrorType: ApplicationErrorType;
|
|
8
8
|
appEndpoint: string;
|
|
9
9
|
statusCode: number;
|
|
@@ -7,13 +7,13 @@ interface ILeavErrorDetails {
|
|
|
7
7
|
fields?: ErrorFieldDetail<any>;
|
|
8
8
|
record?: ILeavErrorRecord;
|
|
9
9
|
}
|
|
10
|
-
export default class LeavError<T> extends Error {
|
|
10
|
+
export default class LeavError<T, E = ErrorTypes> extends Error {
|
|
11
11
|
/**
|
|
12
12
|
* Details about fields concerned by this permission
|
|
13
13
|
*/
|
|
14
14
|
fields?: ErrorFieldDetail<T>;
|
|
15
|
-
type:
|
|
15
|
+
type: E;
|
|
16
16
|
record?: ILeavErrorRecord;
|
|
17
|
-
constructor(type:
|
|
17
|
+
constructor(type: E, message?: string, details?: ILeavErrorDetails);
|
|
18
18
|
}
|
|
19
19
|
export {};
|
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-2d1cda7",
|
|
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
|
-
"
|
|
20
|
+
"awilix": "12.0.4",
|
|
21
|
+
"i18next": "24.2.0",
|
|
22
|
+
"jest": "29.7.0",
|
|
23
|
+
"winston": "2.4.6"
|
|
19
24
|
}
|
|
20
25
|
}
|