windmill-client 1.711.0 → 1.713.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/dist/core/OpenAPI.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/types.gen.d.ts +60 -0
- package/package.json +1 -1
package/dist/core/OpenAPI.mjs
CHANGED
package/dist/index.js
CHANGED
package/dist/types.gen.d.ts
CHANGED
|
@@ -42,6 +42,10 @@ export type FlowValue = {
|
|
|
42
42
|
* If true, all steps run on the same worker for better performance
|
|
43
43
|
*/
|
|
44
44
|
same_worker?: boolean;
|
|
45
|
+
/**
|
|
46
|
+
* If true and the flow runs on a custom worker tag, steps that declare their own non-empty tag run on it instead of inheriting the flow tag. Steps without their own tag still inherit the flow tag.
|
|
47
|
+
*/
|
|
48
|
+
preserve_step_tags?: boolean;
|
|
45
49
|
/**
|
|
46
50
|
* Maximum number of concurrent executions of this flow
|
|
47
51
|
*/
|
|
@@ -1522,6 +1526,10 @@ export type NewScript = {
|
|
|
1522
1526
|
[key: string]: ScriptModule;
|
|
1523
1527
|
} | null;
|
|
1524
1528
|
labels?: Array<(string)>;
|
|
1529
|
+
/**
|
|
1530
|
+
* When true (set by the CLI / git sync), deploying this script does not delete an existing user draft at the same path.
|
|
1531
|
+
*/
|
|
1532
|
+
skip_draft_deletion?: boolean;
|
|
1525
1533
|
};
|
|
1526
1534
|
export type NewScriptWithDraft = NewScript & {
|
|
1527
1535
|
draft?: NewScript;
|
|
@@ -3644,6 +3652,10 @@ export type CustomInstanceDb = {
|
|
|
3644
3652
|
*/
|
|
3645
3653
|
error?: string | null;
|
|
3646
3654
|
tag?: CustomInstanceDbTag;
|
|
3655
|
+
/**
|
|
3656
|
+
* Workspaces that reference this database via a ducklake catalog or datatable database with resource_type 'instance'. Computed at request time, not persisted.
|
|
3657
|
+
*/
|
|
3658
|
+
used_by_workspaces?: Array<(string)>;
|
|
3647
3659
|
};
|
|
3648
3660
|
export type NewSqsTrigger = {
|
|
3649
3661
|
/**
|
|
@@ -8282,6 +8294,10 @@ export type CreateFlowData = {
|
|
|
8282
8294
|
requestBody: OpenFlowWPath & {
|
|
8283
8295
|
draft_only?: boolean;
|
|
8284
8296
|
deployment_message?: string;
|
|
8297
|
+
/**
|
|
8298
|
+
* When true (set by the CLI / git sync), deploying this flow does not delete an existing user draft at the same path.
|
|
8299
|
+
*/
|
|
8300
|
+
skip_draft_deletion?: boolean;
|
|
8285
8301
|
};
|
|
8286
8302
|
workspace: string;
|
|
8287
8303
|
};
|
|
@@ -8293,6 +8309,10 @@ export type UpdateFlowData = {
|
|
|
8293
8309
|
*/
|
|
8294
8310
|
requestBody: OpenFlowWPath & {
|
|
8295
8311
|
deployment_message?: string;
|
|
8312
|
+
/**
|
|
8313
|
+
* When true (set by the CLI / git sync), deploying this flow does not delete an existing user draft at the same path.
|
|
8314
|
+
*/
|
|
8315
|
+
skip_draft_deletion?: boolean;
|
|
8296
8316
|
};
|
|
8297
8317
|
workspace: string;
|
|
8298
8318
|
};
|
|
@@ -8430,6 +8450,10 @@ export type CreateAppData = {
|
|
|
8430
8450
|
*/
|
|
8431
8451
|
preserve_on_behalf_of?: boolean;
|
|
8432
8452
|
labels?: Array<(string)>;
|
|
8453
|
+
/**
|
|
8454
|
+
* When true (set by the CLI / git sync), deploying this app does not delete an existing user draft at the same path.
|
|
8455
|
+
*/
|
|
8456
|
+
skip_draft_deletion?: boolean;
|
|
8433
8457
|
};
|
|
8434
8458
|
workspace: string;
|
|
8435
8459
|
};
|
|
@@ -8452,6 +8476,10 @@ export type CreateAppRawData = {
|
|
|
8452
8476
|
*/
|
|
8453
8477
|
preserve_on_behalf_of?: boolean;
|
|
8454
8478
|
labels?: Array<(string)>;
|
|
8479
|
+
/**
|
|
8480
|
+
* When true (set by the CLI / git sync), deploying this app does not delete an existing user draft at the same path.
|
|
8481
|
+
*/
|
|
8482
|
+
skip_draft_deletion?: boolean;
|
|
8455
8483
|
};
|
|
8456
8484
|
js?: string;
|
|
8457
8485
|
css?: string;
|
|
@@ -8555,6 +8583,10 @@ export type UpdateAppData = {
|
|
|
8555
8583
|
*/
|
|
8556
8584
|
preserve_on_behalf_of?: boolean;
|
|
8557
8585
|
labels?: Array<(string)>;
|
|
8586
|
+
/**
|
|
8587
|
+
* When true (set by the CLI / git sync), deploying this app does not delete an existing user draft at the same path.
|
|
8588
|
+
*/
|
|
8589
|
+
skip_draft_deletion?: boolean;
|
|
8558
8590
|
};
|
|
8559
8591
|
workspace: string;
|
|
8560
8592
|
};
|
|
@@ -8576,6 +8608,10 @@ export type UpdateAppRawData = {
|
|
|
8576
8608
|
*/
|
|
8577
8609
|
preserve_on_behalf_of?: boolean;
|
|
8578
8610
|
labels?: Array<(string)>;
|
|
8611
|
+
/**
|
|
8612
|
+
* When true (set by the CLI / git sync), deploying this app does not delete an existing user draft at the same path.
|
|
8613
|
+
*/
|
|
8614
|
+
skip_draft_deletion?: boolean;
|
|
8579
8615
|
};
|
|
8580
8616
|
js?: string;
|
|
8581
8617
|
css?: string;
|
|
@@ -19253,6 +19289,10 @@ export type $OpenApiTs = {
|
|
|
19253
19289
|
requestBody: OpenFlowWPath & {
|
|
19254
19290
|
draft_only?: boolean;
|
|
19255
19291
|
deployment_message?: string;
|
|
19292
|
+
/**
|
|
19293
|
+
* When true (set by the CLI / git sync), deploying this flow does not delete an existing user draft at the same path.
|
|
19294
|
+
*/
|
|
19295
|
+
skip_draft_deletion?: boolean;
|
|
19256
19296
|
};
|
|
19257
19297
|
workspace: string;
|
|
19258
19298
|
};
|
|
@@ -19273,6 +19313,10 @@ export type $OpenApiTs = {
|
|
|
19273
19313
|
*/
|
|
19274
19314
|
requestBody: OpenFlowWPath & {
|
|
19275
19315
|
deployment_message?: string;
|
|
19316
|
+
/**
|
|
19317
|
+
* When true (set by the CLI / git sync), deploying this flow does not delete an existing user draft at the same path.
|
|
19318
|
+
*/
|
|
19319
|
+
skip_draft_deletion?: boolean;
|
|
19276
19320
|
};
|
|
19277
19321
|
workspace: string;
|
|
19278
19322
|
};
|
|
@@ -19500,6 +19544,10 @@ export type $OpenApiTs = {
|
|
|
19500
19544
|
*/
|
|
19501
19545
|
preserve_on_behalf_of?: boolean;
|
|
19502
19546
|
labels?: Array<(string)>;
|
|
19547
|
+
/**
|
|
19548
|
+
* When true (set by the CLI / git sync), deploying this app does not delete an existing user draft at the same path.
|
|
19549
|
+
*/
|
|
19550
|
+
skip_draft_deletion?: boolean;
|
|
19503
19551
|
};
|
|
19504
19552
|
workspace: string;
|
|
19505
19553
|
};
|
|
@@ -19531,6 +19579,10 @@ export type $OpenApiTs = {
|
|
|
19531
19579
|
*/
|
|
19532
19580
|
preserve_on_behalf_of?: boolean;
|
|
19533
19581
|
labels?: Array<(string)>;
|
|
19582
|
+
/**
|
|
19583
|
+
* When true (set by the CLI / git sync), deploying this app does not delete an existing user draft at the same path.
|
|
19584
|
+
*/
|
|
19585
|
+
skip_draft_deletion?: boolean;
|
|
19534
19586
|
};
|
|
19535
19587
|
js?: string;
|
|
19536
19588
|
css?: string;
|
|
@@ -19769,6 +19821,10 @@ export type $OpenApiTs = {
|
|
|
19769
19821
|
*/
|
|
19770
19822
|
preserve_on_behalf_of?: boolean;
|
|
19771
19823
|
labels?: Array<(string)>;
|
|
19824
|
+
/**
|
|
19825
|
+
* When true (set by the CLI / git sync), deploying this app does not delete an existing user draft at the same path.
|
|
19826
|
+
*/
|
|
19827
|
+
skip_draft_deletion?: boolean;
|
|
19772
19828
|
};
|
|
19773
19829
|
workspace: string;
|
|
19774
19830
|
};
|
|
@@ -19799,6 +19855,10 @@ export type $OpenApiTs = {
|
|
|
19799
19855
|
*/
|
|
19800
19856
|
preserve_on_behalf_of?: boolean;
|
|
19801
19857
|
labels?: Array<(string)>;
|
|
19858
|
+
/**
|
|
19859
|
+
* When true (set by the CLI / git sync), deploying this app does not delete an existing user draft at the same path.
|
|
19860
|
+
*/
|
|
19861
|
+
skip_draft_deletion?: boolean;
|
|
19802
19862
|
};
|
|
19803
19863
|
js?: string;
|
|
19804
19864
|
css?: string;
|