@dxs-ts/eveli-ide 0.0.137 → 0.0.139

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.
Files changed (42) hide show
  1. package/build/burger/api-locale/index.d.ts +1 -0
  2. package/build/burger/api-locale/useMaterialTableLabels.d.ts +2 -0
  3. package/build/burger/api-publications/index.d.ts +1 -0
  4. package/build/burger/api-publications/publication-types.d.ts +63 -0
  5. package/build/{frontdesk/components/Datepicker.d.ts → burger/eveli-datepicker/EveliDatePicker.d.ts} +2 -3
  6. package/build/burger/eveli-datepicker/index.d.ts +1 -0
  7. package/build/{frontdesk/components/DateTimeFormatter.d.ts → burger/eveli-datetime-formatter/EveliDateTimeFormatter.d.ts} +1 -1
  8. package/build/burger/eveli-datetime-formatter/index.d.ts +1 -0
  9. package/build/burger/eveli-publications/index.d.ts +1 -0
  10. package/build/{frontdesk/views/workflow → burger/eveli-services}/CreateOrEditWorkflowDialog.d.ts +3 -4
  11. package/build/burger/eveli-services/EveliServices.d.ts +2 -0
  12. package/build/burger/eveli-services/index.d.ts +1 -0
  13. package/build/burger/index.d.ts +5 -0
  14. package/build/eveli-fetch/createFileFetch.d.ts +20 -20
  15. package/build/fetch/worker.rest.api.assets.any-tags.stencil-tags.get.d.ts +3 -3
  16. package/build/fetch/worker.rest.api.assets.any-tags.wrench-tags.get.d.ts +3 -3
  17. package/build/fetch/worker.rest.api.assets.deployments.$deploymentId.get.d.ts +3 -3
  18. package/build/fetch/worker.rest.api.assets.deployments.post.d.ts +3 -3
  19. package/build/fetch/worker.rest.api.assets.publications.get.d.ts +5 -5
  20. package/build/fetch/worker.rest.api.assets.publications.post.d.ts +3 -3
  21. package/build/fetch/worker.rest.api.assets.workflows.$workflowId.put.d.ts +3 -3
  22. package/build/fetch/worker.rest.api.assets.workflows.get.d.ts +5 -5
  23. package/build/fetchTree.gen.d.ts +20 -20
  24. package/build/frontdesk/types/Dialob.d.ts +0 -6
  25. package/build/frontdesk/types/Process.d.ts +11 -1
  26. package/build/index.js +18348 -18350
  27. package/package.json +1 -1
  28. package/build/frontdesk/explorer/MenuItem.d.ts +0 -8
  29. package/build/frontdesk/explorer/index.d.ts +0 -1
  30. package/build/frontdesk/types/AssetTag.d.ts +0 -6
  31. package/build/frontdesk/types/Publication.d.ts +0 -36
  32. package/build/frontdesk/types/Workflow.d.ts +0 -11
  33. package/build/frontdesk/types/WorkflowRelease.d.ts +0 -19
  34. package/build/frontdesk/util/localizeTable.d.ts +0 -35
  35. package/build/frontdesk/views/process/ProcessView.d.ts +0 -2
  36. package/build/frontdesk/views/publications/PublicationsView.d.ts +0 -2
  37. package/build/frontdesk/views/workflow/WorkflowTable.d.ts +0 -9
  38. package/build/frontdesk/views/workflow/WorkflowView.d.ts +0 -2
  39. package/build/stencil/version.d.ts +0 -2
  40. /package/build/{frontdesk/views/publications/PublicationsTable.d.ts → burger/eveli-publications/EveliPublicationsTable.d.ts} +0 -0
  41. /package/build/{frontdesk/views/publications → burger/eveli-publications}/NewPublicationDialog.d.ts +0 -0
  42. /package/build/{frontdesk/views/publications → burger/eveli-publications}/UploadPublicationDialog.d.ts +0 -0
@@ -1,2 +1,3 @@
1
1
  export * from './LocaleProvider';
2
2
  export * from './locale-types';
