windmill-components 1.700.1 → 1.700.3

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.
Files changed (77) hide show
  1. package/dist/appPolicy/myFunction.es.js +1337 -0
  2. package/dist/sharedUtils/common.d.ts +2 -5
  3. package/dist/sharedUtils/components/apps/components/display/dbtable/queries/select.d.ts +0 -2
  4. package/dist/sharedUtils/components/apps/components/display/dbtable/utils.d.ts +3 -14
  5. package/dist/sharedUtils/components/apps/editor/appPolicy.d.ts +1 -1
  6. package/dist/sharedUtils/components/apps/editor/appUtilsS3.d.ts +1 -12
  7. package/dist/sharedUtils/components/apps/editor/component/components.d.ts +2 -68
  8. package/dist/sharedUtils/components/apps/inputType.d.ts +2 -4
  9. package/dist/sharedUtils/components/apps/sharedTypes.d.ts +0 -2
  10. package/dist/sharedUtils/components/dbTypes.d.ts +0 -3
  11. package/dist/sharedUtils/components/raw_apps/rawAppPolicy.d.ts +1 -1
  12. package/dist/sharedUtils/components/raw_apps/utils.d.ts +1 -1
  13. package/dist/sharedUtils/components/triggers/utils.d.ts +3 -2
  14. package/dist/sharedUtils/gen/schemas.gen.d.ts +71 -915
  15. package/dist/sharedUtils/gen/services.gen.d.ts +23 -329
  16. package/dist/sharedUtils/gen/types.gen.d.ts +141 -1870
  17. package/dist/sharedUtils/hub.d.ts +0 -1
  18. package/dist/sharedUtils/jsr.json +5 -5
  19. package/dist/sharedUtils/lib.d.ts +1 -1
  20. package/dist/sharedUtils/lib.es.js +79 -241
  21. package/dist/sharedUtils/package.json +11 -11
  22. package/dist/sharedUtils/stores.d.ts +0 -1
  23. package/dist/sharedUtils/svelte5Utils.svelte.d.ts +1 -32
  24. package/dist/sharedUtils/utils.d.ts +4 -19
  25. package/package/components/DisplayResultControlBar.svelte +26 -11
  26. package/package/components/JobArgs.svelte +43 -24
  27. package/package/components/ShareModal.svelte.d.ts +1 -1
  28. package/package/components/apps/components/helpers/RunnableComponent.svelte.d.ts +0 -3
  29. package/package/components/copilot/CustomAIPrompts.svelte +3 -2
  30. package/package/components/copilot/chat/AIChatInput.svelte +2 -0
  31. package/package/components/copilot/chat/AIChatManager.svelte.js +52 -14
  32. package/package/components/copilot/chat/CreatedResourceActionDrawers.svelte +15 -0
  33. package/package/components/copilot/chat/ToolMessageActions.svelte +4 -2
  34. package/package/components/copilot/chat/app/core.js +2 -30
  35. package/package/components/copilot/chat/flow/core.js +13 -351
  36. package/package/components/copilot/chat/flow/editableFlowJson.d.ts +52 -0
  37. package/package/components/copilot/chat/flow/editableFlowJson.js +328 -0
  38. package/package/components/copilot/chat/flow/inlineScriptsUtils.js +2 -2
  39. package/package/components/copilot/chat/global/core.d.ts +5 -0
  40. package/package/components/copilot/chat/global/core.js +1739 -0
  41. package/package/components/copilot/chat/global/core.test.d.ts +1 -0
  42. package/package/components/copilot/chat/global/core.test.js +123 -0
  43. package/package/components/copilot/chat/global/deployRequests.d.ts +7 -0
  44. package/package/components/copilot/chat/global/deployRequests.js +76 -0
  45. package/package/components/copilot/chat/global/deployRequests.test.d.ts +1 -0
  46. package/package/components/copilot/chat/global/deployRequests.test.js +142 -0
  47. package/package/components/copilot/chat/global/draftStore.svelte.d.ts +55 -0
  48. package/package/components/copilot/chat/global/draftStore.svelte.js +78 -0
  49. package/package/components/copilot/chat/global/draftStore.test.d.ts +1 -0
  50. package/package/components/copilot/chat/global/draftStore.test.js +44 -0
  51. package/package/components/copilot/chat/global/gate.d.ts +1 -0
  52. package/package/components/copilot/chat/global/gate.js +27 -0
  53. package/package/components/copilot/chat/shared.d.ts +16 -2
  54. package/package/components/copilot/chat/shared.js +40 -0
  55. package/package/components/copilot/chat/workspaceToolsZod.gen.d.ts +28 -9
  56. package/package/components/copilot/chat/workspaceToolsZod.gen.js +19 -0
  57. package/package/components/raw_apps/templates.d.ts +77 -0
  58. package/package/components/raw_apps/templates.js +618 -0
  59. package/package/components/runs/runsFilter.d.ts +1 -1
  60. package/package/components/settings/AIPromptsModal.svelte +5 -2
  61. package/package/components/triggers/azure/AzureTriggerEditorConfigSection.svelte.d.ts +1 -1
  62. package/package/gen/core/OpenAPI.js +1 -1
  63. package/package/gen/schemas.gen.d.ts +37 -355
  64. package/package/gen/schemas.gen.js +39 -359
  65. package/package/gen/services.gen.d.ts +4 -280
  66. package/package/gen/services.gen.js +7 -565
  67. package/package/gen/types.gen.d.ts +77 -1135
  68. package/package/system_prompts/index.d.ts +2 -0
  69. package/package/system_prompts/index.js +8 -0
  70. package/package/system_prompts/prompts.d.ts +2 -0
  71. package/package/system_prompts/prompts.js +381 -0
  72. package/package/utils/downloadFile.d.ts +6 -4
  73. package/package/utils/downloadFile.js +9 -15
  74. package/package/utils_deployable.d.ts +5 -318
  75. package/package.json +1 -1
  76. package/dist/sharedUtils/components/assets/lib.d.ts +0 -25
  77. package/dist/sharedUtils/components/icons/index.d.ts +0 -101
@@ -744,10 +744,6 @@ export type AiAgent = {
744
744
  };
745
745
  }>;
746
746
  type: 'aiagent';
747
- /**
748
- * If true, this AI agent step does not persist its assistant or tool messages to the flow conversation when chat mode is enabled.
749
- */
750
- omit_output_from_conversation?: boolean;
751
747
  /**
752
748
  * If true, the agent can execute multiple tool calls in parallel
753
749
  */
