windmill-cli 1.547.0 → 1.548.1
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/esm/gen/core/OpenAPI.js +1 -1
- package/esm/gen/services.gen.js +32 -0
- package/esm/src/main.js +1 -1
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +17 -1
- package/types/gen/services.gen.d.ts.map +1 -1
- package/types/gen/types.gen.d.ts +18 -0
- package/types/gen/types.gen.d.ts.map +1 -1
- package/types/src/main.d.ts +1 -1
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts +18 -0
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts.map +1 -1
package/types/src/main.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ import { pull as hubPull } from "./commands/hub/hub.js";
|
|
|
22
22
|
import { pull, push } from "./commands/sync/sync.js";
|
|
23
23
|
import { add as workspaceAdd } from "./commands/workspace/workspace.js";
|
|
24
24
|
export { flow, app, script, workspace, resource, resourceType, user, variable, hub, folder, schedule, trigger, sync, gitsyncSettings, instance, dev, hubPull, pull, push, workspaceAdd, };
|
|
25
|
-
export declare const VERSION = "1.
|
|
25
|
+
export declare const VERSION = "1.548.1";
|
|
26
26
|
export declare const WM_FORK_PREFIX = "wm-fork";
|
|
27
27
|
declare const command: Command<{
|
|
28
28
|
workspace?: (import("../deps/jsr.io/@windmill-labs/cliffy-command/1.0.0-rc.5/mod.js").StringType & string) | undefined;
|
|
@@ -1181,6 +1181,7 @@ export type WebsocketTrigger = TriggerExtraProperty & {
|
|
|
1181
1181
|
initial_messages?: Array<WebsocketTriggerInitialMessage>;
|
|
1182
1182
|
url_runnable_args?: ScriptArgs;
|
|
1183
1183
|
can_return_message: boolean;
|
|
1184
|
+
can_return_error_result: boolean;
|
|
1184
1185
|
error_handler_path?: string;
|
|
1185
1186
|
error_handler_args?: ScriptArgs;
|
|
1186
1187
|
retry?: Retry;
|
|
@@ -1198,6 +1199,7 @@ export type NewWebsocketTrigger = {
|
|
|
1198
1199
|
initial_messages?: Array<WebsocketTriggerInitialMessage>;
|
|
1199
1200
|
url_runnable_args?: ScriptArgs;
|
|
1200
1201
|
can_return_message: boolean;
|
|
1202
|
+
can_return_error_result: boolean;
|
|
1201
1203
|
error_handler_path?: string;
|
|
1202
1204
|
error_handler_args?: ScriptArgs;
|
|
1203
1205
|
retry?: Retry;
|
|
@@ -1214,6 +1216,7 @@ export type EditWebsocketTrigger = {
|
|
|
1214
1216
|
initial_messages?: Array<WebsocketTriggerInitialMessage>;
|
|
1215
1217
|
url_runnable_args?: ScriptArgs;
|
|
1216
1218
|
can_return_message: boolean;
|
|
1219
|
+
can_return_error_result: boolean;
|
|
1217
1220
|
error_handler_path?: string;
|
|
1218
1221
|
error_handler_args?: ScriptArgs;
|
|
1219
1222
|
retry?: Retry;
|
|
@@ -1632,6 +1635,13 @@ export type Workspace = {
|
|
|
1632
1635
|
color?: string;
|
|
1633
1636
|
parent_workspace_id?: (string) | null;
|
|
1634
1637
|
};
|
|
1638
|
+
export type DependencyMap = {
|
|
1639
|
+
workspace_id?: (string) | null;
|
|
1640
|
+
importer_path?: (string) | null;
|
|
1641
|
+
importer_kind?: (string) | null;
|
|
1642
|
+
imported_path?: (string) | null;
|
|
1643
|
+
importer_node_id?: (string) | null;
|
|
1644
|
+
};
|
|
1635
1645
|
export type WorkspaceInvite = {
|
|
1636
1646
|
workspace_id: string;
|
|
1637
1647
|
email: string;
|
|
@@ -2979,6 +2989,14 @@ export type SetThresholdAlertData = {
|
|
|
2979
2989
|
workspace: string;
|
|
2980
2990
|
};
|
|
2981
2991
|
export type SetThresholdAlertResponse = (string);
|
|
2992
|
+
export type RebuildDependencyMapData = {
|
|
2993
|
+
workspace: string;
|
|
2994
|
+
};
|
|
2995
|
+
export type RebuildDependencyMapResponse = (string);
|
|
2996
|
+
export type GetDependencyMapData = {
|
|
2997
|
+
workspace: string;
|
|
2998
|
+
};
|
|
2999
|
+
export type GetDependencyMapResponse = (Array<DependencyMap>);
|
|
2982
3000
|
export type EditSlackCommandData = {
|
|
2983
3001
|
/**
|
|
2984
3002
|
* WorkspaceInvite
|