@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.
- package/build/burger/api-locale/index.d.ts +1 -0
- package/build/burger/api-locale/useMaterialTableLabels.d.ts +2 -0
- package/build/burger/api-publications/index.d.ts +1 -0
- package/build/burger/api-publications/publication-types.d.ts +63 -0
- package/build/{frontdesk/components/Datepicker.d.ts → burger/eveli-datepicker/EveliDatePicker.d.ts} +2 -3
- package/build/burger/eveli-datepicker/index.d.ts +1 -0
- package/build/{frontdesk/components/DateTimeFormatter.d.ts → burger/eveli-datetime-formatter/EveliDateTimeFormatter.d.ts} +1 -1
- package/build/burger/eveli-datetime-formatter/index.d.ts +1 -0
- package/build/burger/eveli-publications/index.d.ts +1 -0
- package/build/{frontdesk/views/workflow → burger/eveli-services}/CreateOrEditWorkflowDialog.d.ts +3 -4
- package/build/burger/eveli-services/EveliServices.d.ts +2 -0
- package/build/burger/eveli-services/index.d.ts +1 -0
- package/build/burger/index.d.ts +5 -0
- package/build/eveli-fetch/createFileFetch.d.ts +20 -20
- package/build/fetch/worker.rest.api.assets.any-tags.stencil-tags.get.d.ts +3 -3
- package/build/fetch/worker.rest.api.assets.any-tags.wrench-tags.get.d.ts +3 -3
- package/build/fetch/worker.rest.api.assets.deployments.$deploymentId.get.d.ts +3 -3
- package/build/fetch/worker.rest.api.assets.deployments.post.d.ts +3 -3
- package/build/fetch/worker.rest.api.assets.publications.get.d.ts +5 -5
- package/build/fetch/worker.rest.api.assets.publications.post.d.ts +3 -3
- 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/fetchTree.gen.d.ts +20 -20
- package/build/frontdesk/types/Dialob.d.ts +0 -6
- package/build/frontdesk/types/Process.d.ts +11 -1
- package/build/index.js +18348 -18350
- package/package.json +1 -1
- package/build/frontdesk/explorer/MenuItem.d.ts +0 -8
- package/build/frontdesk/explorer/index.d.ts +0 -1
- package/build/frontdesk/types/AssetTag.d.ts +0 -6
- package/build/frontdesk/types/Publication.d.ts +0 -36
- package/build/frontdesk/types/Workflow.d.ts +0 -11
- package/build/frontdesk/types/WorkflowRelease.d.ts +0 -19
- package/build/frontdesk/util/localizeTable.d.ts +0 -35
- package/build/frontdesk/views/process/ProcessView.d.ts +0 -2
- package/build/frontdesk/views/publications/PublicationsView.d.ts +0 -2
- package/build/frontdesk/views/workflow/WorkflowTable.d.ts +0 -9
- package/build/frontdesk/views/workflow/WorkflowView.d.ts +0 -2
- package/build/stencil/version.d.ts +0 -2
- /package/build/{frontdesk/views/publications/PublicationsTable.d.ts → burger/eveli-publications/EveliPublicationsTable.d.ts} +0 -0
- /package/build/{frontdesk/views/publications → burger/eveli-publications}/NewPublicationDialog.d.ts +0 -0
- /package/build/{frontdesk/views/publications → burger/eveli-publications}/UploadPublicationDialog.d.ts +0 -0
|
@@ -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
|
+
}
|
package/build/{frontdesk/components/Datepicker.d.ts → burger/eveli-datepicker/EveliDatePicker.d.ts}
RENAMED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
type
|
|
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
|
|
13
|
-
export {};
|
|
12
|
+
export declare const EveliDatePicker: React.FC<EveliDatePickerProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './EveliDatePicker';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './EveliDateTimeFormatter';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './EveliPublicationsTable';
|
package/build/{frontdesk/views/workflow → burger/eveli-services}/CreateOrEditWorkflowDialog.d.ts
RENAMED
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import { default as React } from 'react';
|
|
2
|
-
import {
|
|
3
|
-
import { DialobFormTag } from '../../types';
|
|
2
|
+
import { PublicationApi } from '../api-publications';
|
|
4
3
|
export interface CreateOrEditWorkflowDialogProps {
|
|
5
4
|
onSubmit: () => void;
|
|
6
|
-
workflow:
|
|
5
|
+
workflow: PublicationApi.AssetService | null;
|
|
7
6
|
open: boolean;
|
|
8
7
|
setOpen: (open: boolean) => void;
|
|
9
|
-
dialobTags:
|
|
8
|
+
dialobTags: PublicationApi.AssetFormTag[];
|
|
10
9
|
}
|
|
11
10
|
export declare const CreateOrEditWorkflowDialog: React.FC<CreateOrEditWorkflowDialogProps>;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './EveliServices';
|
package/build/burger/index.d.ts
CHANGED
|
@@ -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(
|
|
165
|
+
contentTags: import("../burger").PublicationApi.AssetTag[] | undefined;
|
|
166
166
|
}>, "worker/rest/api/assets/any-tags/stencil-tags", "GET", {}, {}, {
|
|
167
|
-
contentTags: import(
|
|
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(
|
|
175
|
+
wrenchTags: import("../burger").PublicationApi.AssetTag[] | undefined;
|
|
176
176
|
}>, "worker/rest/api/assets/any-tags/wrench-tags", "GET", {}, {}, {
|
|
177
|
-
wrenchTags: import(
|
|
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(
|
|
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(
|
|
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(
|
|
219
|
+
saveDeployment: (init: import("../burger").PublicationApi.PublicationUpload, onSucess: () => void) => Promise<void>;
|
|
220
220
|
}>, "worker/rest/api/assets/deployments", "POST", {}, {}, {
|
|
221
|
-
saveDeployment: (init: import(
|
|
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(
|
|
290
|
-
refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import(
|
|
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(
|
|
294
|
-
refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import(
|
|
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(
|
|
303
|
+
savePublication: (init: import("../burger").PublicationApi.PublicationInit, onSucess: () => void) => Promise<void>;
|
|
304
304
|
}>, "worker/rest/api/assets/publications", "POST", {}, {}, {
|
|
305
|
-
savePublication: (init: import(
|
|
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(
|
|
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";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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 {
|
|
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
|
}>;
|
package/build/fetchTree.gen.d.ts
CHANGED
|
@@ -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(
|
|
101
|
+
contentTags: import("./burger/index.ts").PublicationApi.AssetTag[] | undefined;
|
|
102
102
|
}>, "worker/rest/api/assets/any-tags/stencil-tags", "GET", {}, {}, {
|
|
103
|
-
contentTags: import(
|
|
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(
|
|
106
|
+
wrenchTags: import("./burger/index.ts").PublicationApi.AssetTag[] | undefined;
|
|
107
107
|
}>, "worker/rest/api/assets/any-tags/wrench-tags", "GET", {}, {}, {
|
|
108
|
-
wrenchTags: import(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
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(
|
|
168
|
-
refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import(
|
|
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(
|
|
172
|
-
refreshAssetReleases: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import(
|
|
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(
|
|
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(
|
|
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(
|
|
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>>;
|
|
@@ -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
|
+
}
|