3
+ export * from './useMaterialTableLabels';
@@ -0,0 +1,2 @@
1
+ import { Localization } from '@material-table/core';
2
+ export declare function useMaterialTableLabels(): Localization;
@@ -0,0 +1 @@
1
+ export * from './publication-types';
@@ -0,0 +1,63 @@
1
+ export declare namespace PublicationApi {
2
+ }
3
+ export declare namespace PublicationApi {
4
+ interface Publication {
5
+ id: string;
6
+ name: string;
7
+ externalId: string | undefined;
8
+ external: boolean | undefined;
9
+ description: string;
10
+ createdBy: string;
11
+ createdAt: string;
12
+ startsAt: string;
13
+ status: 'BUILDING' | 'READY' | 'ERROR' | 'DEPLOYED';
14
+ errors: Object;
15
+ sources: {
16
+ stencil: Object;
17
+ wrench: Object;
18
+ dialob: Object[];
19
+ } | undefined;
20
+ }
21
+ interface PublicationInit {
22
+ name: string;
23
+ liveDate: string | null;
24
+ description: string | null;
25
+ stencilTag: string | null;
26
+ wrenchTag: string | null;
27
+ }
28
+ interface PublicationUpload {
29
+ name: string;
30
+ externalId: string | undefined;
31
+ description: string;
32
+ createdBy: string;
33
+ startsAt: string;
34
+ sources: {
35
+ stencil: Object;
36
+ wrench: Object;
37
+ dialob: Object[];
38
+ } | undefined;
39
+ }
40
+ interface AssetTag {
41
+ name: string;
42
+ description: string;
43
+ user: string;
44
+ created: Date;
45
+ }
46
+ interface AssetFormTag {
47
+ formLabel: string;
48
+ formName: string;
49
+ tagFormId: string;
50
+ tagName: string;
51
+ }
52
+ interface AssetService {
53
+ id: string;
54
+ type: string;
55
+ body: {
56
+ name: string;
57
+ formName: string;
58
+ formTag: string;
59
+ flowName: string;
60
+ updated?: Date;
61
+ };
62
+ }
63
+ }
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
- type Props = {
2
+ export type EveliDatePickerProps = {
3
3
  field: any;
4
4
  form: any;
5
5
  meta: any;
@@ -9,5 +9,4 @@ type Props = {
9
9
  fullWidth?: boolean;
10
10
  [x: string]: any;
11
11
  };
12
- export declare const Datepicker: React.FC<Props>;
13
- export {};
12
+ export declare const EveliDatePicker: React.FC<EveliDatePickerProps>;
@@ -0,0 +1 @@
1
+ export * from './EveliDatePicker';
@@ -1,4 +1,4 @@
1
1
  import { default as React } from 'react';
2
- export declare const DateTimeFormatter: React.FC<{
2
+ export declare const EveliDateTimeFormatter: React.FC<{
3
3
  value: any;
4
4
  }>;
@@ -0,0 +1 @@
1
+ export * from './EveliDateTimeFormatter';
@@ -0,0 +1 @@
1
+ export * from './EveliPublicationsTable';
@@ -1,11 +1,10 @@
1
1
  import { default as React } from 'react';
2
- import { Workflow } from '../../types/Workflow';
3
- import { DialobFormTag } from '../../types';
2
+ import { PublicationApi } from '../api-publications';
4
3
  export interface CreateOrEditWorkflowDialogProps {
5
4
  onSubmit: () => void;
6
- workflow: Workflow | null;
5
+ workflow: PublicationApi.AssetService | null;
7
6
  open: boolean;
8
7
  setOpen: (open: boolean) => void;
9
- dialobTags: DialobFormTag[];
8
+ dialobTags: PublicationApi.AssetFormTag[];
10
9
  }
11
10
  export declare const CreateOrEditWorkflowDialog: React.FC<CreateOrEditWorkflowDialogProps>;
@@ -0,0 +1,2 @@
1
+ import { default as React } from 'react';
2
+ export declare const EveliServices: React.FC<{}>;
@@ -0,0 +1 @@
1
+ export * from './EveliServices';
@@ -9,11 +9,16 @@ export * from './api-iam';
9
9
  export * from './api-config';
10
10
  export * from './api-locale';
11
11
  export * from './api-iconbar';
12
+ export * from './api-publications';
12
13
  export * from './eveli-shell-compose';
13
14
  export * from './eveli-search';
14
15
  export * from './eveli-alert';
15
16
  export * from './eveli-activities';
16
17
  export * from './eveli-theme';
18
+ export * from './eveli-publications';
19
+ export * from './eveli-services';
20
+ export * from './eveli-datepicker';
21
+ export * from './eveli-datetime-formatter';
17
22
  export { StyledTreeItem as TreeItem, StyledTreeItemRoot as TreeItemRoot, StyledTreeItemOption as TreeItemOption } from './styles/StyledTreeItem';
18
23
  export { StyledSelect as Select, StyledSelectMultiple as SelectMultiple } from './styles/StyledSelect';
19
24
  export { StyledTextField as TextField, StyledNumberField as NumberField, StyledFileField as FileField, StyledSearchField as SearchField, StyledDateField as DateField, StyledDateTimeField as DateTimeField } from './styles/StyledInputField';
@@ -162,9 +162,9 @@ export declare class RootFileFetch {
162
162
  method: "GET";
163
163
  params: {};
164
164
  hook: HookImpl<"worker/rest/api/assets/any-tags/stencil-tags.GET", Hook<{}, {
165
- contentTags: import('../frontdesk/types/AssetTag').AssetTag[] | undefined;
165
+ contentTags: import("../burger").PublicationApi.AssetTag[] | undefined;
166
166
  }>, "worker/rest/api/assets/any-tags/stencil-tags", "GET", {}, {}, {
167
- contentTags: import('../frontdesk/types/AssetTag').AssetTag[] | undefined;
167
+ contentTags: import("../burger").PublicationApi.AssetTag[] | undefined;
168
168
  }>;
169
169
  } | {
170
170
  id: "worker/rest/api/assets/any-tags/wrench-tags.GET";
@@ -172,9 +172,9 @@ export declare class RootFileFetch {
172
172
  method: "GET";
173
173
  params: {};
174
174
  hook: HookImpl<"worker/rest/api/assets/any-tags/wrench-tags.GET", Hook<{}, {
175
- wrenchTags: import('../frontdesk/types/AssetTag').AssetTag[] | undefined;
175
+ wrenchTags: import("../burger").PublicationApi.AssetTag[] | undefined;
176
176
  }>, "worker/rest/api/assets/any-tags/wrench-tags", "GET", {}, {}, {
177
- wrenchTags: import('../frontdesk/types/AssetTag').AssetTag[] | undefined;
177
+ wrenchTags: import("../burger").PublicationApi.AssetTag[] | undefined;
178
178
  }>;
179
179
  } | {
180
180
  id: "worker/rest/api/assets/deployments/$deploymentId.GET";
@@ -184,11 +184,11 @@ export declare class RootFileFetch {
184
184
  deploymentId: string;
185
185
  };
186
186
  hook: HookImpl<"worker/rest/api/assets/deployments/$deploymentId.GET", Hook<{}, {
187
- getRelease: (releaseTag: import('../frontdesk/types/Publication').Publication) => Promise<void>;
187
+ getRelease: (releaseTag: import("../burger").PublicationApi.Publication) => Promise<void>;
188
188
  }>, "worker/rest/api/assets/deployments/$deploymentId", "GET", {
189
189
  deploymentId: string;
190
190
  }, {}, {
191
- getRelease: (releaseTag: import('../frontdesk/types/Publication').Publication) => Promise<void>;
191
+ getRelease: (releaseTag: import("../burger").PublicationApi.Publication) => Promise<void>;
192
192
  }>;
193
193
  } | {
194
194
  id: "worker/rest/api/assets/deployments/$deploymentId.PUT";
@@ -216,9 +216,9 @@ export declare class RootFileFetch {
216
216
  method: "POST";
217
217
  params: {};
218
218
  hook: HookImpl<"worker/rest/api/assets/deployments.POST", Hook<{}, {
219
- saveDeployment: (init: import('../frontdesk/types/Publication').PublicationUpload, onSucess: () => void) => Promise<void>;
219
+ saveDeployment: (init: import("../burger").PublicationApi.PublicationUpload, onSucess: () => void) => Promise<void>;
220
220
  }>, "worker/rest/api/assets/deployments", "POST", {}, {}, {
221
- saveDeployment: (init: import('../frontdesk/types/Publication').PublicationUpload, onSucess: () => void) => Promise<void>;
221
+ saveDeployment: (init: import("../burger").PublicationApi.PublicationUpload, onSucess: () => void) => Promise<void>;
222
222
  }>;
223
223
  } | {
224
224
  id: "worker/rest/api/assets/dialob.GET";
@@ -286,12 +286,12 @@ export declare class RootFileFetch {
286
286
  method: "GET";
287
287
  params: {};
288
288
  hook: HookImpl<"worker/rest/api/assets/publications.GET", Hook<{}, {
289
- assetReleases: import('../frontdesk/types/Publication').Publication[] | undefined;
290
- refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import('../frontdesk/types/Publication').Publication[], Error>>;
289
+ assetReleases: import("../burger").PublicationApi.Publication[] | undefined;
290
+ refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import("../burger").PublicationApi.Publication[], Error>>;
291
291
  isLoading: boolean;
292
292
  }>, "worker/rest/api/assets/publications", "GET", {}, {}, {
293
- assetReleases: import('../frontdesk/types/Publication').Publication[] | undefined;
294
- refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import('../frontdesk/types/Publication').Publication[], Error>>;
293
+ assetReleases: import("../burger").PublicationApi.Publication[] | undefined;
294
+ refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import("../burger").PublicationApi.Publication[], Error>>;
295
295
  isLoading: boolean;
296
296
  }>;
297
297
  } | {
@@ -300,9 +300,9 @@ export declare class RootFileFetch {
300
300
  method: "POST";
301
301
  params: {};
302
302
  hook: HookImpl<"worker/rest/api/assets/publications.POST", Hook<{}, {
303
- savePublication: (init: import('../frontdesk/types/Publication').PublicationInit, onSucess: () => void) => Promise<void>;
303
+ savePublication: (init: import("../burger").PublicationApi.PublicationInit, onSucess: () => void) => Promise<void>;
304
304
  }>, "worker/rest/api/assets/publications", "POST", {}, {}, {
305
- savePublication: (init: import('../frontdesk/types/Publication').PublicationInit, onSucess: () => void) => Promise<void>;
305
+ savePublication: (init: import("../burger").PublicationApi.PublicationInit, onSucess: () => void) => Promise<void>;
306
306
  }>;
307
307
  } | {
308
308
  id: "worker/rest/api/assets/stencil/$assetType.DELETE";
@@ -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('../frontdesk/types/Workflow').Workflow, onOk: () => void) => Promise<void>;
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('../frontdesk/types/Workflow').Workflow, onOk: () => void) => Promise<void>;
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('../frontdesk/types/Workflow').Workflow[] | undefined;
406
- refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import('../frontdesk/types/Workflow').Workflow[], Error>>;
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('../frontdesk/types/Workflow').Workflow[] | undefined;
409
- refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import('../frontdesk/types/Workflow').Workflow[], Error>>;
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";
@@ -1,6 +1,6 @@
1
- import { AssetTag } from '../frontdesk/types/AssetTag';
1
+ import { PublicationApi } from '../burger';
2
2
  export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/assets/any-tags/stencil-tags.GET", import('../eveli-fetch').Hook<{}, {
3
- contentTags: AssetTag[] | undefined;
3
+ contentTags: PublicationApi.AssetTag[] | undefined;
4
4
  }>, "worker/rest/api/assets/any-tags/stencil-tags", "GET", {}, {}, {
5
- contentTags: AssetTag[] | undefined;
5
+ contentTags: PublicationApi.AssetTag[] | undefined;
6
6
  }>;
@@ -1,6 +1,6 @@
1
- import { AssetTag } from '../frontdesk/types/AssetTag';
1
+ import { PublicationApi } from '../burger';
2
2
  export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/assets/any-tags/wrench-tags.GET", import('../eveli-fetch').Hook<{}, {
3
- wrenchTags: AssetTag[] | undefined;
3
+ wrenchTags: PublicationApi.AssetTag[] | undefined;
4
4
  }>, "worker/rest/api/assets/any-tags/wrench-tags", "GET", {}, {}, {
5
- wrenchTags: AssetTag[] | undefined;
5
+ wrenchTags: PublicationApi.AssetTag[] | undefined;
6
6
  }>;
@@ -1,8 +1,8 @@
1
- import { Publication } from '../frontdesk/types/Publication';
1
+ import { PublicationApi } from '../burger';
2
2
  export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/assets/deployments/$deploymentId.GET", import('../eveli-fetch').Hook<{}, {
3
- getRelease: (releaseTag: Publication) => Promise<void>;
3
+ getRelease: (releaseTag: PublicationApi.Publication) => Promise<void>;
4
4
  }>, "worker/rest/api/assets/deployments/$deploymentId", "GET", {
5
5
  deploymentId: string;
6
6
  }, {}, {
7
- getRelease: (releaseTag: Publication) => Promise<void>;
7
+ getRelease: (releaseTag: PublicationApi.Publication) => Promise<void>;
8
8
  }>;
@@ -1,6 +1,6 @@
1
- import { PublicationUpload } from '../frontdesk/types/Publication';
1
+ import { PublicationApi } from '../burger';
2
2
  export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/assets/deployments.POST", import('../eveli-fetch').Hook<{}, {
3
- saveDeployment: (init: PublicationUpload, onSucess: () => void) => Promise<void>;
3
+ saveDeployment: (init: PublicationApi.PublicationUpload, onSucess: () => void) => Promise<void>;
4
4
  }>, "worker/rest/api/assets/deployments", "POST", {}, {}, {
5
- saveDeployment: (init: PublicationUpload, onSucess: () => void) => Promise<void>;
5
+ saveDeployment: (init: PublicationApi.PublicationUpload, onSucess: () => void) => Promise<void>;
6
6
  }>;
@@ -1,10 +1,10 @@
1
- import { Publication } from '../frontdesk/types/Publication';
1
+ import { PublicationApi } from '../burger';
2
2
  export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/assets/publications.GET", import('../eveli-fetch').Hook<{}, {
3
- assetReleases: Publication[] | undefined;
4
- refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<Publication[], Error>>;
3
+ assetReleases: PublicationApi.Publication[] | undefined;
4
+ refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<PublicationApi.Publication[], Error>>;
5
5
  isLoading: boolean;
6
6
  }>, "worker/rest/api/assets/publications", "GET", {}, {}, {
7
- assetReleases: Publication[] | undefined;
8
- refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<Publication[], Error>>;
7
+ assetReleases: PublicationApi.Publication[] | undefined;
8
+ refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<PublicationApi.Publication[], Error>>;
9
9
  isLoading: boolean;
10
10
  }>;
@@ -1,6 +1,6 @@
1
- import { PublicationInit } from '../frontdesk/types/Publication';
1
+ import { PublicationApi } from '../burger';
2
2
  export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/assets/publications.POST", import('../eveli-fetch').Hook<{}, {
3
- savePublication: (init: PublicationInit, onSucess: () => void) => Promise<void>;
3
+ savePublication: (init: PublicationApi.PublicationInit, onSucess: () => void) => Promise<void>;
4
4
  }>, "worker/rest/api/assets/publications", "POST", {}, {}, {
5
- savePublication: (init: PublicationInit, onSucess: () => void) => Promise<void>;
5
+ savePublication: (init: PublicationApi.PublicationInit, onSucess: () => void) => Promise<void>;
6
6
  }>;
