windmill-components 1.687.0 → 1.695.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package/components/ArgInput.svelte +2 -0
- package/package/components/AutoscalingConfigEditor.svelte +18 -4
- package/package/components/CompareWorkspaces.svelte +206 -157
- package/package/components/DatatableSchemaDiff.svelte +2 -2
- package/package/components/Dev.svelte +401 -85
- package/package/components/EditableSchemaForm.svelte +4 -0
- package/package/components/ErrorOrRecoveryHandler.svelte +2 -2
- package/package/components/FlowPreviewContent.svelte +32 -30
- package/package/components/FlowRestartButton.svelte +143 -61
- package/package/components/FlowRestartButton.svelte.d.ts +37 -0
- package/package/components/FlowStatusViewer.svelte +15 -1
- package/package/components/FlowStatusViewer.svelte.d.ts +10 -2
- package/package/components/FlowStatusViewerInner.svelte +1 -2
- package/package/components/FlowStatusViewerInner.svelte.d.ts +6 -2
- package/package/components/ForkConflictModal.svelte +57 -0
- package/package/components/ForkConflictModal.svelte.d.ts +3 -0
- package/package/components/GitRepoViewer.svelte +251 -97
- package/package/components/InputTransformSchemaForm.svelte +1 -1
- package/package/components/InstanceSettings.svelte +36 -16
- package/package/components/Login.svelte +113 -28
- package/package/components/Login.svelte.d.ts +1 -0
- package/package/components/Path.svelte +7 -1
- package/package/components/Path.svelte.d.ts +1 -1
- package/package/components/RunsPage.svelte +2 -1
- package/package/components/S3FilePickerInner.svelte +89 -89
- package/package/components/ScriptEditor.svelte +18 -5
- package/package/components/ShareModal.svelte.d.ts +1 -1
- package/package/components/apps/components/helpers/RunnableComponent.svelte.d.ts +3 -0
- package/package/components/apps/components/helpers/executeRunnable.js +2 -1
- package/package/components/apps/editor/AppReportsDrawerInner.svelte +1 -1
- package/package/components/apps/editor/appPolicy.js +2 -1
- package/package/components/apps/editor/commonAppUtils.d.ts +3 -0
- package/package/components/apps/editor/inlineScriptsPanel/CacheTtlPopup.svelte +1 -1
- package/package/components/apps/editor/inlineScriptsPanel/InlineScriptEditor.svelte +7 -0
- package/package/components/apps/editor/inlineScriptsPanel/TagPopup.svelte +49 -0
- package/package/components/apps/editor/inlineScriptsPanel/TagPopup.svelte.d.ts +9 -0
- package/package/components/apps/inputType.d.ts +1 -0
- package/package/components/apps/sharedTypes.d.ts +1 -0
- package/package/components/auditLogs/AuditLogsFilters.svelte +8 -3
- package/package/components/common/fileUpload/S3ArgInput.svelte +12 -10
- package/package/components/common/fileUpload/S3ArgInput.svelte.d.ts +2 -0
- package/package/components/copilot/chat/AIChatDisplay.svelte +5 -36
- package/package/components/copilot/chat/AIChatInput.svelte +56 -47
- package/package/components/copilot/chat/AIChatManager.svelte.js +48 -46
- package/package/components/copilot/chat/ContextElementBadge.svelte +6 -4
- package/package/components/copilot/chat/app/core.d.ts +12 -20
- package/package/components/copilot/chat/app/core.js +103 -160
- package/package/components/copilot/chat/app/core.test.js +234 -9
- package/package/components/copilot/chat/context.js +44 -0
- package/package/components/copilot/chat/flow/FlowAIChat.svelte +5 -3
- package/package/components/copilot/chat/flow/core.d.ts +2 -1
- package/package/components/copilot/chat/flow/core.js +48 -21
- package/package/components/copilot/chat/flow/helperUtils.d.ts +5 -2
- package/package/components/copilot/chat/flow/helperUtils.js +33 -1
- package/package/components/copilot/chat/flow/helperUtils.test.js +116 -1
- package/package/components/copilot/chat/flow/openFlow.json +1 -1
- package/package/components/copilot/chat/flow/openFlowZod.gen.js +24 -0
- package/package/components/copilot/chat/script/core.js +3 -0
- package/package/components/copilot/chat/shared.d.ts +6 -0
- package/package/components/copilot/chat/shared.js +22 -1
- package/package/components/copilot/chat/shared.test.d.ts +1 -0
- package/package/components/copilot/chat/shared.test.js +412 -0
- package/package/components/copilot/chat/workspaceTools.d.ts +7 -0
- package/package/components/copilot/chat/workspaceTools.js +239 -0
- package/package/components/copilot/chat/workspaceToolsZod.gen.d.ts +1295 -0
- package/package/components/copilot/chat/workspaceToolsZod.gen.js +424 -0
- package/package/components/copilot/lib.js +3 -1
- package/package/components/copilot/lib.test.d.ts +1 -0
- package/package/components/copilot/lib.test.js +19 -0
- package/package/components/copilot/modelConfig.d.ts +3 -0
- package/package/components/copilot/modelConfig.js +10 -0
- package/package/components/flows/FlowProgressBar.svelte +5 -2
- package/package/components/flows/content/FlowModuleComponent.svelte +636 -599
- package/package/components/flows/conversations/FlowChatManager.svelte.js +21 -10
- package/package/components/flows/flowStateUtils.svelte.js +5 -1
- package/package/components/flows/map/FlowModuleSchemaMap.svelte +3 -2
- package/package/components/flows/map/FlowModuleSchemaMap.svelte.d.ts +1 -0
- package/package/components/git_sync/GitSyncContext.svelte.js +0 -2
- package/package/components/graph/FlowGraphV2.svelte +7 -3
- package/package/components/graph/FlowGraphV2.svelte.d.ts +1 -0
- package/package/components/graph/renderers/triggers/TriggersBadge.svelte +3 -0
- package/package/components/home/deploy_ui.js +1 -1
- package/package/components/icons/AzureIcon.svelte +12 -25
- package/package/components/icons/AzureIcon.svelte.d.ts +3 -2
- package/package/components/instanceSettings.js +24 -0
- package/package/components/mcp/McpScopeSelector.svelte +119 -9
- package/package/components/mcp/McpScopeSelector.svelte.d.ts +1 -0
- package/package/components/offboarding-utils.js +2 -0
- package/package/components/progressBar/ProgressBar.svelte +9 -5
- package/package/components/progressBar/ProgressBar.svelte.d.ts +1 -0
- package/package/components/raw_apps/DeleteAfterUsePopup.svelte +52 -0
- package/package/components/raw_apps/DeleteAfterUsePopup.svelte.d.ts +9 -0
- package/package/components/raw_apps/RawAppBackgroundRunner.svelte +5 -1
- package/package/components/raw_apps/RawAppEditor.svelte +159 -102
- package/package/components/raw_apps/RawAppInlineScriptEditor.svelte +9 -3
- package/package/components/raw_apps/RawAppInlineScriptEditor.svelte.d.ts +2 -1
- package/package/components/raw_apps/RawAppInlineScriptRunnable.svelte +1 -0
- package/package/components/raw_apps/RawAppInlineScriptRunnable.svelte.d.ts +1 -0
- package/package/components/raw_apps/RawAppInputsSpecEditor.svelte +48 -5
- package/package/components/raw_apps/RawAppSharedUiDrawer.svelte +129 -0
- package/package/components/raw_apps/RawAppSharedUiDrawer.svelte.d.ts +5 -0
- package/package/components/raw_apps/RawAppSidebar.svelte +12 -0
- package/package/components/raw_apps/dataTableRefUtils.d.ts +7 -0
- package/package/components/raw_apps/dataTableRefUtils.js +34 -0
- package/package/components/raw_apps/dataTableRefUtils.test.d.ts +1 -0
- package/package/components/raw_apps/dataTableRefUtils.test.js +29 -0
- package/package/components/raw_apps/rawAppPolicy.d.ts +1 -0
- package/package/components/raw_apps/rawAppPolicy.js +17 -2
- package/package/components/resources/resourceTypesFilter.d.ts +19 -0
- package/package/components/resources/resourceTypesFilter.js +21 -0
- package/package/components/restartFromStepPath.d.ts +39 -0
- package/package/components/restartFromStepPath.js +89 -0
- package/package/components/runs/JobDetailFieldConfig.d.ts +1 -0
- package/package/components/runs/JobDetailFieldConfig.js +57 -10
- package/package/components/runs/JobDetailHeader.svelte +24 -3
- package/package/components/runs/runsFilter.d.ts +1 -1
- package/package/components/schema/FlowPropertyEditor.svelte +30 -1
- package/package/components/schema/FlowPropertyEditor.svelte.d.ts +5 -2
- package/package/components/search/GlobalSearchModal.svelte +8 -1
- package/package/components/select/Select.svelte +1 -1
- package/package/components/settings/CreateToken.svelte +48 -77
- package/package/components/settings/EditTokenScopesModal.svelte +57 -0
- package/package/components/settings/EditTokenScopesModal.svelte.d.ts +10 -0
- package/package/components/settings/ScopesPicker.svelte +43 -0
- package/package/components/settings/ScopesPicker.svelte.d.ts +11 -0
- package/package/components/settings/TokensTable.svelte +51 -15
- package/package/components/sidebar/OperatorMenu.svelte +6 -0
- package/package/components/sidebar/SidebarContent.svelte +11 -1
- package/package/components/triggers/AddTriggersButton.svelte +6 -0
- package/package/components/triggers/CaptureWrapper.svelte +19 -1
- package/package/components/triggers/TriggerEditorToolbar.svelte.d.ts +1 -1
- package/package/components/triggers/TriggerModeToggle.svelte +36 -7
- package/package/components/triggers/TriggerModeToggle.svelte.d.ts +1 -1
- package/package/components/triggers/TriggerSuspendedJobsModal.svelte.d.ts +1 -1
- package/package/components/triggers/TriggersEditor.svelte +5 -1
- package/package/components/triggers/TriggersWrapper.svelte +10 -0
- package/package/components/triggers/azure/AzureCapture.svelte +41 -0
- package/package/components/triggers/azure/AzureCapture.svelte.d.ts +44 -0
- package/package/components/triggers/azure/AzureTriggerEditor.svelte +20 -0
- package/package/components/triggers/azure/AzureTriggerEditor.svelte.d.ts +9 -0
- package/package/components/triggers/azure/AzureTriggerEditorConfigSection.svelte +301 -0
- package/package/components/triggers/azure/AzureTriggerEditorConfigSection.svelte.d.ts +16 -0
- package/package/components/triggers/azure/AzureTriggerEditorInner.svelte +422 -0
- package/package/components/triggers/azure/AzureTriggerEditorInner.svelte.d.ts +25 -0
- package/package/components/triggers/azure/AzureTriggerPanel.svelte +55 -0
- package/package/components/triggers/azure/AzureTriggerPanel.svelte.d.ts +10 -0
- package/{dist/sharedUtils/components/triggers/kafka → package/components/triggers/azure}/utils.d.ts +1 -1
- package/package/components/triggers/azure/utils.js +56 -0
- package/package/components/triggers/email/EmailTriggerEditorInner.svelte +2 -0
- package/package/components/triggers/gcp/GcpTriggerEditorInner.svelte +9 -3
- package/package/components/triggers/http/RouteEditorInner.svelte +2 -0
- package/package/components/triggers/kafka/KafkaTriggerEditorInner.svelte +9 -3
- package/package/components/triggers/mqtt/MqttTriggerEditorInner.svelte +9 -3
- package/package/components/triggers/nats/NatsTriggerEditorInner.svelte +9 -3
- package/package/components/triggers/postgres/PostgresTriggerEditorInner.svelte +9 -3
- package/package/components/triggers/schedules/ScheduleEditorInner.svelte +9 -3
- package/package/components/triggers/sqs/SqsTriggerEditorInner.svelte +9 -3
- package/package/components/triggers/triggers.svelte.d.ts +1 -0
- package/package/components/triggers/triggers.svelte.js +23 -1
- package/package/components/triggers/utils.js +20 -0
- package/package/components/triggers/websocket/WebsocketTriggerEditorInner.svelte +9 -3
- package/package/components/triggers.d.ts +1 -1
- package/package/components/useNestedRestartState.svelte.d.ts +56 -0
- package/package/components/useNestedRestartState.svelte.js +320 -0
- package/package/components/workspaceSettings/SharedUiSettings.svelte +175 -0
- package/package/components/workspaceSettings/SharedUiSettings.svelte.d.ts +3 -0
- package/package/gen/core/OpenAPI.js +1 -1
- package/package/gen/schemas.gen.d.ts +294 -24
- package/package/gen/schemas.gen.js +297 -25
- package/package/gen/services.gen.d.ts +247 -4
- package/package/gen/services.gen.js +498 -7
- package/package/gen/types.gen.d.ts +990 -37
- package/package/hubPaths.json +2 -5
- package/package/infer.d.ts +1 -1
- package/package/infer.js +37 -51
- package/package/mcpEndpointTools.js +60 -4
- package/package/script_helpers.js +17 -0
- package/package/stores.d.ts +7 -0
- package/package/stores.js +6 -1
- package/package/system_prompts/index.d.ts +1 -0
- package/package/system_prompts/index.js +8 -0
- package/package/system_prompts/prompts.d.ts +16 -13
- package/package/system_prompts/prompts.js +653 -43
- package/package/templates/ci_test_bun.ts.template +8 -0
- package/package/templates/ci_test_python.py.template +8 -0
- package/package/utils/forkConflict.d.ts +26 -0
- package/package/utils/forkConflict.js +56 -0
- package/package/utils_deployable.d.ts +164 -121
- package/package/utils_deployable.js +61 -11
- package/package/utils_workspace_deploy.js +3 -1
- package/package.json +28 -4
- package/dist/sharedUtils/assets/tokens/colorTokensConfig.d.ts +0 -2
- package/dist/sharedUtils/base.d.ts +0 -1
- package/dist/sharedUtils/cloud.d.ts +0 -1
- package/dist/sharedUtils/common.d.ts +0 -111
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/count.d.ts +0 -5
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/delete.d.ts +0 -5
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/insert.d.ts +0 -5
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/select.d.ts +0 -13
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/update.d.ts +0 -11
- package/dist/sharedUtils/components/apps/components/display/dbtable/utils.d.ts +0 -95
- package/dist/sharedUtils/components/apps/editor/appPolicy.d.ts +0 -6
- package/dist/sharedUtils/components/apps/editor/appUtilsCore.d.ts +0 -7
- package/dist/sharedUtils/components/apps/editor/appUtilsS3.d.ts +0 -33
- package/dist/sharedUtils/components/apps/editor/commonAppUtils.d.ts +0 -10
- package/dist/sharedUtils/components/apps/editor/component/components.d.ts +0 -5371
- package/dist/sharedUtils/components/apps/editor/component/default-codes.d.ts +0 -3
- package/dist/sharedUtils/components/apps/editor/component/index.d.ts +0 -3
- package/dist/sharedUtils/components/apps/editor/component/sets.d.ts +0 -7
- package/dist/sharedUtils/components/apps/editor/componentsPanel/componentDefaultProps.d.ts +0 -3
- package/dist/sharedUtils/components/apps/gridUtils.d.ts +0 -14
- package/dist/sharedUtils/components/apps/inputType.d.ts +0 -178
- package/dist/sharedUtils/components/apps/rx.d.ts +0 -29
- package/dist/sharedUtils/components/apps/sharedTypes.d.ts +0 -21
- package/dist/sharedUtils/components/apps/types.d.ts +0 -274
- package/dist/sharedUtils/components/assets/lib.d.ts +0 -25
- package/dist/sharedUtils/components/common/alert/model.d.ts +0 -2
- package/dist/sharedUtils/components/common/badge/model.d.ts +0 -8
- package/dist/sharedUtils/components/common/button/model.d.ts +0 -45
- package/dist/sharedUtils/components/common/fileInput/model.d.ts +0 -1
- package/dist/sharedUtils/components/common/index.d.ts +0 -24
- package/dist/sharedUtils/components/common/skeleton/model.d.ts +0 -21
- package/dist/sharedUtils/components/dbTypes.d.ts +0 -14
- package/dist/sharedUtils/components/diff_drawer.d.ts +0 -26
- package/dist/sharedUtils/components/ducklake.d.ts +0 -1
- package/dist/sharedUtils/components/flows/scheduleUtils.d.ts +0 -7
- package/dist/sharedUtils/components/icons/index.d.ts +0 -101
- package/dist/sharedUtils/components/random_positive_adjetive.d.ts +0 -1
- package/dist/sharedUtils/components/raw_apps/rawAppPolicy.d.ts +0 -10
- package/dist/sharedUtils/components/raw_apps/utils.d.ts +0 -15
- package/dist/sharedUtils/components/triggers/email/utils.d.ts +0 -4
- package/dist/sharedUtils/components/triggers/gcp/utils.d.ts +0 -2
- package/dist/sharedUtils/components/triggers/http/utils.d.ts +0 -11
- package/dist/sharedUtils/components/triggers/mqtt/utils.d.ts +0 -2
- package/dist/sharedUtils/components/triggers/nats/utils.d.ts +0 -2
- package/dist/sharedUtils/components/triggers/postgres/utils.d.ts +0 -8
- package/dist/sharedUtils/components/triggers/sqs/utils.d.ts +0 -2
- package/dist/sharedUtils/components/triggers/triggers.svelte.d.ts +0 -32
- package/dist/sharedUtils/components/triggers/utils.d.ts +0 -80
- package/dist/sharedUtils/components/triggers/websocket/utils.d.ts +0 -2
- package/dist/sharedUtils/components/triggers.d.ts +0 -20
- package/dist/sharedUtils/gen/core/ApiError.d.ts +0 -10
- package/dist/sharedUtils/gen/core/ApiRequestOptions.d.ts +0 -13
- package/dist/sharedUtils/gen/core/ApiResult.d.ts +0 -7
- package/dist/sharedUtils/gen/core/CancelablePromise.d.ts +0 -26
- package/dist/sharedUtils/gen/core/OpenAPI.d.ts +0 -27
- package/dist/sharedUtils/gen/core/request.d.ts +0 -29
- package/dist/sharedUtils/gen/index.d.ts +0 -6
- package/dist/sharedUtils/gen/schemas.gen.d.ts +0 -7036
- package/dist/sharedUtils/gen/services.gen.d.ts +0 -6047
- package/dist/sharedUtils/gen/types.gen.d.ts +0 -21881
- package/dist/sharedUtils/history.svelte.d.ts +0 -9
- package/dist/sharedUtils/hub.d.ts +0 -49
- package/dist/sharedUtils/jsr.json +0 -6
- package/dist/sharedUtils/lib.d.ts +0 -5
- package/dist/sharedUtils/lib.es.js +0 -1588
- package/dist/sharedUtils/package.json +0 -12
- package/dist/sharedUtils/schema.d.ts +0 -3
- package/dist/sharedUtils/stores.d.ts +0 -97
- package/dist/sharedUtils/svelte5Utils.svelte.d.ts +0 -80
- package/dist/sharedUtils/toast.d.ts +0 -8
- package/dist/sharedUtils/utils.d.ts +0 -265
- package/package/components/copilot/chat/flow/openFlowZod.js +0 -24
- /package/package/components/copilot/chat/flow/{openFlowZod.d.ts → openFlowZod.gen.d.ts} +0 -0
|
@@ -1070,6 +1070,11 @@ 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
|
+
};
|
|
1073
1078
|
readonly parallel: {
|
|
1074
1079
|
readonly type: "boolean";
|
|
1075
1080
|
readonly description: "If true, the agent can execute multiple tool calls in parallel";
|
|
@@ -1925,7 +1930,7 @@ export declare const $FlowConversation: {
|
|
|
1925
1930
|
};
|
|
1926
1931
|
export declare const $FlowConversationMessage: {
|
|
1927
1932
|
readonly type: "object";
|
|
1928
|
-
readonly required: readonly ["id", "conversation_id", "message_type", "content", "created_at"];
|
|
1933
|
+
readonly required: readonly ["id", "conversation_id", "message_type", "content", "created_at", "created_seq"];
|
|
1929
1934
|
readonly properties: {
|
|
1930
1935
|
readonly id: {
|
|
1931
1936
|
readonly type: "string";
|
|
@@ -1957,6 +1962,11 @@ export declare const $FlowConversationMessage: {
|
|
|
1957
1962
|
readonly format: "date-time";
|
|
1958
1963
|
readonly description: "When the message was created";
|
|
1959
1964
|
};
|
|
1965
|
+
readonly created_seq: {
|
|
1966
|
+
readonly type: "integer";
|
|
1967
|
+
readonly format: "int64";
|
|
1968
|
+
readonly description: "Monotonic cursor assigned when the message is inserted";
|
|
1969
|
+
};
|
|
1960
1970
|
readonly step_name: {
|
|
1961
1971
|
readonly type: "string";
|
|
1962
1972
|
readonly description: "The step name that produced that message";
|
|
@@ -3586,6 +3596,9 @@ export declare const $TruncatedToken: {
|
|
|
3586
3596
|
readonly email: {
|
|
3587
3597
|
readonly type: "string";
|
|
3588
3598
|
};
|
|
3599
|
+
readonly workspace_id: {
|
|
3600
|
+
readonly type: "string";
|
|
3601
|
+
};
|
|
3589
3602
|
};
|
|
3590
3603
|
readonly required: readonly ["token_prefix", "created_at", "last_used_at"];
|
|
3591
3604
|
};
|
|
@@ -4290,7 +4303,7 @@ export declare const $Schedule: {
|
|
|
4290
4303
|
readonly properties: {
|
|
4291
4304
|
readonly path: {
|
|
4292
4305
|
readonly type: "string";
|
|
4293
|
-
readonly description: "The unique path
|
|
4306
|
+
readonly description: "The unique Windmill path for this schedule. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`.";
|
|
4294
4307
|
};
|
|
4295
4308
|
readonly edited_by: {
|
|
4296
4309
|
readonly type: "string";
|
|
@@ -4476,7 +4489,7 @@ export declare const $NewSchedule: {
|
|
|
4476
4489
|
readonly properties: {
|
|
4477
4490
|
readonly path: {
|
|
4478
4491
|
readonly type: "string";
|
|
4479
|
-
readonly description: "The unique path
|
|
4492
|
+
readonly description: "The unique Windmill path for this schedule. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`.";
|
|
4480
4493
|
};
|
|
4481
4494
|
readonly schedule: {
|
|
4482
4495
|
readonly type: "string";
|
|
@@ -4726,7 +4739,7 @@ export declare const $EditSchedule: {
|
|
|
4726
4739
|
export declare const $JobTriggerKind: {
|
|
4727
4740
|
readonly description: "job trigger kind (schedule, http, websocket...)";
|
|
4728
4741
|
readonly type: "string";
|
|
4729
|
-
readonly enum: readonly ["webhook", "default_email", "email", "schedule", "http", "websocket", "postgres", "kafka", "nats", "mqtt", "sqs", "gcp", "google", "github"];
|
|
4742
|
+
readonly enum: readonly ["webhook", "default_email", "email", "schedule", "http", "websocket", "postgres", "kafka", "nats", "mqtt", "sqs", "gcp", "azure", "google", "github"];
|
|
4730
4743
|
};
|
|
4731
4744
|
export declare const $TriggerMode: {
|
|
4732
4745
|
readonly description: "job trigger mode";
|
|
@@ -4738,7 +4751,7 @@ export declare const $TriggerExtraProperty: {
|
|
|
4738
4751
|
readonly properties: {
|
|
4739
4752
|
readonly path: {
|
|
4740
4753
|
readonly type: "string";
|
|
4741
|
-
readonly description: "The unique path
|
|
4754
|
+
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.";
|
|
4742
4755
|
};
|
|
4743
4756
|
readonly script_path: {
|
|
4744
4757
|
readonly type: "string";
|
|
@@ -5006,7 +5019,7 @@ export declare const $NewHttpTrigger: {
|
|
|
5006
5019
|
readonly properties: {
|
|
5007
5020
|
readonly path: {
|
|
5008
5021
|
readonly type: "string";
|
|
5009
|
-
readonly description: "The unique path
|
|
5022
|
+
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.";
|
|
5010
5023
|
};
|
|
5011
5024
|
readonly script_path: {
|
|
5012
5025
|
readonly type: "string";
|
|
@@ -5124,7 +5137,7 @@ export declare const $EditHttpTrigger: {
|
|
|
5124
5137
|
readonly properties: {
|
|
5125
5138
|
readonly path: {
|
|
5126
5139
|
readonly type: "string";
|
|
5127
|
-
readonly description: "The unique path
|
|
5140
|
+
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.";
|
|
5128
5141
|
};
|
|
5129
5142
|
readonly script_path: {
|
|
5130
5143
|
readonly type: "string";
|
|
@@ -5278,6 +5291,9 @@ export declare const $TriggersCount: {
|
|
|
5278
5291
|
readonly gcp_count: {
|
|
5279
5292
|
readonly type: "number";
|
|
5280
5293
|
};
|
|
5294
|
+
readonly azure_count: {
|
|
5295
|
+
readonly type: "number";
|
|
5296
|
+
};
|
|
5281
5297
|
readonly sqs_count: {
|
|
5282
5298
|
readonly type: "number";
|
|
5283
5299
|
};
|
|
@@ -5400,7 +5416,7 @@ export declare const $NewWebsocketTrigger: {
|
|
|
5400
5416
|
readonly properties: {
|
|
5401
5417
|
readonly path: {
|
|
5402
5418
|
readonly type: "string";
|
|
5403
|
-
readonly description: "The unique path
|
|
5419
|
+
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.";
|
|
5404
5420
|
};
|
|
5405
5421
|
readonly script_path: {
|
|
5406
5422
|
readonly type: "string";
|
|
@@ -5501,7 +5517,7 @@ export declare const $EditWebsocketTrigger: {
|
|
|
5501
5517
|
};
|
|
5502
5518
|
readonly path: {
|
|
5503
5519
|
readonly type: "string";
|
|
5504
|
-
readonly description: "The unique path
|
|
5520
|
+
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.";
|
|
5505
5521
|
};
|
|
5506
5522
|
readonly script_path: {
|
|
5507
5523
|
readonly type: "string";
|
|
@@ -5760,7 +5776,7 @@ export declare const $NewMqttTrigger: {
|
|
|
5760
5776
|
};
|
|
5761
5777
|
readonly path: {
|
|
5762
5778
|
readonly type: "string";
|
|
5763
|
-
readonly description: "The unique path
|
|
5779
|
+
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.";
|
|
5764
5780
|
};
|
|
5765
5781
|
readonly script_path: {
|
|
5766
5782
|
readonly type: "string";
|
|
@@ -5838,7 +5854,7 @@ export declare const $EditMqttTrigger: {
|
|
|
5838
5854
|
};
|
|
5839
5855
|
readonly path: {
|
|
5840
5856
|
readonly type: "string";
|
|
5841
|
-
readonly description: "The unique path
|
|
5857
|
+
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.";
|
|
5842
5858
|
};
|
|
5843
5859
|
readonly script_path: {
|
|
5844
5860
|
readonly type: "string";
|
|
@@ -5994,7 +6010,7 @@ export declare const $GcpTriggerData: {
|
|
|
5994
6010
|
};
|
|
5995
6011
|
readonly path: {
|
|
5996
6012
|
readonly type: "string";
|
|
5997
|
-
readonly description: "The unique path
|
|
6013
|
+
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.";
|
|
5998
6014
|
};
|
|
5999
6015
|
readonly script_path: {
|
|
6000
6016
|
readonly type: "string";
|
|
@@ -6065,6 +6081,200 @@ export declare const $DeleteGcpSubscription: {
|
|
|
6065
6081
|
};
|
|
6066
6082
|
readonly required: readonly ["subscription_id"];
|
|
6067
6083
|
};
|
|
6084
|
+
export declare const $AzureMode: {
|
|
6085
|
+
readonly type: "string";
|
|
6086
|
+
readonly enum: readonly ["basic_push", "namespace_push", "namespace_pull"];
|
|
6087
|
+
readonly description: "Azure Event Grid trigger mode.";
|
|
6088
|
+
};
|
|
6089
|
+
export declare const $AzureArmResource: {
|
|
6090
|
+
readonly type: "object";
|
|
6091
|
+
readonly description: "An ARM resource the service principal can see.";
|
|
6092
|
+
readonly properties: {
|
|
6093
|
+
readonly id: {
|
|
6094
|
+
readonly type: "string";
|
|
6095
|
+
};
|
|
6096
|
+
readonly name: {
|
|
6097
|
+
readonly type: "string";
|
|
6098
|
+
};
|
|
6099
|
+
readonly location: {
|
|
6100
|
+
readonly type: "string";
|
|
6101
|
+
};
|
|
6102
|
+
readonly type: {
|
|
6103
|
+
readonly type: "string";
|
|
6104
|
+
};
|
|
6105
|
+
};
|
|
6106
|
+
readonly required: readonly ["id", "name", "type"];
|
|
6107
|
+
};
|
|
6108
|
+
export declare const $AzureDeleteSubscription: {
|
|
6109
|
+
readonly type: "object";
|
|
6110
|
+
readonly properties: {
|
|
6111
|
+
readonly azure_mode: {
|
|
6112
|
+
readonly $ref: "#/components/schemas/AzureMode";
|
|
6113
|
+
};
|
|
6114
|
+
readonly scope_resource_id: {
|
|
6115
|
+
readonly type: "string";
|
|
6116
|
+
};
|
|
6117
|
+
readonly topic_name: {
|
|
6118
|
+
readonly type: "string";
|
|
6119
|
+
readonly nullable: true;
|
|
6120
|
+
};
|
|
6121
|
+
readonly subscription_name: {
|
|
6122
|
+
readonly type: "string";
|
|
6123
|
+
};
|
|
6124
|
+
};
|
|
6125
|
+
readonly required: readonly ["azure_mode", "scope_resource_id", "subscription_name"];
|
|
6126
|
+
};
|
|
6127
|
+
export declare const $AzureTrigger: {
|
|
6128
|
+
readonly allOf: readonly [{
|
|
6129
|
+
readonly $ref: "#/components/schemas/TriggerExtraProperty";
|
|
6130
|
+
}];
|
|
6131
|
+
readonly type: "object";
|
|
6132
|
+
readonly description: "An Azure Event Grid trigger that executes a script or flow when events arrive.";
|
|
6133
|
+
readonly properties: {
|
|
6134
|
+
readonly azure_resource_path: {
|
|
6135
|
+
readonly type: "string";
|
|
6136
|
+
};
|
|
6137
|
+
readonly azure_mode: {
|
|
6138
|
+
readonly $ref: "#/components/schemas/AzureMode";
|
|
6139
|
+
};
|
|
6140
|
+
readonly scope_resource_id: {
|
|
6141
|
+
readonly type: "string";
|
|
6142
|
+
readonly description: "ARM resource ID of the topic (basic) or namespace (namespace modes).";
|
|
6143
|
+
};
|
|
6144
|
+
readonly topic_name: {
|
|
6145
|
+
readonly type: "string";
|
|
6146
|
+
readonly nullable: true;
|
|
6147
|
+
readonly description: "Topic name within the namespace (namespace modes only).";
|
|
6148
|
+
};
|
|
6149
|
+
readonly subscription_name: {
|
|
6150
|
+
readonly type: "string";
|
|
6151
|
+
};
|
|
6152
|
+
readonly event_type_filters: {
|
|
6153
|
+
readonly type: "array";
|
|
6154
|
+
readonly items: {
|
|
6155
|
+
readonly type: "string";
|
|
6156
|
+
};
|
|
6157
|
+
readonly nullable: true;
|
|
6158
|
+
};
|
|
6159
|
+
readonly server_id: {
|
|
6160
|
+
readonly type: "string";
|
|
6161
|
+
};
|
|
6162
|
+
readonly last_server_ping: {
|
|
6163
|
+
readonly type: "string";
|
|
6164
|
+
readonly format: "date-time";
|
|
6165
|
+
};
|
|
6166
|
+
readonly error: {
|
|
6167
|
+
readonly type: "string";
|
|
6168
|
+
};
|
|
6169
|
+
readonly error_handler_path: {
|
|
6170
|
+
readonly type: "string";
|
|
6171
|
+
};
|
|
6172
|
+
readonly error_handler_args: {
|
|
6173
|
+
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
6174
|
+
};
|
|
6175
|
+
readonly retry: {
|
|
6176
|
+
readonly $ref: "#/components/schemas/Retry";
|
|
6177
|
+
};
|
|
6178
|
+
};
|
|
6179
|
+
readonly required: readonly ["azure_resource_path", "azure_mode", "scope_resource_id", "subscription_name"];
|
|
6180
|
+
};
|
|
6181
|
+
export declare const $AzureTriggerData: {
|
|
6182
|
+
readonly type: "object";
|
|
6183
|
+
readonly description: "Data for creating or updating an Azure Event Grid trigger.";
|
|
6184
|
+
readonly properties: {
|
|
6185
|
+
readonly azure_resource_path: {
|
|
6186
|
+
readonly type: "string";
|
|
6187
|
+
};
|
|
6188
|
+
readonly azure_mode: {
|
|
6189
|
+
readonly $ref: "#/components/schemas/AzureMode";
|
|
6190
|
+
};
|
|
6191
|
+
readonly scope_resource_id: {
|
|
6192
|
+
readonly type: "string";
|
|
6193
|
+
};
|
|
6194
|
+
readonly topic_name: {
|
|
6195
|
+
readonly type: "string";
|
|
6196
|
+
readonly nullable: true;
|
|
6197
|
+
};
|
|
6198
|
+
readonly subscription_name: {
|
|
6199
|
+
readonly type: "string";
|
|
6200
|
+
};
|
|
6201
|
+
readonly base_endpoint: {
|
|
6202
|
+
readonly type: "string";
|
|
6203
|
+
readonly description: "Base URL for push delivery endpoints (push modes only).";
|
|
6204
|
+
};
|
|
6205
|
+
readonly event_type_filters: {
|
|
6206
|
+
readonly type: "array";
|
|
6207
|
+
readonly items: {
|
|
6208
|
+
readonly type: "string";
|
|
6209
|
+
};
|
|
6210
|
+
};
|
|
6211
|
+
readonly path: {
|
|
6212
|
+
readonly type: "string";
|
|
6213
|
+
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.";
|
|
6214
|
+
};
|
|
6215
|
+
readonly script_path: {
|
|
6216
|
+
readonly type: "string";
|
|
6217
|
+
};
|
|
6218
|
+
readonly is_flow: {
|
|
6219
|
+
readonly type: "boolean";
|
|
6220
|
+
};
|
|
6221
|
+
readonly mode: {
|
|
6222
|
+
readonly $ref: "#/components/schemas/TriggerMode";
|
|
6223
|
+
};
|
|
6224
|
+
readonly error_handler_path: {
|
|
6225
|
+
readonly type: "string";
|
|
6226
|
+
};
|
|
6227
|
+
readonly error_handler_args: {
|
|
6228
|
+
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
6229
|
+
};
|
|
6230
|
+
readonly retry: {
|
|
6231
|
+
readonly $ref: "#/components/schemas/Retry";
|
|
6232
|
+
};
|
|
6233
|
+
readonly permissioned_as: {
|
|
6234
|
+
readonly type: "string";
|
|
6235
|
+
};
|
|
6236
|
+
readonly preserve_permissioned_as: {
|
|
6237
|
+
readonly type: "boolean";
|
|
6238
|
+
};
|
|
6239
|
+
readonly labels: {
|
|
6240
|
+
readonly type: "array";
|
|
6241
|
+
readonly items: {
|
|
6242
|
+
readonly type: "string";
|
|
6243
|
+
};
|
|
6244
|
+
};
|
|
6245
|
+
};
|
|
6246
|
+
readonly required: readonly ["path", "script_path", "is_flow", "azure_resource_path", "azure_mode", "scope_resource_id", "subscription_name"];
|
|
6247
|
+
};
|
|
6248
|
+
export declare const $TestAzureConnection: {
|
|
6249
|
+
readonly type: "object";
|
|
6250
|
+
readonly properties: {
|
|
6251
|
+
readonly azure_resource_path: {
|
|
6252
|
+
readonly type: "string";
|
|
6253
|
+
};
|
|
6254
|
+
};
|
|
6255
|
+
readonly required: readonly ["azure_resource_path"];
|
|
6256
|
+
};
|
|
6257
|
+
export declare const $AzureListTopics: {
|
|
6258
|
+
readonly type: "object";
|
|
6259
|
+
readonly properties: {
|
|
6260
|
+
readonly scope_resource_id: {
|
|
6261
|
+
readonly type: "string";
|
|
6262
|
+
};
|
|
6263
|
+
};
|
|
6264
|
+
readonly required: readonly ["scope_resource_id"];
|
|
6265
|
+
};
|
|
6266
|
+
export declare const $AzureListSubscriptions: {
|
|
6267
|
+
readonly type: "object";
|
|
6268
|
+
readonly properties: {
|
|
6269
|
+
readonly scope_resource_id: {
|
|
6270
|
+
readonly type: "string";
|
|
6271
|
+
};
|
|
6272
|
+
readonly topic_name: {
|
|
6273
|
+
readonly type: "string";
|
|
6274
|
+
};
|
|
6275
|
+
};
|
|
6276
|
+
readonly required: readonly ["scope_resource_id", "topic_name"];
|
|
6277
|
+
};
|
|
6068
6278
|
export declare const $AwsAuthResourceType: {
|
|
6069
6279
|
readonly type: "string";
|
|
6070
6280
|
readonly enum: readonly ["oidc", "credentials"];
|
|
@@ -6202,7 +6412,7 @@ export declare const $NewSqsTrigger: {
|
|
|
6202
6412
|
};
|
|
6203
6413
|
readonly path: {
|
|
6204
6414
|
readonly type: "string";
|
|
6205
|
-
readonly description: "The unique path
|
|
6415
|
+
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.";
|
|
6206
6416
|
};
|
|
6207
6417
|
readonly script_path: {
|
|
6208
6418
|
readonly type: "string";
|
|
@@ -6269,7 +6479,7 @@ export declare const $EditSqsTrigger: {
|
|
|
6269
6479
|
};
|
|
6270
6480
|
readonly path: {
|
|
6271
6481
|
readonly type: "string";
|
|
6272
|
-
readonly description: "The unique path
|
|
6482
|
+
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.";
|
|
6273
6483
|
};
|
|
6274
6484
|
readonly script_path: {
|
|
6275
6485
|
readonly type: "string";
|
|
@@ -6462,7 +6672,7 @@ export declare const $NewPostgresTrigger: {
|
|
|
6462
6672
|
};
|
|
6463
6673
|
readonly path: {
|
|
6464
6674
|
readonly type: "string";
|
|
6465
|
-
readonly description: "The unique path
|
|
6675
|
+
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.";
|
|
6466
6676
|
};
|
|
6467
6677
|
readonly script_path: {
|
|
6468
6678
|
readonly type: "string";
|
|
@@ -6525,7 +6735,7 @@ export declare const $EditPostgresTrigger: {
|
|
|
6525
6735
|
};
|
|
6526
6736
|
readonly path: {
|
|
6527
6737
|
readonly type: "string";
|
|
6528
|
-
readonly description: "The unique path
|
|
6738
|
+
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.";
|
|
6529
6739
|
};
|
|
6530
6740
|
readonly script_path: {
|
|
6531
6741
|
readonly type: "string";
|
|
@@ -6659,7 +6869,7 @@ export declare const $NewKafkaTrigger: {
|
|
|
6659
6869
|
readonly properties: {
|
|
6660
6870
|
readonly path: {
|
|
6661
6871
|
readonly type: "string";
|
|
6662
|
-
readonly description: "The unique path
|
|
6872
|
+
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.";
|
|
6663
6873
|
};
|
|
6664
6874
|
readonly script_path: {
|
|
6665
6875
|
readonly type: "string";
|
|
@@ -6796,7 +7006,7 @@ export declare const $EditKafkaTrigger: {
|
|
|
6796
7006
|
};
|
|
6797
7007
|
readonly path: {
|
|
6798
7008
|
readonly type: "string";
|
|
6799
|
-
readonly description: "The unique path
|
|
7009
|
+
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.";
|
|
6800
7010
|
};
|
|
6801
7011
|
readonly script_path: {
|
|
6802
7012
|
readonly type: "string";
|
|
@@ -6899,7 +7109,7 @@ export declare const $NewNatsTrigger: {
|
|
|
6899
7109
|
readonly properties: {
|
|
6900
7110
|
readonly path: {
|
|
6901
7111
|
readonly type: "string";
|
|
6902
|
-
readonly description: "The unique path
|
|
7112
|
+
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.";
|
|
6903
7113
|
};
|
|
6904
7114
|
readonly script_path: {
|
|
6905
7115
|
readonly type: "string";
|
|
@@ -6996,7 +7206,7 @@ export declare const $EditNatsTrigger: {
|
|
|
6996
7206
|
};
|
|
6997
7207
|
readonly path: {
|
|
6998
7208
|
readonly type: "string";
|
|
6999
|
-
readonly description: "The unique path
|
|
7209
|
+
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.";
|
|
7000
7210
|
};
|
|
7001
7211
|
readonly script_path: {
|
|
7002
7212
|
readonly type: "string";
|
|
@@ -7768,10 +7978,28 @@ export declare const $RestartedFrom: {
|
|
|
7768
7978
|
};
|
|
7769
7979
|
readonly branch_or_iteration_n: {
|
|
7770
7980
|
readonly type: "integer";
|
|
7981
|
+
readonly description: "0-based iteration index for ForLoop / branch index for BranchAll. Iterations 0..n-1 are preserved; iteration n is restarted.";
|
|
7771
7982
|
};
|
|
7772
7983
|
readonly flow_version: {
|
|
7773
7984
|
readonly type: "integer";
|
|
7774
7985
|
};
|
|
7986
|
+
readonly branch_chosen: {
|
|
7987
|
+
readonly description: "For BranchOne nested restart — the branch that was originally chosen, used to lock branch evaluation.";
|
|
7988
|
+
readonly type: "object";
|
|
7989
|
+
readonly properties: {
|
|
7990
|
+
readonly type: {
|
|
7991
|
+
readonly type: "string";
|
|
7992
|
+
readonly enum: readonly ["default", "branch"];
|
|
7993
|
+
};
|
|
7994
|
+
readonly branch: {
|
|
7995
|
+
readonly type: "integer";
|
|
7996
|
+
};
|
|
7997
|
+
};
|
|
7998
|
+
};
|
|
7999
|
+
readonly nested: {
|
|
8000
|
+
readonly $ref: "#/components/schemas/RestartedFrom";
|
|
8001
|
+
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.";
|
|
8002
|
+
};
|
|
7775
8003
|
};
|
|
7776
8004
|
};
|
|
7777
8005
|
export declare const $Policy: {
|
|
@@ -8266,6 +8494,51 @@ export declare const $DataTableSchema: {
|
|
|
8266
8494
|
};
|
|
8267
8495
|
};
|
|
8268
8496
|
};
|
|
8497
|
+
export declare const $DataTableTables: {
|
|
8498
|
+
readonly type: "object";
|
|
8499
|
+
readonly required: readonly ["datatable_name", "schemas"];
|
|
8500
|
+
readonly properties: {
|
|
8501
|
+
readonly datatable_name: {
|
|
8502
|
+
readonly type: "string";
|
|
8503
|
+
};
|
|
8504
|
+
readonly schemas: {
|
|
8505
|
+
readonly type: "object";
|
|
8506
|
+
readonly description: "Hierarchical metadata: schema_name -> table_names";
|
|
8507
|
+
readonly additionalProperties: {
|
|
8508
|
+
readonly type: "array";
|
|
8509
|
+
readonly items: {
|
|
8510
|
+
readonly type: "string";
|
|
8511
|
+
};
|
|
8512
|
+
};
|
|
8513
|
+
};
|
|
8514
|
+
readonly error: {
|
|
8515
|
+
readonly type: "string";
|
|
8516
|
+
};
|
|
8517
|
+
};
|
|
8518
|
+
};
|
|
8519
|
+
export declare const $DataTableTableSchema: {
|
|
8520
|
+
readonly type: "object";
|
|
8521
|
+
readonly required: readonly ["datatable_name", "schema_name", "table_name", "columns"];
|
|
8522
|
+
readonly properties: {
|
|
8523
|
+
readonly datatable_name: {
|
|
8524
|
+
readonly type: "string";
|
|
8525
|
+
};
|
|
8526
|
+
readonly schema_name: {
|
|
8527
|
+
readonly type: "string";
|
|
8528
|
+
};
|
|
8529
|
+
readonly table_name: {
|
|
8530
|
+
readonly type: "string";
|
|
8531
|
+
};
|
|
8532
|
+
readonly columns: {
|
|
8533
|
+
readonly type: "object";
|
|
8534
|
+
readonly description: "Columns in this table: column_name -> compact_type";
|
|
8535
|
+
readonly additionalProperties: {
|
|
8536
|
+
readonly type: "string";
|
|
8537
|
+
readonly description: "Compact type: 'type[?][=default]' where ? means nullable";
|
|
8538
|
+
};
|
|
8539
|
+
};
|
|
8540
|
+
};
|
|
8541
|
+
};
|
|
8269
8542
|
export declare const $DynamicInputData: {
|
|
8270
8543
|
readonly type: "object";
|
|
8271
8544
|
readonly properties: {
|
|
@@ -8467,9 +8740,6 @@ export declare const $GitRepositorySettings: {
|
|
|
8467
8740
|
readonly group_by_folder: {
|
|
8468
8741
|
readonly type: "boolean";
|
|
8469
8742
|
};
|
|
8470
|
-
readonly force_branch: {
|
|
8471
|
-
readonly type: "string";
|
|
8472
|
-
};
|
|
8473
8743
|
readonly collapsed: {
|
|
8474
8744
|
readonly type: "boolean";
|
|
8475
8745
|
};
|
|
@@ -8790,7 +9060,7 @@ export declare const $CriticalAlert: {
|
|
|
8790
9060
|
};
|
|
8791
9061
|
export declare const $CaptureTriggerKind: {
|
|
8792
9062
|
readonly type: "string";
|
|
8793
|
-
readonly enum: readonly ["webhook", "http", "websocket", "kafka", "default_email", "nats", "postgres", "sqs", "mqtt", "gcp", "email"];
|
|
9063
|
+
readonly enum: readonly ["webhook", "http", "websocket", "kafka", "default_email", "nats", "postgres", "sqs", "mqtt", "gcp", "azure", "email"];
|
|
8794
9064
|
};
|
|
8795
9065
|
export declare const $Capture: {
|
|
8796
9066
|
readonly type: "object";
|