windmill-cli 1.580.0 → 1.581.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/src/main.js +1 -1
- package/package.json +1 -1
- package/types/gen/types.gen.d.ts +66 -3
- 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 +66 -3
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts.map +1 -1
package/esm/gen/core/OpenAPI.js
CHANGED
package/esm/src/main.js
CHANGED
|
@@ -38,7 +38,7 @@ export { flow, app, script, workspace, resource, resourceType, user, variable, h
|
|
|
38
38
|
// console.error(JSON.stringify(event.error, null, 4));
|
|
39
39
|
// }
|
|
40
40
|
// });
|
|
41
|
-
export const VERSION = "1.
|
|
41
|
+
export const VERSION = "1.581.1";
|
|
42
42
|
export const WM_FORK_PREFIX = "wm-fork";
|
|
43
43
|
const command = new Command()
|
|
44
44
|
.name("wmill")
|
package/package.json
CHANGED
package/types/gen/types.gen.d.ts
CHANGED
|
@@ -27,6 +27,10 @@ export type FlowValue = {
|
|
|
27
27
|
* Whether this flow accepts chat-style input
|
|
28
28
|
*/
|
|
29
29
|
chat_input_enabled?: boolean;
|
|
30
|
+
/**
|
|
31
|
+
* Sticky notes attached to the flow
|
|
32
|
+
*/
|
|
33
|
+
notes?: Array<FlowNote>;
|
|
30
34
|
};
|
|
31
35
|
export type Retry = {
|
|
32
36
|
constant?: {
|
|
@@ -253,6 +257,65 @@ export type FlowStatusModule = {
|
|
|
253
257
|
agent_actions_success?: Array<(boolean)>;
|
|
254
258
|
};
|
|
255
259
|
export type type = 'WaitingForPriorSteps' | 'WaitingForEvents' | 'WaitingForExecutor' | 'InProgress' | 'Success' | 'Failure';
|
|
260
|
+
/**
|
|
261
|
+
* A sticky note attached to a flow for documentation and annotation
|
|
262
|
+
*/
|
|
263
|
+
export type FlowNote = {
|
|
264
|
+
/**
|
|
265
|
+
* Unique identifier for the note
|
|
266
|
+
*/
|
|
267
|
+
id: string;
|
|
268
|
+
/**
|
|
269
|
+
* Content of the note
|
|
270
|
+
*/
|
|
271
|
+
text: string;
|
|
272
|
+
/**
|
|
273
|
+
* Position of the note in the flow editor
|
|
274
|
+
*/
|
|
275
|
+
position?: {
|
|
276
|
+
/**
|
|
277
|
+
* X coordinate
|
|
278
|
+
*/
|
|
279
|
+
x: number;
|
|
280
|
+
/**
|
|
281
|
+
* Y coordinate
|
|
282
|
+
*/
|
|
283
|
+
y: number;
|
|
284
|
+
};
|
|
285
|
+
/**
|
|
286
|
+
* Size of the note in the flow editor
|
|
287
|
+
*/
|
|
288
|
+
size?: {
|
|
289
|
+
/**
|
|
290
|
+
* Width in pixels
|
|
291
|
+
*/
|
|
292
|
+
width: number;
|
|
293
|
+
/**
|
|
294
|
+
* Height in pixels
|
|
295
|
+
*/
|
|
296
|
+
height: number;
|
|
297
|
+
};
|
|
298
|
+
/**
|
|
299
|
+
* Color of the note (e.g., "yellow", "#ffff00")
|
|
300
|
+
*/
|
|
301
|
+
color: string;
|
|
302
|
+
/**
|
|
303
|
+
* Type of note - 'free' for standalone notes, 'group' for notes that group other nodes
|
|
304
|
+
*/
|
|
305
|
+
type: 'free' | 'group';
|
|
306
|
+
/**
|
|
307
|
+
* Whether the note is locked and cannot be edited or moved
|
|
308
|
+
*/
|
|
309
|
+
locked?: boolean;
|
|
310
|
+
/**
|
|
311
|
+
* For group notes, the IDs of nodes contained within this group
|
|
312
|
+
*/
|
|
313
|
+
contained_node_ids?: Array<(string)>;
|
|
314
|
+
};
|
|
315
|
+
/**
|
|
316
|
+
* Type of note - 'free' for standalone notes, 'group' for notes that group other nodes
|
|
317
|
+
*/
|
|
318
|
+
export type type2 = 'free' | 'group';
|
|
256
319
|
export type FlowConversation = {
|
|
257
320
|
/**
|
|
258
321
|
* Unique identifier for the conversation
|
|
@@ -618,7 +681,7 @@ export type Job = (CompletedJob & {
|
|
|
618
681
|
}) | (QueuedJob & {
|
|
619
682
|
type?: 'QueuedJob';
|
|
620
683
|
});
|
|
621
|
-
export type
|
|
684
|
+
export type type3 = 'CompletedJob';
|
|
622
685
|
export type User = {
|
|
623
686
|
email: string;
|
|
624
687
|
username: string;
|
|
@@ -803,7 +866,7 @@ export type MainArgSignature = {
|
|
|
803
866
|
no_main_func: (boolean) | null;
|
|
804
867
|
has_preprocessor: (boolean) | null;
|
|
805
868
|
};
|
|
806
|
-
export type
|
|
869
|
+
export type type4 = 'Valid' | 'Invalid';
|
|
807
870
|
export type ScriptLang = 'python3' | 'deno' | 'go' | 'bash' | 'powershell' | 'postgresql' | 'mysql' | 'bigquery' | 'snowflake' | 'mssql' | 'oracledb' | 'graphql' | 'nativets' | 'bun' | 'php' | 'rust' | 'ansible' | 'csharp' | 'nu' | 'java' | 'ruby' | 'duckdb';
|
|
808
871
|
export type Preview = {
|
|
809
872
|
/**
|
|
@@ -1976,7 +2039,7 @@ export type LargeFileStorage = {
|
|
|
1976
2039
|
};
|
|
1977
2040
|
};
|
|
1978
2041
|
};
|
|
1979
|
-
export type
|
|
2042
|
+
export type type5 = 'S3Storage' | 'AzureBlobStorage' | 'AzureWorkloadIdentity' | 'S3AwsOidc' | 'GoogleCloudStorage';
|
|
1980
2043
|
export type DucklakeSettings = {
|
|
1981
2044
|
ducklakes: {
|
|
1982
2045
|
[key: string]: {
|