@@ -1,8 +1,8 @@
1
- import { Workflow } from '../frontdesk/types/Workflow';
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: Workflow, onOk: () => void) => Promise<void>;
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: Workflow, onOk: () => void) => Promise<void>;
7
+ update: (workflowCommand: PublicationApi.AssetService, onOk: () => void) => Promise<void>;
8
8
  }>;
@@ -1,8 +1,8 @@
1
- import { Workflow } from '../frontdesk/types/Workflow';
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: Workflow[] | undefined;
4
- refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<Workflow[], Error>>;
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: Workflow[] | undefined;
7
- refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<Workflow[], Error>>;
6
+ workflows: PublicationApi.AssetService[] | undefined;
7
+ refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<PublicationApi.AssetService[], Error>>;
8
8
  }>;
@@ -98,21 +98,21 @@ declare const statisticsTaskOverdueGETRoute: import('./eveli-fetch').HookImpl<"s
98
98
  }[] | undefined;
99
99
  }>;
100
100
  declare const workerRestApiAssetsAnyTagsStencilTagsGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/any-tags/stencil-tags.GET", import('./eveli-fetch').Hook<{}, {
101
- contentTags: import('./frontdesk/types/AssetTag.ts').AssetTag[] | undefined;
101
+ contentTags: import("./burger/index.ts").PublicationApi.AssetTag[] | undefined;
102
102
  }>, "worker/rest/api/assets/any-tags/stencil-tags", "GET", {}, {}, {
103
- contentTags: import('./frontdesk/types/AssetTag.ts').AssetTag[] | undefined;
103
+ contentTags: import("./burger/index.ts").PublicationApi.AssetTag[] | undefined;
104
104
  }>;
