@dxs-ts/eveli-ide 0.0.175 → 0.0.177
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/eveli-fetch/createFileFetch.d.ts +14 -0
- package/build/eveli-shell/useUtilityClasses.d.ts +1 -5
- package/build/fetch/worker.rest.api.assets.wrench.commands.$id.get.d.ts +8 -0
- package/build/fetchTree.gen.d.ts +16 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +28545 -28462
- package/build/intl/en.d.ts +1 -1
- package/build/intl/index.d.ts +1 -1
- package/build/stencil-setup/index.d.ts +0 -1
- package/build/stencil-sticky-save/StencilStickySave.d.ts +2 -0
- package/build/stencil-sticky-save/index.d.ts +1 -0
- package/build/wrench-setup/index.d.ts +0 -1
- package/build/wrench-sticky-save/WrenchStickySave.d.ts +2 -0
- package/build/wrench-sticky-save/index.d.ts +1 -0
- package/package.json +1 -1
- package/build/stencil-setup/Toolbar.d.ts +0 -2
- package/build/wrench-setup/Toolbar.d.ts +0 -2
|
@@ -396,6 +396,20 @@ export declare class RootFileFetch {
|
|
|
396
396
|
workflows: import("..").PublicationApi.AssetService[] | undefined;
|
|
397
397
|
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import("..").PublicationApi.AssetService[], Error>>;
|
|
398
398
|
}>;
|
|
399
|
+
} | {
|
|
400
|
+
id: "worker/rest/api/assets/wrench/commands/$id.GET";
|
|
401
|
+
path: "worker/rest/api/assets/wrench/commands/$id";
|
|
402
|
+
method: "GET";
|
|
403
|
+
params: {
|
|
404
|
+
id: string;
|
|
405
|
+
};
|
|
406
|
+
hook: HookImpl<"worker/rest/api/assets/wrench/commands/$id.GET", Hook<{}, {
|
|
407
|
+
getCommands: (id: string) => Promise<import("..").HdesApi.AstCommand[]>;
|
|
408
|
+
}>, "worker/rest/api/assets/wrench/commands/$id", "GET", {
|
|
409
|
+
id: string;
|
|
410
|
+
}, {}, {
|
|
411
|
+
getCommands: (id: string) => Promise<import("..").HdesApi.AstCommand[]>;
|
|
412
|
+
}>;
|
|
399
413
|
} | {
|
|
400
414
|
id: "worker/rest/api/assets/wrench/commands.POST";
|
|
401
415
|
path: "worker/rest/api/assets/wrench/commands";
|
|
@@ -13,8 +13,4 @@ export declare const EveliShellRoot: import('@emotion/styled').StyledComponent<i
|
|
|
13
13
|
minibarWidth: number;
|
|
14
14
|
};
|
|
15
15
|
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
16
|
-
export declare const EveliShellMiniBarRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme
|
|
17
|
-
ownerState: {
|
|
18
|
-
unsaved?: boolean;
|
|
19
|
-
};
|
|
20
|
-
}, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
16
|
+
export declare const EveliShellMiniBarRoot: import('@emotion/styled').StyledComponent<import('@mui/system').MUIStyledCommonProps<import('@mui/material').Theme>, import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { HdesApi } from '../api-wrench';
|
|
2
|
+
export declare const Hook: import('../eveli-fetch').HookImpl<"worker/rest/api/assets/wrench/commands/$id.GET", import('../eveli-fetch').Hook<{}, {
|
|
3
|
+
getCommands: (id: string) => Promise<HdesApi.AstCommand[]>;
|
|
4
|
+
}>, "worker/rest/api/assets/wrench/commands/$id", "GET", {
|
|
5
|
+
id: string;
|
|
6
|
+
}, {}, {
|
|
7
|
+
getCommands: (id: string) => Promise<HdesApi.AstCommand[]>;
|
|
8
|
+
}>;
|
package/build/fetchTree.gen.d.ts
CHANGED
|
@@ -224,6 +224,13 @@ declare const workerRestApiAssetsWorkflowsGETRoute: import('./eveli-fetch').Hook
|
|
|
224
224
|
workflows: import("./index.ts").PublicationApi.AssetService[] | undefined;
|
|
225
225
|
refreshWorkflows: (options?: import('@tanstack/react-query').RefetchOptions) => Promise<import('@tanstack/react-query').QueryObserverResult<import("./index.ts").PublicationApi.AssetService[], Error>>;
|
|
226
226
|
}>;
|
|
227
|
+
declare const workerRestApiAssetsWrenchCommandsIdGETRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/wrench/commands/$id.GET", import('./eveli-fetch').Hook<{}, {
|
|
228
|
+
getCommands: (id: string) => Promise<import("./index.ts").HdesApi.AstCommand[]>;
|
|
229
|
+
}>, "worker/rest/api/assets/wrench/commands/$id", "GET", {
|
|
230
|
+
id: string;
|
|
231
|
+
}, {}, {
|
|
232
|
+
getCommands: (id: string) => Promise<import("./index.ts").HdesApi.AstCommand[]>;
|
|
233
|
+
}>;
|
|
227
234
|
declare const workerRestApiAssetsWrenchCommandsPOSTRoute: import('./eveli-fetch').HookImpl<"worker/rest/api/assets/wrench/commands.POST", import('./eveli-fetch').Hook<{}, {
|
|
228
235
|
ast: (id: string, body: import("./index.ts").HdesApi.AstCommand[]) => Promise<import("./index.ts").HdesApi.Entity<any>>;
|
|
229
236
|
}>, "worker/rest/api/assets/wrench/commands", "POST", {}, {}, {
|
|
@@ -691,6 +698,15 @@ declare module './eveli-fetch' {
|
|
|
691
698
|
params: {};
|
|
692
699
|
hook: typeof workerRestApiAssetsWorkflowsGETRoute;
|
|
693
700
|
};
|
|
701
|
+
'worker/rest/api/assets/wrench/commands/$id.GET': {
|
|
702
|
+
id: 'worker/rest/api/assets/wrench/commands/$id.GET';
|
|
703
|
+
path: 'worker/rest/api/assets/wrench/commands/$id';
|
|
704
|
+
method: 'GET';
|
|
705
|
+
params: {
|
|
706
|
+
id: string;
|
|
707
|
+
};
|
|
708
|
+
hook: typeof workerRestApiAssetsWrenchCommandsIdGETRoute;
|
|
709
|
+
};
|
|
694
710
|
'worker/rest/api/assets/wrench/commands.POST': {
|
|
695
711
|
id: 'worker/rest/api/assets/wrench/commands.POST';
|
|
696
712
|
path: 'worker/rest/api/assets/wrench/commands';
|
package/build/index.d.ts
CHANGED
|
@@ -25,6 +25,8 @@ export * from './eveli-tasks';
|
|
|
25
25
|
export * from './eveli-task-composer';
|
|
26
26
|
export * from './eveli-permissions';
|
|
27
27
|
export * from './eveli-permissions-none';
|
|
28
|
+
export * from './wrench-sticky-save';
|
|
29
|
+
export * from './stencil-sticky-save';
|
|
28
30
|
export * from './api-task';
|
|
29
31
|
export * from './api-iam';
|
|
30
32
|
export * from './api-config';
|