@dxs-ts/eveli-ide 0.0.138 → 0.0.140
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/build/burger/api-proc-execution/index.d.ts +1 -0
- package/build/burger/api-proc-execution/proc-exeuction-types.d.ts +24 -0
- package/build/burger/eveli-proc-execution/EveliProcExecution.d.ts +2 -0
- package/build/burger/eveli-proc-execution/index.d.ts +1 -0
- package/build/burger/eveli-task-stats/EveliTaskStats.d.ts +2 -0
- package/build/burger/eveli-task-stats/index.d.ts +1 -0
- package/build/{frontdesk/context/TaskSessionContext.d.ts → burger/eveli-tasks/EveliTaskTableProvider.d.ts} +2 -2
- package/build/burger/eveli-tasks/EveliTasks.d.ts +2 -0
- package/build/burger/eveli-tasks/TaskLink.d.ts +7 -0
- package/build/burger/eveli-tasks/index.d.ts +2 -0
- package/build/burger/eveli-tasks/useTasksTableState.d.ts +8 -0
- package/build/burger/index.d.ts +4 -0
- package/build/eveli-fetch/createFileFetch.d.ts +10 -10
- package/build/fetch/worker.rest.api.assets.workflows.$workflowId.put.d.ts +3 -3
- package/build/fetch/worker.rest.api.assets.workflows.get.d.ts +5 -5
- package/build/fetch/worker.rest.api.processes.get.d.ts +3 -3
- package/build/fetch/worker.rest.api.tasks.unread.get.d.ts +2 -2
- package/build/fetchTree.gen.d.ts +10 -10
- package/build/index.js +35679 -35685
- package/package.json +1 -1
- package/build/frontdesk/dialob/_DialobReviewDialog.d.ts +0 -0
- package/build/frontdesk/types/Process.d.ts +0 -10
- package/build/frontdesk/types/Workflow.d.ts +0 -11
- package/build/frontdesk/types/WorkflowRelease.d.ts +0 -19
- package/build/frontdesk/views/dashboard/DashboardView.d.ts +0 -2
- package/build/frontdesk/views/help/HelpView.d.ts +0 -2
- package/build/frontdesk/views/process/ProcessTable.d.ts +0 -2
- package/build/frontdesk/views/task/TasksTable.d.ts +0 -12
- package/build/frontdesk/views/task/TasksView.d.ts +0 -2
- package/build/frontdesk/views/task/index.d.ts +0 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './proc-exeuction-types';
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
export declare namespace ProcExecutionApi {
|
|
2
|
+
}
|
|
3
|
+
export declare namespace ProcExecutionApi {
|
|
4
|
+
interface ProcessExecution {
|
|
5
|
+
id: number;
|
|
6
|
+
status: string;
|
|
7
|
+
questionnaire: string;
|
|
8
|
+
task?: string;
|
|
9
|
+
userId?: string;
|
|
10
|
+
created: Date;
|
|
11
|
+
workflow: Workflow;
|
|
12
|
+
}
|
|
13
|
+
interface Workflow {
|
|
14
|
+
id: string;
|
|
15
|
+
type: string;
|
|
16
|
+
body: {
|
|
17
|
+
name: string;
|
|
18
|
+
formName: string;
|
|
19
|
+
formTag: string;
|
|
20
|
+
flowName: string;
|
|
21
|
+
updated?: Date;
|
|
22
|
+
};
|
|
23
|
+
}
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './EveliProcExecution';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './EveliTaskStats';
|
|
@@ -7,7 +7,7 @@ export interface TableState {
|
|
|
7
7
|
paging: any;
|
|
8
8
|
setPaging: (paging: any) => void;
|
|
9
9
|
}
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
10
|
+
export declare const EveliTaskTableContext: React.Context<TableState>;
|
|
11
|
+
export declare const EveliTaskTableProvider: React.FC<{
|
|
12
12
|
children: React.ReactNode;
|
|
13
13
|
}>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { Column } from '@material-table/core';
|
|
3
|
+
import { TaskApi } from '../api-task';
|
|
4
|
+
export interface TableState {
|
|
5
|
+
columns: Array<Column<TaskApi.Task>>;
|
|
6
|
+
tableRef: React.MutableRefObject<any>;
|
|
7
|
+
}
|
|
8
|
+
export declare function useTasksTableState(): TableState;
|
package/build/burger/index.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ export * from './api-config';
|
|
|
10
10
|
export * from './api-locale';
|
|
11
11
|
export * from './api-iconbar';
|
|
12
12
|
export * from './api-publications';
|
|
13
|
+
export * from './api-proc-execution';
|
|
13
14
|
export * from './eveli-shell-compose';
|
|
14
15
|
export * from './eveli-search';
|
|
15
16
|
export * from './eveli-alert';
|
|
@@ -19,6 +20,9 @@ export * from './eveli-publications';
|
|
|
19
20
|
export * from './eveli-services';
|
|
20
21
|
export * from './eveli-datepicker';
|
|
21
22
|
export * from './eveli-datetime-formatter';
|
|
23
|
+
export * from './eveli-task-stats';
|
|
24
|
+
export * from './eveli-proc-execution';
|
|
25
|
+
export * from './eveli-tasks';
|
|
22
26
|
export { StyledTreeItem as TreeItem, StyledTreeItemRoot as TreeItemRoot, StyledTreeItemOption as TreeItemOption } from './styles/StyledTreeItem';
|
|
23
27
|
export { StyledSelect as Select, StyledSelectMultiple as SelectMultiple } from './styles/StyledSelect';
|
|
24
28
|
export { StyledTextField as TextField, StyledNumberField as NumberField, StyledFileField as FileField, StyledSearchField as SearchField, StyledDateField as DateField, StyledDateTimeField as DateTimeField } from './styles/StyledInputField';
|
|
@@ -390,11 +390,11 @@ export declare class RootFileFetch {
|
|
|
390
390
|
workflowId: string;
|
|
391
391
|
};
|
|
392
392
|
hook: HookImpl<"worker/rest/api/assets/workflows/$workflowId.PUT", Hook<{}, {
|
|
393
|
-
update: (workflowCommand: import(
|
|
393
|
+
update: (workflowCommand: import("../burger").PublicationApi.AssetService, onOk: () => void) => Promise<void>;
|
|
394
394
|
}>, "worker/rest/api/assets/workflows/$workflowId", "PUT", {
|
|
395
395
|
workflowId: string;
|
|
396
396
|
}, {}, {
|
|
397
|
-
update: (workflowCommand: import(
|
|
397
|
+
update: (workflowCommand: import("../burger").PublicationApi.AssetService, onOk: () => void) => Promise<void>;
|
|
398
398
|
}>;
|
|
399
399
|
} | {
|
|
400
400
|
id: "worker/rest/api/assets/workflows.GET";
|
|
@@ -402,11 +402,11 @@ export declare class RootFileFetch {
|
|
|
402
402
|
method: "GET";
|
|
403
403
|
params: {};
|
|
404
404
|
hook: HookImpl<"worker/rest/api/assets/workflows.GET", Hook<{}, {
|
|
405
|
-
workflows: import(
|
|
406
|
-
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import(
|
|
405
|
+
workflows: import("../burger").PublicationApi.AssetService[] | undefined;
|
|
406
|
+
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import("../burger").PublicationApi.AssetService[], Error>>;
|
|
407
407
|
}>, "worker/rest/api/assets/workflows", "GET", {}, {}, {
|
|
408
|
-
workflows: import(
|
|
409
|
-
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import(
|
|
408
|
+
workflows: import("../burger").PublicationApi.AssetService[] | undefined;
|
|
409
|
+
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import("../burger").PublicationApi.AssetService[], Error>>;
|
|
410
410
|
}>;
|
|
411
411
|
} | {
|
|
412
412
|
id: "worker/rest/api/assets/wrench/commands.POST";
|
|
@@ -664,9 +664,9 @@ export declare class RootFileFetch {
|
|
|
664
664
|
method: "GET";
|
|
665
665
|
params: {};
|
|
666
666
|
hook: HookImpl<"worker/rest/api/processes.GET", Hook<{}, {
|
|
667
|
-
loadProcesses: (query: import('@material-table/core').Query<import(
|
|
667
|
+
loadProcesses: (query: import('@material-table/core').Query<import("../burger").ProcExecutionApi.ProcessExecution>, columns: Array<import('@material-table/core').Column<import("../burger").ProcExecutionApi.ProcessExecution>>) => Promise<import('@material-table/core').QueryResult<import("../burger").ProcExecutionApi.ProcessExecution>>;
|
|
668
668
|
}>, "worker/rest/api/processes", "GET", {}, {}, {
|
|
669
|
-
loadProcesses: (query: import('@material-table/core').Query<import(
|
|
669
|
+
loadProcesses: (query: import('@material-table/core').Query<import("../burger").ProcExecutionApi.ProcessExecution>, columns: Array<import('@material-table/core').Column<import("../burger").ProcExecutionApi.ProcessExecution>>) => Promise<import('@material-table/core').QueryResult<import("../burger").ProcExecutionApi.ProcessExecution>>;
|
|
670
670
|
}>;
|
|
671
671
|
} | {
|
|
672
672
|
id: "worker/rest/api/queues/configs.GET";
|
|
@@ -862,9 +862,9 @@ export declare class RootFileFetch {
|
|
|
862
862
|
method: "GET";
|
|
863
863
|
params: {};
|
|
864
864
|
hook: HookImpl<"worker/rest/api/tasks/unread.GET", Hook<{}, {
|
|
865
|
-
|
|
865
|
+
unreadTasks: string[];
|
|
866
866
|
}>, "worker/rest/api/tasks/unread", "GET", {}, {}, {
|
|
867
|
-
|
|
867
|
+
unreadTasks: string[];
|
|
868
868
|
}>;
|
|
869
869
|
};
|
|
870
870
|
}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PublicationApi } from '../burger';
|
|
2
2
|
export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/assets/workflows/$workflowId.PUT", import('../eveli-fetch').Hook<{}, {
|
|
3
|
-
update: (workflowCommand:
|
|
3
|
+
update: (workflowCommand: PublicationApi.AssetService, onOk: () => void) => Promise<void>;
|
|
4
4
|
}>, "worker/rest/api/assets/workflows/$workflowId", "PUT", {
|
|
5
5
|
workflowId: string;
|
|
6
6
|
}, {}, {
|
|
7
|
-
update: (workflowCommand:
|
|
7
|
+
update: (workflowCommand: PublicationApi.AssetService, onOk: () => void) => Promise<void>;
|
|
8
8
|
}>;
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { PublicationApi } from '../burger';
|
|
2
2
|
export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/assets/workflows.GET", import('../eveli-fetch').Hook<{}, {
|
|
3
|
-
workflows:
|
|
4
|
-
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<
|
|
3
|
+
workflows: PublicationApi.AssetService[] | undefined;
|
|
4
|
+
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<PublicationApi.AssetService[], Error>>;
|
|
5
5
|
}>, "worker/rest/api/assets/workflows", "GET", {}, {}, {
|
|
6
|
-
workflows:
|
|
7
|
-
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<
|
|
6
|
+
workflows: PublicationApi.AssetService[] | undefined;
|
|
7
|
+
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<PublicationApi.AssetService[], Error>>;
|
|
8
8
|
}>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { QueryResult, Column, Query } from '@material-table/core';
|
|
2
|
-
import {
|
|
2
|
+
import { ProcExecutionApi } from '../burger';
|
|
3
3
|
export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/processes.GET", import('../eveli-fetch').Hook<{}, {
|
|
4
|
-
loadProcesses: (query: Query<
|
|
4
|
+
loadProcesses: (query: Query<ProcExecutionApi.ProcessExecution>, columns: Array<Column<ProcExecutionApi.ProcessExecution>>) => Promise<QueryResult<ProcExecutionApi.ProcessExecution>>;
|
|
5
5
|
}>, "worker/rest/api/processes", "GET", {}, {}, {
|
|
6
|
-
loadProcesses: (query: Query<
|
|
6
|
+
loadProcesses: (query: Query<ProcExecutionApi.ProcessExecution>, columns: Array<Column<ProcExecutionApi.ProcessExecution>>) => Promise<QueryResult<ProcExecutionApi.ProcessExecution>>;
|
|
7
7
|
}>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/tasks/unread.GET", import('../eveli-fetch').Hook<{}, {
|
|
2
|
-
|
|
2
|
+
unreadTasks: string[];
|
|
3
3
|
}>, "worker/rest/api/tasks/unread", "GET", {}, {}, {
|
|
4
|
-
|
|
4
|
+
unreadTasks: string[];
|
|
5
5
|
}>;
|
package/build/fetchTree.gen.d.ts
CHANGED
|
@@ -218,18 +218,18 @@ declare const workerRestApiAssetsStencilVersionGETRoute: import('./eveli-fetch')
|
|
|
218
218
|
backend: import('./fetch/worker.rest.api.assets.stencil.version.get.ts').VersionEntity;
|
|
219
219
|
} | undefined>;
|
|
220
220
|
declare const workerRestApiAssetsWorkflowsWorkflowIdPUTRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/workflows/$workflowId.PUT", import('./eveli-fetch').Hook<{}, {
|
|
221
|
-
update: (workflowCommand: import(
|
|
221
|
+
update: (workflowCommand: import("./burger/index.ts").PublicationApi.AssetService, onOk: () => void) => Promise<void>;
|
|
222
222
|
}>, "worker/rest/api/assets/workflows/$workflowId", "PUT", {
|
|
223
223
|
workflowId: string;
|
|
224
224
|
}, {}, {
|
|
225
|
-
update: (workflowCommand: import(
|
|
225
|
+
update: (workflowCommand: import("./burger/index.ts").PublicationApi.AssetService, onOk: () => void) => Promise<void>;
|
|
226
226
|
}>;
|
|
227
227
|
declare const workerRestApiAssetsWorkflowsGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/workflows.GET", import('./eveli-fetch').Hook<{}, {
|
|
228
|
-
workflows: import(
|
|
229
|
-
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import(
|
|
228
|
+
workflows: import("./burger/index.ts").PublicationApi.AssetService[] | undefined;
|
|
229
|
+
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import("./burger/index.ts").PublicationApi.AssetService[], Error>>;
|
|
230
230
|
}>, "worker/rest/api/assets/workflows", "GET", {}, {}, {
|
|
231
|
-
workflows: import(
|
|
232
|
-
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import(
|
|
231
|
+
workflows: import("./burger/index.ts").PublicationApi.AssetService[] | undefined;
|
|
232
|
+
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import("./burger/index.ts").PublicationApi.AssetService[], Error>>;
|
|
233
233
|
}>;
|
|
234
234
|
declare const workerRestApiAssetsWrenchCommandsPOSTRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/wrench/commands.POST", import('./eveli-fetch').Hook<{}, {
|
|
235
235
|
ast: (id: string, body: import("./index.ts").HdesApi.AstCommand[]) => Promise<import("./index.ts").HdesApi.Entity<any>>;
|
|
@@ -361,9 +361,9 @@ declare const workerRestApiPdfGETRoute: import('./eveli-fetch').HookImpl<"worker
|
|
|
361
361
|
pdfTaskLinkCallback: (link: import("./burger/index.ts").TaskApi.TaskLink, taskId: string) => void;
|
|
362
362
|
}>;
|
|
363
363
|
declare const workerRestApiProcessesGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/processes.GET", import('./eveli-fetch').Hook<{}, {
|
|
364
|
-
loadProcesses: (query: import('@material-table/core').Query<import(
|
|
364
|
+
loadProcesses: (query: import('@material-table/core').Query<import("./burger/index.ts").ProcExecutionApi.ProcessExecution>, columns: Array<import('@material-table/core').Column<import("./burger/index.ts").ProcExecutionApi.ProcessExecution>>) => Promise<import('@material-table/core').QueryResult<import("./burger/index.ts").ProcExecutionApi.ProcessExecution>>;
|
|
365
365
|
}>, "worker/rest/api/processes", "GET", {}, {}, {
|
|
366
|
-
loadProcesses: (query: import('@material-table/core').Query<import(
|
|
366
|
+
loadProcesses: (query: import('@material-table/core').Query<import("./burger/index.ts").ProcExecutionApi.ProcessExecution>, columns: Array<import('@material-table/core').Column<import("./burger/index.ts").ProcExecutionApi.ProcessExecution>>) => Promise<import('@material-table/core').QueryResult<import("./burger/index.ts").ProcExecutionApi.ProcessExecution>>;
|
|
367
367
|
}>;
|
|
368
368
|
declare const workerRestApiQueuesConfigsGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/queues/configs.GET", import('./eveli-fetch').Hook<{}, {
|
|
369
369
|
getOneChannelConfig: () => Promise<import("./index.ts").QueueApi.ChannelConfig>;
|
|
@@ -465,9 +465,9 @@ declare const workerRestApiTasksPOSTRoute: import('./eveli-fetch').HookImpl<"wor
|
|
|
465
465
|
createTask: (task: import("./burger/index.ts").TaskApi.Task) => Promise<import("./burger/index.ts").TaskApi.Task>;
|
|
466
466
|
}>;
|
|
467
467
|
declare const workerRestApiTasksUnreadGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/tasks/unread.GET", import('./eveli-fetch').Hook<{}, {
|
|
468
|
-
|
|
468
|
+
unreadTasks: string[];
|
|
469
469
|
}>, "worker/rest/api/tasks/unread", "GET", {}, {}, {
|
|
470
|
-
|
|
470
|
+
unreadTasks: string[];
|
|
471
471
|
}>;
|
|
472
472
|
declare module './eveli-fetch' {
|
|
473
473
|
interface HookByPath {
|