105
105
  declare const workerRestApiAssetsAnyTagsWrenchTagsGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/any-tags/wrench-tags.GET", import('./eveli-fetch').Hook<{}, {
106
- wrenchTags: import('./frontdesk/types/AssetTag.ts').AssetTag[] | undefined;
106
+ wrenchTags: import("./burger/index.ts").PublicationApi.AssetTag[] | undefined;
107
107
  }>, "worker/rest/api/assets/any-tags/wrench-tags", "GET", {}, {}, {
108
- wrenchTags: import('./frontdesk/types/AssetTag.ts').AssetTag[] | undefined;
108
+ wrenchTags: import("./burger/index.ts").PublicationApi.AssetTag[] | undefined;
109
109
  }>;
110
110
  declare const workerRestApiAssetsDeploymentsDeploymentIdGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/deployments/$deploymentId.GET", import('./eveli-fetch').Hook<{}, {
111
- getRelease: (releaseTag: import('./frontdesk/types/Publication.ts').Publication) => Promise<void>;
111
+ getRelease: (releaseTag: import("./burger/index.ts").PublicationApi.Publication) => Promise<void>;
112
112
  }>, "worker/rest/api/assets/deployments/$deploymentId", "GET", {
113
113
  deploymentId: string;
114
114
  }, {}, {
115
- getRelease: (releaseTag: import('./frontdesk/types/Publication.ts').Publication) => Promise<void>;
115
+ getRelease: (releaseTag: import("./burger/index.ts").PublicationApi.Publication) => Promise<void>;
116
116
  }>;
