windmill-cli 1.579.2 → 1.581.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 +21 -0
- package/esm/src/commands/sync/sync.js +0 -21
- package/esm/src/main.js +1 -1
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +11 -1
- package/types/gen/services.gen.d.ts.map +1 -1
- package/types/gen/types.gen.d.ts +76 -3
- package/types/gen/types.gen.d.ts.map +1 -1
- package/types/src/commands/sync/sync.d.ts.map +1 -1
- package/types/src/main.d.ts +1 -1
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts +76 -3
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts.map +1 -1
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
|
/**
|
|
@@ -1677,6 +1740,7 @@ export type NewEmailTrigger = {
|
|
|
1677
1740
|
error_handler_path?: string;
|
|
1678
1741
|
error_handler_args?: ScriptArgs;
|
|
1679
1742
|
retry?: Retry;
|
|
1743
|
+
enabled?: boolean;
|
|
1680
1744
|
};
|
|
1681
1745
|
export type EditEmailTrigger = {
|
|
1682
1746
|
path: string;
|
|
@@ -1742,6 +1806,7 @@ export type WorkerPing = {
|
|
|
1742
1806
|
vcpus?: number;
|
|
1743
1807
|
memory_usage?: number;
|
|
1744
1808
|
wm_memory_usage?: number;
|
|
1809
|
+
job_isolation?: string;
|
|
1745
1810
|
};
|
|
1746
1811
|
export type UserWorkspaceList = {
|
|
1747
1812
|
email: string;
|
|
@@ -1974,7 +2039,7 @@ export type LargeFileStorage = {
|
|
|
1974
2039
|
};
|
|
1975
2040
|
};
|
|
1976
2041
|
};
|
|
1977
|
-
export type
|
|
2042
|
+
export type type5 = 'S3Storage' | 'AzureBlobStorage' | 'AzureWorkloadIdentity' | 'S3AwsOidc' | 'GoogleCloudStorage';
|
|
1978
2043
|
export type DucklakeSettings = {
|
|
1979
2044
|
ducklakes: {
|
|
1980
2045
|
[key: string]: {
|
|
@@ -7719,6 +7784,14 @@ export type ExistsEmailLocalPartData = {
|
|
|
7719
7784
|
workspace: string;
|
|
7720
7785
|
};
|
|
7721
7786
|
export type ExistsEmailLocalPartResponse = (boolean);
|
|
7787
|
+
export type SetEmailTriggerEnabledData = {
|
|
7788
|
+
path: string;
|
|
7789
|
+
requestBody: {
|
|
7790
|
+
enabled: boolean;
|
|
7791
|
+
};
|
|
7792
|
+
workspace: string;
|
|
7793
|
+
};
|
|
7794
|
+
export type SetEmailTriggerEnabledResponse = (string);
|
|
7722
7795
|
export type ListInstanceGroupsResponse = (Array<InstanceGroup>);
|
|
7723
7796
|
export type ListInstanceGroupsWithWorkspacesResponse = (Array<InstanceGroupWithWorkspaces>);
|
|
7724
7797
|
export type GetInstanceGroupData = {
|