windmill-cli 1.551.4 → 1.552.0
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 +6 -0
- package/esm/src/main.js +1 -1
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +2 -0
- package/types/gen/services.gen.d.ts.map +1 -1
- package/types/gen/types.gen.d.ts +8 -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 +8 -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.552.0";
|
|
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;
|
|
@@ -7239,6 +7239,14 @@ export type DeleteConfigData = {
|
|
|
7239
7239
|
export type DeleteConfigResponse = (string);
|
|
7240
7240
|
export type ListConfigsResponse = (Array<Config>);
|
|
7241
7241
|
export type ListAutoscalingEventsData = {
|
|
7242
|
+
/**
|
|
7243
|
+
* which page to return (start at 1, default 1)
|
|
7244
|
+
*/
|
|
7245
|
+
page?: number;
|
|
7246
|
+
/**
|
|
7247
|
+
* number of items to return for a given page (default 30, max 100)
|
|
7248
|
+
*/
|
|
7249
|
+
perPage?: number;
|
|
7242
7250
|
workerGroup: string;
|
|
7243
7251
|
};
|
|
7244
7252
|
export type ListAutoscalingEventsResponse = (Array<AutoscalingEvent>);
|