117
117
  declare const workerRestApiAssetsDeploymentsDeploymentIdPUTRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/deployments/$deploymentId.PUT", import('./eveli-fetch').Hook<{}, {
118
118
  saveDeployment: (init: {
@@ -128,9 +128,9 @@ declare const workerRestApiAssetsDeploymentsDeploymentIdPUTRoute: import('./evel
128
128
  }, onSucess: () => void) => Promise<void>;
129
129
  }>;
130
130
  declare const workerRestApiAssetsDeploymentsPOSTRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/deployments.POST", import('./eveli-fetch').Hook<{}, {
131
- saveDeployment: (init: import('./frontdesk/types/Publication.ts').PublicationUpload, onSucess: () => void) => Promise<void>;
131
+ saveDeployment: (init: import("./burger/index.ts").PublicationApi.PublicationUpload, onSucess: () => void) => Promise<void>;
132
132
  }>, "worker/rest/api/assets/deployments", "POST", {}, {}, {
133
- saveDeployment: (init: import('./frontdesk/types/Publication.ts').PublicationUpload, onSucess: () => void) => Promise<void>;
133
+ saveDeployment: (init: import("./burger/index.ts").PublicationApi.PublicationUpload, onSucess: () => void) => Promise<void>;
134
134
  }>;
135
135
  declare const workerRestApiAssetsDialobGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/dialob.GET", import('./eveli-fetch').Hook<{}, {