@@ -1150,7 +1146,7 @@ export type AzureKeyVaultSettings = {
1150
1146
  */
1151
1147
  client_id: string;
1152
1148
  /**
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).
1149
+ * Azure AD client secret
1154
1150
  */
1155
1151
  client_secret?: string;
1156
1152
  /**
@@ -1275,10 +1271,6 @@ export type FlowConversationMessage = {
1275
1271
  * When the message was created
1276
1272
  */
1277
1273
  created_at: string;
1278
- /**
1279
- * Monotonic cursor assigned when the message is inserted
1280
- */
1281
- created_seq: number;
1282
1274
  /**
1283
1275
  * The step name that produced that message
1284
1276
  */
@@ -1941,7 +1933,6 @@ export type TruncatedToken = {
1941
1933
  last_used_at: string;
1942
1934
  scopes?: Array<(string)>;
1943
1935
  email?: string;
1944
- workspace_id?: string;
1945
1936
  };
1946
1937
  export type ExternalJwtToken = {
1947
1938
  jwt_hash: number;
@@ -1983,7 +1974,6 @@ export type ListableVariable = {
1983
1974
  is_refreshed?: boolean;
1984
1975
  expires_at?: string;
1985
1976
  labels?: Array<(string)>;
1986
- ws_specific?: boolean;
1987
1977
  };
1988
1978
  export type ContextualVariable = {
1989
1979
  name: string;
@@ -2021,7 +2011,6 @@ export type CreateVariable = {
2021
2011
  */
2022
2012
  expires_at?: string;
2023
2013
  labels?: Array<(string)>;
2024
- ws_specific?: boolean;
2025
2014
  };
2026
2015
  export type EditVariable = {
2027
2016
  /**
@@ -2041,7 +2030,6 @@ export type EditVariable = {
2041
2030
  */
2042
2031
  description?: string;
2043
2032
  labels?: Array<(string)>;
2044
- ws_specific?: boolean;
2045
2033
  };
2046
2034
  export type AuditLog = {
2047
2035
  workspace_id: string;
@@ -2168,7 +2156,6 @@ export type CreateResource = {
2168
2156
  */
2169
2157
  resource_type: string;
2170
2158
  labels?: Array<(string)>;
2171
- ws_specific?: boolean;
2172
2159
  };
2173
2160
  export type EditResource = {
2174
2161
  /**
@@ -2185,7 +2172,6 @@ export type EditResource = {
2185
2172
  */
2186
2173
  resource_type?: string;
2187
2174
  labels?: Array<(string)>;
2188
- ws_specific?: boolean;
2189
2175
  };
2190
2176
  export type Resource = {
2191
2177
  workspace_id?: string;
@@ -2200,7 +2186,6 @@ export type Resource = {
2200
2186
  created_by?: string;
2201
2187
  edited_at?: string;
2202
2188
  labels?: Array<(string)>;
2203
- ws_specific?: boolean;
2204
2189
  };
2205
2190
  export type ListableResource = {
2206
2191
  workspace_id?: string;
@@ -2220,7 +2205,6 @@ export type ListableResource = {
2220
2205
  created_by?: string;
2221
2206
  edited_at?: string;
2222
2207
  labels?: Array<(string)>;
2223
- ws_specific?: boolean;
2224
2208
  };
2225
2209
  export type ResourceType = {
2226
2210
  workspace_id?: string;
@@ -2239,7 +2223,7 @@ export type EditResourceType = {
2239
2223
  };
2240
2224
  export type Schedule = {
2241
2225
  /**
2242
- * The unique Windmill path for this schedule. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`.
2226
+ * The unique path identifier for this schedule
2243
2227
  */
2244
2228
  path: string;
2245
2229
  /**
@@ -2361,7 +2345,7 @@ export type ScheduleWJobs = Schedule & {
2361
2345
  export type ErrorHandler = 'custom' | 'slack' | 'teams' | 'email';
2362
2346
  export type NewSchedule = {
2363
2347
  /**
2364
- * The unique Windmill path for this schedule. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`.
2348
+ * The unique path identifier for this schedule
2365
2349
  */
2366
2350
  path: string;
2367
2351
  /**
@@ -2538,14 +2522,14 @@ export type EditSchedule = {
2538
2522
  /**
2539
2523
  * job trigger kind (schedule, http, websocket...)
2540
2524
  */
2541
- export type JobTriggerKind = 'webhook' | 'default_email' | 'email' | 'schedule' | 'http' | 'websocket' | 'postgres' | 'kafka' | 'nats' | 'mqtt' | 'sqs' | 'gcp' | 'azure' | 'google' | 'github' | 'asset';
2525
+ export type JobTriggerKind = 'webhook' | 'default_email' | 'email' | 'schedule' | 'http' | 'websocket' | 'postgres' | 'kafka' | 'nats' | 'mqtt' | 'sqs' | 'gcp' | 'google';
2542
2526
  /**
2543
2527
  * job trigger mode
2544
2528
  */
2545
2529
  export type TriggerMode = 'enabled' | 'disabled' | 'suspended';
2546
2530
  export type TriggerExtraProperty = {
2547
2531
  /**
2548
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
2532
+ * The unique path identifier for this trigger
2549
2533
  */
2550
2534
  path: string;
2551
2535
  /**
@@ -2700,7 +2684,7 @@ export type HttpTrigger = TriggerExtraProperty & {
2700
2684
  };
2701
2685
  export type NewHttpTrigger = {
2702
2686
  /**
2703
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
2687
+ * The unique path identifier for this trigger
2704
2688
  */
2705
2689
  path: string;
2706
2690
  /**
@@ -2801,7 +2785,7 @@ export type NewHttpTrigger = {
2801
2785
  };
2802
2786
  export type EditHttpTrigger = {
2803
2787
  /**
2804
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
2788
+ * The unique path identifier for this trigger
2805
2789
  */
2806
2790
  path: string;
2807
2791
  /**
@@ -2914,11 +2898,9 @@ export type TriggersCount = {
2914
2898
  nats_count?: number;
2915
2899
  mqtt_count?: number;
2916
2900
  gcp_count?: number;
2917
- azure_count?: number;
2918
2901
  sqs_count?: number;
2919
2902
  nextcloud_count?: number;
2920
2903
  google_count?: number;
2921
- github_count?: number;
2922
2904
  };
2923
2905
  export type WebsocketHeartbeat = {
2924
2906
  /**
@@ -2997,7 +2979,7 @@ export type WebsocketTrigger = TriggerExtraProperty & {
2997
2979
  };
2998
2980
  export type NewWebsocketTrigger = {
2999
2981
  /**
3000
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
2982
+ * The unique path identifier for this trigger
3001
2983
  */
3002
2984
  path: string;
3003
2985
  /**
@@ -3072,7 +3054,7 @@ export type EditWebsocketTrigger = {
3072
3054
  */
3073
3055
  url: string;
3074
3056
  /**
3075
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
3057
+ * The unique path identifier for this trigger
3076
3058
  */
3077
3059
  path: string;
3078
3060
  /**
@@ -3235,7 +3217,7 @@ export type NewMqttTrigger = {
3235
3217
  */
3236
3218
  client_version?: MqttClientVersion | null;
3237
3219
  /**
3238
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
3220
+ * The unique path identifier for this trigger
3239
3221
  */
3240
3222
  path: string;
3241
3223
  /**
@@ -3295,7 +3277,7 @@ export type EditMqttTrigger = {
3295
3277
  */
3296
3278
  client_version?: MqttClientVersion | null;
3297
3279
  /**
3298
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
3280
+ * The unique path identifier for this trigger
3299
3281
  */
3300
3282
  path: string;
3301
3283
  /**
@@ -3418,7 +3400,7 @@ export type GcpTriggerData = {
3418
3400
  delivery_type?: DeliveryType;
3419
3401
  delivery_config?: PushConfig | null;
3420
3402
  /**
3421
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
3403
+ * The unique path identifier for this trigger.
3422
3404
  */
3423
3405
  path: string;
3424
3406
  /**
@@ -3466,86 +3448,6 @@ export type GetAllTopicSubscription = {
3466
3448
  export type DeleteGcpSubscription = {
3467
3449
  subscription_id: string;
3468
3450
  };
3469
- /**
3470
- * Azure Event Grid trigger mode.
3471
- */
3472
- export type AzureMode = 'basic_push' | 'namespace_push' | 'namespace_pull';
3473
- /**
3474
- * An ARM resource the service principal can see.
3475
- */
3476
- export type AzureArmResource = {
3477
- id: string;
3478
- name: string;
3479
- location?: string;
3480
- type: string;
3481
- };
3482
- export type AzureDeleteSubscription = {
3483
- azure_mode: AzureMode;
3484
- scope_resource_id: string;
3485
- topic_name?: string | null;
3486
- subscription_name: string;
3487
- };
3488
- /**
3489
- * An Azure Event Grid trigger that executes a script or flow when events arrive.
3490
- */
3491
- export type AzureTrigger = TriggerExtraProperty & {
3492
- azure_resource_path: string;
3493
- azure_mode: AzureMode;
3494
- /**
3495
- * ARM resource ID of the topic (basic) or namespace (namespace modes).
3496
- */
3497
- scope_resource_id: string;
3498
- /**
3499
- * Topic name within the namespace (namespace modes only).
3500
- */
3501
- topic_name?: string | null;
3502
- subscription_name: string;
3503
- event_type_filters?: Array<(string)> | null;
3504
- server_id?: string;
3505
- last_server_ping?: string;
3506
- error?: string;
3507
- error_handler_path?: string;
3508
- error_handler_args?: ScriptArgs;
3509
- retry?: Retry;
3510
- };
3511
- /**
3512
- * Data for creating or updating an Azure Event Grid trigger.
3513
- */
3514
- export type AzureTriggerData = {
3515
- azure_resource_path: string;
3516
- azure_mode: AzureMode;
3517
- scope_resource_id: string;
3518
- topic_name?: string | null;
3519
- subscription_name: string;
3520
- /**
3521
- * Base URL for push delivery endpoints (push modes only).
3522
- */
3523
- base_endpoint?: string;
3524
- event_type_filters?: Array<(string)>;
3525
- /**
3526
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
3527
- */
3528
- path: string;
3529
- script_path: string;
3530
- is_flow: boolean;
3531
- mode?: TriggerMode;
3532
- error_handler_path?: string;
3533
- error_handler_args?: ScriptArgs;
3534
- retry?: Retry;
3535
- permissioned_as?: string;
3536
- preserve_permissioned_as?: boolean;
3537
- labels?: Array<(string)>;
3538
- };
3539
- export type TestAzureConnection = {
3540
- azure_resource_path: string;
3541
- };
3542
- export type AzureListTopics = {
3543
- scope_resource_id: string;
3544
- };
3545
- export type AzureListSubscriptions = {
3546
- scope_resource_id: string;
3547
- topic_name: string;
3548
- };
3549
3451
  export type AwsAuthResourceType = 'oidc' | 'credentials';
3550
3452
  export type SqsTrigger = TriggerExtraProperty & {
3551
3453
  /**
@@ -3629,7 +3531,7 @@ export type NewSqsTrigger = {
3629
3531
  */
3630
3532
  message_attributes?: Array<(string)> | null;
3631
3533
  /**
3632
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
3534
+ * The unique path identifier for this trigger
3633
3535
  */
3634
3536
  path: string;
3635
3537
  /**
@@ -3681,7 +3583,7 @@ export type EditSqsTrigger = {
3681
3583
  */
3682
3584
  message_attributes?: Array<(string)> | null;
3683
3585
  /**
3684
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
3586
+ * The unique path identifier for this trigger
3685
3587
  */
3686
3588
  path: string;
3687
3589
  /**
@@ -3789,7 +3691,7 @@ export type NewPostgresTrigger = {
3789
3691
  */
3790
3692
  publication_name?: string;
3791
3693
  /**
3792
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
3694
+ * The unique path identifier for this trigger
3793
3695
  */
3794
3696
  path: string;
3795
3697
  /**
@@ -3841,7 +3743,7 @@ export type EditPostgresTrigger = {
3841
3743
  */
3842
3744
  publication_name: string;
3843
3745
  /**
3844
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
3746
+ * The unique path identifier for this trigger
3845
3747
  */
3846
3748
  path: string;
3847
3749
  /**
@@ -3939,7 +3841,7 @@ export type KafkaTrigger = TriggerExtraProperty & {
3939
3841
  };
3940
3842
  export type NewKafkaTrigger = {
3941
3843
  /**
3942
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
3844
+ * The unique path identifier for this trigger
3943
3845
  */
3944
3846
  path: string;
3945
3847
  /**
@@ -4031,7 +3933,7 @@ export type EditKafkaTrigger = {
4031
3933
  */
4032
3934
  auto_commit?: boolean;
4033
3935
  /**
4034
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
3936
+ * The unique path identifier for this trigger
4035
3937
  */
4036
3938
  path: string;
4037
3939
  /**
@@ -4112,7 +4014,7 @@ export type NatsTrigger = TriggerExtraProperty & {
4112
4014
  };
4113
4015
  export type NewNatsTrigger = {
4114
4016
  /**
4115
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
4017
+ * The unique path identifier for this trigger
4116
4018
  */
4117
4019
  path: string;
4118
4020
  /**
@@ -4188,7 +4090,7 @@ export type EditNatsTrigger = {
4188
4090
  */
4189
4091
  subjects: Array<(string)>;
4190
4092
  /**
4191
- * The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.
4093
+ * The unique path identifier for this trigger
4192
4094
  */
4193
4095
  path: string;
4194
4096
  /**
@@ -4472,22 +4374,8 @@ export type FlowPreview = {
4472
4374
  export type RestartedFrom = {
4473
4375
  flow_job_id?: string;
4474
4376
  step_id?: string;
4475
- /**
4476
- * 0-based iteration index for ForLoop / branch index for BranchAll. Iterations 0..n-1 are preserved; iteration n is restarted.
4477
- */
4478
4377
  branch_or_iteration_n?: number;
4479
4378
  flow_version?: number;
4480
- /**
4481
- * For BranchOne nested restart — the branch that was originally chosen, used to lock branch evaluation.
4482
- */
4483
- branch_chosen?: {
4484
- type?: 'default' | 'branch';
4485
- branch?: number;
4486
- };
4487
- /**
4488
- * When set, the worker spawns the child for `step_id` as a `RestartedFlow` against `nested.flow_job_id` instead of fresh-launching it.
4489
- */
4490
- nested?: RestartedFrom;
4491
4379
  };
4492
4380
  export type Policy = {
4493
4381
  triggerables?: {
@@ -4583,9 +4471,10 @@ export type FlowVersion = {
4583
4471
  };
4584
4472
  export type SlackToken = {
4585
4473
  access_token: string;
4586
- team?: {
4587
- id: string;
4588
- name: string;
4474
+ team_id: string;
4475
+ team_name: string;
4476
+ bot: {
4477
+ bot_access_token?: string;
4589
4478
  };
4590
4479
  };
4591
4480
  export type TokenResponse = {
@@ -4666,27 +4555,6 @@ export type DataTableSchema = {
4666
4555
  };
4667
4556
  error?: string;
4668
4557
  };
4669
- export type DataTableTables = {
4670
- datatable_name: string;
4671
- /**
4672
- * Hierarchical metadata: schema_name -> table_names
4673
- */
4674
- schemas: {
4675
- [key: string]: Array<(string)>;
4676
- };
4677
- error?: string;
4678
- };
4679
- export type DataTableTableSchema = {
4680
- datatable_name: string;
4681
- schema_name: string;
4682
- table_name: string;
4683
- /**
4684
- * Columns in this table: column_name -> compact_type
4685
- */
4686
- columns: {
4687
- [key: string]: (string);
4688
- };
4689
- };
4690
4558
  export type DynamicInputData = {
4691
4559
  /**
4692
4560
  * Name of the function to execute for dynamic select
@@ -4759,6 +4627,7 @@ export type GitRepositorySettings = {
4759
4627
  git_repo_resource_path: string;
4760
4628
  use_individual_branch?: boolean;
4761
4629
  group_by_folder?: boolean;
4630
+ force_branch?: string;
4762
4631
  collapsed?: boolean;
4763
4632
  settings?: {
4764
4633
  include_path?: Array<(string)>;
@@ -4891,7 +4760,7 @@ export type CriticalAlert = {
4891
4760
  */
4892
4761
  workspace_id?: string | null;
4893
4762
  };
4894
- export type CaptureTriggerKind = 'webhook' | 'http' | 'websocket' | 'kafka' | 'default_email' | 'nats' | 'postgres' | 'sqs' | 'mqtt' | 'gcp' | 'azure' | 'email';
4763
+ export type CaptureTriggerKind = 'webhook' | 'http' | 'websocket' | 'kafka' | 'default_email' | 'nats' | 'postgres' | 'sqs' | 'mqtt' | 'gcp' | 'email';
4895
4764
  export type Capture = {
4896
4765
  trigger_kind: CaptureTriggerKind;
4897
4766
  main_args: unknown;
@@ -4973,7 +4842,7 @@ export type WorkspaceItemDiff = {
4973
4842
  /**
4974
4843
  * Type of the item
4975
4844
  */
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';
4845
+ kind: 'script' | 'flow' | 'app' | 'raw_app' | 'resource' | 'variable' | 'resource_type';
4977
4846
  /**
4978
4847
  * Path of the item in the workspace
4979
4848
  */
@@ -5040,14 +4909,6 @@ export type CompareSummary = {
5040
4909
  * Number of folders with differences
5041
4910
  */
5042
4911
  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;
5051
4912
  /**
5052
4913
  * Number of items that are both ahead and behind (conflicts)
5053
4914
  */
@@ -5214,7 +5075,7 @@ export type QuotaInfo = {
5214
5075
  limit: number;
5215
5076
  prunable: number;
5216
5077
  };
5217
- export type NativeServiceName = 'nextcloud' | 'google' | 'github';
5078
+ export type NativeServiceName = 'nextcloud' | 'google';
5218
5079
  /**
5219
5080
  * A native trigger stored in Windmill
5220
5081
  */
@@ -5395,12 +5256,6 @@ export type SharedDriveEntry = {
5395
5256
  id: string;
5396
5257
  name: string;
5397
5258
  };
5398
- export type GithubRepoEntry = {
5399
- full_name: string;
5400
- name: string;
5401
- owner: string;
5402
- private: boolean;
5403
- };
5404
5259
  export type ParameterId = string;
5405
5260
  export type ParameterKey = string;
5406
5261
  export type ParameterWorkspaceId = string;
@@ -5691,7 +5546,6 @@ export type LoginData = {
5691
5546
  export type LoginResponse = string;
5692
5547
  export type LogoutResponse = string;
5693
5548
  export type IsSmtpConfiguredResponse = boolean;
5694
- export type IsPasswordLoginDisabledResponse = boolean;
5695
5549
  export type RequestPasswordResetData = {
5696
5550
  /**
5697
5551
  * email to send password reset link to
@@ -5994,16 +5848,6 @@ export type DeleteTokenData = {
5994
5848
  tokenPrefix: string;
5995
5849
  };
5996
5850
  export type DeleteTokenResponse = string;
5997
- export type UpdateTokenScopesData = {
5998
- /**
5999
- * new scopes (null or omitted = full access)
6000
- */
6001
- requestBody: {
6002
- scopes?: Array<(string)> | null;
6003
- };
6004
- tokenPrefix: string;
6005
- };
6006
- export type UpdateTokenScopesResponse = string;
6007
5851
  export type ListTokensData = {
6008
5852
  excludeEphemeral?: boolean;
6009
5853
  /**
@@ -6084,7 +5928,6 @@ export type GetGhesConfigResponse = {
6084
5928
  base_url: string;
6085
5929
  app_slug: string;
6086
5930
  client_id: string;
6087
- app_owner?: string | null;
6088
5931
  };
6089
5932
  export type ListWorkspacesResponse = Array<Workspace>;
6090
5933
  export type IsDomainAllowedResponse = boolean;
@@ -6268,21 +6111,6 @@ export type ListPendingInvitesData = {
6268
6111
  workspace: string;
6269
6112
  };
6270
6113
  export type ListPendingInvitesResponse = Array<WorkspaceInvite>;
6271
- export type GetPublicSettingsData = {
6272
- workspace: string;
6273
- };
6274
- export type GetPublicSettingsResponse = {
6275
- workspace_id: string;
6276
- slack_name?: string;
6277
- slack_team_id?: string;
6278
- teams_team_id?: string;
6279
- teams_team_name?: string;
6280
- teams_team_guid?: string;
6281
- large_file_storage?: LargeFileStorage;
6282
- datatable?: DataTableSettings;
6283
- deploy_ui?: WorkspaceDeployUISettings;
6284
- mute_critical_alerts?: boolean;
6285
- };
6286
6114
  export type GetSettingsData = {
6287
6115
  workspace: string;
6288
6116
  };
@@ -6493,21 +6321,6 @@ export type ConnectTeamsData = {
6493
6321
  workspace: string;
6494
6322
  };
6495
6323
  export type ConnectTeamsResponse = string;
6496
- export type ConnectSlackData = {
6497
- /**
6498
- * connect slack with a pre-minted bot token
6499
- */
6500
- requestBody: {
6501
- /**
6502
- * xoxb-... bot token obtained at api.slack.com/apps
6503
- */
6504
- bot_token: string;
6505
- team_id: string;
6506
- team_name: string;
6507
- };
6508
- workspace: string;
6509
- };
6510
- export type ConnectSlackResponse = unknown;
6511
6324
  export type RunSlackMessageTestJobData = {
6512
6325
  /**
6513
6326
  * path to hub script to run and its corresponding args
@@ -6645,17 +6458,6 @@ export type ListDataTableSchemasData = {
6645
6458
  workspace: string;
6646
6459
  };
6647
6460
  export type ListDataTableSchemasResponse = Array<DataTableSchema>;
6648
- export type ListDataTableTablesData = {
6649
- workspace: string;
6650
- };
6651
- export type ListDataTableTablesResponse = Array<DataTableTables>;
6652
- export type GetDataTableTableSchemaData = {
6653
- datatableName: string;
6654
- schemaName: string;
6655
- tableName: string;
6656
- workspace: string;
6657
- };
6658
- export type GetDataTableTableSchemaResponse = DataTableTableSchema;
6659
6461
  export type EditDucklakeConfigData = {
6660
6462
  /**
6661
6463
  * Ducklake settings
@@ -6898,12 +6700,10 @@ export type GetUsedTriggersResponse = {
6898
6700
  postgres_used: boolean;
6899
6701
  mqtt_used: boolean;
6900
6702
  gcp_used: boolean;
6901
- azure_used: boolean;
6902
6703
  sqs_used: boolean;
6903
6704
  email_used: boolean;
6904
6705
  nextcloud_used: boolean;
6905
6706
  google_used: boolean;
6906
- github_used: boolean;
6907
6707
  };
6908
6708
  export type ListProtectionRulesData = {
6909
6709
  workspace: string;
@@ -7017,57 +6817,6 @@ export type PruneVersionsData = {
7017
6817
  export type PruneVersionsResponse = {
7018
6818
  pruned: number;
7019
6819
  };
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)>;
7033
- export type GetSharedUiData = {
7034
- workspace: string;
7035
- };
7036
- export type GetSharedUiResponse = {
7037
- files: {
7038
- [key: string]: (string);
7039
- };
7040
- version: number;
7041
- edited_at: string;
7042
- edited_by: string;
7043
- };
7044
- export type ListSharedUiData = {
7045
- workspace: string;
7046
- };
7047
- export type ListSharedUiResponse = {
7048
- paths: Array<(string)>;
7049
- sizes: {
7050
- [key: string]: (number);
7051
- };
7052
- version: number;
7053
- edited_at: string;
7054
- edited_by: string;
7055
- };
7056
- export type GetSharedUiVersionData = {
7057
- workspace: string;
7058
- };
7059
- export type GetSharedUiVersionResponse = {
7060
- version: number;
7061
- };
7062
- export type UpdateSharedUiData = {
7063
- requestBody: {
7064
- files: {
7065
- [key: string]: (string);
7066
- };
7067
- };
7068
- workspace: string;
7069
- };
7070
- export type UpdateSharedUiResponse = string;
7071
6820
  export type RefreshCustomInstanceUserPwdResponse = {
7072
6821
  [key: string]: unknown;
7073
6822
  };
@@ -7522,20 +7271,6 @@ export type ConnectSlackCallbackInstanceData = {
7522
7271
  };
7523
7272
  };
7524
7273
  export type ConnectSlackCallbackInstanceResponse = string;
7525
- export type ConnectSlackInstanceData = {
7526
- /**
7527
- * connect slack at the instance level with a pre-minted bot token
7528
- */
7529
- requestBody: {
7530
- /**
7531
- * xoxb-... bot token obtained at api.slack.com/apps
7532
- */
7533
- bot_token: string;
7534
- team_id: string;
7535
- team_name: string;
7536
- };
7537
- };
7538
- export type ConnectSlackInstanceResponse = unknown;
7539
7274
  export type ConnectCallbackData = {
7540
7275
  clientName: string;
7541
7276
  /**
@@ -7638,10 +7373,6 @@ export type ListOauthLoginsResponse = {
7638
7373
  display_name?: string;
7639
7374
  }>;
7640
7375
  saml?: string;
7641
- /**
7642
- * provider type to auto-redirect to on login (oauth key or "saml")
7643
- */
7644
- auto_login?: string;
7645
7376
  };
7646
7377
  export type ListOauthConnectsResponse = Array<(string)>;
7647
7378
  export type GetOauthConnectData = {
@@ -8491,7 +8222,6 @@ export type ExecuteComponentData = {
8491
8222
  path?: string;
8492
8223
  lock?: string;
8493
8224
  cache_ttl?: number;
8494
- tag?: string;
8495
8225
  };
8496
8226
  id?: number;
8497
8227
  force_viewer_static_fields?: {
@@ -8501,8 +8231,6 @@ export type ExecuteComponentData = {
8501
8231
  [key: string]: unknown;
8502
8232
  };
8503
8233
  force_viewer_allow_user_resources?: Array<(string)>;
8504
- force_viewer_sensitive_inputs?: Array<(string)>;
8505
- force_viewer_delete_after_secs?: number;
8506
8234
  /**
8507
8235
  * Runnable query parameters
8508
8236
  */
@@ -9776,30 +9504,17 @@ export type RestartFlowAtStepData = {
9776
9504
  */
9777
9505
  requestBody: {
9778
9506
  /**
9779
- * top-level step id to restart the flow from (or the outermost container when restarting at a nested step)
9507
+ * step id to restart the flow from
9780
9508
  */
9781
9509
  step_id: string;
9782
9510
  /**
9783
- * for branchall or loop at the top level, the iteration at which the flow should restart (optional)
9511
+ * for branchall or loop, the iteration at which the flow should restart (optional)
9784
9512
  */
9785
9513
  branch_or_iteration_n?: number;
9786
9514
  /**
9787
9515
  * specific flow version to use for restart (optional, uses current version if not specified)
9788
9516
  */
9789
9517
  flow_version?: number;
9790
- /**
9791
- * path of additional steps to descend into AFTER `step_id`. Each entry represents one level of nesting inside the spawned child of the previous level's container (BranchOne / sequential ForLoop iteration / Subflow). When non-empty, the actual restart point is the LAST entry's step_id.
9792
- */
9793
- nested_path?: Array<{
9794
- /**
9795
- * step id at this nesting level
9796
- */
9797
- step_id: string;
9798
- /**
9799
- * for ForLoop containers, the iteration to restart at (0-based; iterations 0..n-1 are preserved)
9800
- */
9801
- branch_or_iteration_n?: number;
9802
- }>;
9803
9518
  };
9804
9519
  /**
9805
9520
  * when to schedule this job (leave empty for immediate run)
@@ -9944,28 +9659,6 @@ export type RunRawScriptDependenciesData = {
9944
9659
  export type RunRawScriptDependenciesResponse = {
9945
9660
  lock: string;
9946
9661
  };
9947
- export type RunRawScriptDependenciesAsyncData = {
9948
- /**
9949
- * raw script content
9950
- */
9951
- requestBody: {
9952
- raw_scripts: Array<RawScriptForDependencies>;
9953
- entrypoint: string;
9954
- };
9955
- workspace: string;
9956
- };
9957
- export type RunRawScriptDependenciesAsyncResponse = string;
9958
- export type RunFlowDependenciesAsyncData = {
9959
- /**
9960
- * flow value and path
9961
- */
9962
- requestBody: {
9963
- path: string;
9964
- flow_value: FlowValue;
9965
- };
9966
- workspace: string;
9967
- };
9968
- export type RunFlowDependenciesAsyncResponse = string;
9969
9662
  export type RunFlowPreviewData = {
9970
9663
  /**
9971
9664
  * List of headers's keys (separated with ',') whove value are added to the args
@@ -10363,7 +10056,6 @@ export type ListFilteredQueueUuidsData = {
10363
10056
  };
10364
10057
  export type ListFilteredQueueUuidsResponse = Array<(string)>;
10365
10058
  export type CancelSelectionData = {
10366
- allWorkspaces?: boolean;
10367
10059
  forceCancel?: boolean;
10368
10060
  /**
10369
10061
  * uuids of the jobs to cancel
@@ -10559,10 +10251,6 @@ export type ListJobsData = {
10559
10251
  * 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')
10560
10252
  */
10561
10253
  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;
10566
10254
  /**
10567
10255
  * has null parent
10568
10256
  */
@@ -10670,10 +10358,6 @@ export type CountJobsByTagResponse = Array<{
10670
10358
  count: number;
10671
10359
  }>;
10672
10360
  export type GetJobData = {
10673
- /**
10674
- * Approval token granting read access to the job when not logged in. The token must be the one issued for this job's flow (i.e. the flow id used when generating the approval URL).
10675
- */
10676
- approvalToken?: string;
10677
10361
  id: string;
10678
10362
  noCode?: boolean;
10679
10363
  noLogs?: boolean;
@@ -11183,9 +10867,9 @@ export type DeleteFlowConversationData = {
11183
10867
  export type DeleteFlowConversationResponse = string;
11184
10868
  export type ListConversationMessagesData = {
11185
10869
  /**
11186
- * Message sequence cursor to fetch only the messages after that cursor
10870
+ * id to fetch only the messages after that id
11187
10871
  */
11188
- afterSeq?: number;
10872
+ afterId?: string;
11189
10873
  /**
11190
10874
  * conversation id
11191
10875
  */
@@ -11322,11 +11006,6 @@ export type SetScheduleEnabledData = {
11322
11006
  */
11323
11007
  requestBody: {
11324
11008
  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;
11330
11009
  };
11331
11010
  workspace: string;
11332
11011
  };
@@ -11519,11 +11198,6 @@ export type SetHttpTriggerModeData = {
11519
11198
  path: string;
11520
11199
  requestBody: {
11521
11200
  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;
11527
11201
  };
11528
11202
  workspace: string;
11529
11203
  };
@@ -11589,11 +11263,6 @@ export type SetWebsocketTriggerModeData = {
11589
11263
  */
11590
11264
  requestBody: {
11591
11265
  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;
11597
11266
  };
11598
11267
  workspace: string;
11599
11268
  };
@@ -11671,11 +11340,6 @@ export type SetKafkaTriggerModeData = {
11671
11340
  */
11672
11341
  requestBody: {
11673
11342
  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;
11679
11343
  };
11680
11344
  workspace: string;
11681
11345
  };
@@ -11771,11 +11435,6 @@ export type SetNatsTriggerModeData = {
11771
11435
  */
11772
11436
  requestBody: {
11773
11437
  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;
11779
11438
  };
11780
11439
  workspace: string;
11781
11440
  };
@@ -11853,11 +11512,6 @@ export type SetSqsTriggerModeData = {
11853
11512
  */
11854
11513
  requestBody: {
11855
11514
  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;
11861
11515
  };
11862
11516
  workspace: string;
11863
11517
  };
@@ -12045,10 +11699,6 @@ export type ListGoogleSharedDrivesData = {
12045
11699
  workspace: string;
12046
11700
  };
12047
11701
  export type ListGoogleSharedDrivesResponse = Array<SharedDriveEntry>;
12048
- export type ListGithubReposData = {
12049
- workspace: string;
12050
- };
12051
- export type ListGithubReposResponse = Array<GithubRepoEntry>;
12052
11702
  export type NativeTriggerWebhookData = {
12053
11703
  /**
12054
11704
  * The internal database ID of the trigger
@@ -12125,11 +11775,6 @@ export type SetMqttTriggerModeData = {
12125
11775
  */
12126
11776
  requestBody: {
12127
11777
  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;
12133
11778
  };
12134
11779
  workspace: string;
12135
11780
  };
@@ -12207,11 +11852,6 @@ export type SetGcpTriggerModeData = {
12207
11852
  */
12208
11853
  requestBody: {
12209
11854
  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;
12215
11855
  };
12216
11856
  workspace: string;
12217
11857
  };
@@ -12251,152 +11891,58 @@ export type ListAllTgoogleTopicSubscriptionsData = {
12251
11891
  workspace: string;
12252
11892
  };
12253
11893
  export type ListAllTgoogleTopicSubscriptionsResponse = Array<(string)>;
12254
- export type CreateAzureTriggerData = {
12255
- requestBody: AzureTriggerData;
11894
+ export type GetPostgresVersionData = {
11895
+ path: string;
12256
11896
  workspace: string;
12257
11897
  };
12258
- export type CreateAzureTriggerResponse = string;
12259
- export type UpdateAzureTriggerData = {
11898
+ export type GetPostgresVersionResponse = string;
11899
+ export type IsValidPostgresConfigurationData = {
12260
11900
  path: string;
12261
- requestBody: AzureTriggerData;
12262
11901
  workspace: string;
12263
11902
  };
12264
- export type UpdateAzureTriggerResponse = string;
12265
- export type DeleteAzureTriggerData = {
12266
- path: string;
11903
+ export type IsValidPostgresConfigurationResponse = boolean;
11904
+ export type CreateTemplateScriptData = {
11905
+ /**
11906
+ * template script
11907
+ */
11908
+ requestBody: TemplateScript;
11909
+ workspace: string;
11910
+ };
11911
+ export type CreateTemplateScriptResponse = string;
11912
+ export type GetTemplateScriptData = {
11913
+ id: string;
12267
11914
  workspace: string;
12268
11915
  };
12269
- export type DeleteAzureTriggerResponse = string;
12270
- export type GetAzureTriggerData = {
11916
+ export type GetTemplateScriptResponse = string;
11917
+ export type ListPostgresReplicationSlotData = {
12271
11918
  path: string;
12272
11919
  workspace: string;
12273
11920
  };
12274
- export type GetAzureTriggerResponse = AzureTrigger;
12275
- export type ListAzureTriggersData = {
12276
- isFlow?: boolean;
12277
- /**
12278
- * which page to return (start at 1, default 1)
12279
- */
12280
- page?: number;
11921
+ export type ListPostgresReplicationSlotResponse = Array<SlotList>;
11922
+ export type CreatePostgresReplicationSlotData = {
11923
+ path: string;
12281
11924
  /**
12282
- * filter by exact path
11925
+ * new slot for postgres
12283
11926
  */
12284
- path?: string;
12285
- pathStart?: string;
11927
+ requestBody: Slot;
11928
+ workspace: string;
11929
+ };
11930
+ export type CreatePostgresReplicationSlotResponse = string;
11931
+ export type DeletePostgresReplicationSlotData = {
11932
+ path: string;
12286
11933
  /**
12287
- * number of items to return for a given page (default 30, max 100)
11934
+ * replication slot of postgres
12288
11935
  */
12289
- perPage?: number;
11936
+ requestBody: Slot;
12290
11937
  workspace: string;
12291
11938
  };
12292
- export type ListAzureTriggersResponse = Array<AzureTrigger>;
12293
- export type ExistsAzureTriggerData = {
11939
+ export type DeletePostgresReplicationSlotResponse = string;
11940
+ export type ListPostgresPublicationData = {
12294
11941
  path: string;
12295
11942
  workspace: string;
12296
11943
  };
12297
- export type ExistsAzureTriggerResponse = boolean;
12298
- export type SetAzureTriggerModeData = {
12299
- path: string;
12300
- requestBody: {
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;
12307
- };
12308
- workspace: string;
12309
- };
12310
- export type SetAzureTriggerModeResponse = string;
12311
- export type TestAzureConnectionData = {
12312
- requestBody: TestAzureConnection;
12313
- workspace: string;
12314
- };
12315
- export type TestAzureConnectionResponse = string;
12316
- export type ListAzureNamespaceTopicsData = {
12317
- path: string;
12318
- requestBody: AzureListTopics;
12319
- workspace: string;
12320
- };
12321
- export type ListAzureNamespaceTopicsResponse = Array<{
12322
- [key: string]: unknown;
12323
- }>;
12324
- export type ListAzureNamespaceSubscriptionsData = {
12325
- path: string;
12326
- requestBody: AzureListSubscriptions;
12327
- workspace: string;
12328
- };
12329
- export type ListAzureNamespaceSubscriptionsResponse = Array<{
12330
- [key: string]: unknown;
12331
- }>;
12332
- export type DeleteAzureSubscriptionData = {
12333
- path: string;
12334
- requestBody: AzureDeleteSubscription;
12335
- workspace: string;
12336
- };
12337
- export type DeleteAzureSubscriptionResponse = string;
12338
- export type ListAzureNamespacesData = {
12339
- path: string;
12340
- workspace: string;
12341
- };
12342
- export type ListAzureNamespacesResponse = Array<AzureArmResource>;
12343
- export type ListAzureBasicTopicsData = {
12344
- path: string;
12345
- workspace: string;
12346
- };
12347
- export type ListAzureBasicTopicsResponse = Array<AzureArmResource>;
12348
- export type GetPostgresVersionData = {
12349
- path: string;
12350
- workspace: string;
12351
- };
12352
- export type GetPostgresVersionResponse = string;
12353
- export type IsValidPostgresConfigurationData = {
12354
- path: string;
12355
- workspace: string;
12356
- };
12357
- export type IsValidPostgresConfigurationResponse = boolean;
12358
- export type CreateTemplateScriptData = {
12359
- /**
12360
- * template script
12361
- */
12362
- requestBody: TemplateScript;
12363
- workspace: string;
12364
- };
12365
- export type CreateTemplateScriptResponse = string;
12366
- export type GetTemplateScriptData = {
12367
- id: string;
12368
- workspace: string;
12369
- };
12370
- export type GetTemplateScriptResponse = string;
12371
- export type ListPostgresReplicationSlotData = {
12372
- path: string;
12373
- workspace: string;
12374
- };
12375
- export type ListPostgresReplicationSlotResponse = Array<SlotList>;
12376
- export type CreatePostgresReplicationSlotData = {
12377
- path: string;
12378
- /**
12379
- * new slot for postgres
12380
- */
12381
- requestBody: Slot;
12382
- workspace: string;
12383
- };
12384
- export type CreatePostgresReplicationSlotResponse = string;
12385
- export type DeletePostgresReplicationSlotData = {
12386
- path: string;
12387
- /**
12388
- * replication slot of postgres
12389
- */
12390
- requestBody: Slot;
12391
- workspace: string;
12392
- };
12393
- export type DeletePostgresReplicationSlotResponse = string;
12394
- export type ListPostgresPublicationData = {
12395
- path: string;
12396
- workspace: string;
12397
- };
12398
- export type ListPostgresPublicationResponse = Array<(string)>;
12399
- export type GetPostgresPublicationData = {
11944
+ export type ListPostgresPublicationResponse = Array<(string)>;
11945
+ export type GetPostgresPublicationData = {
12400
11946
  path: string;
12401
11947
  /**
12402
11948
  * The name of the publication
@@ -12501,11 +12047,6 @@ export type SetPostgresTriggerModeData = {
12501
12047
  */
12502
12048
  requestBody: {
12503
12049
  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;
12509
12050
  };
12510
12051
  workspace: string;
12511
12052
  };
@@ -12590,11 +12131,6 @@ export type SetEmailTriggerModeData = {
12590
12131
  path: string;
12591
12132
  requestBody: {
12592
12133
  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;
12598
12134
  };
12599
12135
  workspace: string;
12600
12136
  };
@@ -12982,7 +12518,7 @@ export type ListBlacklistedAgentTokensResponse = Array<{
12982
12518
  }>;
12983
12519
  export type GetMinVersionResponse = string;
12984
12520
  export type GetGranularAclsData = {
12985
- kind: 'script' | 'group_' | 'resource' | 'schedule' | 'variable' | 'flow' | 'folder' | 'app' | 'raw_app' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'gcp_trigger' | 'azure_trigger' | 'sqs_trigger' | 'email_trigger' | 'volume';
12521
+ kind: 'script' | 'group_' | 'resource' | 'schedule' | 'variable' | 'flow' | 'folder' | 'app' | 'raw_app' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'gcp_trigger' | 'sqs_trigger' | 'email_trigger' | 'volume';
12986
12522
  path: string;
12987
12523
  workspace: string;
12988
12524
  };
@@ -12990,7 +12526,7 @@ export type GetGranularAclsResponse = {
12990
12526
  [key: string]: (boolean);
12991
12527
  };
12992
12528
  export type AddGranularAclsData = {
12993
- kind: 'script' | 'group_' | 'resource' | 'schedule' | 'variable' | 'flow' | 'folder' | 'app' | 'raw_app' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'gcp_trigger' | 'azure_trigger' | 'sqs_trigger' | 'email_trigger' | 'volume';
12529
+ kind: 'script' | 'group_' | 'resource' | 'schedule' | 'variable' | 'flow' | 'folder' | 'app' | 'raw_app' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'gcp_trigger' | 'sqs_trigger' | 'email_trigger' | 'volume';
12994
12530
  path: string;
12995
12531
  /**
12996
12532
  * acl to add
@@ -13003,7 +12539,7 @@ export type AddGranularAclsData = {
13003
12539
  };
13004
12540
  export type AddGranularAclsResponse = string;
13005
12541
  export type RemoveGranularAclsData = {
13006
- kind: 'script' | 'group_' | 'resource' | 'schedule' | 'variable' | 'flow' | 'folder' | 'app' | 'raw_app' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'gcp_trigger' | 'azure_trigger' | 'sqs_trigger' | 'email_trigger' | 'volume';
12542
+ kind: 'script' | 'group_' | 'resource' | 'schedule' | 'variable' | 'flow' | 'folder' | 'app' | 'raw_app' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'gcp_trigger' | 'sqs_trigger' | 'email_trigger' | 'volume';
13007
12543
  path: string;
13008
12544
  /**
13009
12545
  * acl to add
@@ -13308,13 +12844,6 @@ export type CheckS3FolderExistsData = {
13308
12844
  * S3 file key to check (e.g., gitrepos/{workspace_id}/u/user/resource/{commit_hash})
13309
12845
  */
13310
12846
  fileKey: string;
13311
- /**
13312
- * If provided, the folder is only considered to exist when this exact
13313
- * sentinel file is present under file_key. Lets callers distinguish a
13314
- * fully populated folder from a partial upload.
13315
- *
13316
- */
13317
- markerFile?: string;
13318
12847
  workspace: string;
13319
12848
  };
13320
12849
  export type CheckS3FolderExistsResponse = {
@@ -13986,16 +13515,6 @@ export type $OpenApiTs = {
13986
13515
  };
13987
13516
  };
13988
13517
  };
13989
- '/auth/is_password_login_disabled': {
13990
- get: {
13991
- res: {
13992
- /**
13993
- * returns true if password login is disabled
13994
- */
13995
- 200: boolean;
13996
- };
13997
- };
13998
- };
13999
13518
  '/auth/request_password_reset': {
14000
13519
  post: {
14001
13520
  req: {
@@ -14727,25 +14246,6 @@ export type $OpenApiTs = {
14727
14246
  };
14728
14247
  };
14729
14248
  };
14730
- '/users/tokens/update_scopes/{token_prefix}': {
14731
- post: {
14732
- req: {
14733
- /**
14734
- * new scopes (null or omitted = full access)
14735
- */
14736
- requestBody: {
14737
- scopes?: Array<(string)> | null;
14738
- };
14739
- tokenPrefix: string;
14740
- };
14741
- res: {
14742
- /**
14743
- * scopes updated
14744
- */
14745
- 200: string;
14746
- };
14747
- };
14748
- };
14749
14249
  '/users/tokens/list': {
14750
14250
  get: {
14751
14251
  req: {
@@ -14905,7 +14405,6 @@ export type $OpenApiTs = {
14905
14405
  base_url: string;
14906
14406
  app_slug: string;
14907
14407
  client_id: string;
14908
- app_owner?: string | null;
14909
14408
  };
14910
14409
  };
14911
14410
  };
@@ -15335,30 +14834,6 @@ export type $OpenApiTs = {
15335
14834
  };
15336
14835
  };
15337
14836
  };
15338
- '/w/{workspace}/workspaces/get_public_settings': {
15339
- get: {
15340
- req: {
15341
- workspace: string;
15342
- };
15343
- res: {
15344
- /**
15345
- * status
15346
- */
15347
- 200: {
15348
- workspace_id: string;
15349
- slack_name?: string;
15350
- slack_team_id?: string;
15351
- teams_team_id?: string;
15352
- teams_team_name?: string;
15353
- teams_team_guid?: string;
15354
- large_file_storage?: LargeFileStorage;
15355
- datatable?: DataTableSettings;
15356
- deploy_ui?: WorkspaceDeployUISettings;
15357
- mute_critical_alerts?: boolean;
15358
- };
15359
- };
15360
- };
15361
- };
15362
14837
  '/w/{workspace}/workspaces/get_settings': {
15363
14838
  get: {
15364
14839
  req: {
@@ -15734,30 +15209,6 @@ export type $OpenApiTs = {
15734
15209
  };
15735
15210
  };
15736
15211
  };
15737
- '/w/{workspace}/workspaces/connect_slack': {
15738
- post: {
15739
- req: {
15740
- /**
15741
- * connect slack with a pre-minted bot token
15742
- */
15743
- requestBody: {
15744
- /**
15745
- * xoxb-... bot token obtained at api.slack.com/apps
15746
- */
15747
- bot_token: string;
15748
- team_id: string;
15749
- team_name: string;
15750
- };
15751
- workspace: string;
15752
- };
15753
- res: {
15754
- /**
15755
- * status
15756
- */
15757
- 200: unknown;
15758
- };
15759
- };
15760
- };
15761
15212
  '/w/{workspace}/workspaces/run_slack_message_test_job': {
15762
15213
  post: {
15763
15214
  req: {
@@ -16030,35 +15481,6 @@ export type $OpenApiTs = {
16030
15481
  };
16031
15482
  };
16032
15483
  };
16033
- '/w/{workspace}/workspaces/list_datatable_tables': {
16034
- get: {
16035
- req: {
16036
- workspace: string;
16037
- };
16038
- res: {
16039
- /**
16040
- * table metadata of all datatables
16041
- */
16042
- 200: Array<DataTableTables>;
16043
- };
16044
- };
16045
- };
16046
- '/w/{workspace}/workspaces/get_datatable_table_schema': {
16047
- get: {
16048
- req: {
16049
- datatableName: string;
16050
- schemaName: string;
16051
- tableName: string;
16052
- workspace: string;
16053
- };
16054
- res: {
16055
- /**
16056
- * schema of one datatable table
16057
- */
16058
- 200: DataTableTableSchema;
16059
- };
16060
- };
16061
- };
16062
15484
  '/w/{workspace}/workspaces/edit_ducklake_config': {
16063
15485
  post: {
16064
15486
  req: {
@@ -16483,12 +15905,10 @@ export type $OpenApiTs = {
16483
15905
  postgres_used: boolean;
16484
15906
  mqtt_used: boolean;
16485
15907
  gcp_used: boolean;
16486
- azure_used: boolean;
16487
15908
  sqs_used: boolean;
16488
15909
  email_used: boolean;
16489
15910
  nextcloud_used: boolean;
16490
15911
  google_used: boolean;
16491
- github_used: boolean;
16492
15912
  };
16493
15913
  };
16494
15914
  };
@@ -16742,111 +16162,6 @@ export type $OpenApiTs = {
16742
16162
  };
16743
16163
  };
16744
16164
  };
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
- };
16776
- '/w/{workspace}/shared_ui/get': {
16777
- get: {
16778
- req: {
16779
- workspace: string;
16780
- };
16781
- res: {
16782
- /**
16783
- * shared UI content
16784
- */
16785
- 200: {
16786
- files: {
16787
- [key: string]: (string);
16788
- };
16789
- version: number;
16790
- edited_at: string;
16791
- edited_by: string;
16792
- };
16793
- };
16794
- };
16795
- };
16796
- '/w/{workspace}/shared_ui/list': {
16797
- get: {
16798
- req: {
16799
- workspace: string;
16800
- };
16801
- res: {
16802
- /**
16803
- * shared UI listing
16804
- */
16805
- 200: {
16806
- paths: Array<(string)>;
16807
- sizes: {
16808
- [key: string]: (number);
16809
- };
16810
- version: number;
16811
- edited_at: string;
16812
- edited_by: string;
16813
- };
16814
- };
16815
- };
16816
- };
16817
- '/w/{workspace}/shared_ui/version': {
16818
- get: {
16819
- req: {
16820
- workspace: string;
16821
- };
16822
- res: {
16823
- /**
16824
- * shared UI version
16825
- */
16826
- 200: {
16827
- version: number;
16828
- };
16829
- };
16830
- };
16831
- };
16832
- '/w/{workspace}/shared_ui': {
16833
- put: {
16834
- req: {
16835
- requestBody: {
16836
- files: {
16837
- [key: string]: (string);
16838
- };
16839
- };
16840
- workspace: string;
16841
- };
16842
- res: {
16843
- /**
16844
- * updated
16845
- */
16846
- 200: string;
16847
- };
16848
- };
16849
- };
16850
16165
  '/settings/refresh_custom_instance_user_pwd': {
16851
16166
  post: {
16852
16167
  res: {
@@ -17829,32 +17144,9 @@ export type $OpenApiTs = {
17829
17144
  };
17830
17145
  res: {
17831
17146
  /**
17832
- * success message
17833
- */
17834
- 200: string;
17835
- };
17836
- };
17837
- };
17838
- '/oauth/connect_slack_instance': {
17839
- post: {
17840
- req: {
17841
- /**
17842
- * connect slack at the instance level with a pre-minted bot token
17843
- */
17844
- requestBody: {
17845
- /**
17846
- * xoxb-... bot token obtained at api.slack.com/apps
17847
- */
17848
- bot_token: string;
17849
- team_id: string;
17850
- team_name: string;
17851
- };
17852
- };
17853
- res: {
17854
- /**
17855
- * status
17147
+ * success message
17856
17148
  */
17857
- 200: unknown;
17149
+ 200: string;
17858
17150
  };
17859
17151
  };
17860
17152
  };
@@ -18029,10 +17321,6 @@ export type $OpenApiTs = {
18029
17321
  display_name?: string;
18030
17322
  }>;
18031
17323
  saml?: string;
18032
- /**
18033
- * provider type to auto-redirect to on login (oauth key or "saml")
18034
- */
18035
- auto_login?: string;
18036
17324
  };
18037
17325
  };
18038
17326
  };
@@ -19598,7 +18886,6 @@ export type $OpenApiTs = {
19598
18886
  path?: string;
19599
18887
  lock?: string;
19600
18888
  cache_ttl?: number;
19601
- tag?: string;
19602
18889
  };
19603
18890
  id?: number;
19604
18891
  force_viewer_static_fields?: {
@@ -19608,8 +18895,6 @@ export type $OpenApiTs = {
19608
18895
  [key: string]: unknown;
19609
18896
  };
19610
18897
  force_viewer_allow_user_resources?: Array<(string)>;
19611
- force_viewer_sensitive_inputs?: Array<(string)>;
19612
- force_viewer_delete_after_secs?: number;
19613
18898
  /**
19614
18899
  * Runnable query parameters
19615
18900
  */
@@ -21519,30 +20804,17 @@ export type $OpenApiTs = {
21519
20804
  */
21520
20805
  requestBody: {
21521
20806
  /**
21522
- * top-level step id to restart the flow from (or the outermost container when restarting at a nested step)
20807
+ * step id to restart the flow from
21523
20808
  */
21524
20809
  step_id: string;
21525
20810
  /**
21526
- * for branchall or loop at the top level, the iteration at which the flow should restart (optional)
20811
+ * for branchall or loop, the iteration at which the flow should restart (optional)
21527
20812
  */
21528
20813
  branch_or_iteration_n?: number;
21529
20814
  /**
21530
20815
  * specific flow version to use for restart (optional, uses current version if not specified)
21531
20816
  */
21532
20817
  flow_version?: number;
21533
- /**
21534
- * path of additional steps to descend into AFTER `step_id`. Each entry represents one level of nesting inside the spawned child of the previous level's container (BranchOne / sequential ForLoop iteration / Subflow). When non-empty, the actual restart point is the LAST entry's step_id.
21535
- */
21536
- nested_path?: Array<{
21537
- /**
21538
- * step id at this nesting level
21539
- */
21540
- step_id: string;
21541
- /**
21542
- * for ForLoop containers, the iteration to restart at (0-based; iterations 0..n-1 are preserved)
21543
- */
21544
- branch_or_iteration_n?: number;
21545
- }>;
21546
20818
  };
21547
20819
  /**
21548
20820
  * when to schedule this job (leave empty for immediate run)
@@ -21766,46 +21038,6 @@ export type $OpenApiTs = {
21766
21038
  };
21767
21039
  };
21768
21040
  };
21769
- '/w/{workspace}/jobs/run/dependencies_async': {
21770
- post: {
21771
- req: {
21772
- /**
21773
- * raw script content
21774
- */
21775
- requestBody: {
21776
- raw_scripts: Array<RawScriptForDependencies>;
21777
- entrypoint: string;
21778
- };
21779
- workspace: string;
21780
- };
21781
- res: {
21782
- /**
21783
- * dependency job created
21784
- */
21785
- 201: string;
21786
- };
21787
- };
21788
- };
21789
- '/w/{workspace}/jobs/run/flow_dependencies_async': {
21790
- post: {
21791
- req: {
21792
- /**
21793
- * flow value and path
21794
- */
21795
- requestBody: {
21796
- path: string;
21797
- flow_value: FlowValue;
21798
- };
21799
- workspace: string;
21800
- };
21801
- res: {
21802
- /**
21803
- * flow dependencies job created
21804
- */
21805
- 201: string;
21806
- };
21807
- };
21808
- };
21809
21041
  '/w/{workspace}/jobs/run/preview_flow': {
21810
21042
  post: {
21811
21043
  req: {
@@ -22286,7 +21518,6 @@ export type $OpenApiTs = {
22286
21518
  '/w/{workspace}/jobs/queue/cancel_selection': {
22287
21519
  post: {
22288
21520
  req: {
22289
- allWorkspaces?: boolean;
22290
21521
  forceCancel?: boolean;
22291
21522
  /**
22292
21523
  * uuids of the jobs to cancel
@@ -22554,10 +21785,6 @@ export type $OpenApiTs = {
22554
21785
  * 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')
22555
21786
  */
22556
21787
  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;
22561
21788
  /**
22562
21789
  * has null parent
22563
21790
  */
@@ -22692,10 +21919,6 @@ export type $OpenApiTs = {
22692
21919
  '/w/{workspace}/jobs_u/get/{id}': {
22693
21920
  get: {
22694
21921
  req: {
22695
- /**
22696
- * Approval token granting read access to the job when not logged in. The token must be the one issued for this job's flow (i.e. the flow id used when generating the approval URL).
22697
- */
22698
- approvalToken?: string;
22699
21922
  id: string;
22700
21923
  noCode?: boolean;
22701
21924
  noLogs?: boolean;
@@ -23541,9 +22764,9 @@ export type $OpenApiTs = {
23541
22764
  get: {
23542
22765
  req: {
23543
22766
  /**
23544
- * Message sequence cursor to fetch only the messages after that cursor
22767
+ * id to fetch only the messages after that id
23545
22768
  */
23546
- afterSeq?: number;
22769
+ afterId?: string;
23547
22770
  /**
23548
22771
  * conversation id
23549
22772
  */
@@ -23752,11 +22975,6 @@ export type $OpenApiTs = {
23752
22975
  */
23753
22976
  requestBody: {
23754
22977
  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;
23760
22978
  };
23761
22979
  workspace: string;
23762
22980
  };
@@ -24102,11 +23320,6 @@ export type $OpenApiTs = {
24102
23320
  path: string;
24103
23321
  requestBody: {
24104
23322
  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;
24110
23323
  };
24111
23324
  workspace: string;
24112
23325
  };
@@ -24235,11 +23448,6 @@ export type $OpenApiTs = {
24235
23448
  */
24236
23449
  requestBody: {
24237
23450
  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;
24243
23451
  };
24244
23452
  workspace: string;
24245
23453
  };
@@ -24389,11 +23597,6 @@ export type $OpenApiTs = {
24389
23597
  */
24390
23598
  requestBody: {
24391
23599
  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;
24397
23600
  };
24398
23601
  workspace: string;
24399
23602
  };
@@ -24579,11 +23782,6 @@ export type $OpenApiTs = {
24579
23782
  */
24580
23783
  requestBody: {
24581
23784
  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;
24587
23785
  };
24588
23786
  workspace: string;
24589
23787
  };
@@ -24733,11 +23931,6 @@ export type $OpenApiTs = {
24733
23931
  */
24734
23932
  requestBody: {
24735
23933
  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;
24741
23934
  };
24742
23935
  workspace: string;
24743
23936
  };
@@ -25112,19 +24305,6 @@ export type $OpenApiTs = {
25112
24305
  };
25113
24306
  };
25114
24307
  };
25115
- '/w/{workspace}/native_triggers/github/repos': {
25116
- get: {
25117
- req: {
25118
- workspace: string;
25119
- };
25120
- res: {
25121
- /**
25122
- * list of GitHub repositories
25123
- */
25124
- 200: Array<GithubRepoEntry>;
25125
- };
25126
- };
25127
- };
25128
24308
  '/native_triggers/{service_name}/w/{workspace_id}/webhook/{internal_id}': {
25129
24309
  post: {
25130
24310
  req: {
@@ -25266,11 +24446,6 @@ export type $OpenApiTs = {
25266
24446
  */
25267
24447
  requestBody: {
25268
24448
  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;
25274
24449
  };
25275
24450
  workspace: string;
25276
24451
  };
@@ -25420,11 +24595,6 @@ export type $OpenApiTs = {
25420
24595
  */
25421
24596
  requestBody: {
25422
24597
  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;
25428
24598
  };
25429
24599
  workspace: string;
25430
24600
  };
@@ -25507,217 +24677,6 @@ export type $OpenApiTs = {
25507
24677
  };
25508
24678
  };
25509
24679
  };
25510
- '/w/{workspace}/azure_triggers/create': {
25511
- post: {
25512
- req: {
25513
- requestBody: AzureTriggerData;
25514
- workspace: string;
25515
- };
25516
- res: {
25517
- /**
25518
- * azure trigger created
25519
- */
25520
- 201: string;
25521
- };
25522
- };
25523
- };
25524
- '/w/{workspace}/azure_triggers/update/{path}': {
25525
- post: {
25526
- req: {
25527
- path: string;
25528
- requestBody: AzureTriggerData;
25529
- workspace: string;
25530
- };
25531
- res: {
25532
- /**
25533
- * azure trigger updated
25534
- */
25535
- 200: string;
25536
- };
25537
- };
25538
- };
25539
- '/w/{workspace}/azure_triggers/delete/{path}': {
25540
- delete: {
25541
- req: {
25542
- path: string;
25543
- workspace: string;
25544
- };
25545
- res: {
25546
- /**
25547
- * azure trigger deleted
25548
- */
25549
- 200: string;
25550
- };
25551
- };
25552
- };
25553
- '/w/{workspace}/azure_triggers/get/{path}': {
25554
- get: {
25555
- req: {
25556
- path: string;
25557
- workspace: string;
25558
- };
25559
- res: {
25560
- /**
25561
- * azure trigger
25562
- */
25563
- 200: AzureTrigger;
25564
- };
25565
- };
25566
- };
25567
- '/w/{workspace}/azure_triggers/list': {
25568
- get: {
25569
- req: {
25570
- isFlow?: boolean;
25571
- /**
25572
- * which page to return (start at 1, default 1)
25573
- */
25574
- page?: number;
25575
- /**
25576
- * filter by exact path
25577
- */
25578
- path?: string;
25579
- pathStart?: string;
25580
- /**
25581
- * number of items to return for a given page (default 30, max 100)
25582
- */
25583
- perPage?: number;
25584
- workspace: string;
25585
- };
25586
- res: {
25587
- /**
25588
- * azure trigger list
25589
- */
25590
- 200: Array<AzureTrigger>;
25591
- };
25592
- };
25593
- };
25594
- '/w/{workspace}/azure_triggers/exists/{path}': {
25595
- get: {
25596
- req: {
25597
- path: string;
25598
- workspace: string;
25599
- };
25600
- res: {
25601
- /**
25602
- * true/false
25603
- */
25604
- 200: boolean;
25605
- };
25606
- };
25607
- };
25608
- '/w/{workspace}/azure_triggers/setmode/{path}': {
25609
- post: {
25610
- req: {
25611
- path: string;
25612
- requestBody: {
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;
25619
- };
25620
- workspace: string;
25621
- };
25622
- res: {
25623
- /**
25624
- * trigger mode updated
25625
- */
25626
- 200: string;
25627
- };
25628
- };
25629
- };
25630
- '/w/{workspace}/azure_triggers/test': {
25631
- post: {
25632
- req: {
25633
- requestBody: TestAzureConnection;
25634
- workspace: string;
25635
- };
25636
- res: {
25637
- /**
25638
- * connection successful
25639
- */
25640
- 200: string;
25641
- };
25642
- };
25643
- };
25644
- '/w/{workspace}/azure_triggers/namespaces/topics/list/{path}': {
25645
- post: {
25646
- req: {
25647
- path: string;
25648
- requestBody: AzureListTopics;
25649
- workspace: string;
25650
- };
25651
- res: {
25652
- /**
25653
- * topic list
25654
- */
25655
- 200: Array<{
25656
- [key: string]: unknown;
25657
- }>;
25658
- };
25659
- };
25660
- };
25661
- '/w/{workspace}/azure_triggers/namespaces/subscriptions/list/{path}': {
25662
- post: {
25663
- req: {
25664
- path: string;
25665
- requestBody: AzureListSubscriptions;
25666
- workspace: string;
25667
- };
25668
- res: {
25669
- /**
25670
- * subscription list
25671
- */
25672
- 200: Array<{
25673
- [key: string]: unknown;
25674
- }>;
25675
- };
25676
- };
25677
- };
25678
- '/w/{workspace}/azure_triggers/subscriptions/delete/{path}': {
25679
- delete: {
25680
- req: {
25681
- path: string;
25682
- requestBody: AzureDeleteSubscription;
25683
- workspace: string;
25684
- };
25685
- res: {
25686
- /**
25687
- * subscription deleted
25688
- */
25689
- 200: string;
25690
- };
25691
- };
25692
- };
25693
- '/w/{workspace}/azure_triggers/namespaces/list/{path}': {
25694
- post: {
25695
- req: {
25696
- path: string;
25697
- workspace: string;
25698
- };
25699
- res: {
25700
- /**
25701
- * namespace list
25702
- */
25703
- 200: Array<AzureArmResource>;
25704
- };
25705
- };
25706
- };
25707
- '/w/{workspace}/azure_triggers/basic/topics/list/{path}': {
25708
- post: {
25709
- req: {
25710
- path: string;
25711
- workspace: string;
25712
- };
25713
- res: {
25714
- /**
25715
- * topic list
25716
- */
25717
- 200: Array<AzureArmResource>;
25718
- };
25719
- };
25720
- };
25721
24680
  '/w/{workspace}/postgres_triggers/postgres/version/{path}': {
25722
24681
  get: {
25723
24682
  req: {
@@ -26038,11 +24997,6 @@ export type $OpenApiTs = {
26038
24997
  */
26039
24998
  requestBody: {
26040
24999
  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;
26046
25000
  };
26047
25001
  workspace: string;
26048
25002
  };
@@ -26208,11 +25162,6 @@ export type $OpenApiTs = {
26208
25162
  path: string;
26209
25163
  requestBody: {
26210
25164
  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;
26216
25165
  };
26217
25166
  workspace: string;
26218
25167
  };
@@ -27016,7 +25965,7 @@ export type $OpenApiTs = {
27016
25965
  '/w/{workspace}/acls/get/{kind}/{path}': {
27017
25966
  get: {
27018
25967
  req: {
27019
- kind: 'script' | 'group_' | 'resource' | 'schedule' | 'variable' | 'flow' | 'folder' | 'app' | 'raw_app' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'gcp_trigger' | 'azure_trigger' | 'sqs_trigger' | 'email_trigger' | 'volume';
25968
+ kind: 'script' | 'group_' | 'resource' | 'schedule' | 'variable' | 'flow' | 'folder' | 'app' | 'raw_app' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'gcp_trigger' | 'sqs_trigger' | 'email_trigger' | 'volume';
27020
25969
  path: string;
27021
25970
  workspace: string;
27022
25971
  };
@@ -27033,7 +25982,7 @@ export type $OpenApiTs = {
27033
25982
  '/w/{workspace}/acls/add/{kind}/{path}': {
27034
25983
  post: {
27035
25984
  req: {
27036
- kind: 'script' | 'group_' | 'resource' | 'schedule' | 'variable' | 'flow' | 'folder' | 'app' | 'raw_app' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'gcp_trigger' | 'azure_trigger' | 'sqs_trigger' | 'email_trigger' | 'volume';
25985
+ kind: 'script' | 'group_' | 'resource' | 'schedule' | 'variable' | 'flow' | 'folder' | 'app' | 'raw_app' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'gcp_trigger' | 'sqs_trigger' | 'email_trigger' | 'volume';
27037
25986
  path: string;
27038
25987
  /**
27039
25988
  * acl to add
@@ -27055,7 +26004,7 @@ export type $OpenApiTs = {
27055
26004
  '/w/{workspace}/acls/remove/{kind}/{path}': {
27056
26005
  post: {
27057
26006
  req: {
27058
- kind: 'script' | 'group_' | 'resource' | 'schedule' | 'variable' | 'flow' | 'folder' | 'app' | 'raw_app' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'gcp_trigger' | 'azure_trigger' | 'sqs_trigger' | 'email_trigger' | 'volume';
26007
+ kind: 'script' | 'group_' | 'resource' | 'schedule' | 'variable' | 'flow' | 'folder' | 'app' | 'raw_app' | 'http_trigger' | 'websocket_trigger' | 'kafka_trigger' | 'nats_trigger' | 'postgres_trigger' | 'mqtt_trigger' | 'gcp_trigger' | 'sqs_trigger' | 'email_trigger' | 'volume';
27059
26008
  path: string;
27060
26009
  /**
27061
26010
  * acl to add
@@ -27610,13 +26559,6 @@ export type $OpenApiTs = {
27610
26559
  * S3 file key to check (e.g., gitrepos/{workspace_id}/u/user/resource/{commit_hash})
27611
26560
  */
27612
26561
  fileKey: string;
27613
- /**
27614
- * If provided, the folder is only considered to exist when this exact
27615
- * sentinel file is present under file_key. Lets callers distinguish a
27616
- * fully populated folder from a partial upload.
27617
- *
27618
- */
27619
- markerFile?: string;
27620
26562
  workspace: string;
27621
26563
  };
27622
26564
  res: {