windmill-components 1.698.0 → 1.700.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/package/components/Auth0Setting.svelte +7 -5
- package/package/components/AuthSettings.svelte +11 -6
- package/package/components/AutheliaSetting.svelte +6 -4
- package/package/components/AuthentikSetting.svelte +7 -2
- package/package/components/DisplayResult.svelte +41 -23
- package/package/components/FlowStatusViewerInner.svelte +23 -9
- package/package/components/HistoricInputs.svelte +2 -1
- package/package/components/InstanceSetting.svelte +47 -5
- package/package/components/KanidmSetting.svelte +6 -4
- package/package/components/KeycloakSetting.svelte +6 -4
- package/package/components/LogViewer.svelte +69 -29
- package/package/components/NextcloudSetting.svelte +6 -4
- package/package/components/OAuthSetting.svelte +6 -4
- package/package/components/OktaSetting.svelte +7 -2
- package/package/components/ParqetCsvTableRenderer.svelte +21 -8
- package/package/components/Path.svelte +10 -0
- package/package/components/PocketIdSetting.svelte +6 -4
- package/package/components/S3FilePickerInner.svelte +22 -8
- package/package/components/ScriptEditor.svelte +34 -4
- package/package/components/ShareModal.svelte.d.ts +1 -1
- package/package/components/VariableForm.svelte +1 -1
- package/package/components/ZitadelSetting.svelte +6 -4
- package/package/components/apps/components/helpers/RunnableComponent.svelte.d.ts +1 -0
- package/package/components/common/fileDownload/FileDownload.svelte +26 -17
- package/package/components/flows/idUtils.js +4 -1
- package/package/components/flows/stepsInputArgs.svelte.js +6 -1
- package/package/components/instanceSettings/SecretBackendConfig.svelte +36 -11
- package/package/components/propertyPicker/ObjectViewer.svelte +23 -9
- package/package/components/runs/runsFilter.d.ts +1 -1
- package/package/components/runs/useJobsLoader.svelte.d.ts +1 -0
- package/package/components/runs/useJobsLoader.svelte.js +3 -1
- package/package/components/scriptEditor/LogPanel.svelte +4 -1
- package/package/components/scriptEditor/LogPanel.svelte.d.ts +1 -0
- package/package/components/settings/WorkspaceOperatorSettings.svelte +1 -1
- package/package/components/sidebar/SidebarContent.svelte +40 -2
- package/package/gen/core/OpenAPI.js +1 -1
- package/package/gen/schemas.gen.d.ts +33 -4
- package/package/gen/schemas.gen.js +33 -4
- package/package/gen/services.gen.d.ts +20 -1
- package/package/gen/services.gen.js +40 -0
- package/package/gen/types.gen.d.ts +182 -3
- package/package/system_prompts/prompts.d.ts +2 -2
- package/package/system_prompts/prompts.js +2 -2
- package/package/utils/downloadFile.d.ts +11 -0
- package/package/utils/downloadFile.js +48 -0
- package/package.json +1 -1
|
@@ -1150,7 +1150,7 @@ export type AzureKeyVaultSettings = {
|
|
|
1150
1150
|
*/
|
|
1151
1151
|
client_id: string;
|
|
1152
1152
|
/**
|
|
1153
|
-
* Azure AD client secret
|
|
1153
|
+
* Azure AD client secret. Optional — when omitted, the integration falls back to Azure Workload Identity Federation, exchanging the Kubernetes-projected service-account JWT at AZURE_FEDERATED_TOKEN_FILE for an access token (no long-lived secret stored).
|
|
1154
1154
|
*/
|
|
1155
1155
|
client_secret?: string;
|
|
1156
1156
|
/**
|
|
@@ -1983,6 +1983,7 @@ export type ListableVariable = {
|
|
|
1983
1983
|
is_refreshed?: boolean;
|
|
1984
1984
|
expires_at?: string;
|
|
1985
1985
|
labels?: Array<(string)>;
|
|
1986
|
+
ws_specific?: boolean;
|
|
1986
1987
|
};
|
|
1987
1988
|
export type ContextualVariable = {
|
|
1988
1989
|
name: string;
|
|
@@ -2020,6 +2021,7 @@ export type CreateVariable = {
|
|
|
2020
2021
|
*/
|
|
2021
2022
|
expires_at?: string;
|
|
2022
2023
|
labels?: Array<(string)>;
|
|
2024
|
+
ws_specific?: boolean;
|
|
2023
2025
|
};
|
|
2024
2026
|
export type EditVariable = {
|
|
2025
2027
|
/**
|
|
@@ -2039,6 +2041,7 @@ export type EditVariable = {
|
|
|
2039
2041
|
*/
|
|
2040
2042
|
description?: string;
|
|
2041
2043
|
labels?: Array<(string)>;
|
|
2044
|
+
ws_specific?: boolean;
|
|
2042
2045
|
};
|
|
2043
2046
|
export type AuditLog = {
|
|
2044
2047
|
workspace_id: string;
|
|
@@ -2165,6 +2168,7 @@ export type CreateResource = {
|
|
|
2165
2168
|
*/
|
|
2166
2169
|
resource_type: string;
|
|
2167
2170
|
labels?: Array<(string)>;
|
|
2171
|
+
ws_specific?: boolean;
|
|
2168
2172
|
};
|
|
2169
2173
|
export type EditResource = {
|
|
2170
2174
|
/**
|
|
@@ -2181,6 +2185,7 @@ export type EditResource = {
|
|
|
2181
2185
|
*/
|
|
2182
2186
|
resource_type?: string;
|
|
2183
2187
|
labels?: Array<(string)>;
|
|
2188
|
+
ws_specific?: boolean;
|
|
2184
2189
|
};
|
|
2185
2190
|
export type Resource = {
|
|
2186
2191
|
workspace_id?: string;
|
|
@@ -2195,6 +2200,7 @@ export type Resource = {
|
|
|
2195
2200
|
created_by?: string;
|
|
2196
2201
|
edited_at?: string;
|
|
2197
2202
|
labels?: Array<(string)>;
|
|
2203
|
+
ws_specific?: boolean;
|
|
2198
2204
|
};
|
|
2199
2205
|
export type ListableResource = {
|
|
2200
2206
|
workspace_id?: string;
|
|
@@ -2214,6 +2220,7 @@ export type ListableResource = {
|
|
|
2214
2220
|
created_by?: string;
|
|
2215
2221
|
edited_at?: string;
|
|
2216
2222
|
labels?: Array<(string)>;
|
|
2223
|
+
ws_specific?: boolean;
|
|
2217
2224
|
};
|
|
2218
2225
|
export type ResourceType = {
|
|
2219
2226
|
workspace_id?: string;
|
|
@@ -2531,7 +2538,7 @@ export type EditSchedule = {
|
|
|
2531
2538
|
/**
|
|
2532
2539
|
* job trigger kind (schedule, http, websocket...)
|
|
2533
2540
|
*/
|
|
2534
|
-
export type JobTriggerKind = 'webhook' | 'default_email' | 'email' | 'schedule' | 'http' | 'websocket' | 'postgres' | 'kafka' | 'nats' | 'mqtt' | 'sqs' | 'gcp' | 'azure' | 'google' | 'github';
|
|
2541
|
+
export type JobTriggerKind = 'webhook' | 'default_email' | 'email' | 'schedule' | 'http' | 'websocket' | 'postgres' | 'kafka' | 'nats' | 'mqtt' | 'sqs' | 'gcp' | 'azure' | 'google' | 'github' | 'asset';
|
|
2535
2542
|
/**
|
|
2536
2543
|
* job trigger mode
|
|
2537
2544
|
*/
|
|
@@ -4966,7 +4973,7 @@ export type WorkspaceItemDiff = {
|
|
|
4966
4973
|
/**
|
|
4967
4974
|
* Type of the item
|
|
4968
4975
|
*/
|
|
4969
|
-
kind: 'script' | 'flow' | 'app' | 'raw_app' | 'resource' | 'variable' | 'resource_type';
|
|
4976
|
+
kind: 'script' | 'flow' | 'app' | 'raw_app' | 'resource' | 'variable' | 'resource_type' | 'folder' | 'schedule' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'sqs_trigger' | 'gcp_trigger' | 'azure_trigger' | 'email_trigger';
|
|
4970
4977
|
/**
|
|
4971
4978
|
* Path of the item in the workspace
|
|
4972
4979
|
*/
|
|
@@ -5033,6 +5040,14 @@ export type CompareSummary = {
|
|
|
5033
5040
|
* Number of folders with differences
|
|
5034
5041
|
*/
|
|
5035
5042
|
folders_changed: number;
|
|
5043
|
+
/**
|
|
5044
|
+
* Number of schedules with differences
|
|
5045
|
+
*/
|
|
5046
|
+
schedules_changed: number;
|
|
5047
|
+
/**
|
|
5048
|
+
* Number of triggers with differences (sum across all trigger kinds)
|
|
5049
|
+
*/
|
|
5050
|
+
triggers_changed: number;
|
|
5036
5051
|
/**
|
|
5037
5052
|
* Number of items that are both ahead and behind (conflicts)
|
|
5038
5053
|
*/
|
|
@@ -7002,6 +7017,19 @@ export type PruneVersionsData = {
|
|
|
7002
7017
|
export type PruneVersionsResponse = {
|
|
7003
7018
|
pruned: number;
|
|
7004
7019
|
};
|
|
7020
|
+
export type ListWsSpecificData = {
|
|
7021
|
+
workspace: string;
|
|
7022
|
+
};
|
|
7023
|
+
export type ListWsSpecificResponse = Array<{
|
|
7024
|
+
item_kind: string;
|
|
7025
|
+
path: string;
|
|
7026
|
+
}>;
|
|
7027
|
+
export type ListWsSpecificVersionsData = {
|
|
7028
|
+
kind: 'resource' | 'variable';
|
|
7029
|
+
path: string;
|
|
7030
|
+
workspace: string;
|
|
7031
|
+
};
|
|
7032
|
+
export type ListWsSpecificVersionsResponse = Array<(string)>;
|
|
7005
7033
|
export type GetSharedUiData = {
|
|
7006
7034
|
workspace: string;
|
|
7007
7035
|
};
|
|
@@ -8463,6 +8491,7 @@ export type ExecuteComponentData = {
|
|
|
8463
8491
|
path?: string;
|
|
8464
8492
|
lock?: string;
|
|
8465
8493
|
cache_ttl?: number;
|
|
8494
|
+
tag?: string;
|
|
8466
8495
|
};
|
|
8467
8496
|
id?: number;
|
|
8468
8497
|
force_viewer_static_fields?: {
|
|
@@ -10530,6 +10559,10 @@ export type ListJobsData = {
|
|
|
10530
10559
|
* filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
10531
10560
|
*/
|
|
10532
10561
|
createdBy?: string;
|
|
10562
|
+
/**
|
|
10563
|
+
* exclude jobs that were started with a `_ENTRYPOINT_OVERRIDE` arg (e.g. dynamic-select helper runs and preprocessor previews)
|
|
10564
|
+
*/
|
|
10565
|
+
excludesEntrypointOverride?: boolean;
|
|
10533
10566
|
/**
|
|
10534
10567
|
* has null parent
|
|
10535
10568
|
*/
|
|
@@ -11289,6 +11322,11 @@ export type SetScheduleEnabledData = {
|
|
|
11289
11322
|
*/
|
|
11290
11323
|
requestBody: {
|
|
11291
11324
|
enabled: boolean;
|
|
11325
|
+
/**
|
|
11326
|
+
* Bypass the parent-state conflict warning when enabling a schedule in a fork whose parent has the same path enabled.
|
|
11327
|
+
*
|
|
11328
|
+
*/
|
|
11329
|
+
force?: boolean;
|
|
11292
11330
|
};
|
|
11293
11331
|
workspace: string;
|
|
11294
11332
|
};
|
|
@@ -11481,6 +11519,11 @@ export type SetHttpTriggerModeData = {
|
|
|
11481
11519
|
path: string;
|
|
11482
11520
|
requestBody: {
|
|
11483
11521
|
mode: TriggerMode;
|
|
11522
|
+
/**
|
|
11523
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
11524
|
+
*
|
|
11525
|
+
*/
|
|
11526
|
+
force?: boolean;
|
|
11484
11527
|
};
|
|
11485
11528
|
workspace: string;
|
|
11486
11529
|
};
|
|
@@ -11546,6 +11589,11 @@ export type SetWebsocketTriggerModeData = {
|
|
|
11546
11589
|
*/
|
|
11547
11590
|
requestBody: {
|
|
11548
11591
|
mode: TriggerMode;
|
|
11592
|
+
/**
|
|
11593
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
11594
|
+
*
|
|
11595
|
+
*/
|
|
11596
|
+
force?: boolean;
|
|
11549
11597
|
};
|
|
11550
11598
|
workspace: string;
|
|
11551
11599
|
};
|
|
@@ -11623,6 +11671,11 @@ export type SetKafkaTriggerModeData = {
|
|
|
11623
11671
|
*/
|
|
11624
11672
|
requestBody: {
|
|
11625
11673
|
mode: TriggerMode;
|
|
11674
|
+
/**
|
|
11675
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
11676
|
+
*
|
|
11677
|
+
*/
|
|
11678
|
+
force?: boolean;
|
|
11626
11679
|
};
|
|
11627
11680
|
workspace: string;
|
|
11628
11681
|
};
|
|
@@ -11718,6 +11771,11 @@ export type SetNatsTriggerModeData = {
|
|
|
11718
11771
|
*/
|
|
11719
11772
|
requestBody: {
|
|
11720
11773
|
mode: TriggerMode;
|
|
11774
|
+
/**
|
|
11775
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
11776
|
+
*
|
|
11777
|
+
*/
|
|
11778
|
+
force?: boolean;
|
|
11721
11779
|
};
|
|
11722
11780
|
workspace: string;
|
|
11723
11781
|
};
|
|
@@ -11795,6 +11853,11 @@ export type SetSqsTriggerModeData = {
|
|
|
11795
11853
|
*/
|
|
11796
11854
|
requestBody: {
|
|
11797
11855
|
mode: TriggerMode;
|
|
11856
|
+
/**
|
|
11857
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
11858
|
+
*
|
|
11859
|
+
*/
|
|
11860
|
+
force?: boolean;
|
|
11798
11861
|
};
|
|
11799
11862
|
workspace: string;
|
|
11800
11863
|
};
|
|
@@ -12062,6 +12125,11 @@ export type SetMqttTriggerModeData = {
|
|
|
12062
12125
|
*/
|
|
12063
12126
|
requestBody: {
|
|
12064
12127
|
mode: TriggerMode;
|
|
12128
|
+
/**
|
|
12129
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
12130
|
+
*
|
|
12131
|
+
*/
|
|
12132
|
+
force?: boolean;
|
|
12065
12133
|
};
|
|
12066
12134
|
workspace: string;
|
|
12067
12135
|
};
|
|
@@ -12139,6 +12207,11 @@ export type SetGcpTriggerModeData = {
|
|
|
12139
12207
|
*/
|
|
12140
12208
|
requestBody: {
|
|
12141
12209
|
mode: TriggerMode;
|
|
12210
|
+
/**
|
|
12211
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
12212
|
+
*
|
|
12213
|
+
*/
|
|
12214
|
+
force?: boolean;
|
|
12142
12215
|
};
|
|
12143
12216
|
workspace: string;
|
|
12144
12217
|
};
|
|
@@ -12226,6 +12299,11 @@ export type SetAzureTriggerModeData = {
|
|
|
12226
12299
|
path: string;
|
|
12227
12300
|
requestBody: {
|
|
12228
12301
|
mode: TriggerMode;
|
|
12302
|
+
/**
|
|
12303
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
12304
|
+
*
|
|
12305
|
+
*/
|
|
12306
|
+
force?: boolean;
|
|
12229
12307
|
};
|
|
12230
12308
|
workspace: string;
|
|
12231
12309
|
};
|
|
@@ -12423,6 +12501,11 @@ export type SetPostgresTriggerModeData = {
|
|
|
12423
12501
|
*/
|
|
12424
12502
|
requestBody: {
|
|
12425
12503
|
mode: TriggerMode;
|
|
12504
|
+
/**
|
|
12505
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
12506
|
+
*
|
|
12507
|
+
*/
|
|
12508
|
+
force?: boolean;
|
|
12426
12509
|
};
|
|
12427
12510
|
workspace: string;
|
|
12428
12511
|
};
|
|
@@ -12507,6 +12590,11 @@ export type SetEmailTriggerModeData = {
|
|
|
12507
12590
|
path: string;
|
|
12508
12591
|
requestBody: {
|
|
12509
12592
|
mode: TriggerMode;
|
|
12593
|
+
/**
|
|
12594
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
12595
|
+
*
|
|
12596
|
+
*/
|
|
12597
|
+
force?: boolean;
|
|
12510
12598
|
};
|
|
12511
12599
|
workspace: string;
|
|
12512
12600
|
};
|
|
@@ -16654,6 +16742,37 @@ export type $OpenApiTs = {
|
|
|
16654
16742
|
};
|
|
16655
16743
|
};
|
|
16656
16744
|
};
|
|
16745
|
+
'/w/{workspace}/workspaces/list_ws_specific': {
|
|
16746
|
+
get: {
|
|
16747
|
+
req: {
|
|
16748
|
+
workspace: string;
|
|
16749
|
+
};
|
|
16750
|
+
res: {
|
|
16751
|
+
/**
|
|
16752
|
+
* list of workspace-specific items
|
|
16753
|
+
*/
|
|
16754
|
+
200: Array<{
|
|
16755
|
+
item_kind: string;
|
|
16756
|
+
path: string;
|
|
16757
|
+
}>;
|
|
16758
|
+
};
|
|
16759
|
+
};
|
|
16760
|
+
};
|
|
16761
|
+
'/w/{workspace}/workspaces/list_ws_specific_versions': {
|
|
16762
|
+
get: {
|
|
16763
|
+
req: {
|
|
16764
|
+
kind: 'resource' | 'variable';
|
|
16765
|
+
path: string;
|
|
16766
|
+
workspace: string;
|
|
16767
|
+
};
|
|
16768
|
+
res: {
|
|
16769
|
+
/**
|
|
16770
|
+
* list of workspace ids that have a version of the item
|
|
16771
|
+
*/
|
|
16772
|
+
200: Array<(string)>;
|
|
16773
|
+
};
|
|
16774
|
+
};
|
|
16775
|
+
};
|
|
16657
16776
|
'/w/{workspace}/shared_ui/get': {
|
|
16658
16777
|
get: {
|
|
16659
16778
|
req: {
|
|
@@ -19479,6 +19598,7 @@ export type $OpenApiTs = {
|
|
|
19479
19598
|
path?: string;
|
|
19480
19599
|
lock?: string;
|
|
19481
19600
|
cache_ttl?: number;
|
|
19601
|
+
tag?: string;
|
|
19482
19602
|
};
|
|
19483
19603
|
id?: number;
|
|
19484
19604
|
force_viewer_static_fields?: {
|
|
@@ -22434,6 +22554,10 @@ export type $OpenApiTs = {
|
|
|
22434
22554
|
* filter by exact matching user creator. Supports comma-separated list (e.g. 'alice,bob') and negation by prefixing all values with '!' (e.g. '!alice,!bob')
|
|
22435
22555
|
*/
|
|
22436
22556
|
createdBy?: string;
|
|
22557
|
+
/**
|
|
22558
|
+
* exclude jobs that were started with a `_ENTRYPOINT_OVERRIDE` arg (e.g. dynamic-select helper runs and preprocessor previews)
|
|
22559
|
+
*/
|
|
22560
|
+
excludesEntrypointOverride?: boolean;
|
|
22437
22561
|
/**
|
|
22438
22562
|
* has null parent
|
|
22439
22563
|
*/
|
|
@@ -23628,6 +23752,11 @@ export type $OpenApiTs = {
|
|
|
23628
23752
|
*/
|
|
23629
23753
|
requestBody: {
|
|
23630
23754
|
enabled: boolean;
|
|
23755
|
+
/**
|
|
23756
|
+
* Bypass the parent-state conflict warning when enabling a schedule in a fork whose parent has the same path enabled.
|
|
23757
|
+
*
|
|
23758
|
+
*/
|
|
23759
|
+
force?: boolean;
|
|
23631
23760
|
};
|
|
23632
23761
|
workspace: string;
|
|
23633
23762
|
};
|
|
@@ -23973,6 +24102,11 @@ export type $OpenApiTs = {
|
|
|
23973
24102
|
path: string;
|
|
23974
24103
|
requestBody: {
|
|
23975
24104
|
mode: TriggerMode;
|
|
24105
|
+
/**
|
|
24106
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
24107
|
+
*
|
|
24108
|
+
*/
|
|
24109
|
+
force?: boolean;
|
|
23976
24110
|
};
|
|
23977
24111
|
workspace: string;
|
|
23978
24112
|
};
|
|
@@ -24101,6 +24235,11 @@ export type $OpenApiTs = {
|
|
|
24101
24235
|
*/
|
|
24102
24236
|
requestBody: {
|
|
24103
24237
|
mode: TriggerMode;
|
|
24238
|
+
/**
|
|
24239
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
24240
|
+
*
|
|
24241
|
+
*/
|
|
24242
|
+
force?: boolean;
|
|
24104
24243
|
};
|
|
24105
24244
|
workspace: string;
|
|
24106
24245
|
};
|
|
@@ -24250,6 +24389,11 @@ export type $OpenApiTs = {
|
|
|
24250
24389
|
*/
|
|
24251
24390
|
requestBody: {
|
|
24252
24391
|
mode: TriggerMode;
|
|
24392
|
+
/**
|
|
24393
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
24394
|
+
*
|
|
24395
|
+
*/
|
|
24396
|
+
force?: boolean;
|
|
24253
24397
|
};
|
|
24254
24398
|
workspace: string;
|
|
24255
24399
|
};
|
|
@@ -24435,6 +24579,11 @@ export type $OpenApiTs = {
|
|
|
24435
24579
|
*/
|
|
24436
24580
|
requestBody: {
|
|
24437
24581
|
mode: TriggerMode;
|
|
24582
|
+
/**
|
|
24583
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
24584
|
+
*
|
|
24585
|
+
*/
|
|
24586
|
+
force?: boolean;
|
|
24438
24587
|
};
|
|
24439
24588
|
workspace: string;
|
|
24440
24589
|
};
|
|
@@ -24584,6 +24733,11 @@ export type $OpenApiTs = {
|
|
|
24584
24733
|
*/
|
|
24585
24734
|
requestBody: {
|
|
24586
24735
|
mode: TriggerMode;
|
|
24736
|
+
/**
|
|
24737
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
24738
|
+
*
|
|
24739
|
+
*/
|
|
24740
|
+
force?: boolean;
|
|
24587
24741
|
};
|
|
24588
24742
|
workspace: string;
|
|
24589
24743
|
};
|
|
@@ -25112,6 +25266,11 @@ export type $OpenApiTs = {
|
|
|
25112
25266
|
*/
|
|
25113
25267
|
requestBody: {
|
|
25114
25268
|
mode: TriggerMode;
|
|
25269
|
+
/**
|
|
25270
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
25271
|
+
*
|
|
25272
|
+
*/
|
|
25273
|
+
force?: boolean;
|
|
25115
25274
|
};
|
|
25116
25275
|
workspace: string;
|
|
25117
25276
|
};
|
|
@@ -25261,6 +25420,11 @@ export type $OpenApiTs = {
|
|
|
25261
25420
|
*/
|
|
25262
25421
|
requestBody: {
|
|
25263
25422
|
mode: TriggerMode;
|
|
25423
|
+
/**
|
|
25424
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
25425
|
+
*
|
|
25426
|
+
*/
|
|
25427
|
+
force?: boolean;
|
|
25264
25428
|
};
|
|
25265
25429
|
workspace: string;
|
|
25266
25430
|
};
|
|
@@ -25447,6 +25611,11 @@ export type $OpenApiTs = {
|
|
|
25447
25611
|
path: string;
|
|
25448
25612
|
requestBody: {
|
|
25449
25613
|
mode: TriggerMode;
|
|
25614
|
+
/**
|
|
25615
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
25616
|
+
*
|
|
25617
|
+
*/
|
|
25618
|
+
force?: boolean;
|
|
25450
25619
|
};
|
|
25451
25620
|
workspace: string;
|
|
25452
25621
|
};
|
|
@@ -25869,6 +26038,11 @@ export type $OpenApiTs = {
|
|
|
25869
26038
|
*/
|
|
25870
26039
|
requestBody: {
|
|
25871
26040
|
mode: TriggerMode;
|
|
26041
|
+
/**
|
|
26042
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
26043
|
+
*
|
|
26044
|
+
*/
|
|
26045
|
+
force?: boolean;
|
|
25872
26046
|
};
|
|
25873
26047
|
workspace: string;
|
|
25874
26048
|
};
|
|
@@ -26034,6 +26208,11 @@ export type $OpenApiTs = {
|
|
|
26034
26208
|
path: string;
|
|
26035
26209
|
requestBody: {
|
|
26036
26210
|
mode: TriggerMode;
|
|
26211
|
+
/**
|
|
26212
|
+
* Bypass the parent-state conflict warning when enabling a trigger in a fork whose parent has the same path enabled.
|
|
26213
|
+
*
|
|
26214
|
+
*/
|
|
26215
|
+
force?: boolean;
|
|
26037
26216
|
};
|
|
26038
26217
|
workspace: string;
|
|
26039
26218
|
};
|