136
136
  dialobForms: import('./frontdesk/types/Dialob.ts').DialobFormEntry[] | undefined;
@@ -164,18 +164,18 @@ declare const workerRestApiAssetsDialobTagsGETRoute: import('./eveli-fetch').Hoo
164
164
  allTags: import("./index.ts").StencilApi.DialobTagAsset[];
165
165
  }>;
166
166
  declare const workerRestApiAssetsPublicationsGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/publications.GET", import('./eveli-fetch').Hook<{}, {
167
- assetReleases: import('./frontdesk/types/Publication.ts').Publication[] | undefined;
168
- refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import('./frontdesk/types/Publication.ts').Publication[], Error>>;
167
+ assetReleases: import("./burger/index.ts").PublicationApi.Publication[] | undefined;
168
+ refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import("./burger/index.ts").PublicationApi.Publication[], Error>>;
169
169
  isLoading: boolean;
170
170
  }>, "worker/rest/api/assets/publications", "GET", {}, {}, {
171
- assetReleases: import('./frontdesk/types/Publication.ts').Publication[] | undefined;
172
- refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import('./frontdesk/types/Publication.ts').Publication[], Error>>;
171
+ assetReleases: import("./burger/index.ts").PublicationApi.Publication[] | undefined;
172
+ refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import("./burger/index.ts").PublicationApi.Publication[], Error>>;
173
173
  isLoading: boolean;
174
174
  }>;
