windmill-components 1.700.2 → 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 (75) 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_deployable.d.ts +5 -318
  73. package/package.json +1 -1
  74. package/dist/sharedUtils/components/assets/lib.d.ts +0 -25
  75. package/dist/sharedUtils/components/icons/index.d.ts +0 -101
@@ -1070,11 +1070,6 @@ export declare const $AiAgent: {
1070
1070
  readonly type: "string";
1071
1071
  readonly enum: readonly ["aiagent"];
1072
1072
  };
1073
- readonly omit_output_from_conversation: {
1074
- readonly type: "boolean";
1075
- readonly default: false;
1076
- readonly description: "If true, this AI agent step does not persist its assistant or tool messages to the flow conversation when chat mode is enabled.";
1077
- };
1078
1073
  readonly parallel: {
1079
1074
  readonly type: "boolean";
1080
1075
  readonly description: "If true, the agent can execute multiple tool calls in parallel";
@@ -1796,7 +1791,7 @@ export declare const $AzureKeyVaultSettings: {
1796
1791
  };
1797
1792
  readonly client_secret: {
1798
1793
  readonly type: "string";
1799
- readonly description: "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).";
1794
+ readonly description: "Azure AD client secret";
1800
1795
  };
1801
1796
  readonly token: {
1802
1797
  readonly type: "string";
@@ -1930,7 +1925,7 @@ export declare const $FlowConversation: {
1930
1925
  };
1931
1926
  export declare const $FlowConversationMessage: {
1932
1927
  readonly type: "object";
1933
- readonly required: readonly ["id", "conversation_id", "message_type", "content", "created_at", "created_seq"];
1928
+ readonly required: readonly ["id", "conversation_id", "message_type", "content", "created_at"];
1934
1929
  readonly properties: {
1935
1930
  readonly id: {
1936
1931
  readonly type: "string";
@@ -1962,11 +1957,6 @@ export declare const $FlowConversationMessage: {
1962
1957
  readonly format: "date-time";
1963
1958
  readonly description: "When the message was created";
1964
1959
  };
1965
- readonly created_seq: {
1966
- readonly type: "integer";
1967
- readonly format: "int64";
1968
- readonly description: "Monotonic cursor assigned when the message is inserted";
1969
- };
1970
1960
  readonly step_name: {
1971
1961
  readonly type: "string";
1972
1962
  readonly description: "The step name that produced that message";
@@ -3596,9 +3586,6 @@ export declare const $TruncatedToken: {
3596
3586
  readonly email: {
3597
3587
  readonly type: "string";
3598
3588
  };
3599
- readonly workspace_id: {
3600
- readonly type: "string";
3601
- };
3602
3589
  };
3603
3590
  readonly required: readonly ["token_prefix", "created_at", "last_used_at"];
3604
3591
  };
@@ -3732,9 +3719,6 @@ export declare const $ListableVariable: {
3732
3719
  readonly type: "string";
3733
3720
  };
3734
3721
  };
3735
- readonly ws_specific: {
3736
- readonly type: "boolean";
3737
- };
3738
3722
  };
3739
3723
  readonly required: readonly ["workspace_id", "path", "is_secret", "extra_perms"];
3740
3724
  };
@@ -3794,9 +3778,6 @@ export declare const $CreateVariable: {
3794
3778
  readonly type: "string";
3795
3779
  };
3796
3780
  };
3797
- readonly ws_specific: {
3798
- readonly type: "boolean";
3799
- };
3800
3781
  };
3801
3782
  readonly required: readonly ["path", "value", "is_secret", "description"];
3802
3783
  };
@@ -3825,9 +3806,6 @@ export declare const $EditVariable: {
3825
3806
  readonly type: "string";
3826
3807
  };
3827
3808
  };
3828
- readonly ws_specific: {
3829
- readonly type: "boolean";
3830
- };
3831
3809
  };
3832
3810
  };
3833
3811
  export declare const $AuditLog: {
@@ -4142,9 +4120,6 @@ export declare const $CreateResource: {
4142
4120
  readonly type: "string";
4143
4121
  };
4144
4122
  };
4145
- readonly ws_specific: {
4146
- readonly type: "boolean";
4147
- };
4148
4123
  };
4149
4124
  readonly required: readonly ["path", "value", "resource_type"];
