windmill-client 1.712.0 → 1.713.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/dist/core/OpenAPI.mjs +1 -1
- package/dist/index.js +1 -1
- package/dist/types.gen.d.ts +56 -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;
|
|
@@ -8286,6 +8294,10 @@ export type CreateFlowData = {
|
|
|
8286
8294
|
requestBody: OpenFlowWPath & {
|
|
8287
8295
|
draft_only?: boolean;
|
|
8288
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;
|
|
8289
8301
|
};
|
|
8290
8302
|
workspace: string;
|
|
8291
8303
|
};
|
|
@@ -8297,6 +8309,10 @@ export type UpdateFlowData = {
|
|
|
8297
8309
|
*/
|
|
8298
8310
|
requestBody: OpenFlowWPath & {
|
|
8299
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;
|
|
8300
8316
|
};
|
|
8301
8317
|
workspace: string;
|
|
8302
8318
|
};
|
|
@@ -8434,6 +8450,10 @@ export type CreateAppData = {
|
|
|
8434
8450
|
*/
|
|
8435
8451
|
preserve_on_behalf_of?: boolean;
|
|
8436
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;
|
|
8437
8457
|
};
|
|
8438
8458
|
workspace: string;
|
|
8439
8459
|
};
|
|
@@ -8456,6 +8476,10 @@ export type CreateAppRawData = {
|
|
|
8456
8476
|
*/
|
|
8457
8477
|
preserve_on_behalf_of?: boolean;
|
|
8458
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;
|
|
8459
8483
|
};
|
|
8460
8484
|
js?: string;
|
|
8461
8485
|
css?: string;
|
|
@@ -8559,6 +8583,10 @@ export type UpdateAppData = {
|
|
|
8559
8583
|
*/
|
|
8560
8584
|
preserve_on_behalf_of?: boolean;
|
|
8561
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;
|
|
8562
8590
|
};
|
|
8563
8591
|
workspace: string;
|
|
8564
8592
|
};
|
|
@@ -8580,6 +8608,10 @@ export type UpdateAppRawData = {
|
|
|
8580
8608
|
*/
|
|
8581
8609
|
preserve_on_behalf_of?: boolean;
|
|
8582
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;
|
|
8583
8615
|
};
|
|
8584
8616
|
js?: string;
|
|
8585
8617
|
css?: string;
|
|
@@ -19257,6 +19289,10 @@ export type $OpenApiTs = {
|
|
|
19257
19289
|
requestBody: OpenFlowWPath & {
|
|
19258
19290
|
draft_only?: boolean;
|
|
19259
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;
|
|
19260
19296
|
};
|
|
19261
19297
|
workspace: string;
|
|
19262
19298
|
};
|
|
@@ -19277,6 +19313,10 @@ export type $OpenApiTs = {
|
|
|
19277
19313
|
*/
|
|
19278
19314
|
requestBody: OpenFlowWPath & {
|
|
19279
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;
|
|
19280
19320
|
};
|
|
19281
19321
|
workspace: string;
|
|
19282
19322
|
};
|
|
@@ -19504,6 +19544,10 @@ export type $OpenApiTs = {
|
|
|
19504
19544
|
*/
|
|
19505
19545
|
preserve_on_behalf_of?: boolean;
|
|
19506
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;
|
|
19507
19551
|
};
|
|
19508
19552
|
workspace: string;
|
|
19509
19553
|
};
|
|
@@ -19535,6 +19579,10 @@ export type $OpenApiTs = {
|
|
|
19535
19579
|
*/
|
|
19536
19580
|
preserve_on_behalf_of?: boolean;
|
|
19537
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;
|
|
19538
19586
|
};
|
|
19539
19587
|
js?: string;
|
|
19540
19588
|
css?: string;
|
|
@@ -19773,6 +19821,10 @@ export type $OpenApiTs = {
|
|
|
19773
19821
|
*/
|
|
19774
19822
|
preserve_on_behalf_of?: boolean;
|
|
19775
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;
|
|
19776
19828
|
};
|
|
19777
19829
|
workspace: string;
|
|
19778
19830
|
};
|
|
@@ -19803,6 +19855,10 @@ export type $OpenApiTs = {
|
|
|
19803
19855
|
*/
|
|
19804
19856
|
preserve_on_behalf_of?: boolean;
|
|
19805
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;
|
|
19806
19862
|
};
|
|
19807
19863
|
js?: string;
|
|
19808
19864
|
css?: string;
|