175
175
  declare const workerRestApiAssetsPublicationsPOSTRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/publications.POST", import('./eveli-fetch').Hook<{}, {
176
- savePublication: (init: import('./frontdesk/types/Publication.ts').PublicationInit, onSucess: () => void) => Promise<void>;
176
+ savePublication: (init: import("./burger/index.ts").PublicationApi.PublicationInit, onSucess: () => void) => Promise<void>;
177
177
  }>, "worker/rest/api/assets/publications", "POST", {}, {}, {
178
- savePublication: (init: import('./frontdesk/types/Publication.ts').PublicationInit, onSucess: () => void) => Promise<void>;
178
+ savePublication: (init: import("./burger/index.ts").PublicationApi.PublicationInit, onSucess: () => void) => Promise<void>;
179
179
  }>;
180
180
  declare const workerRestApiAssetsStencilAssetTypeDELETERoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/stencil/$assetType.DELETE", import('./eveli-fetch').Hook<{}, {
181
181
  delete: () => import("./index.ts").StencilApi.DeleteBuilder;
@@ -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('./frontdesk/types/Workflow.ts').Workflow, onOk: () => void) => Promise<void>;
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('./frontdesk/types/Workflow.ts').Workflow, onOk: () => void) => Promise<void>;
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('./frontdesk/types/Workflow.ts').Workflow[] | undefined;
229
- refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import('./frontdesk/types/Workflow.ts').Workflow[], Error>>;
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('./frontdesk/types/Workflow.ts').Workflow[] | undefined;
232
- refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import('./frontdesk/types/Workflow.ts').Workflow[], Error>>;
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>>;
@@ -25,12 +25,6 @@ export interface DialobCreateFormCommand {
25
25
  purpose: string;
26
26
  title: string;
27
27
  }
28
- export interface DialobFormTag {
29
- formLabel: string;
30
- formName: string;
31
- tagFormId: string;
32
- tagName: string;
33
- }
34
28
  export interface DialobQuestionnaireMetadata {
35
29
  status: 'NEW' | 'OPEN' | 'COMPLETED';
36
30
  formId: string;
@@ -1,4 +1,3 @@
1
- import { Workflow } from './Workflow';
2
1
  export interface Process {
3
2
  id: number;
4
3
  status: string;
@@ -8,3 +7,14 @@ export interface Process {
8
7
  created: Date;
9
8
  workflow: Workflow;
10
9
  }
10
+ export interface Workflow {
11
+ id: string;
12
+ type: string;
13
+ body: {
14
+ name: string;
15
+ formName: string;
16
+ formTag: string;
17
+ flowName: string;
18
+ updated?: Date;
19
+ };
20
+ }