4150
4125
  };
@@ -4170,9 +4145,6 @@ export declare const $EditResource: {
4170
4145
  readonly type: "string";
4171
4146
  };
4172
4147
  };
4173
- readonly ws_specific: {
4174
- readonly type: "boolean";
4175
- };
4176
4148
  };
4177
4149
  };
4178
4150
  export declare const $Resource: {
@@ -4213,9 +4185,6 @@ export declare const $Resource: {
4213
4185
  readonly type: "string";
4214
4186
  };
4215
4187
  };
4216
- readonly ws_specific: {
4217
- readonly type: "boolean";
4218
- };
4219
4188
  };
4220
4189
  readonly required: readonly ["path", "resource_type", "is_oauth"];
4221
4190
  };
@@ -4272,9 +4241,6 @@ export declare const $ListableResource: {
4272
4241
  readonly type: "string";
4273
4242
  };
4274
4243
  };
4275
- readonly ws_specific: {
4276
- readonly type: "boolean";
4277
- };
4278
4244
  };
4279
4245
  readonly required: readonly ["path", "resource_type", "is_oauth", "is_linked", "is_refreshed"];
4280
4246
  };
@@ -4324,7 +4290,7 @@ export declare const $Schedule: {
4324
4290
  readonly properties: {
4325
4291
  readonly path: {
4326
4292
  readonly type: "string";
4327
- readonly description: "The unique Windmill path for this schedule. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`.";
4293
+ readonly description: "The unique path identifier for this schedule";
4328
4294
  };
4329
4295
  readonly edited_by: {
4330
4296
  readonly type: "string";
@@ -4510,7 +4476,7 @@ export declare const $NewSchedule: {
4510
4476
  readonly properties: {
4511
4477
  readonly path: {
4512
4478
  readonly type: "string";
4513
- readonly description: "The unique Windmill path for this schedule. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`.";
4479
+ readonly description: "The unique path identifier for this schedule";
4514
4480
  };
4515
4481
  readonly schedule: {
4516
4482
  readonly type: "string";
@@ -4760,7 +4726,7 @@ export declare const $EditSchedule: {
4760
4726
  export declare const $JobTriggerKind: {
4761
4727
  readonly description: "job trigger kind (schedule, http, websocket...)";
4762
4728
  readonly type: "string";
4763
- readonly enum: readonly ["webhook", "default_email", "email", "schedule", "http", "websocket", "postgres", "kafka", "nats", "mqtt", "sqs", "gcp", "azure", "google", "github", "asset"];
4729
+ readonly enum: readonly ["webhook", "default_email", "email", "schedule", "http", "websocket", "postgres", "kafka", "nats", "mqtt", "sqs", "gcp", "google"];
4764
4730
  };
4765
4731
  export declare const $TriggerMode: {
4766
4732
  readonly description: "job trigger mode";
@@ -4772,7 +4738,7 @@ export declare const $TriggerExtraProperty: {
4772
4738
  readonly properties: {
4773
4739
  readonly path: {
4774
4740
  readonly type: "string";
4775
- readonly description: "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.";
4741
+ readonly description: "The unique path identifier for this trigger";
4776
4742
  };
4777
4743
  readonly script_path: {
4778
4744
  readonly type: "string";
@@ -5040,7 +5006,7 @@ export declare const $NewHttpTrigger: {
5040
5006
  readonly properties: {
5041
5007
  readonly path: {
5042
5008
  readonly type: "string";
5043
- readonly description: "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.";
5009
+ readonly description: "The unique path identifier for this trigger";
5044
5010
  };
5045
5011
  readonly script_path: {
5046
5012
  readonly type: "string";
@@ -5158,7 +5124,7 @@ export declare const $EditHttpTrigger: {
5158
5124
  readonly properties: {
5159
5125
  readonly path: {
5160
5126
  readonly type: "string";
5161
- readonly description: "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.";
5127
+ readonly description: "The unique path identifier for this trigger";
5162
5128
  };
5163
5129
  readonly script_path: {
5164
5130
  readonly type: "string";
@@ -5312,9 +5278,6 @@ export declare const $TriggersCount: {
5312
5278
  readonly gcp_count: {
5313
5279
  readonly type: "number";
5314
5280
  };
5315
- readonly azure_count: {
5316
- readonly type: "number";
5317
- };
5318
5281
  readonly sqs_count: {
5319
5282
  readonly type: "number";
5320
5283
  };
@@ -5324,9 +5287,6 @@ export declare const $TriggersCount: {
5324
5287
  readonly google_count: {
5325
5288
  readonly type: "number";
5326
5289
  };
5327
- readonly github_count: {
5328
- readonly type: "number";
5329
- };
5330
5290
  };
5331
5291
  };
5332
5292
  export declare const $WebsocketHeartbeat: {
@@ -5437,7 +5397,7 @@ export declare const $NewWebsocketTrigger: {
5437
5397
  readonly properties: {
5438
5398
  readonly path: {
5439
5399
  readonly type: "string";
5440
- readonly description: "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.";
5400
+ readonly description: "The unique path identifier for this trigger";
5441
5401
  };
5442
5402
  readonly script_path: {
5443
5403
  readonly type: "string";
@@ -5538,7 +5498,7 @@ export declare const $EditWebsocketTrigger: {
5538
5498
  };
5539
5499
  readonly path: {
5540
5500
  readonly type: "string";
5541
- readonly description: "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.";
5501
+ readonly description: "The unique path identifier for this trigger";
5542
5502
  };
5543
5503
  readonly script_path: {
5544
5504
  readonly type: "string";
@@ -5797,7 +5757,7 @@ export declare const $NewMqttTrigger: {
5797
5757
  };
5798
5758
  readonly path: {
5799
5759
  readonly type: "string";
5800
- readonly description: "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.";
5760
+ readonly description: "The unique path identifier for this trigger";
5801
5761
  };
5802
5762
  readonly script_path: {
5803
5763
  readonly type: "string";
@@ -5875,7 +5835,7 @@ export declare const $EditMqttTrigger: {
5875
5835
  };
5876
5836
  readonly path: {
5877
5837
  readonly type: "string";
5878
- readonly description: "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.";
5838
+ readonly description: "The unique path identifier for this trigger";
5879
5839
  };
5880
5840
  readonly script_path: {
5881
5841
  readonly type: "string";
@@ -6031,7 +5991,7 @@ export declare const $GcpTriggerData: {
6031
5991
  };
6032
5992
  readonly path: {
6033
5993
  readonly type: "string";
6034
- readonly description: "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.";
5994
+ readonly description: "The unique path identifier for this trigger.";
6035
5995
  };
6036
5996
  readonly script_path: {
6037
5997
  readonly type: "string";
@@ -6102,200 +6062,6 @@ export declare const $DeleteGcpSubscription: {
6102
6062
  };
6103
6063
  readonly required: readonly ["subscription_id"];
6104
6064
  };
6105
- export declare const $AzureMode: {
6106
- readonly type: "string";
6107
- readonly enum: readonly ["basic_push", "namespace_push", "namespace_pull"];
6108
- readonly description: "Azure Event Grid trigger mode.";
6109
- };
6110
- export declare const $AzureArmResource: {
6111
- readonly type: "object";
6112
- readonly description: "An ARM resource the service principal can see.";
6113
- readonly properties: {
6114
- readonly id: {
6115
- readonly type: "string";
6116
- };
6117
- readonly name: {
6118
- readonly type: "string";
6119
- };
6120
- readonly location: {
6121
- readonly type: "string";
6122
- };
6123
- readonly type: {
6124
- readonly type: "string";
6125
- };
6126
- };
6127
- readonly required: readonly ["id", "name", "type"];
6128
- };
6129
- export declare const $AzureDeleteSubscription: {
6130
- readonly type: "object";
6131
- readonly properties: {
6132
- readonly azure_mode: {
6133
- readonly $ref: "#/components/schemas/AzureMode";
6134
- };
6135
- readonly scope_resource_id: {
6136
- readonly type: "string";
6137
- };
6138
- readonly topic_name: {
6139
- readonly type: "string";
6140
- readonly nullable: true;
6141
- };
6142
- readonly subscription_name: {
6143
- readonly type: "string";
6144
- };
6145
- };
6146
- readonly required: readonly ["azure_mode", "scope_resource_id", "subscription_name"];
6147
- };
6148
- export declare const $AzureTrigger: {
6149
- readonly allOf: readonly [{
6150
- readonly $ref: "#/components/schemas/TriggerExtraProperty";
6151
- }];
6152
- readonly type: "object";
6153
- readonly description: "An Azure Event Grid trigger that executes a script or flow when events arrive.";
6154
- readonly properties: {
6155
- readonly azure_resource_path: {
6156
- readonly type: "string";
6157
- };
6158
- readonly azure_mode: {
6159
- readonly $ref: "#/components/schemas/AzureMode";
6160
- };
6161
- readonly scope_resource_id: {
6162
- readonly type: "string";
6163
- readonly description: "ARM resource ID of the topic (basic) or namespace (namespace modes).";
6164
- };
6165
- readonly topic_name: {
6166
- readonly type: "string";
6167
- readonly nullable: true;
6168
- readonly description: "Topic name within the namespace (namespace modes only).";
6169
- };
6170
- readonly subscription_name: {
6171
- readonly type: "string";
6172
- };
6173
- readonly event_type_filters: {
6174
- readonly type: "array";
6175
- readonly items: {
6176
- readonly type: "string";
6177
- };
6178
- readonly nullable: true;
6179
- };
6180
- readonly server_id: {
6181
- readonly type: "string";
6182
- };
6183
- readonly last_server_ping: {
6184
- readonly type: "string";
6185
- readonly format: "date-time";
6186
- };
6187
- readonly error: {
6188
- readonly type: "string";
6189
- };
6190
- readonly error_handler_path: {
6191
- readonly type: "string";
6192
- };
6193
- readonly error_handler_args: {
6194
- readonly $ref: "#/components/schemas/ScriptArgs";
6195
- };
6196
- readonly retry: {
6197
- readonly $ref: "#/components/schemas/Retry";
6198
- };
6199
- };
6200
- readonly required: readonly ["azure_resource_path", "azure_mode", "scope_resource_id", "subscription_name"];
6201
- };
6202
- export declare const $AzureTriggerData: {
6203
- readonly type: "object";
6204
- readonly description: "Data for creating or updating an Azure Event Grid trigger.";
6205
- readonly properties: {
6206
- readonly azure_resource_path: {
6207
- readonly type: "string";
6208
- };
6209
- readonly azure_mode: {
6210
- readonly $ref: "#/components/schemas/AzureMode";
6211
- };
6212
- readonly scope_resource_id: {
6213
- readonly type: "string";
6214
- };
6215
- readonly topic_name: {
6216
- readonly type: "string";
6217
- readonly nullable: true;
6218
- };
6219
- readonly subscription_name: {
6220
- readonly type: "string";
6221
- };
6222
- readonly base_endpoint: {
6223
- readonly type: "string";
6224
- readonly description: "Base URL for push delivery endpoints (push modes only).";
6225
- };
6226
- readonly event_type_filters: {
6227
- readonly type: "array";
6228
- readonly items: {
6229
- readonly type: "string";
6230
- };
6231
- };
6232
- readonly path: {
6233
- readonly type: "string";
6234
- readonly description: "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.";
6235
- };
6236
- readonly script_path: {
6237
- readonly type: "string";
6238
- };
6239
- readonly is_flow: {
6240
- readonly type: "boolean";
6241
- };
6242
- readonly mode: {
6243
- readonly $ref: "#/components/schemas/TriggerMode";
6244
- };
6245
- readonly error_handler_path: {
6246
- readonly type: "string";
6247
- };
6248
- readonly error_handler_args: {
6249
- readonly $ref: "#/components/schemas/ScriptArgs";
6250
- };
6251
- readonly retry: {
6252
- readonly $ref: "#/components/schemas/Retry";
6253
- };
6254
- readonly permissioned_as: {
6255
- readonly type: "string";
6256
- };
6257
- readonly preserve_permissioned_as: {
6258
- readonly type: "boolean";
6259
- };
6260
- readonly labels: {
6261
- readonly type: "array";
6262
- readonly items: {
6263
- readonly type: "string";
6264
- };
6265
- };
6266
- };
6267
- readonly required: readonly ["path", "script_path", "is_flow", "azure_resource_path", "azure_mode", "scope_resource_id", "subscription_name"];
6268
- };
6269
- export declare const $TestAzureConnection: {
6270
- readonly type: "object";
6271
- readonly properties: {
6272
- readonly azure_resource_path: {
6273
- readonly type: "string";
6274
- };
6275
- };
6276
- readonly required: readonly ["azure_resource_path"];
6277
- };
6278
- export declare const $AzureListTopics: {
6279
- readonly type: "object";
6280
- readonly properties: {
6281
- readonly scope_resource_id: {
6282
- readonly type: "string";
6283
- };
6284
- };
6285
- readonly required: readonly ["scope_resource_id"];
6286
- };
6287
- export declare const $AzureListSubscriptions: {
6288
- readonly type: "object";
6289
- readonly properties: {
6290
- readonly scope_resource_id: {
6291
- readonly type: "string";
6292
- };
6293
- readonly topic_name: {
6294
- readonly type: "string";
6295
- };
6296
- };
6297
- readonly required: readonly ["scope_resource_id", "topic_name"];
6298
- };
6299
6065
  export declare const $AwsAuthResourceType: {
6300
6066
  readonly type: "string";
6301
6067
  readonly enum: readonly ["oidc", "credentials"];
@@ -6433,7 +6199,7 @@ export declare const $NewSqsTrigger: {
6433
6199
  };
6434
6200
  readonly path: {
6435
6201
  readonly type: "string";
6436
- readonly description: "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.";
6202
+ readonly description: "The unique path identifier for this trigger";
6437
6203
  };
6438
6204
  readonly script_path: {
6439
6205
  readonly type: "string";
@@ -6500,7 +6266,7 @@ export declare const $EditSqsTrigger: {
6500
6266
  };
6501
6267
  readonly path: {
6502
6268
  readonly type: "string";
6503
- readonly description: "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.";
6269
+ readonly description: "The unique path identifier for this trigger";
6504
6270
  };
6505
6271
  readonly script_path: {
6506
6272
  readonly type: "string";
@@ -6693,7 +6459,7 @@ export declare const $NewPostgresTrigger: {
6693
6459
  };
6694
6460
  readonly path: {
6695
6461
  readonly type: "string";
6696
- readonly description: "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.";
6462
+ readonly description: "The unique path identifier for this trigger";
6697
6463
  };
6698
6464
  readonly script_path: {
6699
6465
  readonly type: "string";
@@ -6756,7 +6522,7 @@ export declare const $EditPostgresTrigger: {
6756
6522
  };
6757
6523
  readonly path: {
6758
6524
  readonly type: "string";
6759
- readonly description: "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.";
6525
+ readonly description: "The unique path identifier for this trigger";
6760
6526
  };
6761
6527
  readonly script_path: {
6762
6528
  readonly type: "string";
@@ -6890,7 +6656,7 @@ export declare const $NewKafkaTrigger: {
6890
6656
  readonly properties: {
6891
6657
  readonly path: {
6892
6658
  readonly type: "string";
6893
- readonly description: "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.";
6659
+ readonly description: "The unique path identifier for this trigger";
6894
6660
  };
6895
6661
  readonly script_path: {
6896
6662
  readonly type: "string";
@@ -7027,7 +6793,7 @@ export declare const $EditKafkaTrigger: {
7027
6793
  };
7028
6794
  readonly path: {
7029
6795
  readonly type: "string";
7030
- readonly description: "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.";
6796
+ readonly description: "The unique path identifier for this trigger";
7031
6797
  };
7032
6798
  readonly script_path: {
7033
6799
  readonly type: "string";
@@ -7130,7 +6896,7 @@ export declare const $NewNatsTrigger: {
7130
6896
  readonly properties: {
7131
6897
  readonly path: {
7132
6898
  readonly type: "string";
7133
- readonly description: "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.";
6899
+ readonly description: "The unique path identifier for this trigger";
7134
6900
  };
7135
6901
  readonly script_path: {
7136
6902
  readonly type: "string";
@@ -7227,7 +6993,7 @@ export declare const $EditNatsTrigger: {
7227
6993
  };
7228
6994
  readonly path: {
7229
6995
  readonly type: "string";
7230
- readonly description: "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.";
6996
+ readonly description: "The unique path identifier for this trigger";
7231
6997
  };
7232
6998
  readonly script_path: {
7233
6999
  readonly type: "string";
@@ -7999,28 +7765,10 @@ export declare const $RestartedFrom: {
7999
7765
  };
8000
7766
  readonly branch_or_iteration_n: {
8001
7767
  readonly type: "integer";
8002
- readonly description: "0-based iteration index for ForLoop / branch index for BranchAll. Iterations 0..n-1 are preserved; iteration n is restarted.";
8003
7768
  };
8004
7769
  readonly flow_version: {
8005
7770
  readonly type: "integer";
8006
7771
  };
8007
- readonly branch_chosen: {
8008
- readonly description: "For BranchOne nested restart — the branch that was originally chosen, used to lock branch evaluation.";
8009
- readonly type: "object";
8010
- readonly properties: {
8011
- readonly type: {
8012
- readonly type: "string";
8013
- readonly enum: readonly ["default", "branch"];
8014
- };
8015
- readonly branch: {
8016
- readonly type: "integer";
8017
- };
8018
- };
8019
- };
8020
- readonly nested: {
8021
- readonly $ref: "#/components/schemas/RestartedFrom";
8022
- readonly description: "When set, the worker spawns the child for `step_id` as a `RestartedFlow` against `nested.flow_job_id` instead of fresh-launching it.";
8023
- };
8024
7772
  };
8025
7773
  };
8026
7774
  export declare const $Policy: {
@@ -8302,20 +8050,22 @@ export declare const $SlackToken: {
8302
8050
  readonly access_token: {
8303
8051
  readonly type: "string";
8304
8052
  };
8305
- readonly team: {
8053
+ readonly team_id: {
8054
+ readonly type: "string";
8055
+ };
8056
+ readonly team_name: {
8057
+ readonly type: "string";
8058
+ };
8059
+ readonly bot: {
8306
8060
  readonly type: "object";
8307
8061
  readonly properties: {
8308
- readonly id: {
8309
- readonly type: "string";
8310
- };
8311
- readonly name: {
8062
+ readonly bot_access_token: {
8312
8063
  readonly type: "string";
8313
8064
  };
8314
8065
  };
8315
- readonly required: readonly ["id", "name"];
8316
8066
  };
8317
8067
  };
8318
- readonly required: readonly ["access_token"];
8068
+ readonly required: readonly ["access_token", "team_id", "team_name", "bot"];
8319
8069
  };
8320
8070
  export declare const $TokenResponse: {
8321
8071
  readonly type: "object";
@@ -8515,51 +8265,6 @@ export declare const $DataTableSchema: {
8515
8265
  };
8516
8266
  };
8517
8267
  };
8518
- export declare const $DataTableTables: {
8519
- readonly type: "object";
8520
- readonly required: readonly ["datatable_name", "schemas"];
8521
- readonly properties: {
8522
- readonly datatable_name: {
8523
- readonly type: "string";
8524
- };
8525
- readonly schemas: {
8526
- readonly type: "object";
8527
- readonly description: "Hierarchical metadata: schema_name -> table_names";
8528
- readonly additionalProperties: {
8529
- readonly type: "array";
8530
- readonly items: {
8531
- readonly type: "string";
8532
- };
8533
- };
8534
- };
8535
- readonly error: {
8536
- readonly type: "string";
8537
- };
8538
- };
8539
- };
8540
- export declare const $DataTableTableSchema: {
8541
- readonly type: "object";
8542
- readonly required: readonly ["datatable_name", "schema_name", "table_name", "columns"];
8543
- readonly properties: {
8544
- readonly datatable_name: {
8545
- readonly type: "string";
8546
- };
8547
- readonly schema_name: {
8548
- readonly type: "string";
8549
- };
8550
- readonly table_name: {
8551
- readonly type: "string";
8552
- };
8553
- readonly columns: {
8554
- readonly type: "object";
8555
- readonly description: "Columns in this table: column_name -> compact_type";
8556
- readonly additionalProperties: {
8557
- readonly type: "string";
8558
- readonly description: "Compact type: 'type[?][=default]' where ? means nullable";
8559
- };
8560
- };
8561
- };
8562
- };
8563
8268
  export declare const $DynamicInputData: {
8564
8269
  readonly type: "object";
8565
8270
  readonly properties: {
@@ -8761,6 +8466,9 @@ export declare const $GitRepositorySettings: {
8761
8466
  readonly group_by_folder: {
8762
8467
  readonly type: "boolean";
8763
8468
  };
8469
+ readonly force_branch: {
8470
+ readonly type: "string";
8471
+ };
8764
8472
  readonly collapsed: {
8765
8473
  readonly type: "boolean";
8766
8474
  };
@@ -9081,7 +8789,7 @@ export declare const $CriticalAlert: {
9081
8789
  };
9082
8790
  export declare const $CaptureTriggerKind: {
9083
8791
  readonly type: "string";
9084
- readonly enum: readonly ["webhook", "http", "websocket", "kafka", "default_email", "nats", "postgres", "sqs", "mqtt", "gcp", "azure", "email"];
8792
+ readonly enum: readonly ["webhook", "http", "websocket", "kafka", "default_email", "nats", "postgres", "sqs", "mqtt", "gcp", "email"];
9085
8793
  };
9086
8794
  export declare const $Capture: {
9087
8795
  readonly type: "object";
@@ -9200,7 +8908,7 @@ export declare const $WorkspaceItemDiff: {
9200
8908
  readonly properties: {
9201
8909
  readonly kind: {
9202
8910
  readonly type: "string";
9203
- readonly enum: readonly ["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"];
8911
+ readonly enum: readonly ["script", "flow", "app", "raw_app", "resource", "variable", "resource_type"];
9204
8912
  readonly description: "Type of the item";
9205
8913
  };
9206
8914
  readonly path: {
@@ -9231,7 +8939,7 @@ export declare const $WorkspaceItemDiff: {
9231
8939
  };
9232
8940
  export declare const $CompareSummary: {
9233
8941
  readonly type: "object";
9234
- readonly required: readonly ["total_diffs", "total_ahead", "total_behind", "scripts_changed", "flows_changed", "apps_changed", "resources_changed", "variables_changed", "resource_types_changed", "folders_changed", "schedules_changed", "triggers_changed", "conflicts"];
8942
+ readonly required: readonly ["total_diffs", "total_ahead", "total_behind", "scripts_changed", "flows_changed", "apps_changed", "resources_changed", "variables_changed", "resource_types_changed", "folders_changed", "conflicts"];
9235
8943
  readonly properties: {
9236
8944
  readonly total_diffs: {
9237
8945
  readonly type: "integer";
@@ -9273,14 +8981,6 @@ export declare const $CompareSummary: {
9273
8981
  readonly type: "integer";
9274
8982
  readonly description: "Number of folders with differences";
9275
8983
  };
9276
- readonly schedules_changed: {
9277
- readonly type: "integer";
9278
- readonly description: "Number of schedules with differences";
9279
- };
9280
- readonly triggers_changed: {
9281
- readonly type: "integer";
9282
- readonly description: "Number of triggers with differences (sum across all trigger kinds)";
9283
- };
9284
8984
  readonly conflicts: {
9285
8985
  readonly type: "integer";
9286
8986
  readonly description: "Number of items that are both ahead and behind (conflicts)";
@@ -9669,7 +9369,7 @@ export declare const $QuotaInfo: {
9669
9369
  };
9670
9370
  export declare const $NativeServiceName: {
9671
9371
  readonly type: "string";
9672
- readonly enum: readonly ["nextcloud", "google", "github"];
9372
+ readonly enum: readonly ["nextcloud", "google"];
9673
9373
  };
9674
9374
  export declare const $NativeTrigger: {
9675
9375
  readonly type: "object";
@@ -9970,21 +9670,3 @@ export declare const $SharedDriveEntry: {
9970
9670
  };
9971
9671
  readonly required: readonly ["id", "name"];
9972
9672
  };
9973
- export declare const $GithubRepoEntry: {
9974
- readonly type: "object";
9975
- readonly properties: {
9976
- readonly full_name: {
9977
- readonly type: "string";
9978
- };
9979
- readonly name: {
9980
- readonly type: "string";
9981
- };
9982
- readonly owner: {
9983
- readonly type: "string";
9984
- };
9985
- readonly private: {
9986
- readonly type: "boolean";
9987
- };
9988
- };
9989
- readonly required: readonly ["full_name", "name", "owner", "private"];
9990
- };