windmill-components 1.623.1 → 1.642.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/dist/sharedUtils/assets/tokens/colorTokensConfig.d.ts +2 -0
- package/dist/sharedUtils/base.d.ts +1 -0
- package/dist/sharedUtils/cloud.d.ts +1 -0
- package/dist/sharedUtils/common.d.ts +111 -0
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/count.d.ts +5 -0
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/delete.d.ts +5 -0
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/insert.d.ts +5 -0
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/select.d.ts +13 -0
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/update.d.ts +11 -0
- package/dist/sharedUtils/components/apps/components/display/dbtable/utils.d.ts +95 -0
- package/dist/sharedUtils/components/apps/editor/appPolicy.d.ts +6 -0
- package/dist/sharedUtils/components/apps/editor/appUtilsCore.d.ts +7 -0
- package/dist/sharedUtils/components/apps/editor/appUtilsS3.d.ts +33 -0
- package/dist/sharedUtils/components/apps/editor/commonAppUtils.d.ts +10 -0
- package/dist/sharedUtils/components/apps/editor/component/components.d.ts +5371 -0
- package/dist/sharedUtils/components/apps/editor/component/default-codes.d.ts +3 -0
- package/dist/sharedUtils/components/apps/editor/component/index.d.ts +3 -0
- package/dist/sharedUtils/components/apps/editor/component/sets.d.ts +7 -0
- package/dist/sharedUtils/components/apps/editor/componentsPanel/componentDefaultProps.d.ts +3 -0
- package/dist/sharedUtils/components/apps/gridUtils.d.ts +14 -0
- package/dist/sharedUtils/components/apps/inputType.d.ts +178 -0
- package/dist/sharedUtils/components/apps/rx.d.ts +29 -0
- package/dist/sharedUtils/components/apps/sharedTypes.d.ts +21 -0
- package/dist/sharedUtils/components/apps/types.d.ts +274 -0
- package/dist/sharedUtils/components/assets/lib.d.ts +25 -0
- package/dist/sharedUtils/components/common/alert/model.d.ts +2 -0
- package/dist/sharedUtils/components/common/badge/model.d.ts +8 -0
- package/dist/sharedUtils/components/common/button/model.d.ts +45 -0
- package/dist/sharedUtils/components/common/fileInput/model.d.ts +1 -0
- package/dist/sharedUtils/components/common/index.d.ts +24 -0
- package/dist/sharedUtils/components/common/skeleton/model.d.ts +21 -0
- package/dist/sharedUtils/components/dbTypes.d.ts +14 -0
- package/dist/sharedUtils/components/diff_drawer.d.ts +26 -0
- package/dist/sharedUtils/components/ducklake.d.ts +1 -0
- package/dist/sharedUtils/components/flows/scheduleUtils.d.ts +7 -0
- package/dist/sharedUtils/components/icons/index.d.ts +101 -0
- package/dist/sharedUtils/components/random_positive_adjetive.d.ts +1 -0
- package/dist/sharedUtils/components/raw_apps/rawAppPolicy.d.ts +10 -0
- package/dist/sharedUtils/components/raw_apps/utils.d.ts +15 -0
- package/dist/sharedUtils/components/triggers/email/utils.d.ts +4 -0
- package/dist/sharedUtils/components/triggers/gcp/utils.d.ts +2 -0
- package/dist/sharedUtils/components/triggers/http/utils.d.ts +11 -0
- package/dist/sharedUtils/components/triggers/kafka/utils.d.ts +2 -0
- package/dist/sharedUtils/components/triggers/mqtt/utils.d.ts +2 -0
- package/dist/sharedUtils/components/triggers/nats/utils.d.ts +2 -0
- package/dist/sharedUtils/components/triggers/postgres/utils.d.ts +8 -0
- package/dist/sharedUtils/components/triggers/sqs/utils.d.ts +2 -0
- package/dist/sharedUtils/components/triggers/triggers.svelte.d.ts +32 -0
- package/dist/sharedUtils/components/triggers/utils.d.ts +80 -0
- package/dist/sharedUtils/components/triggers/websocket/utils.d.ts +2 -0
- package/dist/sharedUtils/components/triggers.d.ts +20 -0
- package/dist/sharedUtils/gen/core/ApiError.d.ts +10 -0
- package/dist/sharedUtils/gen/core/ApiRequestOptions.d.ts +13 -0
- package/dist/sharedUtils/gen/core/ApiResult.d.ts +7 -0
- package/dist/sharedUtils/gen/core/CancelablePromise.d.ts +26 -0
- package/dist/sharedUtils/gen/core/OpenAPI.d.ts +27 -0
- package/dist/sharedUtils/gen/core/request.d.ts +29 -0
- package/dist/sharedUtils/gen/index.d.ts +6 -0
- package/dist/sharedUtils/gen/schemas.gen.d.ts +7036 -0
- package/dist/sharedUtils/gen/services.gen.d.ts +6047 -0
- package/dist/sharedUtils/gen/types.gen.d.ts +21881 -0
- package/dist/sharedUtils/history.svelte.d.ts +9 -0
- package/dist/sharedUtils/hub.d.ts +49 -0
- package/dist/sharedUtils/jsr.json +6 -0
- package/dist/sharedUtils/lib.d.ts +5 -0
- package/dist/sharedUtils/lib.es.js +1588 -0
- package/dist/sharedUtils/package.json +12 -0
- package/dist/sharedUtils/schema.d.ts +3 -0
- package/dist/sharedUtils/stores.d.ts +97 -0
- package/dist/sharedUtils/svelte5Utils.svelte.d.ts +80 -0
- package/dist/sharedUtils/toast.d.ts +8 -0
- package/dist/sharedUtils/utils.d.ts +265 -0
- package/package/assets/app.css +32 -13
- package/package/assets/tokens/tokens.json +11 -1
- package/package/ata/apis.js +78 -5
- package/package/cancelable-promise-utils.js +4 -2
- package/package/components/AIAgentLogViewer.svelte +2 -2
- package/package/components/AIAgentLogViewer.svelte.d.ts +1 -0
- package/package/components/AIProviderPicker.svelte +20 -80
- package/package/components/AIProviderPicker.svelte.d.ts +2 -7
- package/package/components/AddUser.svelte +3 -3
- package/package/components/ApiConnectForm.svelte +13 -1
- package/package/components/AppConnectDrawer.svelte +1 -0
- package/package/components/AppConnectInner.svelte +1 -0
- package/package/components/AppConnectInner.svelte.d.ts +1 -1
- package/package/components/ArgInput.svelte +15 -5
- package/package/components/ArgInput.svelte.d.ts +3 -4
- package/package/components/Auth0Setting.svelte +6 -2
- package/package/components/AuthSettings.svelte +71 -40
- package/package/components/AuthSettings.svelte.d.ts +3 -1
- package/package/components/AutheliaSetting.svelte +3 -2
- package/package/components/AuthentikSetting.svelte +3 -2
- package/package/components/AutoscalingConfigEditor.svelte +2 -1
- package/package/components/AutoscalingConfigEditor.svelte.d.ts +1 -0
- package/package/components/BedrockCredentialsCheck.svelte +241 -0
- package/package/components/BedrockCredentialsCheck.svelte.d.ts +3 -0
- package/package/components/CenteredModal.svelte +42 -24
- package/package/components/CenteredModal.svelte.d.ts +8 -27
- package/package/components/CenteredPage.svelte +6 -2
- package/package/components/CenteredPage.svelte.d.ts +3 -0
- package/package/components/ChangeInstanceUsernameInner.svelte +1 -1
- package/package/components/CompareWorkspaces.svelte +103 -73
- package/package/components/ConcurrentJobsChart.svelte +4 -3
- package/package/components/ConcurrentJobsChart.svelte.d.ts +2 -2
- package/package/components/ConnectionSection.svelte +69 -73
- package/package/components/CustomPopover.svelte +20 -23
- package/package/components/CustomPopover.svelte.d.ts +14 -39
- package/package/components/CustomSso.svelte +7 -7
- package/package/components/DBManager.svelte +147 -44
- package/package/components/DBManager.svelte.d.ts +15 -2
- package/package/components/DBManagerContent.svelte +30 -63
- package/package/components/DBManagerContent.svelte.d.ts +39 -4
- package/package/components/DBManagerDrawer.svelte +9 -9
- package/package/components/DBTable.svelte +1 -1
- package/package/components/DBTable.svelte.d.ts +3 -1
- package/package/components/DBTableEditor.svelte +234 -178
- package/package/components/DBTableEditor.svelte.d.ts +22 -3
- package/package/components/DatatablePicker.svelte +29 -0
- package/package/components/DatatablePicker.svelte.d.ts +13 -0
- package/package/components/DateInput.svelte +29 -35
- package/package/components/DateInput.svelte.d.ts +10 -11
- package/package/components/DateTimeInput.svelte +3 -3
- package/package/components/DedicatedWorkersSelector.svelte +566 -0
- package/package/components/DedicatedWorkersSelector.svelte.d.ts +8 -0
- package/package/components/DeployToSetting.svelte +183 -123
- package/package/components/DeployToSetting.svelte.d.ts +19 -28
- package/package/components/DeployWorkspace.svelte +111 -72
- package/package/components/DeployWorkspace.svelte.d.ts +2 -1
- package/package/components/DeployWorkspaceDrawer.svelte +18 -7
- package/package/components/DeployWorkspaceDrawer.svelte.d.ts +3 -20
- package/package/components/Description.svelte +5 -2
- package/package/components/Dev.svelte +37 -2
- package/package/components/DiffDrawer.svelte +8 -29
- package/package/components/DiffEditor.svelte +39 -8
- package/package/components/DiffEditor.svelte.d.ts +2 -6
- package/package/components/DisplayResult.svelte +34 -26
- package/package/components/DropdownMenu.svelte +39 -0
- package/package/components/DropdownMenu.svelte.d.ts +14 -0
- package/package/components/DropdownSubmenuItem.svelte +68 -0
- package/package/components/DropdownSubmenuItem.svelte.d.ts +10 -0
- package/package/components/DropdownV2.svelte +5 -4
- package/package/components/DropdownV2.svelte.d.ts +1 -0
- package/package/components/DropdownV2Inner.svelte +42 -34
- package/package/components/DropdownV2Inner.svelte.d.ts +2 -1
- package/package/components/DucklakePicker.svelte +2 -5
- package/package/components/EEOnly.svelte +4 -14
- package/package/components/EEOnly.svelte.d.ts +0 -1
- package/package/components/Editor.svelte +72 -27
- package/package/components/Editor.svelte.d.ts +4 -0
- package/package/components/EditorBar.svelte +3 -5
- package/package/components/ErrorOrRecoveryHandler.svelte +62 -53
- package/package/components/ErrorOrRecoveryHandler.svelte.d.ts +1 -0
- package/package/components/ExploreAssetButton.svelte +1 -2
- package/package/components/FakeMonacoPlaceHolder.svelte +1 -1
- package/package/components/FileExplorer.svelte +249 -0
- package/package/components/FileExplorer.svelte.d.ts +21 -0
- package/package/components/FilesetEditor.svelte +103 -0
- package/package/components/FilesetEditor.svelte.d.ts +6 -0
- package/package/components/FilterSearchbar.svelte +628 -0
- package/package/components/FilterSearchbar.svelte.d.ts +86 -0
- package/package/components/FlowBuilder.svelte +140 -90
- package/package/components/FlowDiffViewer.svelte +37 -0
- package/package/components/FlowDiffViewer.svelte.d.ts +7 -0
- package/package/components/FlowGraphViewer.svelte +5 -2
- package/package/components/FlowGraphViewer.svelte.d.ts +2 -0
- package/package/components/FlowGraphViewerStep.svelte +49 -33
- package/package/components/FlowHistoryJobPicker.svelte +2 -1
- package/package/components/FlowJobResult.svelte +31 -23
- package/package/components/FlowJobResult.svelte.d.ts +0 -1
- package/package/components/FlowLogRow.svelte +1 -1
- package/package/components/FlowLogViewer.svelte +8 -3
- package/package/components/FlowLoopIterationPreview.svelte.d.ts +1 -1
- package/package/components/FlowPreviewContent.svelte +67 -50
- package/package/components/FlowPreviewContent.svelte.d.ts +5 -1
- package/package/components/FlowRestartButton.svelte +48 -49
- package/package/components/FlowRestartButton.svelte.d.ts +5 -0
- package/package/components/FlowStatusViewer.svelte +2 -3
- package/package/components/FlowStatusViewer.svelte.d.ts +1 -0
- package/package/components/FlowStatusViewerInner.svelte +411 -308
- package/package/components/FlowStatusViewerInner.svelte.d.ts +3 -3
- package/package/components/FlowStatusWaitingForEvents.svelte +34 -29
- package/package/components/FlowStatusWaitingForEvents.svelte.d.ts +4 -18
- package/package/components/FlowViewer.svelte +103 -2
- package/package/components/FlowViewer.svelte.d.ts +9 -3
- package/package/components/FolderPicker.svelte +195 -65
- package/package/components/FolderPicker.svelte.d.ts +2 -0
- package/package/components/ForkWorkspaceBanner.svelte +32 -13
- package/package/components/GraphqlSchemaViewer.svelte +8 -1
- package/package/components/HistoricInputs.svelte +24 -27
- package/package/components/HistoricInputs.svelte.d.ts +2 -2
- package/package/components/IconedResourceType.svelte +8 -2
- package/package/components/IconedResourceType.svelte.d.ts +2 -0
- package/package/components/InfiniteList.svelte +27 -20
- package/package/components/InfiniteList.svelte.d.ts +2 -0
- package/package/components/InputError.svelte +9 -0
- package/package/components/InputError.svelte.d.ts +6 -0
- package/package/components/InputTransformForm.svelte +46 -39
- package/package/components/InputTransformForm.svelte.d.ts +1 -0
- package/package/components/InputTransformSchemaForm.svelte +2 -1
- package/package/components/InputTransformSchemaForm.svelte.d.ts +1 -0
- package/package/components/InputTransformsViewer.svelte +37 -20
- package/package/components/InstanceNameEditor.svelte +3 -1
- package/package/components/InstanceSetting.svelte +187 -373
- package/package/components/InstanceSetting.svelte.d.ts +1 -0
- package/package/components/InstanceSettings.svelte +804 -193
- package/package/components/InstanceSettings.svelte.d.ts +17 -2
- package/package/components/IntegerInput.svelte +58 -0
- package/package/components/IntegerInput.svelte.d.ts +14 -0
- package/package/components/InviteGlobalUser.svelte +25 -25
- package/package/components/InviteGlobalUser.svelte.d.ts +4 -2
- package/package/components/InviteUser.svelte +16 -42
- package/package/components/InviteUser.svelte.d.ts +4 -18
- package/package/components/JobArgs.svelte +14 -10
- package/package/components/JobLoader.svelte +6 -4
- package/package/components/JobLoader.svelte.d.ts +3 -3
- package/package/components/JobOtelTraces.svelte +287 -0
- package/package/components/JobOtelTraces.svelte.d.ts +6 -0
- package/package/components/JobStatus.svelte +29 -26
- package/package/components/JobStatus.svelte.d.ts +1 -0
- package/package/components/JsonInputs.svelte +6 -8
- package/package/components/JsonInputs.svelte.d.ts +7 -8
- package/package/components/KanidmSetting.svelte +3 -2
- package/package/components/KeycloakSetting.svelte +3 -2
- package/package/components/LogViewer.svelte +91 -33
- package/package/components/Login.svelte +36 -3
- package/package/components/ManualPopover.svelte +5 -6
- package/package/components/ManualPopover.svelte.d.ts +9 -35
- package/package/components/MemoryFootprintViewer.svelte +2 -6
- package/package/components/ModulePreview.svelte +23 -21
- package/package/components/ModulePreview.svelte.d.ts +1 -0
- package/package/components/ModuleStatus.svelte +5 -5
- package/package/components/ModuleTest.svelte +3 -3
- package/package/components/MoveDrawer.svelte +47 -76
- package/package/components/MoveDrawer.svelte.d.ts +4 -6
- package/package/components/NextcloudSetting.svelte +4 -3
- package/package/components/NoDirectDeployAlert.svelte +31 -0
- package/package/components/NoDirectDeployAlert.svelte.d.ts +6 -0
- package/package/components/NumberTypeNarrowing.svelte +65 -67
- package/package/components/NumberTypeNarrowing.svelte.d.ts +2 -1
- package/package/components/OAuthSetting.svelte +7 -14
- package/package/components/ObjectStoreConfigSettings.svelte +150 -55
- package/package/components/ObjectStoreConfigSettings.svelte.d.ts +34 -44
- package/package/components/OktaSetting.svelte +3 -2
- package/package/components/PageHeader.svelte +1 -1
- package/package/components/ParentWorkspaceProtectionAlert.svelte +48 -0
- package/package/components/ParentWorkspaceProtectionAlert.svelte.d.ts +7 -0
- package/package/components/Path.svelte +41 -29
- package/package/components/Path.svelte.d.ts +4 -1
- package/package/components/PocketIdSetting.svelte +83 -0
- package/package/components/PocketIdSetting.svelte.d.ts +6 -0
- package/package/components/ResourceEditor.svelte +13 -7
- package/package/components/ResourcePicker.svelte +6 -5
- package/package/components/ResourcePicker.svelte.d.ts +1 -0
- package/package/components/RightClickPopover.svelte +37 -0
- package/package/components/RightClickPopover.svelte.d.ts +11 -0
- package/package/components/RunButton.svelte +5 -15
- package/package/components/RunButton.svelte.d.ts +7 -19
- package/package/components/RunChart.svelte +9 -24
- package/package/components/RunChart.svelte.d.ts +2 -5
- package/package/components/RunForm.svelte +9 -17
- package/package/components/RunForm.svelte.d.ts +0 -1
- package/package/components/RunFormAdvancedPopup.svelte +1 -1
- package/package/components/RunsPage.svelte +489 -926
- package/package/components/RunsPage.svelte.d.ts +5 -5
- package/package/components/S3FilePicker.svelte +7 -11
- package/package/components/S3FilePickerInner.svelte +2 -3
- package/package/components/S3FilePickerInner.svelte.d.ts +2 -2
- package/package/components/SaveButton.svelte +78 -0
- package/package/components/SaveButton.svelte.d.ts +12 -0
- package/package/components/SaveInputsButton.svelte +1 -1
- package/package/components/SavedInputsPicker.svelte +1 -1
- package/package/components/SavedInputsV2.svelte +36 -39
- package/package/components/SchemaForm.svelte +26 -19
- package/package/components/SchemaFormWithArgPicker.svelte +34 -29
- package/package/components/SchemaFormWithArgPicker.svelte.d.ts +12 -21
- package/package/components/SchemaViewer.svelte +56 -53
- package/package/components/ScriptBuilder.svelte +13 -13
- package/package/components/ScriptEditor.svelte +574 -98
- package/package/components/Section.svelte +5 -3
- package/package/components/ServiceLogsInner.svelte +21 -82
- package/package/components/ShareModal.svelte.d.ts +1 -1
- package/package/components/SimpleEditor.svelte +46 -2
- package/package/components/Star.svelte +13 -31
- package/package/components/Star.svelte.d.ts +8 -21
- package/package/components/StringTypeNarrowing.svelte +1 -0
- package/package/components/StringTypeNarrowing.svelte.d.ts +1 -1
- package/package/components/SummaryPathDisplay.svelte +177 -0
- package/package/components/SummaryPathDisplay.svelte.d.ts +10 -0
- package/package/components/SuperadminSettings.svelte +185 -4
- package/package/components/SuperadminSettings.svelte.d.ts +4 -1
- package/package/components/SuperadminSettingsInner.svelte +307 -192
- package/package/components/SuperadminSettingsInner.svelte.d.ts +12 -1
- package/package/components/TaggedTextInput.svelte +449 -0
- package/package/components/TaggedTextInput.svelte.d.ts +28 -0
- package/package/components/TemplateEditor.svelte +54 -29
- package/package/components/TemplateEditor.svelte.d.ts +13 -102
- package/package/components/TimeAgo.svelte +49 -7
- package/package/components/TimeAgo.svelte.d.ts +1 -0
- package/package/components/Toast.svelte +72 -50
- package/package/components/Toast.svelte.d.ts +2 -2
- package/package/components/Tooltip.svelte +2 -2
- package/package/components/Tooltip.svelte.d.ts +2 -0
- package/package/components/TooltipInner.svelte +6 -1
- package/package/components/TooltipInner.svelte.d.ts +1 -0
- package/package/components/Uptodate.svelte +3 -2
- package/package/components/UserSettings.svelte +3 -3
- package/package/components/UserSettings.svelte.d.ts +1 -0
- package/package/components/WorkerGroup.svelte +353 -210
- package/package/components/WorkerGroup.svelte.d.ts +3 -0
- package/package/components/WorkerTagPicker.svelte +1 -1
- package/package/components/WorkerTagSelect.svelte +5 -2
- package/package/components/WorkspaceDependenciesEditor.svelte +33 -17
- package/package/components/WorkspaceTutorials.svelte +5 -0
- package/package/components/ZitadelSetting.svelte +3 -2
- package/package/components/aiProviderStorage.d.ts +5 -0
- package/package/components/aiProviderStorage.js +50 -0
- package/package/components/apps/components/buttons/AppButton.svelte +21 -6
- package/package/components/apps/components/buttons/AppForm.svelte +2 -1
- package/package/components/apps/components/buttons/AppFormButton.svelte +2 -1
- package/package/components/apps/components/display/InsertRowDrawerButton.svelte +1 -1
- package/package/components/apps/components/display/dbtable/AppDbExplorer.svelte +24 -16
- package/package/components/apps/components/display/dbtable/dbFeatures.d.ts +9 -0
- package/package/components/apps/components/display/dbtable/dbFeatures.js +32 -0
- package/package/components/apps/components/display/dbtable/metadata.d.ts +4 -3
- package/package/components/apps/components/display/dbtable/metadata.js +178 -148
- package/package/components/apps/components/display/dbtable/queries/alterTable.d.ts +46 -0
- package/package/components/apps/components/display/dbtable/queries/alterTable.js +322 -0
- package/package/components/apps/components/display/dbtable/queries/alterTable.test.d.ts +1 -0
- package/package/components/apps/components/display/dbtable/queries/alterTable.test.js +867 -0
- package/package/components/apps/components/display/dbtable/queries/count.js +3 -1
- package/package/components/apps/components/display/dbtable/queries/createTable.d.ts +2 -24
- package/package/components/apps/components/display/dbtable/queries/createTable.js +13 -25
- package/package/components/apps/components/display/dbtable/queries/dbQueriesUtils.d.ts +9 -0
- package/package/components/apps/components/display/dbtable/queries/dbQueriesUtils.js +45 -0
- package/package/components/apps/components/display/dbtable/queries/delete.js +3 -1
- package/package/components/apps/components/display/dbtable/queries/insert.js +3 -1
- package/package/components/apps/components/display/dbtable/queries/relationalKeys.d.ts +45 -0
- package/package/components/apps/components/display/dbtable/queries/relationalKeys.js +401 -0
- package/package/components/apps/components/display/dbtable/queries/select.d.ts +2 -0
- package/package/components/apps/components/display/dbtable/queries/select.js +52 -7
- package/package/components/apps/components/display/dbtable/queries/update.js +3 -1
- package/package/components/apps/components/display/dbtable/tableEditor.d.ts +35 -0
- package/package/components/apps/components/display/dbtable/tableEditor.js +67 -0
- package/package/components/apps/components/display/dbtable/utils.d.ts +2 -0
- package/package/components/apps/components/display/dbtable/utils.js +61 -36
- package/package/components/apps/components/display/table/AppAggridExplorerTable.svelte +6 -0
- package/package/components/apps/components/display/table/AppAggridInfiniteTable.svelte +1 -0
- package/package/components/apps/components/display/table/AppAggridTable.svelte +15 -0
- package/package/components/apps/components/display/table/AppAggridTableActions.svelte +16 -10
- package/package/components/apps/components/display/table/AppAggridTableActions.svelte.d.ts +2 -1
- package/package/components/apps/components/display/table/theme/windmill-theme.css +8 -7
- package/package/components/apps/components/helpers/HiddenComponent.svelte +1 -1
- package/package/components/apps/components/helpers/InputValue.svelte +1 -1
- package/package/components/apps/components/helpers/ResolveConfig.svelte +1 -1
- package/package/components/apps/components/helpers/RunnableComponent.svelte +3 -2
- package/package/components/apps/components/helpers/RunnableComponent.svelte.d.ts +1 -1
- package/package/components/apps/components/helpers/RunnableWrapper.svelte +2 -2
- package/package/components/apps/components/helpers/eval.js +5 -2
- package/package/components/apps/components/inputs/AppMultiSelectV2.svelte +2 -4
- package/package/components/apps/components/layout/AppModal.svelte +2 -1
- package/package/components/apps/components/layout/AppModal.svelte.d.ts +1 -0
- package/package/components/apps/editor/AppEditorHeader.svelte +8 -1
- package/package/components/apps/editor/AppEditorHeaderDeploy.svelte +32 -29
- package/package/components/apps/editor/AppEditorHeaderDeploy.svelte.d.ts +2 -2
- package/package/components/apps/editor/AppEditorHeaderDeployInitialDraft.svelte +4 -4
- package/package/components/apps/editor/AppEditorHeaderDeployInitialDraft.svelte.d.ts +3 -3
- package/package/components/apps/editor/PublicApp.svelte +49 -30
- package/package/components/apps/editor/PublicApp.svelte.d.ts +1 -0
- package/package/components/apps/editor/appPolicy.js +5 -4
- package/package/components/apps/editor/appUtils.d.ts +1 -1
- package/package/components/apps/editor/component/components.d.ts +11 -0
- package/package/components/apps/editor/component/components.js +19 -2
- package/package/components/apps/editor/componentsPanel/CssProperty.svelte +3 -1
- package/package/components/apps/editor/inlineScriptsPanel/CacheTtlPopup.svelte +1 -1
- package/package/components/apps/editor/inlineScriptsPanel/InlineScriptRunnableByPath.svelte +77 -7
- package/package/components/apps/editor/inlineScriptsPanel/InlineScriptRunnableByPath.svelte.d.ts +2 -2
- package/package/components/apps/editor/inlineScriptsPanel/utils.d.ts +2 -2
- package/package/components/apps/editor/inlineScriptsPanel/utils.js +10 -1
- package/package/components/apps/editor/settingsPanel/ArrayStaticInputEditor.svelte +1 -1
- package/package/components/apps/editor/settingsPanel/OneOfInputSpecsEditor.svelte +1 -1
- package/package/components/apps/editor/settingsPanel/StylePanel.svelte +66 -29
- package/package/components/apps/editor/settingsPanel/StylePanel.svelte.d.ts +2 -17
- package/package/components/apps/editor/settingsPanel/inputEditor/StaticInputEditor.svelte +10 -0
- package/package/components/apps/inputType.d.ts +8 -3
- package/package/components/assets/AssetButtons.svelte +3 -7
- package/package/components/assets/AssetButtons.svelte.d.ts +2 -4
- package/package/components/assets/AssetColumnBadges.svelte +35 -0
- package/package/components/assets/AssetColumnBadges.svelte.d.ts +10 -0
- package/package/components/assets/AssetsDropdownButton.svelte +9 -7
- package/package/components/assets/AssetsUsageDrawer.svelte +100 -27
- package/package/components/assets/AssetsUsageDrawer.svelte.d.ts +5 -6
- package/package/components/assets/JobAssetsViewer.svelte +4 -6
- package/package/components/assets/assetsFilter.d.ts +50 -0
- package/package/components/assets/assetsFilter.js +43 -0
- package/package/components/assets/lib.d.ts +6 -4
- package/package/components/assets/lib.js +11 -2
- package/package/components/auditLogs/AuditLogsFilters.svelte +39 -18
- package/package/components/auditLogs/AuditLogsFilters.svelte.d.ts +1 -1
- package/package/components/common/CloseButton.svelte +2 -1
- package/package/components/common/CloseButton.svelte.d.ts +1 -0
- package/package/components/common/InlineCalendarInput.svelte +580 -0
- package/package/components/common/InlineCalendarInput.svelte.d.ts +31 -0
- package/package/components/common/alert/Alert.svelte +2 -8
- package/package/components/common/alert/model.d.ts +1 -0
- package/package/components/common/alert/model.js +7 -0
- package/package/components/common/badge/Badge.svelte +7 -3
- package/package/components/common/badge/Badge.svelte.d.ts +1 -0
- package/package/components/common/badge/CountBadge.svelte +4 -3
- package/package/components/common/badge/CountBadge.svelte.d.ts +1 -0
- package/package/components/common/breadcrumb/Breadcrumb.svelte +10 -14
- package/package/components/common/breadcrumb/Breadcrumb.svelte.d.ts +8 -23
- package/package/components/common/button/Button.svelte +1 -1
- package/package/components/common/button/model.js +1 -1
- package/package/components/common/calendarPicker/CalendarPicker.svelte.d.ts +1 -1
- package/package/components/common/confirmationModal/ConfirmationModal.svelte +2 -1
- package/package/components/common/confirmationModal/ConfirmationModal.svelte.d.ts +1 -0
- package/package/components/common/drawer/Drawer.svelte +4 -1
- package/package/components/common/drawer/DrawerContent.svelte +7 -4
- package/package/components/common/drawer/DrawerContent.svelte.d.ts +1 -0
- package/package/components/common/languageIcons/TypeScript.svelte +5 -3
- package/package/components/common/languageIcons/TypeScript.svelte.d.ts +1 -0
- package/package/components/common/modal/Modal.svelte +3 -3
- package/package/components/common/modal/Modal2.svelte +1 -0
- package/package/components/common/seconds/SecondsInput.svelte +158 -67
- package/package/components/common/seconds/SecondsInput.svelte.d.ts +9 -21
- package/package/components/common/sidebar/SidebarNavigation.svelte +50 -0
- package/package/components/common/sidebar/SidebarNavigation.svelte.d.ts +25 -0
- package/package/components/common/table/AppRow.svelte +7 -7
- package/package/components/common/table/AppRow.svelte.d.ts +2 -2
- package/package/components/common/table/FlowRow.svelte +12 -12
- package/package/components/common/table/FlowRow.svelte.d.ts +2 -2
- package/package/components/common/table/RawAppRow.svelte +5 -79
- package/package/components/common/table/RawAppRow.svelte.d.ts +2 -23
- package/package/components/common/table/Row.svelte +11 -21
- package/package/components/common/table/Row.svelte.d.ts +3 -21
- package/package/components/common/table/RowIcon.svelte +6 -2
- package/package/components/common/table/RowIcon.svelte.d.ts +1 -1
- package/package/components/common/table/ScriptRow.svelte +8 -8
- package/package/components/common/table/ScriptRow.svelte.d.ts +2 -2
- package/package/components/common/toggleButton-v2/ToggleButtonGroup.svelte +1 -1
- package/package/components/common/toggleButton-v2/ToggleButtonGroup.svelte.d.ts +1 -1
- package/package/components/copilot/TestAIKey.svelte +1 -1
- package/package/components/copilot/autocomplete/Autocompletor.d.ts +1 -1
- package/package/components/copilot/autocomplete/Autocompletor.js +7 -6
- package/package/components/copilot/autocomplete/request.js +13 -9
- package/package/components/copilot/chat/AIButtonStyle.d.ts +1 -1
- package/package/components/copilot/chat/AIButtonStyle.js +2 -1
- package/package/components/copilot/chat/AIChat.svelte +3 -1
- package/package/components/copilot/chat/AIChatDisplay.svelte +89 -4
- package/package/components/copilot/chat/AIChatInput.svelte +291 -5
- package/package/components/copilot/chat/AIChatManager.svelte.js +122 -18
- package/package/components/copilot/chat/AiChatLayout.svelte +15 -30
- package/package/components/copilot/chat/AppAvailableContextList.svelte +263 -0
- package/package/components/copilot/chat/AppAvailableContextList.svelte.d.ts +13 -0
- package/package/components/copilot/chat/AvailableContextList.svelte +215 -12
- package/package/components/copilot/chat/AvailableContextList.svelte.d.ts +1 -0
- package/package/components/copilot/chat/ContextElementBadge.svelte +44 -0
- package/package/components/copilot/chat/ContextTextarea.svelte +15 -2
- package/package/components/copilot/chat/DatatableCreationPolicy.svelte +32 -33
- package/package/components/copilot/chat/ProviderModelSelector.svelte +1 -1
- package/package/components/copilot/chat/__tests__/app/appEvalHelpers.js +3 -0
- package/package/components/copilot/chat/__tests__/app/variants/streamlined.js +1 -1
- package/package/components/copilot/chat/__tests__/flow/flowEvalHelpers.js +4 -0
- package/package/components/copilot/chat/__tests__/flow/variants/minimal-single-tool.js +4 -2
- package/package/components/copilot/chat/app/core.d.ts +56 -15
- package/package/components/copilot/chat/app/core.js +148 -108
- package/package/components/copilot/chat/context.js +9 -2
- package/package/components/copilot/chat/flow/FlowAIChat.svelte +22 -0
- package/package/components/copilot/chat/flow/core.d.ts +3 -1
- package/package/components/copilot/chat/flow/core.js +221 -62
- package/package/components/copilot/chat/flow/openFlow.json +1 -1
- package/package/components/copilot/chat/flow/openFlowZod.d.ts +3 -2
- package/package/components/copilot/chat/flow/openFlowZod.js +16 -6
- package/package/components/copilot/chat/navigator/core.d.ts +2 -2
- package/package/components/copilot/chat/navigator/core.js +11 -2
- package/package/components/copilot/chat/script/core.d.ts +4 -1
- package/package/components/copilot/chat/script/core.js +46 -6
- package/package/components/copilot/chat/shared.d.ts +63 -1
- package/package/components/copilot/chat/shared.js +251 -1
- package/package/components/copilot/lib.d.ts +1 -1
- package/package/components/copilot/lib.js +44 -9
- package/package/components/copilot/utils.d.ts +5 -0
- package/package/components/copilot/utils.js +8 -0
- package/package/components/custom_ui.d.ts +2 -0
- package/package/components/dbOps.d.ts +18 -4
- package/package/components/dbOps.js +25 -3
- package/package/components/debug/DebugConsole.svelte +277 -0
- package/package/components/debug/DebugConsole.svelte.d.ts +13 -0
- package/package/components/debug/DebugPanel.svelte +97 -0
- package/package/components/debug/DebugPanel.svelte.d.ts +11 -0
- package/package/components/debug/DebugToolbar.svelte +148 -0
- package/package/components/debug/DebugToolbar.svelte.d.ts +17 -0
- package/package/components/debug/DebugVariableViewer.svelte +115 -0
- package/package/components/debug/DebugVariableViewer.svelte.d.ts +11 -0
- package/package/components/debug/MonacoDebugger.svelte +384 -0
- package/package/components/debug/MonacoDebugger.svelte.d.ts +15 -0
- package/package/components/debug/dapClient.d.ts +192 -0
- package/package/components/debug/dapClient.js +426 -0
- package/package/components/debug/debugUtils.d.ts +30 -0
- package/package/components/debug/debugUtils.js +131 -0
- package/package/components/debug/index.d.ts +75 -0
- package/package/components/debug/index.js +82 -0
- package/package/components/dedicated_worker.d.ts +7 -0
- package/package/components/dedicated_worker.js +36 -0
- package/package/components/details/DetailPageHeader.svelte +11 -12
- package/package/components/details/DetailPageHeader.svelte.d.ts +3 -1
- package/package/components/details/DetailPageLayout.svelte +11 -2
- package/package/components/details/DetailPageLayout.svelte.d.ts +1 -0
- package/package/components/details/createAppFromScript.d.ts +136 -16
- package/package/components/details/createAppFromScript.js +13 -12
- package/package/components/diffEditorTypes.d.ts +6 -0
- package/package/components/diffEditorTypes.js +1 -0
- package/package/components/flows/CreateActionsApp.svelte +32 -80
- package/package/components/flows/CreateActionsFlow.svelte +28 -28
- package/package/components/flows/DebounceLimit.svelte.d.ts +1 -1
- package/package/components/flows/FlowAssetsHandler.svelte +1 -4
- package/package/components/flows/FlowHistoryInner.svelte +15 -4
- package/package/components/flows/FlowProgressBar.svelte +37 -1
- package/package/components/flows/FlowProgressBar.svelte.d.ts +3 -0
- package/package/components/flows/agentToolUtils.d.ts +18 -0
- package/package/components/flows/agentToolUtils.js +47 -0
- package/package/components/flows/common/FlowCardHeader.svelte +8 -9
- package/package/components/flows/content/AgentToolWrapper.svelte +1 -1
- package/package/components/flows/content/FlowEditorDrawer.svelte +124 -0
- package/package/components/{schema/SchemaPicker.svelte.d.ts → flows/content/FlowEditorDrawer.svelte.d.ts} +8 -13
- package/package/components/flows/content/FlowEnvironmentVariables.svelte +3 -2
- package/package/components/flows/content/FlowInput.svelte +211 -37
- package/package/components/flows/content/FlowLoop.svelte +3 -4
- package/package/components/flows/content/FlowModuleCache.svelte +1 -3
- package/package/components/flows/content/FlowModuleComponent.svelte +571 -69
- package/package/components/flows/content/FlowModuleEarlyStop.svelte +8 -10
- package/package/components/flows/content/FlowModuleHeader.svelte +7 -4
- package/package/components/flows/content/FlowModuleSleep.svelte +1 -1
- package/package/components/flows/content/FlowModuleWorkerTagSelect.svelte +1 -1
- package/package/components/flows/content/FlowResult.svelte +77 -25
- package/package/components/flows/content/FlowRetries.svelte +1 -1
- package/package/components/flows/content/FlowSettings.svelte +4 -7
- package/package/components/flows/content/McpOAuthConnect.svelte +217 -0
- package/package/components/flows/content/McpOAuthConnect.svelte.d.ts +7 -0
- package/package/components/flows/content/McpToolEditor.svelte +50 -37
- package/package/components/flows/content/McpToolEditor.svelte.d.ts +0 -1
- package/package/components/flows/conversations/FlowChat.svelte +16 -2
- package/package/components/flows/conversations/FlowChat.svelte.d.ts +2 -1
- package/package/components/flows/conversations/FlowChatInterface.svelte +103 -6
- package/package/components/flows/conversations/FlowChatInterface.svelte.d.ts +2 -0
- package/package/components/flows/conversations/FlowChatManager.svelte.js +53 -21
- package/package/components/flows/conversations/FlowConversationsSidebar.svelte +79 -77
- package/package/components/flows/flowState.js +6 -0
- package/package/components/flows/flowStateUtils.svelte.js +4 -1
- package/package/components/flows/flowStore.svelte.d.ts +1 -1
- package/package/components/flows/flowStore.svelte.js +4 -2
- package/package/components/flows/header/FlowImportExportMenu.svelte +1 -1
- package/package/components/flows/header/FlowPreviewButtons.svelte +2 -1
- package/package/components/flows/header/FlowYamlEditor.svelte +2 -2
- package/package/components/flows/map/FlowModuleSchemaMap.svelte +12 -6
- package/package/components/flows/map/FlowModuleSchemaMap.svelte.d.ts +2 -2
- package/package/components/flows/map/InsertModuleInner.svelte +7 -0
- package/package/components/flows/map/InsertModuleInner.svelte.d.ts +1 -0
- package/package/components/flows/missingInputWarnings.js +7 -0
- package/package/components/flows/pickers/PickHubScriptQuick.svelte +4 -4
- package/package/components/flows/propPicker/OutputPicker.svelte +1 -1
- package/package/components/flows/propPicker/OutputPickerInner.svelte.d.ts +1 -1
- package/package/components/flows/propPicker/PropPickerWrapper.svelte +9 -10
- package/package/components/flows/propPicker/PropPickerWrapper.svelte.d.ts +3 -3
- package/package/components/flows/scheduleUtils.js +2 -2
- package/package/components/flows/types.d.ts +3 -3
- package/package/components/flows/utils.svelte.js +5 -1
- package/package/components/git_sync/GitSyncRepositoryCard.svelte +33 -23
- package/package/components/git_sync/GitSyncSection.svelte +24 -27
- package/package/components/graph/FlowGraphV2.svelte +8 -2
- package/package/components/graph/graphBuilder.svelte.d.ts +3 -1
- package/package/components/graph/model.d.ts +1 -1
- package/package/components/graph/renderers/nodes/AIToolNode.svelte +3 -1
- package/package/components/graph/renderers/nodes/AssetNode.svelte +25 -13
- package/package/components/graph/renderers/nodes/AssetsOverflowedNode.svelte +1 -1
- package/package/components/graph/renderers/nodes/NewAIToolNode.svelte +8 -0
- package/package/components/graph/renderers/triggers/TriggersBadge.svelte +44 -24
- package/package/components/home/Item.svelte +9 -15
- package/package/components/home/Item.svelte.d.ts +8 -7
- package/package/components/home/ItemsList.svelte +11 -16
- package/package/components/home/ItemsList.svelte.d.ts +1 -0
- package/package/components/home/TutorialBanner.svelte +34 -18
- package/package/components/home/treeViewUtils.js +1 -1
- package/package/components/icons/CssIcon.svelte +20 -0
- package/package/components/icons/CssIcon.svelte.d.ts +7 -25
- package/package/components/icons/GoogleCalendarIcon.svelte +41 -0
- package/package/components/icons/GoogleCalendarIcon.svelte.d.ts +7 -0
- package/package/components/icons/GoogleDriveIcon.svelte +30 -0
- package/package/components/icons/GoogleDriveIcon.svelte.d.ts +7 -0
- package/package/components/icons/GoogleIcon.svelte +15 -6
- package/package/components/icons/GoogleIcon.svelte.d.ts +5 -2
- package/package/components/icons/HtmlIcon.svelte +20 -0
- package/package/components/icons/HtmlIcon.svelte.d.ts +8 -0
- package/package/components/icons/JavaScriptIcon.svelte +10 -2
- package/package/components/icons/JavaScriptIcon.svelte.d.ts +1 -0
- package/package/components/icons/JsonIcon.svelte +8 -2
- package/package/components/icons/JsonIcon.svelte.d.ts +1 -0
- package/package/components/icons/LessIcon.svelte +16 -0
- package/package/components/icons/LessIcon.svelte.d.ts +8 -0
- package/package/components/icons/MSSqlServerIcon.svelte +111 -47
- package/package/components/icons/MarkdownIcon.svelte +20 -0
- package/package/components/icons/MarkdownIcon.svelte.d.ts +8 -0
- package/package/components/icons/NextcloudIcon.svelte +3 -2
- package/package/components/icons/NextcloudIcon.svelte.d.ts +2 -0
- package/package/components/icons/PocketIdIcon.svelte +9 -0
- package/package/components/icons/PocketIdIcon.svelte.d.ts +9 -0
- package/package/components/icons/ReactIcon.svelte +10 -2
- package/package/components/icons/ReactIcon.svelte.d.ts +1 -0
- package/package/components/icons/SassIcon.svelte +28 -0
- package/package/components/icons/SassIcon.svelte.d.ts +8 -0
- package/package/components/icons/SvelteIcon.svelte +10 -2
- package/package/components/icons/SvelteIcon.svelte.d.ts +1 -0
- package/package/components/icons/VueIcon.svelte +10 -2
- package/package/components/icons/VueIcon.svelte.d.ts +1 -0
- package/package/components/icons/YamlIcon.svelte +20 -0
- package/package/components/icons/YamlIcon.svelte.d.ts +8 -0
- package/package/components/icons/index.js +3 -1
- package/package/components/instanceSettings/IndexerJobIndexSettings.svelte +94 -0
- package/package/components/instanceSettings/IndexerJobIndexSettings.svelte.d.ts +9 -0
- package/package/components/instanceSettings/IndexerLogIndexSettings.svelte +67 -0
- package/package/components/instanceSettings/IndexerLogIndexSettings.svelte.d.ts +9 -0
- package/package/components/instanceSettings/IndexerMemorySettings.svelte +109 -0
- package/package/components/instanceSettings/IndexerMemorySettings.svelte.d.ts +9 -0
- package/package/components/instanceSettings/SecretBackendConfig.svelte +513 -0
- package/package/components/instanceSettings/SecretBackendConfig.svelte.d.ts +8 -0
- package/package/components/instanceSettings/SettingCard.svelte +47 -0
- package/package/components/instanceSettings/SettingCard.svelte.d.ts +19 -0
- package/package/components/instanceSettings/SettingsSearchInput.svelte +66 -0
- package/package/components/instanceSettings/SettingsSearchInput.svelte.d.ts +9 -0
- package/package/components/instanceSettings.d.ts +54 -1
- package/package/components/instanceSettings.js +444 -68
- package/package/components/jobs/JobPreview.svelte +46 -39
- package/package/components/jobs/JobPreview.svelte.d.ts +1 -0
- package/package/components/meltComponents/MenuItem.svelte +1 -0
- package/package/components/meltComponents/Popover.svelte +10 -1
- package/package/components/meltComponents/Popover.svelte.d.ts +2 -0
- package/package/components/meltComponents/Tooltip.svelte +2 -1
- package/package/components/meltComponents/Tooltip.svelte.d.ts +1 -0
- package/package/components/monacoLanguagesOptions.js +16 -15
- package/package/components/moveRenameManager.d.ts +21 -0
- package/package/components/moveRenameManager.js +61 -0
- package/package/components/progressBar/ProgressBar.svelte +69 -27
- package/package/components/progressBar/ProgressBar.svelte.d.ts +7 -0
- package/package/components/prop_picker.d.ts +0 -3
- package/package/components/propertyPicker/PropPicker.svelte +47 -48
- package/package/components/propertyPicker/PropPicker.svelte.d.ts +12 -9
- package/package/components/raw_apps/DefaultDatabaseSelector.svelte +9 -5
- package/package/components/raw_apps/FileEditorIcon.svelte +12 -7
- package/package/components/raw_apps/FileEditorIcon.svelte.d.ts +2 -0
- package/package/components/raw_apps/FileTreeNode.svelte +120 -83
- package/package/components/raw_apps/RawAppBackgroundRunner.svelte +91 -10
- package/package/components/raw_apps/RawAppDataTableDrawer.svelte +1 -3
- package/package/components/raw_apps/RawAppDataTableList.svelte +12 -9
- package/package/components/raw_apps/RawAppEditor.svelte +237 -83
- package/package/components/raw_apps/RawAppEditor.svelte.d.ts +4 -4
- package/package/components/raw_apps/RawAppEditorHeader.svelte +105 -22
- package/package/components/raw_apps/RawAppEditorHeader.svelte.d.ts +1 -1
- package/package/components/raw_apps/RawAppHistoryList.svelte +264 -80
- package/package/components/raw_apps/RawAppHistoryList.svelte.d.ts +1 -0
- package/package/components/raw_apps/RawAppHistoryManager.svelte.d.ts +15 -1
- package/package/components/raw_apps/RawAppHistoryManager.svelte.js +46 -12
- package/package/components/raw_apps/RawAppInlineScriptEditor.svelte +549 -47
- package/package/components/raw_apps/RawAppInlineScriptEditor.svelte.d.ts +32 -7
- package/package/components/raw_apps/RawAppInlineScriptPanelList.svelte +66 -19
- package/package/components/raw_apps/RawAppInlineScriptPanelList.svelte.d.ts +1 -0
- package/package/components/raw_apps/RawAppInlineScriptRunnable.svelte +141 -10
- package/package/components/raw_apps/RawAppInlineScriptRunnable.svelte.d.ts +8 -0
- package/package/components/raw_apps/RawAppInlineScriptsPanel.svelte +2 -1
- package/package/components/raw_apps/RawAppInlineScriptsPanel.svelte.d.ts +9 -2
- package/package/components/raw_apps/RawAppInputsSpecEditor.svelte +47 -3
- package/package/components/raw_apps/RawAppInputsSpecEditor.svelte.d.ts +2 -2
- package/package/components/raw_apps/RawAppModules.svelte +13 -7
- package/package/components/raw_apps/RawAppPreview.svelte +48 -6
- package/package/components/raw_apps/RawAppSidebar.svelte +52 -235
- package/package/components/raw_apps/RawAppSidebar.svelte.d.ts +2 -1
- package/package/components/raw_apps/RunnableRow.svelte +95 -0
- package/package/components/raw_apps/RunnableRow.svelte.d.ts +15 -0
- package/package/components/raw_apps/datatableUtils.svelte.js +1 -1
- package/package/components/raw_apps/utils.d.ts +1 -1
- package/package/components/raw_apps/utils.js +76 -18
- package/package/components/resources/resourcesFilter.d.ts +70 -0
- package/package/components/resources/resourcesFilter.js +61 -0
- package/package/components/runs/BatchReRunOptionsPane.svelte +130 -121
- package/package/components/runs/BatchReRunOptionsPane.svelte.d.ts +3 -2
- package/package/components/runs/FlowExecutionStatus.svelte +30 -0
- package/package/components/runs/FlowExecutionStatus.svelte.d.ts +15 -0
- package/package/components/runs/JobDetailFieldConfig.d.ts +47 -0
- package/package/components/runs/JobDetailFieldConfig.js +433 -0
- package/package/components/runs/JobDetailHeader.svelte +551 -0
- package/package/components/runs/JobDetailHeader.svelte.d.ts +17 -0
- package/package/components/runs/JobRunsPreview.svelte +174 -218
- package/package/components/runs/JobRunsPreview.svelte.d.ts +0 -1
- package/package/components/runs/JobStatusIcon.svelte +47 -0
- package/package/components/runs/JobStatusIcon.svelte.d.ts +9 -0
- package/package/components/runs/NoWorkerWithTagWarning.svelte +5 -1
- package/package/components/runs/RunBadges.svelte +39 -34
- package/package/components/runs/RunBadges.svelte.d.ts +2 -1
- package/package/components/runs/RunRow.svelte +24 -64
- package/package/components/runs/RunRow.svelte.d.ts +1 -2
- package/package/components/runs/RunsQueue.svelte.d.ts +1 -1
- package/package/components/runs/RunsTable.svelte +312 -131
- package/package/components/runs/RunsTable.svelte.d.ts +4 -3
- package/package/components/runs/TimeframeSelect.svelte +189 -0
- package/package/components/runs/TimeframeSelect.svelte.d.ts +44 -0
- package/package/components/runs/runsFilter.d.ts +201 -0
- package/package/components/runs/runsFilter.js +182 -0
- package/package/components/runs/useJobsLoader.svelte.d.ts +32 -0
- package/package/components/runs/useJobsLoader.svelte.js +504 -0
- package/package/components/schedules/schedulesFilter.d.ts +65 -0
- package/package/components/schedules/schedulesFilter.js +60 -0
- package/package/components/schema/EditableSchemaWrapper.svelte +45 -24
- package/package/components/schema/EditableSchemaWrapper.svelte.d.ts +1 -1
- package/package/components/schema/FlowPropertyEditor.svelte.d.ts +1 -1
- package/package/components/schema/PropertyEditor.svelte +1 -0
- package/package/components/schema/RunningJobSchemaPicker.svelte +1 -1
- package/package/components/schema/editable_schema_wrapper.d.ts +1 -0
- package/package/components/scriptEditor/LogPanel.svelte +17 -2
- package/package/components/scriptEditor/LogPanel.svelte.d.ts +2 -0
- package/package/components/scripts/CreateActionsScript.svelte +0 -1
- package/package/components/search/GlobalSearchModal.svelte +1 -8
- package/package/components/select/GenericDropdown.svelte +113 -0
- package/package/components/select/GenericDropdown.svelte.d.ts +37 -0
- package/package/components/select/MultiSelect.svelte +1 -1
- package/package/components/select/Select.svelte +17 -4
- package/package/components/select/Select.svelte.d.ts +2 -1
- package/package/components/select/SelectDropdown.svelte +76 -143
- package/package/components/select/SelectDropdown.svelte.d.ts +4 -1
- package/package/components/settings/AIPromptsModal.svelte +88 -0
- package/package/components/settings/AIPromptsModal.svelte.d.ts +11 -0
- package/package/components/settings/ChangeWorkspaceColor.svelte +11 -11
- package/package/components/settings/ChangeWorkspaceId.svelte +20 -17
- package/package/components/settings/ChangeWorkspaceName.svelte +13 -14
- package/package/components/settings/CreateToken.svelte +4 -4
- package/package/components/settings/PremiumInfo.svelte +268 -128
- package/package/components/settings/SettingsPageHeader.svelte +22 -0
- package/package/components/settings/SettingsPageHeader.svelte.d.ts +10 -0
- package/package/components/settings/UserAIPromptsSettings.svelte +56 -15
- package/package/components/settings/WorkspaceOperatorSettings.svelte +68 -85
- package/package/components/settings/WorkspaceUserSettings.svelte +543 -427
- package/package/components/sidebar/CriticalAlertModalInner.svelte +28 -22
- package/package/components/sidebar/CriticalAlertModalInner.svelte.d.ts +5 -20
- package/package/components/sidebar/DarkModeToggle.svelte +2 -2
- package/package/components/sidebar/FavoriteMenu.svelte +101 -20
- package/package/components/sidebar/FavoriteMenu.svelte.d.ts +29 -1
- package/package/components/sidebar/MenuButton.svelte +60 -27
- package/package/components/sidebar/MenuButton.svelte.d.ts +4 -0
- package/package/components/sidebar/MenuLink.svelte +4 -3
- package/package/components/sidebar/MultiplayerMenu.svelte +4 -4
- package/package/components/sidebar/OperatorMenu.svelte +66 -89
- package/package/components/sidebar/OperatorMenu.svelte.d.ts +6 -1
- package/package/components/sidebar/SidebarContent.svelte +42 -9
- package/package/components/sidebar/UserMenu.svelte +3 -3
- package/package/components/sidebar/WorkspaceMenu.svelte +37 -86
- package/package/components/sqlTypeService.js +4 -3
- package/package/components/table/AutoDataTable.svelte +2 -2
- package/package/components/table/DataTable.svelte +8 -3
- package/package/components/table/DataTable.svelte.d.ts +2 -0
- package/package/components/text_input/TextInput.svelte +3 -0
- package/package/components/text_input/TextInput.svelte.d.ts +2 -0
- package/package/components/toast.js +1 -2
- package/package/components/triggers/AddTriggersButton.svelte +28 -4
- package/package/components/triggers/TriggerFilters.svelte +71 -0
- package/package/components/triggers/TriggerFilters.svelte.d.ts +10 -0
- package/package/components/triggers/TriggersEditor.svelte +34 -10
- package/package/components/triggers/TriggersWrapper.svelte +24 -0
- package/package/components/triggers/http/RouteEditorInner.svelte +1 -1
- package/package/components/triggers/kafka/KafkaTriggerEditorInner.svelte +7 -0
- package/package/components/triggers/kafka/utils.js +1 -0
- package/package/components/triggers/native/NativeTriggerEditor.svelte +384 -0
- package/package/components/triggers/native/NativeTriggerEditor.svelte.d.ts +26 -0
- package/package/components/triggers/native/NativeTriggerTable.svelte +171 -0
- package/package/components/triggers/native/NativeTriggerTable.svelte.d.ts +16 -0
- package/package/components/triggers/native/NativeTriggersPanel.svelte +40 -0
- package/package/components/triggers/native/NativeTriggersPanel.svelte.d.ts +15 -0
- package/package/components/triggers/native/services/google/GoogleCalendarPicker.svelte +112 -0
- package/package/components/triggers/native/services/google/GoogleCalendarPicker.svelte.d.ts +8 -0
- package/package/components/triggers/native/services/google/GoogleDrivePicker.svelte +323 -0
- package/package/components/triggers/native/services/google/GoogleDrivePicker.svelte.d.ts +8 -0
- package/package/components/triggers/native/services/google/GoogleTriggerForm.svelte +116 -0
- package/package/components/triggers/native/services/google/GoogleTriggerForm.svelte.d.ts +12 -0
- package/package/components/triggers/native/services/nextcloud/NextcloudTriggerForm.svelte +104 -0
- package/package/components/triggers/native/services/nextcloud/NextcloudTriggerForm.svelte.d.ts +18 -0
- package/package/components/triggers/native/utils.d.ts +73 -0
- package/package/components/triggers/native/utils.js +166 -0
- package/package/components/triggers/schedules/ScheduleEditorInner.svelte +3 -3
- package/package/components/triggers/triggers.svelte.d.ts +2 -1
- package/package/components/triggers/triggers.svelte.js +44 -8
- package/package/components/triggers/utils.js +46 -7
- package/package/components/triggers/websocket/WebsocketEditorConfigSection.svelte +1 -1
- package/package/components/triggers/websocket/WebsocketTriggerEditorInner.svelte +3 -81
- package/package/components/triggers.d.ts +1 -1
- package/package/components/tutorials/FlowBuilderLiveTutorial.svelte +6 -35
- package/package/components/tutorials/RunsTutorial.svelte +399 -0
- package/package/components/{flows/propPicker/FlowPropPicker.svelte.d.ts → tutorials/RunsTutorial.svelte.d.ts} +11 -8
- package/package/components/tutorials/TroubleshootFlowTutorial.svelte +5 -20
- package/package/components/tutorials/utils.d.ts +16 -0
- package/package/components/tutorials/utils.js +96 -0
- package/package/components/tutorials/workspace/WorkspaceOnboardingOperatorTutorial.svelte +133 -0
- package/package/components/{SavedInputs.svelte.d.ts → tutorials/workspace/WorkspaceOnboardingOperatorTutorial.svelte.d.ts} +8 -11
- package/package/components/variables/variablesFilter.d.ts +56 -0
- package/package/components/variables/variablesFilter.js +51 -0
- package/package/components/vscode.js +6 -6
- package/package/components/waitJob.d.ts +1 -1
- package/package/components/waitJob.js +3 -2
- package/package/components/worker_group.d.ts +2 -0
- package/package/components/worker_group.js +15 -0
- package/package/components/workspace/WorkspaceCard.svelte +184 -0
- package/package/components/workspace/WorkspaceCard.svelte.d.ts +24 -0
- package/package/components/workspace/WorkspaceIcon.svelte +21 -0
- package/package/components/workspace/WorkspaceIcon.svelte.d.ts +9 -0
- package/package/components/workspace/WorkspaceTreeView.svelte +331 -0
- package/package/components/workspace/WorkspaceTreeView.svelte.d.ts +15 -0
- package/package/components/workspaceSettings/AISettings.svelte +149 -116
- package/package/components/workspaceSettings/AISettings.svelte.d.ts +2 -0
- package/package/components/workspaceSettings/CreateWorkspace.svelte +30 -16
- package/package/components/workspaceSettings/CustomInstanceDbSelect.svelte +1 -0
- package/package/components/workspaceSettings/CustomInstanceDbWizardModal.svelte +3 -1
- package/package/components/workspaceSettings/CustomInstanceDbWizardModal.svelte.d.ts +1 -2
- package/package/components/workspaceSettings/DataTableSettings.svelte +29 -17
- package/package/components/workspaceSettings/DataTableSettings.svelte.d.ts +1 -0
- package/package/components/workspaceSettings/DucklakeSettings.svelte +75 -41
- package/package/components/workspaceSettings/DucklakeSettings.svelte.d.ts +3 -1
- package/package/components/workspaceSettings/GitSyncFilterSettings.svelte +24 -66
- package/package/components/workspaceSettings/ModelTokenLimits.svelte +18 -26
- package/package/components/workspaceSettings/OAuthClientConfig.svelte +151 -0
- package/package/components/workspaceSettings/OAuthClientConfig.svelte.d.ts +21 -0
- package/package/components/workspaceSettings/RulesetEditor.svelte +280 -0
- package/package/components/workspaceSettings/RulesetEditor.svelte.d.ts +9 -0
- package/package/components/workspaceSettings/SettingsFooter.svelte +35 -0
- package/package/components/workspaceSettings/SettingsFooter.svelte.d.ts +12 -0
- package/package/components/workspaceSettings/StorageSettings.svelte +322 -264
- package/package/components/workspaceSettings/StorageSettings.svelte.d.ts +2 -0
- package/package/components/workspaceSettings/WorkspaceDependenciesSettings.svelte +66 -27
- package/package/components/workspaceSettings/WorkspaceIntegrations.svelte +466 -0
- package/package/components/workspaceSettings/WorkspaceIntegrations.svelte.d.ts +3 -0
- package/package/components/workspaceSettings/WorkspaceRulesets.svelte +183 -0
- package/package/components/workspaceSettings/WorkspaceRulesets.svelte.d.ts +3 -0
- package/package/consts.js +4 -3
- package/package/editorLangUtils.d.ts +1 -1
- package/package/gen/core/OpenAPI.js +1 -1
- package/package/gen/schemas.gen.d.ts +1654 -215
- package/package/gen/schemas.gen.js +1987 -494
- package/package/gen/services.gen.d.ts +511 -59
- package/package/gen/services.gen.js +1064 -170
- package/package/gen/types.gen.d.ts +3687 -728
- package/package/hub.d.ts +1 -0
- package/package/hub.js +9 -2
- package/package/hubPaths.json +4 -2
- package/package/infer.d.ts +2 -0
- package/package/infer.js +2 -0
- package/package/logout.d.ts +0 -2
- package/package/logout.js +2 -23
- package/package/logoutKit.d.ts +2 -0
- package/package/logoutKit.js +26 -0
- package/package/mcpEndpointTools.d.ts +3 -0
- package/package/mcpEndpointTools.js +574 -147
- package/package/monaco_workers/graphql.worker.bundle.js +121 -121
- package/package/navigation.d.ts +1 -1
- package/package/rawAppWmillTs.d.ts +11 -0
- package/package/rawAppWmillTs.js +42 -4
- package/package/refreshUser.d.ts +5 -1
- package/package/refreshUser.js +20 -30
- package/package/scripts.d.ts +1 -1
- package/package/scripts.js +1 -1
- package/package/storeUtils.js +10 -0
- package/package/stores.d.ts +1 -1
- package/package/stores.js +4 -2
- package/package/svelte5Utils.svelte.d.ts +108 -1
- package/package/svelte5Utils.svelte.js +351 -2
- package/package/svelte5UtilsKit.svelte.d.ts +13 -0
- package/package/svelte5UtilsKit.svelte.js +106 -0
- package/package/system_prompts/prompts.d.ts +5 -5
- package/package/system_prompts/prompts.js +94 -21
- package/package/toast.d.ts +5 -1
- package/package/toast.js +14 -5
- package/package/tutorialUtils.js +0 -4
- package/package/tutorials/config.js +31 -3
- package/package/tutorials/roleUtils.d.ts +1 -1
- package/package/tutorials/roleUtils.js +6 -2
- package/package/utils.js +376 -8
- package/package/utils_deployable.d.ts +25 -25
- package/package/utils_deployable.js +2 -1
- package/package/validators/workspaceSettings.d.ts +12 -0
- package/package/validators/workspaceSettings.js +72 -0
- package/package/workspaceProtectionRules.svelte.d.ts +73 -0
- package/package/workspaceProtectionRules.svelte.js +176 -0
- package/package.json +8 -5
- package/package/components/DropdownSelect.svelte +0 -26
- package/package/components/DropdownSelect.svelte.d.ts +0 -11
- package/package/components/FlowPreviewResult.svelte +0 -88
- package/package/components/FlowPreviewResult.svelte.d.ts +0 -20
- package/package/components/SavedInputs.svelte +0 -416
- package/package/components/copilot/chat/context.d.ts +0 -62
- package/package/components/flows/propPicker/FlowPropPicker.svelte +0 -72
- package/package/components/runs/JobsLoader.svelte +0 -468
- package/package/components/runs/JobsLoader.svelte.d.ts +0 -49
- package/package/components/runs/ManuelDatePicker.svelte +0 -96
- package/package/components/runs/ManuelDatePicker.svelte.d.ts +0 -35
- package/package/components/runs/RunsBatchActionsDropdown.svelte +0 -82
- package/package/components/runs/RunsBatchActionsDropdown.svelte.d.ts +0 -15
- package/package/components/runs/RunsFilter.svelte +0 -954
- package/package/components/runs/RunsFilter.svelte.d.ts +0 -49
- package/package/components/schema/SchemaPicker.svelte +0 -92
|
@@ -17,6 +17,10 @@ export declare const $OpenFlow: {
|
|
|
17
17
|
readonly type: "object";
|
|
18
18
|
readonly description: "JSON Schema for flow inputs. Use this to define input parameters, their types, defaults, and validation. For resource inputs, set type to 'object' and format to 'resource-<type>' (e.g., 'resource-stripe')";
|
|
19
19
|
};
|
|
20
|
+
readonly on_behalf_of_email: {
|
|
21
|
+
readonly type: "string";
|
|
22
|
+
readonly description: "The flow will be run with the permissions of the user with this email.";
|
|
23
|
+
};
|
|
20
24
|
};
|
|
21
25
|
readonly required: readonly ["summary", "value"];
|
|
22
26
|
};
|
|
@@ -324,12 +328,15 @@ export declare const $InputTransform: {
|
|
|
324
328
|
readonly $ref: "#/components/schemas/StaticTransform";
|
|
325
329
|
}, {
|
|
326
330
|
readonly $ref: "#/components/schemas/JavascriptTransform";
|
|
331
|
+
}, {
|
|
332
|
+
readonly $ref: "#/components/schemas/AiTransform";
|
|
327
333
|
}];
|
|
328
334
|
readonly discriminator: {
|
|
329
335
|
readonly propertyName: "type";
|
|
330
336
|
readonly mapping: {
|
|
331
337
|
readonly static: "#/components/schemas/StaticTransform";
|
|
332
338
|
readonly javascript: "#/components/schemas/JavascriptTransform";
|
|
339
|
+
readonly ai: "#/components/schemas/AiTransform";
|
|
333
340
|
};
|
|
334
341
|
};
|
|
335
342
|
};
|
|
@@ -362,6 +369,104 @@ export declare const $JavascriptTransform: {
|
|
|
362
369
|
};
|
|
363
370
|
readonly required: readonly ["expr", "type"];
|
|
364
371
|
};
|
|
372
|
+
export declare const $AiTransform: {
|
|
373
|
+
readonly type: "object";
|
|
374
|
+
readonly description: "Value resolved by the AI runtime for this input. The AI engine decides how to satisfy the parameter.";
|
|
375
|
+
readonly properties: {
|
|
376
|
+
readonly type: {
|
|
377
|
+
readonly type: "string";
|
|
378
|
+
readonly enum: readonly ["ai"];
|
|
379
|
+
};
|
|
380
|
+
};
|
|
381
|
+
readonly required: readonly ["type"];
|
|
382
|
+
};
|
|
383
|
+
export declare const $ProviderConfig: {
|
|
384
|
+
readonly type: "object";
|
|
385
|
+
readonly description: "Complete AI provider configuration with resource reference and model selection";
|
|
386
|
+
readonly properties: {
|
|
387
|
+
readonly kind: {
|
|
388
|
+
readonly type: "string";
|
|
389
|
+
readonly description: "Supported AI provider types";
|
|
390
|
+
readonly enum: readonly ["openai", "azure_openai", "anthropic", "mistral", "deepseek", "googleai", "groq", "openrouter", "togetherai", "customai", "aws_bedrock"];
|
|
391
|
+
};
|
|
392
|
+
readonly resource: {
|
|
393
|
+
readonly type: "string";
|
|
394
|
+
readonly description: "Resource reference in format '$res:{resource_path}' pointing to provider credentials";
|
|
395
|
+
};
|
|
396
|
+
readonly model: {
|
|
397
|
+
readonly type: "string";
|
|
398
|
+
readonly description: "Model identifier (e.g., 'gpt-4', 'claude-3-opus-20240229', 'gemini-pro')";
|
|
399
|
+
};
|
|
400
|
+
};
|
|
401
|
+
readonly required: readonly ["kind", "resource", "model"];
|
|
402
|
+
};
|
|
403
|
+
export declare const $MemoryConfig: {
|
|
404
|
+
readonly description: "Conversation memory configuration";
|
|
405
|
+
readonly oneOf: readonly [{
|
|
406
|
+
readonly type: "object";
|
|
407
|
+
readonly description: "No conversation memory/context";
|
|
408
|
+
readonly properties: {
|
|
409
|
+
readonly kind: {
|
|
410
|
+
readonly type: "string";
|
|
411
|
+
readonly enum: readonly ["off"];
|
|
412
|
+
};
|
|
413
|
+
};
|
|
414
|
+
readonly required: readonly ["kind"];
|
|
415
|
+
}, {
|
|
416
|
+
readonly type: "object";
|
|
417
|
+
readonly description: "Automatic context management";
|
|
418
|
+
readonly properties: {
|
|
419
|
+
readonly kind: {
|
|
420
|
+
readonly type: "string";
|
|
421
|
+
readonly enum: readonly ["auto"];
|
|
422
|
+
};
|
|
423
|
+
readonly context_length: {
|
|
424
|
+
readonly type: "integer";
|
|
425
|
+
readonly description: "Maximum number of messages to retain in context";
|
|
426
|
+
};
|
|
427
|
+
readonly memory_id: {
|
|
428
|
+
readonly type: "string";
|
|
429
|
+
readonly description: "Identifier for persistent memory across agent invocations";
|
|
430
|
+
};
|
|
431
|
+
};
|
|
432
|
+
readonly required: readonly ["kind"];
|
|
433
|
+
}, {
|
|
434
|
+
readonly type: "object";
|
|
435
|
+
readonly description: "Explicit message history";
|
|
436
|
+
readonly properties: {
|
|
437
|
+
readonly kind: {
|
|
438
|
+
readonly type: "string";
|
|
439
|
+
readonly enum: readonly ["manual"];
|
|
440
|
+
};
|
|
441
|
+
readonly messages: {
|
|
442
|
+
readonly type: "array";
|
|
443
|
+
readonly items: {
|
|
444
|
+
readonly type: "object";
|
|
445
|
+
readonly description: "A single message in conversation history";
|
|
446
|
+
readonly properties: {
|
|
447
|
+
readonly role: {
|
|
448
|
+
readonly type: "string";
|
|
449
|
+
readonly enum: readonly ["user", "assistant", "system"];
|
|
450
|
+
};
|
|
451
|
+
readonly content: {
|
|
452
|
+
readonly type: "string";
|
|
453
|
+
};
|
|
454
|
+
};
|
|
455
|
+
readonly required: readonly ["role", "content"];
|
|
456
|
+
};
|
|
457
|
+
};
|
|
458
|
+
};
|
|
459
|
+
readonly required: readonly ["kind", "messages"];
|
|
460
|
+
}];
|
|
461
|
+
readonly discriminator: {
|
|
462
|
+
readonly propertyName: "kind";
|
|
463
|
+
readonly mapping: {
|
|
464
|
+
readonly off: "#/components/schemas/MemoryOff";
|
|
465
|
+
readonly auto: "#/components/schemas/MemoryAuto";
|
|
466
|
+
readonly manual: "#/components/schemas/MemoryManual";
|
|
467
|
+
};
|
|
468
|
+
};
|
|
469
|
+
};
|
|
365
470
|
export declare const $FlowModuleValue: {
|
|
366
471
|
readonly description: "The actual implementation of a flow step. Can be a script (inline or referenced), subflow, loop, branch, or special module type";
|
|
367
472
|
readonly oneOf: readonly [{
|
|
@@ -416,7 +521,7 @@ export declare const $RawScript: {
|
|
|
416
521
|
readonly language: {
|
|
417
522
|
readonly type: "string";
|
|
418
523
|
readonly description: "Programming language for this script";
|
|
419
|
-
readonly enum: readonly ["deno", "bun", "python3", "go", "bash", "powershell", "postgresql", "mysql", "bigquery", "snowflake", "mssql", "oracledb", "graphql", "nativets", "php"];
|
|
524
|
+
readonly enum: readonly ["deno", "bun", "python3", "go", "bash", "powershell", "postgresql", "mysql", "bigquery", "snowflake", "mssql", "oracledb", "graphql", "nativets", "php", "rust", "ansible", "csharp", "nu", "java", "ruby", "duckdb"];
|
|
420
525
|
};
|
|
421
526
|
readonly path: {
|
|
422
527
|
readonly type: "string";
|
|
@@ -468,11 +573,13 @@ export declare const $RawScript: {
|
|
|
468
573
|
};
|
|
469
574
|
readonly access_type: {
|
|
470
575
|
readonly type: "string";
|
|
576
|
+
readonly nullable: true;
|
|
471
577
|
readonly description: "Access level for this asset";
|
|
472
578
|
readonly enum: readonly ["r", "w", "rw"];
|
|
473
579
|
};
|
|
474
580
|
readonly alt_access_type: {
|
|
475
581
|
readonly type: "string";
|
|
582
|
+
readonly nullable: true;
|
|
476
583
|
readonly description: "Alternative access level";
|
|
477
584
|
readonly enum: readonly ["r", "w", "rw"];
|
|
478
585
|
};
|
|
@@ -700,34 +807,110 @@ export declare const $AiAgent: {
|
|
|
700
807
|
readonly description: "Input parameters for the AI agent mapped to their values";
|
|
701
808
|
readonly properties: {
|
|
702
809
|
readonly provider: {
|
|
703
|
-
readonly
|
|
810
|
+
readonly description: "Provider configuration - can be static (ProviderConfig), JavaScript expression, or AI-determined";
|
|
811
|
+
readonly oneOf: readonly [{
|
|
812
|
+
readonly type: "object";
|
|
813
|
+
readonly description: "Static provider configuration passed directly to the AI agent";
|
|
814
|
+
readonly properties: {
|
|
815
|
+
readonly value: {
|
|
816
|
+
readonly $ref: "#/components/schemas/ProviderConfig";
|
|
817
|
+
};
|
|
818
|
+
readonly type: {
|
|
819
|
+
readonly type: "string";
|
|
820
|
+
readonly enum: readonly ["static"];
|
|
821
|
+
};
|
|
822
|
+
};
|
|
823
|
+
readonly required: readonly ["type", "value"];
|
|
824
|
+
}, {
|
|
825
|
+
readonly $ref: "#/components/schemas/JavascriptTransform";
|
|
826
|
+
}, {
|
|
827
|
+
readonly $ref: "#/components/schemas/AiTransform";
|
|
828
|
+
}];
|
|
829
|
+
readonly discriminator: {
|
|
830
|
+
readonly propertyName: "type";
|
|
831
|
+
readonly mapping: {
|
|
832
|
+
readonly static: "#/components/schemas/StaticProviderTransform";
|
|
833
|
+
readonly javascript: "#/components/schemas/JavascriptTransform";
|
|
834
|
+
readonly ai: "#/components/schemas/AiTransform";
|
|
835
|
+
};
|
|
836
|
+
};
|
|
704
837
|
};
|
|
705
838
|
readonly output_type: {
|
|
706
|
-
readonly
|
|
839
|
+
readonly allOf: readonly [{
|
|
840
|
+
readonly $ref: "#/components/schemas/InputTransform";
|
|
841
|
+
}];
|
|
842
|
+
readonly description: "Output format type.\nValid values: 'text' (default) - plain text response, 'image' - image generation\n";
|
|
707
843
|
};
|
|
708
844
|
readonly user_message: {
|
|
709
|
-
readonly
|
|
845
|
+
readonly allOf: readonly [{
|
|
846
|
+
readonly $ref: "#/components/schemas/InputTransform";
|
|
847
|
+
}];
|
|
848
|
+
readonly description: "The user's prompt/message to the AI agent. Supports variable interpolation with flow.input syntax.";
|
|
710
849
|
};
|
|
711
850
|
readonly system_prompt: {
|
|
712
|
-
readonly
|
|
851
|
+
readonly allOf: readonly [{
|
|
852
|
+
readonly $ref: "#/components/schemas/InputTransform";
|
|
853
|
+
}];
|
|
854
|
+
readonly description: "System instructions that guide the AI's behavior, persona, and response style. Optional.";
|
|
713
855
|
};
|
|
714
856
|
readonly streaming: {
|
|
715
|
-
readonly
|
|
857
|
+
readonly allOf: readonly [{
|
|
858
|
+
readonly $ref: "#/components/schemas/InputTransform";
|
|
859
|
+
}];
|
|
860
|
+
readonly description: "Boolean. If true, stream the AI response incrementally.\nStreaming events include: token_delta, tool_call, tool_call_arguments, tool_execution, tool_result\n";
|
|
716
861
|
};
|
|
717
862
|
readonly memory: {
|
|
718
|
-
readonly
|
|
863
|
+
readonly description: "Memory configuration - can be static (MemoryConfig), JavaScript expression, or AI-determined";
|
|
864
|
+
readonly oneOf: readonly [{
|
|
865
|
+
readonly type: "object";
|
|
866
|
+
readonly description: "Static memory configuration passed directly to the AI agent";
|
|
867
|
+
readonly properties: {
|
|
868
|
+
readonly value: {
|
|
869
|
+
readonly $ref: "#/components/schemas/MemoryConfig";
|
|
870
|
+
};
|
|
871
|
+
readonly type: {
|
|
872
|
+
readonly type: "string";
|
|
873
|
+
readonly enum: readonly ["static"];
|
|
874
|
+
};
|
|
875
|
+
};
|
|
876
|
+
readonly required: readonly ["type", "value"];
|
|
877
|
+
}, {
|
|
878
|
+
readonly $ref: "#/components/schemas/JavascriptTransform";
|
|
879
|
+
}, {
|
|
880
|
+
readonly $ref: "#/components/schemas/AiTransform";
|
|
881
|
+
}];
|
|
882
|
+
readonly discriminator: {
|
|
883
|
+
readonly propertyName: "type";
|
|
884
|
+
readonly mapping: {
|
|
885
|
+
readonly static: "#/components/schemas/StaticMemoryTransform";
|
|
886
|
+
readonly javascript: "#/components/schemas/JavascriptTransform";
|
|
887
|
+
readonly ai: "#/components/schemas/AiTransform";
|
|
888
|
+
};
|
|
889
|
+
};
|
|
719
890
|
};
|
|
720
891
|
readonly output_schema: {
|
|
721
|
-
readonly
|
|
892
|
+
readonly allOf: readonly [{
|
|
893
|
+
readonly $ref: "#/components/schemas/InputTransform";
|
|
894
|
+
}];
|
|
895
|
+
readonly description: "JSON Schema object defining structured output format. Used when you need the AI to return data in a specific shape.\nSupports standard JSON Schema properties: type, properties, required, items, enum, pattern, minLength, maxLength, minimum, maximum, etc.\nExample: { type: 'object', properties: { name: { type: 'string' }, age: { type: 'integer' } }, required: ['name'] }\n";
|
|
722
896
|
};
|
|
723
897
|
readonly user_images: {
|
|
724
|
-
readonly
|
|
898
|
+
readonly allOf: readonly [{
|
|
899
|
+
readonly $ref: "#/components/schemas/InputTransform";
|
|
900
|
+
}];
|
|
901
|
+
readonly description: "Array of image references for vision-capable models.\nFormat: Array<{ bucket: string, key: string }> - S3 object references\nExample: [{ bucket: 'my-bucket', key: 'images/photo.jpg' }]\n";
|
|
725
902
|
};
|
|
726
903
|
readonly max_completion_tokens: {
|
|
727
|
-
readonly
|
|
904
|
+
readonly allOf: readonly [{
|
|
905
|
+
readonly $ref: "#/components/schemas/InputTransform";
|
|
906
|
+
}];
|
|
907
|
+
readonly description: "Integer. Maximum number of tokens the AI will generate in its response.\nRange: 1 to 4,294,967,295. Typical values: 256-4096 for most use cases.\n";
|
|
728
908
|
};
|
|
729
909
|
readonly temperature: {
|
|
730
|
-
readonly
|
|
910
|
+
readonly allOf: readonly [{
|
|
911
|
+
readonly $ref: "#/components/schemas/InputTransform";
|
|
912
|
+
}];
|
|
913
|
+
readonly description: "Float. Controls randomness/creativity of responses.\nRange: 0.0 to 2.0 (provider-dependent)\n- 0.0 = deterministic, focused responses\n- 0.7 = balanced (common default)\n- 1.0+ = more creative/random\n";
|
|
731
914
|
};
|
|
732
915
|
};
|
|
733
916
|
readonly required: readonly ["provider", "user_message", "output_type"];
|
|
@@ -1147,202 +1330,610 @@ export declare const $FlowNote: {
|
|
|
1147
1330
|
};
|
|
1148
1331
|
readonly required: readonly ["id", "text", "color", "type"];
|
|
1149
1332
|
};
|
|
1150
|
-
export declare const $
|
|
1333
|
+
export declare const $HealthStatusResponse: {
|
|
1151
1334
|
readonly type: "object";
|
|
1152
|
-
readonly
|
|
1335
|
+
readonly description: "Health status response (cached with 5s TTL)";
|
|
1336
|
+
readonly required: readonly ["status", "checked_at", "database_healthy", "workers_alive"];
|
|
1153
1337
|
readonly properties: {
|
|
1154
|
-
readonly
|
|
1155
|
-
readonly type: "string";
|
|
1156
|
-
readonly format: "uuid";
|
|
1157
|
-
readonly description: "Unique identifier for the conversation";
|
|
1158
|
-
};
|
|
1159
|
-
readonly workspace_id: {
|
|
1160
|
-
readonly type: "string";
|
|
1161
|
-
readonly description: "The workspace ID where the conversation belongs";
|
|
1162
|
-
};
|
|
1163
|
-
readonly flow_path: {
|
|
1164
|
-
readonly type: "string";
|
|
1165
|
-
readonly description: "Path of the flow this conversation is for";
|
|
1166
|
-
};
|
|
1167
|
-
readonly title: {
|
|
1338
|
+
readonly status: {
|
|
1168
1339
|
readonly type: "string";
|
|
1169
|
-
readonly
|
|
1170
|
-
readonly
|
|
1340
|
+
readonly enum: readonly ["healthy", "degraded", "unhealthy"];
|
|
1341
|
+
readonly description: "Overall health status";
|
|
1171
1342
|
};
|
|
1172
|
-
readonly
|
|
1343
|
+
readonly checked_at: {
|
|
1173
1344
|
readonly type: "string";
|
|
1174
1345
|
readonly format: "date-time";
|
|
1175
|
-
readonly description: "
|
|
1346
|
+
readonly description: "Timestamp when the health check was actually performed (not cache return time)";
|
|
1176
1347
|
};
|
|
1177
|
-
readonly
|
|
1178
|
-
readonly type: "
|
|
1179
|
-
readonly
|
|
1180
|
-
readonly description: "When the conversation was last updated";
|
|
1348
|
+
readonly database_healthy: {
|
|
1349
|
+
readonly type: "boolean";
|
|
1350
|
+
readonly description: "Whether the database is reachable";
|
|
1181
1351
|
};
|
|
1182
|
-
readonly
|
|
1183
|
-
readonly type: "
|
|
1184
|
-
readonly
|
|
1352
|
+
readonly workers_alive: {
|
|
1353
|
+
readonly type: "integer";
|
|
1354
|
+
readonly format: "int64";
|
|
1355
|
+
readonly description: "Number of workers that pinged within last 5 minutes";
|
|
1185
1356
|
};
|
|
1186
1357
|
};
|
|
1187
1358
|
};
|
|
1188
|
-
export declare const $
|
|
1359
|
+
export declare const $DetailedHealthResponse: {
|
|
1189
1360
|
readonly type: "object";
|
|
1190
|
-
readonly
|
|
1361
|
+
readonly description: "Detailed health status response (always fresh, no caching)";
|
|
1362
|
+
readonly required: readonly ["status", "checked_at", "version", "checks"];
|
|
1191
1363
|
readonly properties: {
|
|
1192
|
-
readonly
|
|
1193
|
-
readonly type: "string";
|
|
1194
|
-
readonly format: "uuid";
|
|
1195
|
-
readonly description: "Unique identifier for the message";
|
|
1196
|
-
};
|
|
1197
|
-
readonly conversation_id: {
|
|
1198
|
-
readonly type: "string";
|
|
1199
|
-
readonly format: "uuid";
|
|
1200
|
-
readonly description: "The conversation this message belongs to";
|
|
1201
|
-
};
|
|
1202
|
-
readonly message_type: {
|
|
1203
|
-
readonly type: "string";
|
|
1204
|
-
readonly enum: readonly ["user", "assistant", "system", "tool"];
|
|
1205
|
-
readonly description: "Type of the message";
|
|
1206
|
-
};
|
|
1207
|
-
readonly content: {
|
|
1208
|
-
readonly type: "string";
|
|
1209
|
-
readonly description: "The message content";
|
|
1210
|
-
};
|
|
1211
|
-
readonly job_id: {
|
|
1364
|
+
readonly status: {
|
|
1212
1365
|
readonly type: "string";
|
|
1213
|
-
readonly
|
|
1214
|
-
readonly
|
|
1215
|
-
readonly description: "Associated job ID if this message came from a flow run";
|
|
1366
|
+
readonly enum: readonly ["healthy", "degraded", "unhealthy"];
|
|
1367
|
+
readonly description: "Overall health status";
|
|
1216
1368
|
};
|
|
1217
|
-
readonly
|
|
1369
|
+
readonly checked_at: {
|
|
1218
1370
|
readonly type: "string";
|
|
1219
1371
|
readonly format: "date-time";
|
|
1220
|
-
readonly description: "
|
|
1372
|
+
readonly description: "Timestamp when the health check was performed";
|
|
1221
1373
|
};
|
|
1222
|
-
readonly
|
|
1374
|
+
readonly version: {
|
|
1223
1375
|
readonly type: "string";
|
|
1224
|
-
readonly description: "
|
|
1376
|
+
readonly description: "Server version (e.g., \"EE 1.615.3\")";
|
|
1225
1377
|
};
|
|
1226
|
-
readonly
|
|
1227
|
-
readonly
|
|
1228
|
-
readonly description: "Whether the message is a success";
|
|
1378
|
+
readonly checks: {
|
|
1379
|
+
readonly $ref: "#/components/schemas/HealthChecks";
|
|
1229
1380
|
};
|
|
1230
1381
|
};
|
|
1231
1382
|
};
|
|
1232
|
-
export declare const $
|
|
1383
|
+
export declare const $HealthChecks: {
|
|
1233
1384
|
readonly type: "object";
|
|
1234
|
-
readonly
|
|
1385
|
+
readonly description: "Detailed health checks";
|
|
1386
|
+
readonly required: readonly ["database", "readiness"];
|
|
1235
1387
|
readonly properties: {
|
|
1236
|
-
readonly
|
|
1237
|
-
readonly
|
|
1238
|
-
readonly description: "The tool name/operation ID";
|
|
1239
|
-
};
|
|
1240
|
-
readonly description: {
|
|
1241
|
-
readonly type: "string";
|
|
1242
|
-
readonly description: "Short description of the tool";
|
|
1243
|
-
};
|
|
1244
|
-
readonly instructions: {
|
|
1245
|
-
readonly type: "string";
|
|
1246
|
-
readonly description: "Detailed instructions for using the tool";
|
|
1247
|
-
};
|
|
1248
|
-
readonly path: {
|
|
1249
|
-
readonly type: "string";
|
|
1250
|
-
readonly description: "API endpoint path";
|
|
1251
|
-
};
|
|
1252
|
-
readonly method: {
|
|
1253
|
-
readonly type: "string";
|
|
1254
|
-
readonly description: "HTTP method (GET, POST, etc.)";
|
|
1388
|
+
readonly database: {
|
|
1389
|
+
readonly $ref: "#/components/schemas/DatabaseHealth";
|
|
1255
1390
|
};
|
|
1256
|
-
readonly
|
|
1257
|
-
readonly
|
|
1258
|
-
readonly description: "
|
|
1391
|
+
readonly workers: {
|
|
1392
|
+
readonly $ref: "#/components/schemas/WorkersHealth";
|
|
1393
|
+
readonly description: "Worker status (null if database is unreachable)";
|
|
1259
1394
|
readonly nullable: true;
|
|
1260
1395
|
};
|
|
1261
|
-
readonly
|
|
1262
|
-
readonly
|
|
1263
|
-
readonly description: "
|
|
1396
|
+
readonly queue: {
|
|
1397
|
+
readonly $ref: "#/components/schemas/QueueHealth";
|
|
1398
|
+
readonly description: "Queue status (null if database is unreachable)";
|
|
1264
1399
|
readonly nullable: true;
|
|
1265
1400
|
};
|
|
1266
|
-
readonly
|
|
1267
|
-
readonly
|
|
1268
|
-
readonly description: "JSON schema for request body";
|
|
1269
|
-
readonly nullable: true;
|
|
1401
|
+
readonly readiness: {
|
|
1402
|
+
readonly $ref: "#/components/schemas/ReadinessHealth";
|
|
1270
1403
|
};
|
|
1271
1404
|
};
|
|
1272
1405
|
};
|
|
1273
|
-
export declare const $
|
|
1274
|
-
readonly type: "string";
|
|
1275
|
-
readonly enum: readonly ["openai", "azure_openai", "anthropic", "mistral", "deepseek", "googleai", "groq", "openrouter", "togetherai", "aws_bedrock", "customai"];
|
|
1276
|
-
};
|
|
1277
|
-
export declare const $GitSyncObjectType: {
|
|
1278
|
-
readonly type: "string";
|
|
1279
|
-
readonly enum: readonly ["script", "flow", "app", "folder", "resource", "variable", "secret", "resourcetype", "schedule", "user", "group", "trigger", "settings", "key"];
|
|
1280
|
-
};
|
|
1281
|
-
export declare const $AIProviderModel: {
|
|
1406
|
+
export declare const $DatabaseHealth: {
|
|
1282
1407
|
readonly type: "object";
|
|
1408
|
+
readonly description: "Database health status";
|
|
1409
|
+
readonly required: readonly ["healthy", "latency_ms", "pool"];
|
|
1283
1410
|
readonly properties: {
|
|
1284
|
-
readonly
|
|
1285
|
-
readonly type: "
|
|
1411
|
+
readonly healthy: {
|
|
1412
|
+
readonly type: "boolean";
|
|
1413
|
+
readonly description: "Whether the database is reachable";
|
|
1286
1414
|
};
|
|
1287
|
-
readonly
|
|
1288
|
-
readonly
|
|
1415
|
+
readonly latency_ms: {
|
|
1416
|
+
readonly type: "integer";
|
|
1417
|
+
readonly format: "int64";
|
|
1418
|
+
readonly description: "Database query latency in milliseconds";
|
|
1419
|
+
};
|
|
1420
|
+
readonly pool: {
|
|
1421
|
+
readonly $ref: "#/components/schemas/PoolStats";
|
|
1289
1422
|
};
|
|
1290
1423
|
};
|
|
1291
|
-
readonly required: readonly ["model", "provider"];
|
|
1292
1424
|
};
|
|
1293
|
-
export declare const $
|
|
1425
|
+
export declare const $PoolStats: {
|
|
1294
1426
|
readonly type: "object";
|
|
1427
|
+
readonly description: "Database connection pool statistics";
|
|
1428
|
+
readonly required: readonly ["size", "idle", "max_connections"];
|
|
1295
1429
|
readonly properties: {
|
|
1296
|
-
readonly
|
|
1297
|
-
readonly type: "
|
|
1430
|
+
readonly size: {
|
|
1431
|
+
readonly type: "integer";
|
|
1432
|
+
readonly description: "Current number of connections in the pool";
|
|
1298
1433
|
};
|
|
1299
|
-
readonly
|
|
1300
|
-
readonly type: "
|
|
1301
|
-
readonly
|
|
1302
|
-
|
|
1303
|
-
|
|
1434
|
+
readonly idle: {
|
|
1435
|
+
readonly type: "integer";
|
|
1436
|
+
readonly description: "Number of idle connections";
|
|
1437
|
+
};
|
|
1438
|
+
readonly max_connections: {
|
|
1439
|
+
readonly type: "integer";
|
|
1440
|
+
readonly description: "Maximum number of connections allowed";
|
|
1304
1441
|
};
|
|
1305
1442
|
};
|
|
1306
|
-
readonly required: readonly ["resource_path", "models"];
|
|
1307
1443
|
};
|
|
1308
|
-
export declare const $
|
|
1444
|
+
export declare const $WorkersHealth: {
|
|
1309
1445
|
readonly type: "object";
|
|
1446
|
+
readonly description: "Workers health status";
|
|
1447
|
+
readonly required: readonly ["healthy", "active_count", "worker_groups", "min_version", "versions"];
|
|
1310
1448
|
readonly properties: {
|
|
1311
|
-
readonly
|
|
1312
|
-
readonly type: "
|
|
1313
|
-
readonly
|
|
1314
|
-
readonly $ref: "#/components/schemas/AIProviderConfig";
|
|
1315
|
-
};
|
|
1316
|
-
};
|
|
1317
|
-
readonly default_model: {
|
|
1318
|
-
readonly $ref: "#/components/schemas/AIProviderModel";
|
|
1449
|
+
readonly healthy: {
|
|
1450
|
+
readonly type: "boolean";
|
|
1451
|
+
readonly description: "Whether any workers are active";
|
|
1319
1452
|
};
|
|
1320
|
-
readonly
|
|
1321
|
-
readonly
|
|
1453
|
+
readonly active_count: {
|
|
1454
|
+
readonly type: "integer";
|
|
1455
|
+
readonly format: "int64";
|
|
1456
|
+
readonly description: "Number of active workers (pinged in last 5 minutes)";
|
|
1322
1457
|
};
|
|
1323
|
-
readonly
|
|
1324
|
-
readonly type: "
|
|
1325
|
-
readonly
|
|
1458
|
+
readonly worker_groups: {
|
|
1459
|
+
readonly type: "array";
|
|
1460
|
+
readonly items: {
|
|
1326
1461
|
readonly type: "string";
|
|
1327
1462
|
};
|
|
1463
|
+
readonly description: "List of active worker groups";
|
|
1328
1464
|
};
|
|
1329
|
-
readonly
|
|
1330
|
-
readonly type: "object";
|
|
1331
|
-
readonly additionalProperties: {
|
|
1332
|
-
readonly type: "integer";
|
|
1333
|
-
readonly minimum: 1;
|
|
1334
|
-
readonly maximum: 2000000;
|
|
1335
|
-
};
|
|
1336
|
-
};
|
|
1337
|
-
};
|
|
1338
|
-
};
|
|
1339
|
-
export declare const $Alert: {
|
|
1340
|
-
readonly type: "object";
|
|
1341
|
-
readonly properties: {
|
|
1342
|
-
readonly name: {
|
|
1465
|
+
readonly min_version: {
|
|
1343
1466
|
readonly type: "string";
|
|
1467
|
+
readonly description: "Minimum required worker version";
|
|
1344
1468
|
};
|
|
1345
|
-
readonly
|
|
1469
|
+
readonly versions: {
|
|
1470
|
+
readonly type: "array";
|
|
1471
|
+
readonly items: {
|
|
1472
|
+
readonly type: "string";
|
|
1473
|
+
};
|
|
1474
|
+
readonly description: "List of active worker versions";
|
|
1475
|
+
};
|
|
1476
|
+
};
|
|
1477
|
+
};
|
|
1478
|
+
export declare const $QueueHealth: {
|
|
1479
|
+
readonly type: "object";
|
|
1480
|
+
readonly description: "Job queue status";
|
|
1481
|
+
readonly required: readonly ["pending_jobs", "running_jobs"];
|
|
1482
|
+
readonly properties: {
|
|
1483
|
+
readonly pending_jobs: {
|
|
1484
|
+
readonly type: "integer";
|
|
1485
|
+
readonly format: "int64";
|
|
1486
|
+
readonly description: "Number of pending jobs in the queue";
|
|
1487
|
+
};
|
|
1488
|
+
readonly running_jobs: {
|
|
1489
|
+
readonly type: "integer";
|
|
1490
|
+
readonly format: "int64";
|
|
1491
|
+
readonly description: "Number of currently running jobs";
|
|
1492
|
+
};
|
|
1493
|
+
};
|
|
1494
|
+
};
|
|
1495
|
+
export declare const $ReadinessHealth: {
|
|
1496
|
+
readonly type: "object";
|
|
1497
|
+
readonly description: "Server readiness status";
|
|
1498
|
+
readonly required: readonly ["healthy"];
|
|
1499
|
+
readonly properties: {
|
|
1500
|
+
readonly healthy: {
|
|
1501
|
+
readonly type: "boolean";
|
|
1502
|
+
readonly description: "Whether the server is ready to accept requests";
|
|
1503
|
+
};
|
|
1504
|
+
};
|
|
1505
|
+
};
|
|
1506
|
+
export declare const $AutoInviteConfig: {
|
|
1507
|
+
readonly type: "object";
|
|
1508
|
+
readonly description: "Configuration for auto-inviting users to the workspace";
|
|
1509
|
+
readonly properties: {
|
|
1510
|
+
readonly enabled: {
|
|
1511
|
+
readonly type: "boolean";
|
|
1512
|
+
readonly default: false;
|
|
1513
|
+
};
|
|
1514
|
+
readonly domain: {
|
|
1515
|
+
readonly type: "string";
|
|
1516
|
+
};
|
|
1517
|
+
readonly operator: {
|
|
1518
|
+
readonly type: "boolean";
|
|
1519
|
+
readonly default: false;
|
|
1520
|
+
readonly description: "If true, auto-invited users are added as operators. If false, they are added as developers.";
|
|
1521
|
+
};
|
|
1522
|
+
readonly mode: {
|
|
1523
|
+
readonly type: "string";
|
|
1524
|
+
readonly enum: readonly ["invite", "add"];
|
|
1525
|
+
readonly default: "invite";
|
|
1526
|
+
};
|
|
1527
|
+
readonly instance_groups: {
|
|
1528
|
+
readonly type: "array";
|
|
1529
|
+
readonly items: {
|
|
1530
|
+
readonly type: "string";
|
|
1531
|
+
};
|
|
1532
|
+
};
|
|
1533
|
+
readonly instance_groups_roles: {
|
|
1534
|
+
readonly type: "object";
|
|
1535
|
+
readonly additionalProperties: {
|
|
1536
|
+
readonly type: "string";
|
|
1537
|
+
};
|
|
1538
|
+
};
|
|
1539
|
+
};
|
|
1540
|
+
};
|
|
1541
|
+
export declare const $ErrorHandlerConfig: {
|
|
1542
|
+
readonly type: "object";
|
|
1543
|
+
readonly description: "Configuration for the workspace error handler";
|
|
1544
|
+
readonly properties: {
|
|
1545
|
+
readonly path: {
|
|
1546
|
+
readonly type: "string";
|
|
1547
|
+
readonly description: "Path to the error handler script or flow";
|
|
1548
|
+
};
|
|
1549
|
+
readonly extra_args: {
|
|
1550
|
+
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
1551
|
+
};
|
|
1552
|
+
readonly muted_on_cancel: {
|
|
1553
|
+
readonly type: "boolean";
|
|
1554
|
+
readonly default: false;
|
|
1555
|
+
};
|
|
1556
|
+
readonly muted_on_user_path: {
|
|
1557
|
+
readonly type: "boolean";
|
|
1558
|
+
readonly default: false;
|
|
1559
|
+
};
|
|
1560
|
+
};
|
|
1561
|
+
};
|
|
1562
|
+
export declare const $SuccessHandlerConfig: {
|
|
1563
|
+
readonly type: "object";
|
|
1564
|
+
readonly description: "Configuration for the workspace success handler";
|
|
1565
|
+
readonly properties: {
|
|
1566
|
+
readonly path: {
|
|
1567
|
+
readonly type: "string";
|
|
1568
|
+
readonly description: "Path to the success handler script or flow";
|
|
1569
|
+
};
|
|
1570
|
+
readonly extra_args: {
|
|
1571
|
+
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
1572
|
+
};
|
|
1573
|
+
};
|
|
1574
|
+
};
|
|
1575
|
+
export declare const $EditErrorHandler: {
|
|
1576
|
+
readonly description: "Request body for editing the workspace error handler. Accepts both new grouped format and legacy flat format for backward compatibility.";
|
|
1577
|
+
readonly oneOf: readonly [{
|
|
1578
|
+
readonly $ref: "#/components/schemas/EditErrorHandlerNew";
|
|
1579
|
+
}, {
|
|
1580
|
+
readonly $ref: "#/components/schemas/EditErrorHandlerLegacy";
|
|
1581
|
+
}];
|
|
1582
|
+
};
|
|
1583
|
+
export declare const $EditErrorHandlerNew: {
|
|
1584
|
+
readonly type: "object";
|
|
1585
|
+
readonly description: "New grouped format for editing error handler";
|
|
1586
|
+
readonly properties: {
|
|
1587
|
+
readonly path: {
|
|
1588
|
+
readonly type: "string";
|
|
1589
|
+
readonly description: "Path to the error handler script or flow";
|
|
1590
|
+
};
|
|
1591
|
+
readonly extra_args: {
|
|
1592
|
+
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
1593
|
+
};
|
|
1594
|
+
readonly muted_on_cancel: {
|
|
1595
|
+
readonly type: "boolean";
|
|
1596
|
+
readonly default: false;
|
|
1597
|
+
};
|
|
1598
|
+
readonly muted_on_user_path: {
|
|
1599
|
+
readonly type: "boolean";
|
|
1600
|
+
readonly default: false;
|
|
1601
|
+
};
|
|
1602
|
+
};
|
|
1603
|
+
};
|
|
1604
|
+
export declare const $EditErrorHandlerLegacy: {
|
|
1605
|
+
readonly type: "object";
|
|
1606
|
+
readonly description: "Legacy flat format for editing error handler (deprecated, use new format)";
|
|
1607
|
+
readonly properties: {
|
|
1608
|
+
readonly error_handler: {
|
|
1609
|
+
readonly type: "string";
|
|
1610
|
+
readonly description: "Path to the error handler script or flow";
|
|
1611
|
+
};
|
|
1612
|
+
readonly error_handler_extra_args: {
|
|
1613
|
+
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
1614
|
+
};
|
|
1615
|
+
readonly error_handler_muted_on_cancel: {
|
|
1616
|
+
readonly type: "boolean";
|
|
1617
|
+
readonly default: false;
|
|
1618
|
+
};
|
|
1619
|
+
};
|
|
1620
|
+
};
|
|
1621
|
+
export declare const $EditSuccessHandler: {
|
|
1622
|
+
readonly description: "Request body for editing the workspace success handler. Accepts both new grouped format and legacy flat format for backward compatibility.";
|
|
1623
|
+
readonly oneOf: readonly [{
|
|
1624
|
+
readonly $ref: "#/components/schemas/EditSuccessHandlerNew";
|
|
1625
|
+
}, {
|
|
1626
|
+
readonly $ref: "#/components/schemas/EditSuccessHandlerLegacy";
|
|
1627
|
+
}];
|
|
1628
|
+
};
|
|
1629
|
+
export declare const $EditSuccessHandlerNew: {
|
|
1630
|
+
readonly type: "object";
|
|
1631
|
+
readonly description: "New grouped format for editing success handler";
|
|
1632
|
+
readonly properties: {
|
|
1633
|
+
readonly path: {
|
|
1634
|
+
readonly type: "string";
|
|
1635
|
+
readonly description: "Path to the success handler script or flow";
|
|
1636
|
+
};
|
|
1637
|
+
readonly extra_args: {
|
|
1638
|
+
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
1639
|
+
};
|
|
1640
|
+
};
|
|
1641
|
+
};
|
|
1642
|
+
export declare const $EditSuccessHandlerLegacy: {
|
|
1643
|
+
readonly type: "object";
|
|
1644
|
+
readonly description: "Legacy flat format for editing success handler (deprecated, use new format)";
|
|
1645
|
+
readonly properties: {
|
|
1646
|
+
readonly success_handler: {
|
|
1647
|
+
readonly type: "string";
|
|
1648
|
+
readonly description: "Path to the success handler script or flow";
|
|
1649
|
+
};
|
|
1650
|
+
readonly success_handler_extra_args: {
|
|
1651
|
+
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
1652
|
+
};
|
|
1653
|
+
};
|
|
1654
|
+
};
|
|
1655
|
+
export declare const $VaultSettings: {
|
|
1656
|
+
readonly type: "object";
|
|
1657
|
+
readonly required: readonly ["address", "mount_path"];
|
|
1658
|
+
readonly properties: {
|
|
1659
|
+
readonly address: {
|
|
1660
|
+
readonly type: "string";
|
|
1661
|
+
readonly description: "HashiCorp Vault server address (e.g., https://vault.company.com:8200)";
|
|
1662
|
+
};
|
|
1663
|
+
readonly mount_path: {
|
|
1664
|
+
readonly type: "string";
|
|
1665
|
+
readonly description: "KV v2 secrets engine mount path (e.g., windmill)";
|
|
1666
|
+
};
|
|
1667
|
+
readonly jwt_role: {
|
|
1668
|
+
readonly type: "string";
|
|
1669
|
+
readonly description: "Vault JWT auth role name for Windmill (optional, if not provided token auth is used)";
|
|
1670
|
+
};
|
|
1671
|
+
readonly namespace: {
|
|
1672
|
+
readonly type: "string";
|
|
1673
|
+
readonly description: "Vault Enterprise namespace (optional)";
|
|
1674
|
+
};
|
|
1675
|
+
readonly token: {
|
|
1676
|
+
readonly type: "string";
|
|
1677
|
+
readonly description: "Static Vault token for testing/development (optional, if provided this is used instead of JWT authentication)";
|
|
1678
|
+
};
|
|
1679
|
+
};
|
|
1680
|
+
};
|
|
1681
|
+
export declare const $SecretMigrationFailure: {
|
|
1682
|
+
readonly type: "object";
|
|
1683
|
+
readonly required: readonly ["workspace_id", "path", "error"];
|
|
1684
|
+
readonly properties: {
|
|
1685
|
+
readonly workspace_id: {
|
|
1686
|
+
readonly type: "string";
|
|
1687
|
+
readonly description: "Workspace ID where the secret is located";
|
|
1688
|
+
};
|
|
1689
|
+
readonly path: {
|
|
1690
|
+
readonly type: "string";
|
|
1691
|
+
readonly description: "Path of the secret that failed to migrate";
|
|
1692
|
+
};
|
|
1693
|
+
readonly error: {
|
|
1694
|
+
readonly type: "string";
|
|
1695
|
+
readonly description: "Error message";
|
|
1696
|
+
};
|
|
1697
|
+
};
|
|
1698
|
+
};
|
|
1699
|
+
export declare const $SecretMigrationReport: {
|
|
1700
|
+
readonly type: "object";
|
|
1701
|
+
readonly required: readonly ["total_secrets", "migrated_count", "failed_count", "failures"];
|
|
1702
|
+
readonly properties: {
|
|
1703
|
+
readonly total_secrets: {
|
|
1704
|
+
readonly type: "integer";
|
|
1705
|
+
readonly format: "int64";
|
|
1706
|
+
readonly description: "Total number of secrets found";
|
|
1707
|
+
};
|
|
1708
|
+
readonly migrated_count: {
|
|
1709
|
+
readonly type: "integer";
|
|
1710
|
+
readonly format: "int64";
|
|
1711
|
+
readonly description: "Number of secrets successfully migrated";
|
|
1712
|
+
};
|
|
1713
|
+
readonly failed_count: {
|
|
1714
|
+
readonly type: "integer";
|
|
1715
|
+
readonly format: "int64";
|
|
1716
|
+
readonly description: "Number of secrets that failed to migrate";
|
|
1717
|
+
};
|
|
1718
|
+
readonly failures: {
|
|
1719
|
+
readonly type: "array";
|
|
1720
|
+
readonly items: {
|
|
1721
|
+
readonly $ref: "#/components/schemas/SecretMigrationFailure";
|
|
1722
|
+
};
|
|
1723
|
+
readonly description: "Details of any failures encountered during migration";
|
|
1724
|
+
};
|
|
1725
|
+
};
|
|
1726
|
+
};
|
|
1727
|
+
export declare const $JwksResponse: {
|
|
1728
|
+
readonly type: "object";
|
|
1729
|
+
readonly required: readonly ["keys"];
|
|
1730
|
+
readonly properties: {
|
|
1731
|
+
readonly keys: {
|
|
1732
|
+
readonly type: "array";
|
|
1733
|
+
readonly items: {
|
|
1734
|
+
readonly type: "object";
|
|
1735
|
+
readonly additionalProperties: true;
|
|
1736
|
+
};
|
|
1737
|
+
readonly description: "Array of JSON Web Keys for JWT verification";
|
|
1738
|
+
};
|
|
1739
|
+
};
|
|
1740
|
+
};
|
|
1741
|
+
export declare const $FlowConversation: {
|
|
1742
|
+
readonly type: "object";
|
|
1743
|
+
readonly required: readonly ["id", "workspace_id", "flow_path", "created_at", "updated_at", "created_by"];
|
|
1744
|
+
readonly properties: {
|
|
1745
|
+
readonly id: {
|
|
1746
|
+
readonly type: "string";
|
|
1747
|
+
readonly format: "uuid";
|
|
1748
|
+
readonly description: "Unique identifier for the conversation";
|
|
1749
|
+
};
|
|
1750
|
+
readonly workspace_id: {
|
|
1751
|
+
readonly type: "string";
|
|
1752
|
+
readonly description: "The workspace ID where the conversation belongs";
|
|
1753
|
+
};
|
|
1754
|
+
readonly flow_path: {
|
|
1755
|
+
readonly type: "string";
|
|
1756
|
+
readonly description: "Path of the flow this conversation is for";
|
|
1757
|
+
};
|
|
1758
|
+
readonly title: {
|
|
1759
|
+
readonly type: "string";
|
|
1760
|
+
readonly description: "Optional title for the conversation";
|
|
1761
|
+
readonly nullable: true;
|
|
1762
|
+
};
|
|
1763
|
+
readonly created_at: {
|
|
1764
|
+
readonly type: "string";
|
|
1765
|
+
readonly format: "date-time";
|
|
1766
|
+
readonly description: "When the conversation was created";
|
|
1767
|
+
};
|
|
1768
|
+
readonly updated_at: {
|
|
1769
|
+
readonly type: "string";
|
|
1770
|
+
readonly format: "date-time";
|
|
1771
|
+
readonly description: "When the conversation was last updated";
|
|
1772
|
+
};
|
|
1773
|
+
readonly created_by: {
|
|
1774
|
+
readonly type: "string";
|
|
1775
|
+
readonly description: "Username who created the conversation";
|
|
1776
|
+
};
|
|
1777
|
+
};
|
|
1778
|
+
};
|
|
1779
|
+
export declare const $FlowConversationMessage: {
|
|
1780
|
+
readonly type: "object";
|
|
1781
|
+
readonly required: readonly ["id", "conversation_id", "message_type", "content", "created_at"];
|
|
1782
|
+
readonly properties: {
|
|
1783
|
+
readonly id: {
|
|
1784
|
+
readonly type: "string";
|
|
1785
|
+
readonly format: "uuid";
|
|
1786
|
+
readonly description: "Unique identifier for the message";
|
|
1787
|
+
};
|
|
1788
|
+
readonly conversation_id: {
|
|
1789
|
+
readonly type: "string";
|
|
1790
|
+
readonly format: "uuid";
|
|
1791
|
+
readonly description: "The conversation this message belongs to";
|
|
1792
|
+
};
|
|
1793
|
+
readonly message_type: {
|
|
1794
|
+
readonly type: "string";
|
|
1795
|
+
readonly enum: readonly ["user", "assistant", "system", "tool"];
|
|
1796
|
+
readonly description: "Type of the message";
|
|
1797
|
+
};
|
|
1798
|
+
readonly content: {
|
|
1799
|
+
readonly type: "string";
|
|
1800
|
+
readonly description: "The message content";
|
|
1801
|
+
};
|
|
1802
|
+
readonly job_id: {
|
|
1803
|
+
readonly type: "string";
|
|
1804
|
+
readonly format: "uuid";
|
|
1805
|
+
readonly nullable: true;
|
|
1806
|
+
readonly description: "Associated job ID if this message came from a flow run";
|
|
1807
|
+
};
|
|
1808
|
+
readonly created_at: {
|
|
1809
|
+
readonly type: "string";
|
|
1810
|
+
readonly format: "date-time";
|
|
1811
|
+
readonly description: "When the message was created";
|
|
1812
|
+
};
|
|
1813
|
+
readonly step_name: {
|
|
1814
|
+
readonly type: "string";
|
|
1815
|
+
readonly description: "The step name that produced that message";
|
|
1816
|
+
};
|
|
1817
|
+
readonly success: {
|
|
1818
|
+
readonly type: "boolean";
|
|
1819
|
+
readonly description: "Whether the message is a success";
|
|
1820
|
+
};
|
|
1821
|
+
};
|
|
1822
|
+
};
|
|
1823
|
+
export declare const $EndpointTool: {
|
|
1824
|
+
readonly type: "object";
|
|
1825
|
+
readonly required: readonly ["name", "description", "instructions", "path", "method"];
|
|
1826
|
+
readonly properties: {
|
|
1827
|
+
readonly name: {
|
|
1828
|
+
readonly type: "string";
|
|
1829
|
+
readonly description: "The tool name/operation ID";
|
|
1830
|
+
};
|
|
1831
|
+
readonly description: {
|
|
1832
|
+
readonly type: "string";
|
|
1833
|
+
readonly description: "Short description of the tool";
|
|
1834
|
+
};
|
|
1835
|
+
readonly instructions: {
|
|
1836
|
+
readonly type: "string";
|
|
1837
|
+
readonly description: "Detailed instructions for using the tool";
|
|
1838
|
+
};
|
|
1839
|
+
readonly path: {
|
|
1840
|
+
readonly type: "string";
|
|
1841
|
+
readonly description: "API endpoint path";
|
|
1842
|
+
};
|
|
1843
|
+
readonly method: {
|
|
1844
|
+
readonly type: "string";
|
|
1845
|
+
readonly description: "HTTP method (GET, POST, etc.)";
|
|
1846
|
+
};
|
|
1847
|
+
readonly path_params_schema: {
|
|
1848
|
+
readonly type: "object";
|
|
1849
|
+
readonly description: "JSON schema for path parameters";
|
|
1850
|
+
readonly nullable: true;
|
|
1851
|
+
};
|
|
1852
|
+
readonly query_params_schema: {
|
|
1853
|
+
readonly type: "object";
|
|
1854
|
+
readonly description: "JSON schema for query parameters";
|
|
1855
|
+
readonly nullable: true;
|
|
1856
|
+
};
|
|
1857
|
+
readonly body_schema: {
|
|
1858
|
+
readonly type: "object";
|
|
1859
|
+
readonly description: "JSON schema for request body";
|
|
1860
|
+
readonly nullable: true;
|
|
1861
|
+
};
|
|
1862
|
+
};
|
|
1863
|
+
};
|
|
1864
|
+
export declare const $AIProvider: {
|
|
1865
|
+
readonly type: "string";
|
|
1866
|
+
readonly enum: readonly ["openai", "azure_openai", "anthropic", "mistral", "deepseek", "googleai", "groq", "openrouter", "togetherai", "aws_bedrock", "customai"];
|
|
1867
|
+
};
|
|
1868
|
+
export declare const $GitSyncObjectType: {
|
|
1869
|
+
readonly type: "string";
|
|
1870
|
+
readonly enum: readonly ["script", "flow", "app", "folder", "resource", "variable", "secret", "resourcetype", "schedule", "user", "group", "trigger", "settings", "key"];
|
|
1871
|
+
};
|
|
1872
|
+
export declare const $AIProviderModel: {
|
|
1873
|
+
readonly type: "object";
|
|
1874
|
+
readonly properties: {
|
|
1875
|
+
readonly model: {
|
|
1876
|
+
readonly type: "string";
|
|
1877
|
+
};
|
|
1878
|
+
readonly provider: {
|
|
1879
|
+
readonly $ref: "#/components/schemas/AIProvider";
|
|
1880
|
+
};
|
|
1881
|
+
};
|
|
1882
|
+
readonly required: readonly ["model", "provider"];
|
|
1883
|
+
};
|
|
1884
|
+
export declare const $AIProviderConfig: {
|
|
1885
|
+
readonly type: "object";
|
|
1886
|
+
readonly properties: {
|
|
1887
|
+
readonly resource_path: {
|
|
1888
|
+
readonly type: "string";
|
|
1889
|
+
};
|
|
1890
|
+
readonly models: {
|
|
1891
|
+
readonly type: "array";
|
|
1892
|
+
readonly items: {
|
|
1893
|
+
readonly type: "string";
|
|
1894
|
+
};
|
|
1895
|
+
};
|
|
1896
|
+
};
|
|
1897
|
+
readonly required: readonly ["resource_path", "models"];
|
|
1898
|
+
};
|
|
1899
|
+
export declare const $AIConfig: {
|
|
1900
|
+
readonly type: "object";
|
|
1901
|
+
readonly properties: {
|
|
1902
|
+
readonly providers: {
|
|
1903
|
+
readonly type: "object";
|
|
1904
|
+
readonly additionalProperties: {
|
|
1905
|
+
readonly $ref: "#/components/schemas/AIProviderConfig";
|
|
1906
|
+
};
|
|
1907
|
+
};
|
|
1908
|
+
readonly default_model: {
|
|
1909
|
+
readonly $ref: "#/components/schemas/AIProviderModel";
|
|
1910
|
+
};
|
|
1911
|
+
readonly code_completion_model: {
|
|
1912
|
+
readonly $ref: "#/components/schemas/AIProviderModel";
|
|
1913
|
+
};
|
|
1914
|
+
readonly custom_prompts: {
|
|
1915
|
+
readonly type: "object";
|
|
1916
|
+
readonly additionalProperties: {
|
|
1917
|
+
readonly type: "string";
|
|
1918
|
+
};
|
|
1919
|
+
};
|
|
1920
|
+
readonly max_tokens_per_model: {
|
|
1921
|
+
readonly type: "object";
|
|
1922
|
+
readonly additionalProperties: {
|
|
1923
|
+
readonly type: "integer";
|
|
1924
|
+
readonly minimum: 1;
|
|
1925
|
+
readonly maximum: 2000000;
|
|
1926
|
+
};
|
|
1927
|
+
};
|
|
1928
|
+
};
|
|
1929
|
+
};
|
|
1930
|
+
export declare const $Alert: {
|
|
1931
|
+
readonly type: "object";
|
|
1932
|
+
readonly properties: {
|
|
1933
|
+
readonly name: {
|
|
1934
|
+
readonly type: "string";
|
|
1935
|
+
};
|
|
1936
|
+
readonly tags_to_monitor: {
|
|
1346
1937
|
readonly type: "array";
|
|
1347
1938
|
readonly items: {
|
|
1348
1939
|
readonly type: "string";
|
|
@@ -1746,7 +2337,7 @@ export declare const $ScriptHistory: {
|
|
|
1746
2337
|
export declare const $ScriptArgs: {
|
|
1747
2338
|
readonly type: "object";
|
|
1748
2339
|
readonly description: "The arguments to pass to the script or flow";
|
|
1749
|
-
readonly additionalProperties:
|
|
2340
|
+
readonly additionalProperties: true;
|
|
1750
2341
|
};
|
|
1751
2342
|
export declare const $Input: {
|
|
1752
2343
|
readonly type: "object";
|
|
@@ -2501,6 +3092,15 @@ export declare const $Login: {
|
|
|
2501
3092
|
};
|
|
2502
3093
|
readonly required: readonly ["email", "password"];
|
|
2503
3094
|
};
|
|
3095
|
+
export declare const $PasswordResetResponse: {
|
|
3096
|
+
readonly type: "object";
|
|
3097
|
+
readonly properties: {
|
|
3098
|
+
readonly message: {
|
|
3099
|
+
readonly type: "string";
|
|
3100
|
+
};
|
|
3101
|
+
};
|
|
3102
|
+
readonly required: readonly ["message"];
|
|
3103
|
+
};
|
|
2504
3104
|
export declare const $EditWorkspaceUser: {
|
|
2505
3105
|
readonly type: "object";
|
|
2506
3106
|
readonly properties: {
|
|
@@ -2874,7 +3474,7 @@ export declare const $MainArgSignature: {
|
|
|
2874
3474
|
};
|
|
2875
3475
|
export declare const $ScriptLang: {
|
|
2876
3476
|
readonly type: "string";
|
|
2877
|
-
readonly enum: readonly ["python3", "deno", "go", "bash", "powershell", "postgresql", "mysql", "bigquery", "snowflake", "mssql", "oracledb", "graphql", "nativets", "bun", "php", "rust", "ansible", "csharp", "nu", "java", "ruby", "duckdb"];
|
|
3477
|
+
readonly enum: readonly ["python3", "deno", "go", "bash", "powershell", "postgresql", "mysql", "bigquery", "snowflake", "mssql", "oracledb", "graphql", "nativets", "bun", "php", "rust", "ansible", "csharp", "nu", "java", "ruby", "duckdb", "bunnative"];
|
|
2878
3478
|
};
|
|
2879
3479
|
export declare const $Preview: {
|
|
2880
3480
|
readonly type: "object";
|
|
@@ -3125,99 +3725,141 @@ export declare const $Schedule: {
|
|
|
3125
3725
|
readonly properties: {
|
|
3126
3726
|
readonly path: {
|
|
3127
3727
|
readonly type: "string";
|
|
3728
|
+
readonly description: "The unique path identifier for this schedule";
|
|
3128
3729
|
};
|
|
3129
3730
|
readonly edited_by: {
|
|
3130
3731
|
readonly type: "string";
|
|
3732
|
+
readonly description: "Username of the last person who edited this schedule";
|
|
3131
3733
|
};
|
|
3132
3734
|
readonly edited_at: {
|
|
3133
3735
|
readonly type: "string";
|
|
3134
3736
|
readonly format: "date-time";
|
|
3737
|
+
readonly description: "Timestamp of the last edit";
|
|
3135
3738
|
};
|
|
3136
3739
|
readonly schedule: {
|
|
3137
3740
|
readonly type: "string";
|
|
3741
|
+
readonly description: "Cron expression with 6 fields (seconds, minutes, hours, day of month, month, day of week). Example '0 0 12 * * *' for daily at noon";
|
|
3138
3742
|
};
|
|
3139
3743
|
readonly timezone: {
|
|
3140
3744
|
readonly type: "string";
|
|
3745
|
+
readonly description: "IANA timezone for the schedule (e.g., 'UTC', 'Europe/Paris', 'America/New_York')";
|
|
3141
3746
|
};
|
|
3142
3747
|
readonly enabled: {
|
|
3143
3748
|
readonly type: "boolean";
|
|
3749
|
+
readonly description: "Whether the schedule is currently active and will trigger jobs";
|
|
3144
3750
|
};
|
|
3145
3751
|
readonly script_path: {
|
|
3146
3752
|
readonly type: "string";
|
|
3753
|
+
readonly description: "Path to the script or flow to execute when triggered";
|
|
3147
3754
|
};
|
|
3148
3755
|
readonly is_flow: {
|
|
3149
3756
|
readonly type: "boolean";
|
|
3757
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
3150
3758
|
};
|
|
3151
3759
|
readonly args: {
|
|
3152
3760
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3761
|
+
readonly nullable: true;
|
|
3153
3762
|
};
|
|
3154
3763
|
readonly extra_perms: {
|
|
3155
3764
|
readonly type: "object";
|
|
3156
3765
|
readonly additionalProperties: {
|
|
3157
3766
|
readonly type: "boolean";
|
|
3158
3767
|
};
|
|
3768
|
+
readonly description: "Additional permissions for this schedule";
|
|
3159
3769
|
};
|
|
3160
3770
|
readonly email: {
|
|
3161
3771
|
readonly type: "string";
|
|
3772
|
+
readonly description: "Email of the user who owns this schedule, used for permissioned_as";
|
|
3162
3773
|
};
|
|
3163
3774
|
readonly error: {
|
|
3164
3775
|
readonly type: "string";
|
|
3776
|
+
readonly nullable: true;
|
|
3777
|
+
readonly description: "Last error message if the schedule failed to trigger";
|
|
3165
3778
|
};
|
|
3166
3779
|
readonly on_failure: {
|
|
3167
3780
|
readonly type: "string";
|
|
3781
|
+
readonly nullable: true;
|
|
3782
|
+
readonly description: "Path to a script or flow to run when the scheduled job fails";
|
|
3168
3783
|
};
|
|
3169
3784
|
readonly on_failure_times: {
|
|
3170
3785
|
readonly type: "number";
|
|
3786
|
+
readonly nullable: true;
|
|
3787
|
+
readonly description: "Number of consecutive failures before the on_failure handler is triggered (default 1)";
|
|
3171
3788
|
};
|
|
3172
3789
|
readonly on_failure_exact: {
|
|
3173
3790
|
readonly type: "boolean";
|
|
3791
|
+
readonly nullable: true;
|
|
3792
|
+
readonly description: "If true, trigger on_failure handler only on exactly N failures, not on every failure after N";
|
|
3174
3793
|
};
|
|
3175
3794
|
readonly on_failure_extra_args: {
|
|
3176
3795
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3796
|
+
readonly nullable: true;
|
|
3177
3797
|
};
|
|
3178
3798
|
readonly on_recovery: {
|
|
3179
3799
|
readonly type: "string";
|
|
3800
|
+
readonly nullable: true;
|
|
3801
|
+
readonly description: "Path to a script or flow to run when the schedule recovers after failures";
|
|
3180
3802
|
};
|
|
3181
3803
|
readonly on_recovery_times: {
|
|
3182
3804
|
readonly type: "number";
|
|
3805
|
+
readonly nullable: true;
|
|
3806
|
+
readonly description: "Number of consecutive successes before the on_recovery handler is triggered (default 1)";
|
|
3183
3807
|
};
|
|
3184
3808
|
readonly on_recovery_extra_args: {
|
|
3185
3809
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3810
|
+
readonly nullable: true;
|
|
3186
3811
|
};
|
|
3187
3812
|
readonly on_success: {
|
|
3188
3813
|
readonly type: "string";
|
|
3814
|
+
readonly nullable: true;
|
|
3815
|
+
readonly description: "Path to a script or flow to run after each successful execution";
|
|
3189
3816
|
};
|
|
3190
3817
|
readonly on_success_extra_args: {
|
|
3191
3818
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3819
|
+
readonly nullable: true;
|
|
3192
3820
|
};
|
|
3193
3821
|
readonly ws_error_handler_muted: {
|
|
3194
3822
|
readonly type: "boolean";
|
|
3823
|
+
readonly description: "If true, the workspace-level error handler will not be triggered for this schedule's failures";
|
|
3195
3824
|
};
|
|
3196
3825
|
readonly retry: {
|
|
3197
3826
|
readonly $ref: "#/components/schemas/Retry";
|
|
3827
|
+
readonly nullable: true;
|
|
3198
3828
|
};
|
|
3199
3829
|
readonly summary: {
|
|
3200
3830
|
readonly type: "string";
|
|
3831
|
+
readonly nullable: true;
|
|
3832
|
+
readonly description: "Short summary describing the purpose of this schedule";
|
|
3201
3833
|
};
|
|
3202
3834
|
readonly description: {
|
|
3203
3835
|
readonly type: "string";
|
|
3836
|
+
readonly nullable: true;
|
|
3837
|
+
readonly description: "Detailed description of what this schedule does";
|
|
3204
3838
|
};
|
|
3205
3839
|
readonly no_flow_overlap: {
|
|
3206
3840
|
readonly type: "boolean";
|
|
3841
|
+
readonly description: "If true, skip this schedule's execution if the previous run is still in progress (prevents concurrent runs)";
|
|
3207
3842
|
};
|
|
3208
3843
|
readonly tag: {
|
|
3209
3844
|
readonly type: "string";
|
|
3845
|
+
readonly nullable: true;
|
|
3846
|
+
readonly description: "Worker tag to route jobs to specific worker groups";
|
|
3210
3847
|
};
|
|
3211
3848
|
readonly paused_until: {
|
|
3212
3849
|
readonly type: "string";
|
|
3213
3850
|
readonly format: "date-time";
|
|
3851
|
+
readonly nullable: true;
|
|
3852
|
+
readonly description: "ISO 8601 datetime until which the schedule is paused. Schedule resumes automatically after this time";
|
|
3214
3853
|
};
|
|
3215
3854
|
readonly cron_version: {
|
|
3216
3855
|
readonly type: "string";
|
|
3856
|
+
readonly nullable: true;
|
|
3857
|
+
readonly description: "Cron parser version. Use 'v2' for extended syntax with additional features";
|
|
3217
3858
|
};
|
|
3218
3859
|
readonly dynamic_skip: {
|
|
3219
3860
|
readonly type: "string";
|
|
3220
|
-
readonly
|
|
3861
|
+
readonly nullable: true;
|
|
3862
|
+
readonly description: "Path to a script that validates scheduled datetimes. Receives scheduled_for datetime and returns boolean to skip (true) or run (false)";
|
|
3221
3863
|
};
|
|
3222
3864
|
};
|
|
3223
3865
|
readonly required: readonly ["path", "edited_by", "edited_at", "schedule", "script_path", "timezone", "extra_perms", "is_flow", "enabled", "email"];
|
|
@@ -3258,104 +3900,116 @@ export declare const $NewSchedule: {
|
|
|
3258
3900
|
readonly properties: {
|
|
3259
3901
|
readonly path: {
|
|
3260
3902
|
readonly type: "string";
|
|
3261
|
-
readonly description: "The path
|
|
3903
|
+
readonly description: "The unique path identifier for this schedule";
|
|
3262
3904
|
};
|
|
3263
3905
|
readonly schedule: {
|
|
3264
3906
|
readonly type: "string";
|
|
3265
|
-
readonly description: "
|
|
3907
|
+
readonly description: "Cron expression with 6 fields (seconds, minutes, hours, day of month, month, day of week). Example '0 0 12 * * *' for daily at noon";
|
|
3266
3908
|
};
|
|
3267
3909
|
readonly timezone: {
|
|
3268
3910
|
readonly type: "string";
|
|
3269
|
-
readonly description: "
|
|
3911
|
+
readonly description: "IANA timezone for the schedule (e.g., 'UTC', 'Europe/Paris', 'America/New_York')";
|
|
3270
3912
|
};
|
|
3271
3913
|
readonly script_path: {
|
|
3272
3914
|
readonly type: "string";
|
|
3273
|
-
readonly description: "
|
|
3915
|
+
readonly description: "Path to the script or flow to execute when triggered";
|
|
3274
3916
|
};
|
|
3275
3917
|
readonly is_flow: {
|
|
3276
3918
|
readonly type: "boolean";
|
|
3277
|
-
readonly description: "
|
|
3919
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
3278
3920
|
};
|
|
3279
3921
|
readonly args: {
|
|
3922
|
+
readonly nullable: true;
|
|
3280
3923
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3281
|
-
readonly description: "The arguments to pass to the script or flow";
|
|
3282
3924
|
};
|
|
3283
3925
|
readonly enabled: {
|
|
3284
3926
|
readonly type: "boolean";
|
|
3285
|
-
readonly description: "Whether the schedule is
|
|
3927
|
+
readonly description: "Whether the schedule is currently active and will trigger jobs";
|
|
3286
3928
|
};
|
|
3287
3929
|
readonly on_failure: {
|
|
3288
3930
|
readonly type: "string";
|
|
3289
|
-
readonly
|
|
3931
|
+
readonly nullable: true;
|
|
3932
|
+
readonly description: "Path to a script or flow to run when the scheduled job fails";
|
|
3290
3933
|
};
|
|
3291
3934
|
readonly on_failure_times: {
|
|
3292
3935
|
readonly type: "number";
|
|
3293
|
-
readonly
|
|
3936
|
+
readonly nullable: true;
|
|
3937
|
+
readonly description: "Number of consecutive failures before the on_failure handler is triggered (default 1)";
|
|
3294
3938
|
};
|
|
3295
3939
|
readonly on_failure_exact: {
|
|
3296
3940
|
readonly type: "boolean";
|
|
3297
|
-
readonly
|
|
3941
|
+
readonly nullable: true;
|
|
3942
|
+
readonly description: "If true, trigger on_failure handler only on exactly N failures, not on every failure after N";
|
|
3298
3943
|
};
|
|
3299
3944
|
readonly on_failure_extra_args: {
|
|
3945
|
+
readonly nullable: true;
|
|
3300
3946
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3301
|
-
readonly description: "The arguments to pass to the script or flow on failure";
|
|
3302
3947
|
};
|
|
3303
3948
|
readonly on_recovery: {
|
|
3304
3949
|
readonly type: "string";
|
|
3305
|
-
readonly
|
|
3950
|
+
readonly nullable: true;
|
|
3951
|
+
readonly description: "Path to a script or flow to run when the schedule recovers after failures";
|
|
3306
3952
|
};
|
|
3307
3953
|
readonly on_recovery_times: {
|
|
3308
3954
|
readonly type: "number";
|
|
3309
|
-
readonly
|
|
3955
|
+
readonly nullable: true;
|
|
3956
|
+
readonly description: "Number of consecutive successes before the on_recovery handler is triggered (default 1)";
|
|
3310
3957
|
};
|
|
3311
3958
|
readonly on_recovery_extra_args: {
|
|
3959
|
+
readonly nullable: true;
|
|
3312
3960
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3313
|
-
readonly description: "The arguments to pass to the script or flow on recovery";
|
|
3314
3961
|
};
|
|
3315
3962
|
readonly on_success: {
|
|
3316
3963
|
readonly type: "string";
|
|
3317
|
-
readonly
|
|
3964
|
+
readonly nullable: true;
|
|
3965
|
+
readonly description: "Path to a script or flow to run after each successful execution";
|
|
3318
3966
|
};
|
|
3319
3967
|
readonly on_success_extra_args: {
|
|
3968
|
+
readonly nullable: true;
|
|
3320
3969
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3321
|
-
readonly description: "The arguments to pass to the script or flow on success";
|
|
3322
3970
|
};
|
|
3323
3971
|
readonly ws_error_handler_muted: {
|
|
3324
3972
|
readonly type: "boolean";
|
|
3325
|
-
readonly description: "
|
|
3973
|
+
readonly description: "If true, the workspace-level error handler will not be triggered for this schedule's failures";
|
|
3326
3974
|
};
|
|
3327
3975
|
readonly retry: {
|
|
3976
|
+
readonly nullable: true;
|
|
3328
3977
|
readonly $ref: "#/components/schemas/Retry";
|
|
3329
|
-
readonly description: "The retry configuration for the schedule";
|
|
3330
3978
|
};
|
|
3331
3979
|
readonly no_flow_overlap: {
|
|
3332
3980
|
readonly type: "boolean";
|
|
3333
|
-
readonly description: "
|
|
3981
|
+
readonly description: "If true, skip this schedule's execution if the previous run is still in progress (prevents concurrent runs)";
|
|
3334
3982
|
};
|
|
3335
3983
|
readonly summary: {
|
|
3336
3984
|
readonly type: "string";
|
|
3337
|
-
readonly
|
|
3985
|
+
readonly nullable: true;
|
|
3986
|
+
readonly description: "Short summary describing the purpose of this schedule";
|
|
3338
3987
|
};
|
|
3339
3988
|
readonly description: {
|
|
3340
3989
|
readonly type: "string";
|
|
3341
|
-
readonly
|
|
3990
|
+
readonly nullable: true;
|
|
3991
|
+
readonly description: "Detailed description of what this schedule does";
|
|
3342
3992
|
};
|
|
3343
3993
|
readonly tag: {
|
|
3344
3994
|
readonly type: "string";
|
|
3345
|
-
readonly
|
|
3995
|
+
readonly nullable: true;
|
|
3996
|
+
readonly description: "Worker tag to route jobs to specific worker groups";
|
|
3346
3997
|
};
|
|
3347
3998
|
readonly paused_until: {
|
|
3348
3999
|
readonly type: "string";
|
|
3349
|
-
readonly
|
|
4000
|
+
readonly nullable: true;
|
|
3350
4001
|
readonly format: "date-time";
|
|
4002
|
+
readonly description: "ISO 8601 datetime until which the schedule is paused. Schedule resumes automatically after this time";
|
|
3351
4003
|
};
|
|
3352
4004
|
readonly cron_version: {
|
|
3353
4005
|
readonly type: "string";
|
|
3354
|
-
readonly
|
|
4006
|
+
readonly nullable: true;
|
|
4007
|
+
readonly description: "Cron parser version. Use 'v2' for extended syntax with additional features";
|
|
3355
4008
|
};
|
|
3356
4009
|
readonly dynamic_skip: {
|
|
3357
4010
|
readonly type: "string";
|
|
3358
|
-
readonly
|
|
4011
|
+
readonly nullable: true;
|
|
4012
|
+
readonly description: "Path to a script that validates scheduled datetimes. Receives scheduled_for datetime and returns boolean to skip (true) or run (false)";
|
|
3359
4013
|
};
|
|
3360
4014
|
};
|
|
3361
4015
|
readonly required: readonly ["path", "schedule", "timezone", "script_path", "is_flow", "args"];
|
|
@@ -3365,88 +4019,100 @@ export declare const $EditSchedule: {
|
|
|
3365
4019
|
readonly properties: {
|
|
3366
4020
|
readonly schedule: {
|
|
3367
4021
|
readonly type: "string";
|
|
3368
|
-
readonly description: "
|
|
4022
|
+
readonly description: "Cron expression with 6 fields (seconds, minutes, hours, day of month, month, day of week). Example '0 0 12 * * *' for daily at noon";
|
|
3369
4023
|
};
|
|
3370
4024
|
readonly timezone: {
|
|
3371
4025
|
readonly type: "string";
|
|
3372
|
-
readonly description: "
|
|
4026
|
+
readonly description: "IANA timezone for the schedule (e.g., 'UTC', 'Europe/Paris', 'America/New_York')";
|
|
3373
4027
|
};
|
|
3374
4028
|
readonly args: {
|
|
4029
|
+
readonly nullable: true;
|
|
3375
4030
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3376
|
-
readonly description: "The arguments to pass to the script or flow";
|
|
3377
4031
|
};
|
|
3378
4032
|
readonly on_failure: {
|
|
3379
4033
|
readonly type: "string";
|
|
3380
|
-
readonly
|
|
4034
|
+
readonly nullable: true;
|
|
4035
|
+
readonly description: "Path to a script or flow to run when the scheduled job fails";
|
|
3381
4036
|
};
|
|
3382
4037
|
readonly on_failure_times: {
|
|
3383
4038
|
readonly type: "number";
|
|
3384
|
-
readonly
|
|
4039
|
+
readonly nullable: true;
|
|
4040
|
+
readonly description: "Number of consecutive failures before the on_failure handler is triggered (default 1)";
|
|
3385
4041
|
};
|
|
3386
4042
|
readonly on_failure_exact: {
|
|
3387
4043
|
readonly type: "boolean";
|
|
3388
|
-
readonly
|
|
4044
|
+
readonly nullable: true;
|
|
4045
|
+
readonly description: "If true, trigger on_failure handler only on exactly N failures, not on every failure after N";
|
|
3389
4046
|
};
|
|
3390
4047
|
readonly on_failure_extra_args: {
|
|
4048
|
+
readonly nullable: true;
|
|
3391
4049
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3392
|
-
readonly description: "The arguments to pass to the script or flow on failure";
|
|
3393
4050
|
};
|
|
3394
4051
|
readonly on_recovery: {
|
|
3395
4052
|
readonly type: "string";
|
|
3396
|
-
readonly
|
|
4053
|
+
readonly nullable: true;
|
|
4054
|
+
readonly description: "Path to a script or flow to run when the schedule recovers after failures";
|
|
3397
4055
|
};
|
|
3398
4056
|
readonly on_recovery_times: {
|
|
3399
4057
|
readonly type: "number";
|
|
3400
|
-
readonly
|
|
4058
|
+
readonly nullable: true;
|
|
4059
|
+
readonly description: "Number of consecutive successes before the on_recovery handler is triggered (default 1)";
|
|
3401
4060
|
};
|
|
3402
4061
|
readonly on_recovery_extra_args: {
|
|
4062
|
+
readonly nullable: true;
|
|
3403
4063
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3404
|
-
readonly description: "The arguments to pass to the script or flow on recovery";
|
|
3405
4064
|
};
|
|
3406
4065
|
readonly on_success: {
|
|
3407
4066
|
readonly type: "string";
|
|
3408
|
-
readonly
|
|
4067
|
+
readonly nullable: true;
|
|
4068
|
+
readonly description: "Path to a script or flow to run after each successful execution";
|
|
3409
4069
|
};
|
|
3410
4070
|
readonly on_success_extra_args: {
|
|
4071
|
+
readonly nullable: true;
|
|
3411
4072
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3412
|
-
readonly description: "The arguments to pass to the script or flow on success";
|
|
3413
4073
|
};
|
|
3414
4074
|
readonly ws_error_handler_muted: {
|
|
3415
4075
|
readonly type: "boolean";
|
|
3416
|
-
readonly description: "
|
|
4076
|
+
readonly description: "If true, the workspace-level error handler will not be triggered for this schedule's failures";
|
|
3417
4077
|
};
|
|
3418
4078
|
readonly retry: {
|
|
4079
|
+
readonly nullable: true;
|
|
3419
4080
|
readonly $ref: "#/components/schemas/Retry";
|
|
3420
|
-
readonly description: "The retry configuration for the schedule";
|
|
3421
4081
|
};
|
|
3422
4082
|
readonly no_flow_overlap: {
|
|
3423
4083
|
readonly type: "boolean";
|
|
3424
|
-
readonly description: "
|
|
4084
|
+
readonly description: "If true, skip this schedule's execution if the previous run is still in progress (prevents concurrent runs)";
|
|
3425
4085
|
};
|
|
3426
4086
|
readonly summary: {
|
|
3427
4087
|
readonly type: "string";
|
|
3428
|
-
readonly
|
|
4088
|
+
readonly nullable: true;
|
|
4089
|
+
readonly description: "Short summary describing the purpose of this schedule";
|
|
3429
4090
|
};
|
|
3430
4091
|
readonly description: {
|
|
3431
4092
|
readonly type: "string";
|
|
3432
|
-
readonly
|
|
4093
|
+
readonly nullable: true;
|
|
4094
|
+
readonly description: "Detailed description of what this schedule does";
|
|
3433
4095
|
};
|
|
3434
4096
|
readonly tag: {
|
|
3435
4097
|
readonly type: "string";
|
|
3436
|
-
readonly
|
|
4098
|
+
readonly nullable: true;
|
|
4099
|
+
readonly description: "Worker tag to route jobs to specific worker groups";
|
|
3437
4100
|
};
|
|
3438
4101
|
readonly paused_until: {
|
|
3439
4102
|
readonly type: "string";
|
|
3440
|
-
readonly
|
|
4103
|
+
readonly nullable: true;
|
|
3441
4104
|
readonly format: "date-time";
|
|
4105
|
+
readonly description: "ISO 8601 datetime until which the schedule is paused. Schedule resumes automatically after this time";
|
|
3442
4106
|
};
|
|
3443
4107
|
readonly cron_version: {
|
|
3444
4108
|
readonly type: "string";
|
|
3445
|
-
readonly
|
|
4109
|
+
readonly nullable: true;
|
|
4110
|
+
readonly description: "Cron parser version. Use 'v2' for extended syntax with additional features";
|
|
3446
4111
|
};
|
|
3447
4112
|
readonly dynamic_skip: {
|
|
3448
4113
|
readonly type: "string";
|
|
3449
|
-
readonly
|
|
4114
|
+
readonly nullable: true;
|
|
4115
|
+
readonly description: "Path to a script that validates scheduled datetimes. Receives scheduled_for datetime and returns boolean to skip (true) or run (false)";
|
|
3450
4116
|
};
|
|
3451
4117
|
};
|
|
3452
4118
|
readonly required: readonly ["schedule", "timezone", "args"];
|
|
@@ -3454,7 +4120,7 @@ export declare const $EditSchedule: {
|
|
|
3454
4120
|
export declare const $JobTriggerKind: {
|
|
3455
4121
|
readonly description: "job trigger kind (schedule, http, websocket...)";
|
|
3456
4122
|
readonly type: "string";
|
|
3457
|
-
readonly enum: readonly ["webhook", "default_email", "email", "schedule", "http", "websocket", "postgres", "kafka", "nats", "mqtt", "sqs", "gcp"];
|
|
4123
|
+
readonly enum: readonly ["webhook", "default_email", "email", "schedule", "http", "websocket", "postgres", "kafka", "nats", "mqtt", "sqs", "gcp", "google"];
|
|
3458
4124
|
};
|
|
3459
4125
|
export declare const $TriggerMode: {
|
|
3460
4126
|
readonly description: "job trigger mode";
|
|
@@ -3466,34 +4132,43 @@ export declare const $TriggerExtraProperty: {
|
|
|
3466
4132
|
readonly properties: {
|
|
3467
4133
|
readonly path: {
|
|
3468
4134
|
readonly type: "string";
|
|
4135
|
+
readonly description: "The unique path identifier for this trigger";
|
|
3469
4136
|
};
|
|
3470
4137
|
readonly script_path: {
|
|
3471
4138
|
readonly type: "string";
|
|
4139
|
+
readonly description: "Path to the script or flow to execute when triggered";
|
|
3472
4140
|
};
|
|
3473
4141
|
readonly email: {
|
|
3474
4142
|
readonly type: "string";
|
|
4143
|
+
readonly description: "Email of the user who owns this trigger, used for permissioned_as";
|
|
3475
4144
|
};
|
|
3476
4145
|
readonly extra_perms: {
|
|
3477
4146
|
readonly type: "object";
|
|
4147
|
+
readonly description: "Additional permissions for this trigger";
|
|
3478
4148
|
readonly additionalProperties: {
|
|
3479
4149
|
readonly type: "boolean";
|
|
3480
4150
|
};
|
|
3481
4151
|
};
|
|
3482
4152
|
readonly workspace_id: {
|
|
3483
4153
|
readonly type: "string";
|
|
4154
|
+
readonly description: "The workspace this trigger belongs to";
|
|
3484
4155
|
};
|
|
3485
4156
|
readonly edited_by: {
|
|
3486
4157
|
readonly type: "string";
|
|
4158
|
+
readonly description: "Username of the last person who edited this trigger";
|
|
3487
4159
|
};
|
|
3488
4160
|
readonly edited_at: {
|
|
3489
4161
|
readonly type: "string";
|
|
3490
4162
|
readonly format: "date-time";
|
|
4163
|
+
readonly description: "Timestamp of the last edit";
|
|
3491
4164
|
};
|
|
3492
4165
|
readonly is_flow: {
|
|
3493
4166
|
readonly type: "boolean";
|
|
4167
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
3494
4168
|
};
|
|
3495
4169
|
readonly mode: {
|
|
3496
4170
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
4171
|
+
readonly description: "Trigger mode (enabled/disabled)";
|
|
3497
4172
|
};
|
|
3498
4173
|
};
|
|
3499
4174
|
readonly required: readonly ["path", "script_path", "email", "extra_perms", "workspace_id", "edited_by", "edited_at", "is_flow", "mode"];
|
|
@@ -3633,60 +4308,82 @@ export declare const $HttpTrigger: {
|
|
|
3633
4308
|
readonly properties: {
|
|
3634
4309
|
readonly route_path: {
|
|
3635
4310
|
readonly type: "string";
|
|
4311
|
+
readonly description: "The URL route path that will trigger this endpoint (e.g., 'api/myendpoint'). Must NOT start with a /.";
|
|
3636
4312
|
};
|
|
3637
4313
|
readonly static_asset_config: {
|
|
3638
4314
|
readonly type: "object";
|
|
4315
|
+
readonly nullable: true;
|
|
4316
|
+
readonly description: "Configuration for serving static assets (s3 bucket, storage path, filename)";
|
|
3639
4317
|
readonly properties: {
|
|
3640
4318
|
readonly s3: {
|
|
3641
4319
|
readonly type: "string";
|
|
4320
|
+
readonly description: "S3 bucket path for static assets";
|
|
3642
4321
|
};
|
|
3643
4322
|
readonly storage: {
|
|
3644
4323
|
readonly type: "string";
|
|
4324
|
+
readonly description: "Storage path for static assets";
|
|
3645
4325
|
};
|
|
3646
4326
|
readonly filename: {
|
|
3647
4327
|
readonly type: "string";
|
|
4328
|
+
readonly description: "Filename for the static asset";
|
|
3648
4329
|
};
|
|
3649
4330
|
};
|
|
3650
4331
|
readonly required: readonly ["s3"];
|
|
3651
4332
|
};
|
|
3652
4333
|
readonly http_method: {
|
|
3653
4334
|
readonly $ref: "#/components/schemas/HttpMethod";
|
|
4335
|
+
readonly description: "HTTP method (get, post, put, delete, patch) that triggers this endpoint";
|
|
3654
4336
|
};
|
|
3655
4337
|
readonly authentication_resource_path: {
|
|
3656
4338
|
readonly type: "string";
|
|
4339
|
+
readonly nullable: true;
|
|
4340
|
+
readonly description: "Path to the resource containing authentication configuration (for api_key, basic_http, custom_script, signature methods)";
|
|
3657
4341
|
};
|
|
3658
4342
|
readonly summary: {
|
|
3659
4343
|
readonly type: "string";
|
|
4344
|
+
readonly nullable: true;
|
|
4345
|
+
readonly description: "Short summary describing the purpose of this trigger";
|
|
3660
4346
|
};
|
|
3661
4347
|
readonly description: {
|
|
3662
4348
|
readonly type: "string";
|
|
4349
|
+
readonly nullable: true;
|
|
4350
|
+
readonly description: "Detailed description of what this trigger does";
|
|
3663
4351
|
};
|
|
3664
4352
|
readonly request_type: {
|
|
3665
4353
|
readonly $ref: "#/components/schemas/HttpRequestType";
|
|
4354
|
+
readonly description: "How the request is handled - 'sync' waits for result, 'async' returns job ID immediately, 'sync_sse' streams results via Server-Sent Events";
|
|
3666
4355
|
};
|
|
3667
4356
|
readonly authentication_method: {
|
|
3668
4357
|
readonly $ref: "#/components/schemas/AuthenticationMethod";
|
|
4358
|
+
readonly description: "How requests are authenticated - 'none' (public), 'windmill' (Windmill token), 'api_key', 'basic_http', 'custom_script', 'signature'";
|
|
3669
4359
|
};
|
|
3670
4360
|
readonly is_static_website: {
|
|
3671
4361
|
readonly type: "boolean";
|
|
4362
|
+
readonly description: "If true, serves static files from S3/storage instead of running a script";
|
|
3672
4363
|
};
|
|
3673
4364
|
readonly workspaced_route: {
|
|
3674
4365
|
readonly type: "boolean";
|
|
4366
|
+
readonly description: "If true, the route includes the workspace ID in the path";
|
|
3675
4367
|
};
|
|
3676
4368
|
readonly wrap_body: {
|
|
3677
4369
|
readonly type: "boolean";
|
|
4370
|
+
readonly description: "If true, wraps the request body in a 'body' parameter";
|
|
3678
4371
|
};
|
|
3679
4372
|
readonly raw_string: {
|
|
3680
4373
|
readonly type: "boolean";
|
|
4374
|
+
readonly description: "If true, passes the request body as a raw string instead of parsing as JSON";
|
|
3681
4375
|
};
|
|
3682
4376
|
readonly error_handler_path: {
|
|
3683
4377
|
readonly type: "string";
|
|
4378
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
3684
4379
|
};
|
|
3685
4380
|
readonly error_handler_args: {
|
|
3686
4381
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
4382
|
+
readonly description: "Arguments to pass to the error handler";
|
|
3687
4383
|
};
|
|
3688
4384
|
readonly retry: {
|
|
3689
4385
|
readonly $ref: "#/components/schemas/Retry";
|
|
4386
|
+
readonly description: "Retry configuration for failed executions";
|
|
3690
4387
|
};
|
|
3691
4388
|
};
|
|
3692
4389
|
readonly required: readonly ["route_path", "request_type", "authentication_method", "http_method", "is_static_website", "workspaced_route", "wrap_body", "raw_string"];
|
|
@@ -3696,45 +4393,62 @@ export declare const $NewHttpTrigger: {
|
|
|
3696
4393
|
readonly properties: {
|
|
3697
4394
|
readonly path: {
|
|
3698
4395
|
readonly type: "string";
|
|
4396
|
+
readonly description: "The unique path identifier for this trigger";
|
|
3699
4397
|
};
|
|
3700
4398
|
readonly script_path: {
|
|
3701
4399
|
readonly type: "string";
|
|
4400
|
+
readonly description: "Path to the script or flow to execute when triggered";
|
|
3702
4401
|
};
|
|
3703
4402
|
readonly route_path: {
|
|
3704
4403
|
readonly type: "string";
|
|
4404
|
+
readonly description: "The URL route path that will trigger this endpoint (e.g., 'api/myendpoint'). Must NOT start with a /.";
|
|
3705
4405
|
};
|
|
3706
4406
|
readonly workspaced_route: {
|
|
3707
4407
|
readonly type: "boolean";
|
|
4408
|
+
readonly description: "If true, the route includes the workspace ID in the path";
|
|
3708
4409
|
};
|
|
3709
4410
|
readonly summary: {
|
|
3710
4411
|
readonly type: "string";
|
|
4412
|
+
readonly nullable: true;
|
|
4413
|
+
readonly description: "Short summary describing the purpose of this trigger";
|
|
3711
4414
|
};
|
|
3712
4415
|
readonly description: {
|
|
3713
4416
|
readonly type: "string";
|
|
4417
|
+
readonly nullable: true;
|
|
4418
|
+
readonly description: "Detailed description of what this trigger does";
|
|
3714
4419
|
};
|
|
3715
4420
|
readonly static_asset_config: {
|
|
3716
4421
|
readonly type: "object";
|
|
4422
|
+
readonly nullable: true;
|
|
4423
|
+
readonly description: "Configuration for serving static assets (s3 bucket, storage path, filename)";
|
|
3717
4424
|
readonly properties: {
|
|
3718
4425
|
readonly s3: {
|
|
3719
4426
|
readonly type: "string";
|
|
4427
|
+
readonly description: "S3 bucket path for static assets";
|
|
3720
4428
|
};
|
|
3721
4429
|
readonly storage: {
|
|
3722
4430
|
readonly type: "string";
|
|
4431
|
+
readonly description: "Storage path for static assets";
|
|
3723
4432
|
};
|
|
3724
4433
|
readonly filename: {
|
|
3725
4434
|
readonly type: "string";
|
|
4435
|
+
readonly description: "Filename for the static asset";
|
|
3726
4436
|
};
|
|
3727
4437
|
};
|
|
3728
4438
|
readonly required: readonly ["s3"];
|
|
3729
4439
|
};
|
|
3730
4440
|
readonly is_flow: {
|
|
3731
4441
|
readonly type: "boolean";
|
|
4442
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
3732
4443
|
};
|
|
3733
4444
|
readonly http_method: {
|
|
3734
4445
|
readonly $ref: "#/components/schemas/HttpMethod";
|
|
4446
|
+
readonly description: "HTTP method (get, post, put, delete, patch) that triggers this endpoint";
|
|
3735
4447
|
};
|
|
3736
4448
|
readonly authentication_resource_path: {
|
|
3737
4449
|
readonly type: "string";
|
|
4450
|
+
readonly nullable: true;
|
|
4451
|
+
readonly description: "Path to the resource containing authentication configuration (for api_key, basic_http, custom_script, signature methods)";
|
|
3738
4452
|
};
|
|
3739
4453
|
readonly is_async: {
|
|
3740
4454
|
readonly type: "boolean";
|
|
@@ -3742,30 +4456,38 @@ export declare const $NewHttpTrigger: {
|
|
|
3742
4456
|
};
|
|
3743
4457
|
readonly request_type: {
|
|
3744
4458
|
readonly $ref: "#/components/schemas/HttpRequestType";
|
|
4459
|
+
readonly description: "How the request is handled - 'sync' waits for result, 'async' returns job ID immediately, 'sync_sse' streams results via Server-Sent Events";
|
|
3745
4460
|
};
|
|
3746
4461
|
readonly authentication_method: {
|
|
3747
4462
|
readonly $ref: "#/components/schemas/AuthenticationMethod";
|
|
4463
|
+
readonly description: "How requests are authenticated - 'none' (public), 'windmill' (Windmill token), 'api_key', 'basic_http', 'custom_script', 'signature'";
|
|
3748
4464
|
};
|
|
3749
4465
|
readonly is_static_website: {
|
|
3750
4466
|
readonly type: "boolean";
|
|
4467
|
+
readonly description: "If true, serves static files from S3/storage instead of running a script";
|
|
3751
4468
|
};
|
|
3752
4469
|
readonly wrap_body: {
|
|
3753
4470
|
readonly type: "boolean";
|
|
4471
|
+
readonly description: "If true, wraps the request body in a 'body' parameter";
|
|
3754
4472
|
};
|
|
3755
4473
|
readonly mode: {
|
|
3756
4474
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
3757
4475
|
};
|
|
3758
4476
|
readonly raw_string: {
|
|
3759
4477
|
readonly type: "boolean";
|
|
4478
|
+
readonly description: "If true, passes the request body as a raw string instead of parsing as JSON";
|
|
3760
4479
|
};
|
|
3761
4480
|
readonly error_handler_path: {
|
|
3762
4481
|
readonly type: "string";
|
|
4482
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
3763
4483
|
};
|
|
3764
4484
|
readonly error_handler_args: {
|
|
3765
4485
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
4486
|
+
readonly description: "Arguments to pass to the error handler";
|
|
3766
4487
|
};
|
|
3767
4488
|
readonly retry: {
|
|
3768
4489
|
readonly $ref: "#/components/schemas/Retry";
|
|
4490
|
+
readonly description: "Retry configuration for failed executions";
|
|
3769
4491
|
};
|
|
3770
4492
|
};
|
|
3771
4493
|
readonly required: readonly ["path", "script_path", "route_path", "is_flow", "authentication_method", "http_method", "is_static_website"];
|
|
@@ -3775,45 +4497,62 @@ export declare const $EditHttpTrigger: {
|
|
|
3775
4497
|
readonly properties: {
|
|
3776
4498
|
readonly path: {
|
|
3777
4499
|
readonly type: "string";
|
|
4500
|
+
readonly description: "The unique path identifier for this trigger";
|
|
3778
4501
|
};
|
|
3779
4502
|
readonly script_path: {
|
|
3780
4503
|
readonly type: "string";
|
|
4504
|
+
readonly description: "Path to the script or flow to execute when triggered";
|
|
3781
4505
|
};
|
|
3782
4506
|
readonly route_path: {
|
|
3783
4507
|
readonly type: "string";
|
|
4508
|
+
readonly description: "The URL route path that will trigger this endpoint (e.g., 'api/myendpoint'). Must NOT start with a /.";
|
|
3784
4509
|
};
|
|
3785
4510
|
readonly summary: {
|
|
3786
4511
|
readonly type: "string";
|
|
4512
|
+
readonly nullable: true;
|
|
4513
|
+
readonly description: "Short summary describing the purpose of this trigger";
|
|
3787
4514
|
};
|
|
3788
4515
|
readonly description: {
|
|
3789
4516
|
readonly type: "string";
|
|
4517
|
+
readonly nullable: true;
|
|
4518
|
+
readonly description: "Detailed description of what this trigger does";
|
|
3790
4519
|
};
|
|
3791
4520
|
readonly workspaced_route: {
|
|
3792
4521
|
readonly type: "boolean";
|
|
4522
|
+
readonly description: "If true, the route includes the workspace ID in the path";
|
|
3793
4523
|
};
|
|
3794
4524
|
readonly static_asset_config: {
|
|
3795
4525
|
readonly type: "object";
|
|
4526
|
+
readonly nullable: true;
|
|
4527
|
+
readonly description: "Configuration for serving static assets (s3 bucket, storage path, filename)";
|
|
3796
4528
|
readonly properties: {
|
|
3797
4529
|
readonly s3: {
|
|
3798
4530
|
readonly type: "string";
|
|
4531
|
+
readonly description: "S3 bucket path for static assets";
|
|
3799
4532
|
};
|
|
3800
4533
|
readonly storage: {
|
|
3801
4534
|
readonly type: "string";
|
|
4535
|
+
readonly description: "Storage path for static assets";
|
|
3802
4536
|
};
|
|
3803
4537
|
readonly filename: {
|
|
3804
4538
|
readonly type: "string";
|
|
4539
|
+
readonly description: "Filename for the static asset";
|
|
3805
4540
|
};
|
|
3806
4541
|
};
|
|
3807
4542
|
readonly required: readonly ["s3"];
|
|
3808
4543
|
};
|
|
3809
4544
|
readonly authentication_resource_path: {
|
|
3810
4545
|
readonly type: "string";
|
|
4546
|
+
readonly nullable: true;
|
|
4547
|
+
readonly description: "Path to the resource containing authentication configuration (for api_key, basic_http, custom_script, signature methods)";
|
|
3811
4548
|
};
|
|
3812
4549
|
readonly is_flow: {
|
|
3813
4550
|
readonly type: "boolean";
|
|
4551
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
3814
4552
|
};
|
|
3815
4553
|
readonly http_method: {
|
|
3816
4554
|
readonly $ref: "#/components/schemas/HttpMethod";
|
|
4555
|
+
readonly description: "HTTP method (get, post, put, delete, patch) that triggers this endpoint";
|
|
3817
4556
|
};
|
|
3818
4557
|
readonly is_async: {
|
|
3819
4558
|
readonly type: "boolean";
|
|
@@ -3821,27 +4560,35 @@ export declare const $EditHttpTrigger: {
|
|
|
3821
4560
|
};
|
|
3822
4561
|
readonly request_type: {
|
|
3823
4562
|
readonly $ref: "#/components/schemas/HttpRequestType";
|
|
4563
|
+
readonly description: "How the request is handled - 'sync' waits for result, 'async' returns job ID immediately, 'sync_sse' streams results via Server-Sent Events";
|
|
3824
4564
|
};
|
|
3825
4565
|
readonly authentication_method: {
|
|
3826
4566
|
readonly $ref: "#/components/schemas/AuthenticationMethod";
|
|
4567
|
+
readonly description: "How requests are authenticated - 'none' (public), 'windmill' (Windmill token), 'api_key', 'basic_http', 'custom_script', 'signature'";
|
|
3827
4568
|
};
|
|
3828
4569
|
readonly is_static_website: {
|
|
3829
4570
|
readonly type: "boolean";
|
|
4571
|
+
readonly description: "If true, serves static files from S3/storage instead of running a script";
|
|
3830
4572
|
};
|
|
3831
4573
|
readonly wrap_body: {
|
|
3832
4574
|
readonly type: "boolean";
|
|
4575
|
+
readonly description: "If true, wraps the request body in a 'body' parameter";
|
|
3833
4576
|
};
|
|
3834
4577
|
readonly raw_string: {
|
|
3835
4578
|
readonly type: "boolean";
|
|
4579
|
+
readonly description: "If true, passes the request body as a raw string instead of parsing as JSON";
|
|
3836
4580
|
};
|
|
3837
4581
|
readonly error_handler_path: {
|
|
3838
4582
|
readonly type: "string";
|
|
4583
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
3839
4584
|
};
|
|
3840
4585
|
readonly error_handler_args: {
|
|
3841
4586
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
4587
|
+
readonly description: "Arguments to pass to the error handler";
|
|
3842
4588
|
};
|
|
3843
4589
|
readonly retry: {
|
|
3844
4590
|
readonly $ref: "#/components/schemas/Retry";
|
|
4591
|
+
readonly description: "Retry configuration for failed executions";
|
|
3845
4592
|
};
|
|
3846
4593
|
};
|
|
3847
4594
|
readonly required: readonly ["path", "script_path", "is_flow", "kind", "authentication_method", "http_method", "is_static_website"];
|
|
@@ -3893,6 +4640,12 @@ export declare const $TriggersCount: {
|
|
|
3893
4640
|
readonly sqs_count: {
|
|
3894
4641
|
readonly type: "number";
|
|
3895
4642
|
};
|
|
4643
|
+
readonly nextcloud_count: {
|
|
4644
|
+
readonly type: "number";
|
|
4645
|
+
};
|
|
4646
|
+
readonly google_count: {
|
|
4647
|
+
readonly type: "number";
|
|
4648
|
+
};
|
|
3896
4649
|
};
|
|
3897
4650
|
};
|
|
3898
4651
|
export declare const $WebsocketTrigger: {
|
|
@@ -3903,19 +4656,24 @@ export declare const $WebsocketTrigger: {
|
|
|
3903
4656
|
readonly properties: {
|
|
3904
4657
|
readonly url: {
|
|
3905
4658
|
readonly type: "string";
|
|
4659
|
+
readonly description: "The WebSocket URL to connect to (can be a static URL or computed by a runnable)";
|
|
3906
4660
|
};
|
|
3907
4661
|
readonly server_id: {
|
|
3908
4662
|
readonly type: "string";
|
|
4663
|
+
readonly description: "ID of the server currently handling this trigger (internal)";
|
|
3909
4664
|
};
|
|
3910
4665
|
readonly last_server_ping: {
|
|
3911
4666
|
readonly type: "string";
|
|
3912
4667
|
readonly format: "date-time";
|
|
4668
|
+
readonly description: "Timestamp of last server heartbeat (internal)";
|
|
3913
4669
|
};
|
|
3914
4670
|
readonly error: {
|
|
3915
4671
|
readonly type: "string";
|
|
4672
|
+
readonly description: "Last error message if the trigger failed";
|
|
3916
4673
|
};
|
|
3917
4674
|
readonly filters: {
|
|
3918
4675
|
readonly type: "array";
|
|
4676
|
+
readonly description: "Array of key-value filters to match incoming messages (only matching messages trigger the script)";
|
|
3919
4677
|
readonly items: {
|
|
3920
4678
|
readonly type: "object";
|
|
3921
4679
|
readonly properties: {
|
|
@@ -3929,26 +4687,35 @@ export declare const $WebsocketTrigger: {
|
|
|
3929
4687
|
};
|
|
3930
4688
|
readonly initial_messages: {
|
|
3931
4689
|
readonly type: "array";
|
|
4690
|
+
readonly nullable: true;
|
|
4691
|
+
readonly description: "Messages to send immediately after connecting (can be raw strings or computed by runnables)";
|
|
3932
4692
|
readonly items: {
|
|
3933
4693
|
readonly $ref: "#/components/schemas/WebsocketTriggerInitialMessage";
|
|
3934
4694
|
};
|
|
3935
4695
|
};
|
|
3936
4696
|
readonly url_runnable_args: {
|
|
4697
|
+
readonly description: "Arguments to pass to the script/flow that computes the WebSocket URL";
|
|
3937
4698
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
4699
|
+
readonly nullable: true;
|
|
3938
4700
|
};
|
|
3939
4701
|
readonly can_return_message: {
|
|
3940
4702
|
readonly type: "boolean";
|
|
4703
|
+
readonly description: "If true, the script can return a message to send back through the WebSocket";
|
|
3941
4704
|
};
|
|
3942
4705
|
readonly can_return_error_result: {
|
|
3943
4706
|
readonly type: "boolean";
|
|
4707
|
+
readonly description: "If true, error results are sent back through the WebSocket";
|
|
3944
4708
|
};
|
|
3945
4709
|
readonly error_handler_path: {
|
|
3946
4710
|
readonly type: "string";
|
|
4711
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
3947
4712
|
};
|
|
3948
4713
|
readonly error_handler_args: {
|
|
4714
|
+
readonly description: "Arguments to pass to the error handler";
|
|
3949
4715
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3950
4716
|
};
|
|
3951
4717
|
readonly retry: {
|
|
4718
|
+
readonly description: "Retry configuration for failed executions";
|
|
3952
4719
|
readonly $ref: "#/components/schemas/Retry";
|
|
3953
4720
|
};
|
|
3954
4721
|
};
|
|
@@ -3959,21 +4726,26 @@ export declare const $NewWebsocketTrigger: {
|
|
|
3959
4726
|
readonly properties: {
|
|
3960
4727
|
readonly path: {
|
|
3961
4728
|
readonly type: "string";
|
|
4729
|
+
readonly description: "The unique path identifier for this trigger";
|
|
3962
4730
|
};
|
|
3963
4731
|
readonly script_path: {
|
|
3964
4732
|
readonly type: "string";
|
|
4733
|
+
readonly description: "Path to the script or flow to execute when a message is received";
|
|
3965
4734
|
};
|
|
3966
4735
|
readonly is_flow: {
|
|
3967
4736
|
readonly type: "boolean";
|
|
4737
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
3968
4738
|
};
|
|
3969
4739
|
readonly url: {
|
|
3970
4740
|
readonly type: "string";
|
|
4741
|
+
readonly description: "The WebSocket URL to connect to (can be a static URL or computed by a runnable)";
|
|
3971
4742
|
};
|
|
3972
4743
|
readonly mode: {
|
|
3973
4744
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
3974
4745
|
};
|
|
3975
4746
|
readonly filters: {
|
|
3976
4747
|
readonly type: "array";
|
|
4748
|
+
readonly description: "Array of key-value filters to match incoming messages (only matching messages trigger the script)";
|
|
3977
4749
|
readonly items: {
|
|
3978
4750
|
readonly type: "object";
|
|
3979
4751
|
readonly properties: {
|
|
@@ -3987,26 +4759,35 @@ export declare const $NewWebsocketTrigger: {
|
|
|
3987
4759
|
};
|
|
3988
4760
|
readonly initial_messages: {
|
|
3989
4761
|
readonly type: "array";
|
|
4762
|
+
readonly nullable: true;
|
|
4763
|
+
readonly description: "Messages to send immediately after connecting (can be raw strings or computed by runnables)";
|
|
3990
4764
|
readonly items: {
|
|
3991
4765
|
readonly $ref: "#/components/schemas/WebsocketTriggerInitialMessage";
|
|
3992
4766
|
};
|
|
3993
4767
|
};
|
|
3994
4768
|
readonly url_runnable_args: {
|
|
4769
|
+
readonly description: "Arguments to pass to the script/flow that computes the WebSocket URL";
|
|
4770
|
+
readonly nullable: true;
|
|
3995
4771
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
3996
4772
|
};
|
|
3997
4773
|
readonly can_return_message: {
|
|
3998
4774
|
readonly type: "boolean";
|
|
4775
|
+
readonly description: "If true, the script can return a message to send back through the WebSocket";
|
|
3999
4776
|
};
|
|
4000
4777
|
readonly can_return_error_result: {
|
|
4001
4778
|
readonly type: "boolean";
|
|
4779
|
+
readonly description: "If true, error results are sent back through the WebSocket";
|
|
4002
4780
|
};
|
|
4003
4781
|
readonly error_handler_path: {
|
|
4004
4782
|
readonly type: "string";
|
|
4783
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4005
4784
|
};
|
|
4006
4785
|
readonly error_handler_args: {
|
|
4786
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4007
4787
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
4008
4788
|
};
|
|
4009
4789
|
readonly retry: {
|
|
4790
|
+
readonly description: "Retry configuration for failed executions";
|
|
4010
4791
|
readonly $ref: "#/components/schemas/Retry";
|
|
4011
4792
|
};
|
|
4012
4793
|
};
|
|
@@ -4017,18 +4798,23 @@ export declare const $EditWebsocketTrigger: {
|
|
|
4017
4798
|
readonly properties: {
|
|
4018
4799
|
readonly url: {
|
|
4019
4800
|
readonly type: "string";
|
|
4801
|
+
readonly description: "The WebSocket URL to connect to (can be a static URL or computed by a runnable)";
|
|
4020
4802
|
};
|
|
4021
4803
|
readonly path: {
|
|
4022
4804
|
readonly type: "string";
|
|
4805
|
+
readonly description: "The unique path identifier for this trigger";
|
|
4023
4806
|
};
|
|
4024
4807
|
readonly script_path: {
|
|
4025
4808
|
readonly type: "string";
|
|
4809
|
+
readonly description: "Path to the script or flow to execute when a message is received";
|
|
4026
4810
|
};
|
|
4027
4811
|
readonly is_flow: {
|
|
4028
4812
|
readonly type: "boolean";
|
|
4813
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
4029
4814
|
};
|
|
4030
4815
|
readonly filters: {
|
|
4031
4816
|
readonly type: "array";
|
|
4817
|
+
readonly description: "Array of key-value filters to match incoming messages (only matching messages trigger the script)";
|
|
4032
4818
|
readonly items: {
|
|
4033
4819
|
readonly type: "object";
|
|
4034
4820
|
readonly properties: {
|
|
@@ -4042,26 +4828,35 @@ export declare const $EditWebsocketTrigger: {
|
|
|
4042
4828
|
};
|
|
4043
4829
|
readonly initial_messages: {
|
|
4044
4830
|
readonly type: "array";
|
|
4831
|
+
readonly nullable: true;
|
|
4832
|
+
readonly description: "Messages to send immediately after connecting (can be raw strings or computed by runnables)";
|
|
4045
4833
|
readonly items: {
|
|
4046
4834
|
readonly $ref: "#/components/schemas/WebsocketTriggerInitialMessage";
|
|
4047
4835
|
};
|
|
4048
4836
|
};
|
|
4049
4837
|
readonly url_runnable_args: {
|
|
4838
|
+
readonly description: "Arguments to pass to the script/flow that computes the WebSocket URL";
|
|
4839
|
+
readonly nullable: true;
|
|
4050
4840
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
4051
4841
|
};
|
|
4052
4842
|
readonly can_return_message: {
|
|
4053
4843
|
readonly type: "boolean";
|
|
4844
|
+
readonly description: "If true, the script can return a message to send back through the WebSocket";
|
|
4054
4845
|
};
|
|
4055
4846
|
readonly can_return_error_result: {
|
|
4056
4847
|
readonly type: "boolean";
|
|
4848
|
+
readonly description: "If true, error results are sent back through the WebSocket";
|
|
4057
4849
|
};
|
|
4058
4850
|
readonly error_handler_path: {
|
|
4059
4851
|
readonly type: "string";
|
|
4852
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4060
4853
|
};
|
|
4061
4854
|
readonly error_handler_args: {
|
|
4855
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4062
4856
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
4063
4857
|
};
|
|
4064
4858
|
readonly retry: {
|
|
4859
|
+
readonly description: "Retry configuration for failed executions";
|
|
4065
4860
|
readonly $ref: "#/components/schemas/Retry";
|
|
4066
4861
|
};
|
|
4067
4862
|
};
|
|
@@ -4148,43 +4943,59 @@ export declare const $MqttTrigger: {
|
|
|
4148
4943
|
readonly properties: {
|
|
4149
4944
|
readonly mqtt_resource_path: {
|
|
4150
4945
|
readonly type: "string";
|
|
4946
|
+
readonly description: "Path to the MQTT resource containing broker connection configuration";
|
|
4151
4947
|
};
|
|
4152
4948
|
readonly subscribe_topics: {
|
|
4153
4949
|
readonly type: "array";
|
|
4154
4950
|
readonly items: {
|
|
4155
4951
|
readonly $ref: "#/components/schemas/MqttSubscribeTopic";
|
|
4156
4952
|
};
|
|
4953
|
+
readonly description: "Array of MQTT topics to subscribe to, each with topic name and QoS level";
|
|
4157
4954
|
};
|
|
4158
4955
|
readonly v3_config: {
|
|
4159
4956
|
readonly $ref: "#/components/schemas/MqttV3Config";
|
|
4957
|
+
readonly nullable: true;
|
|
4958
|
+
readonly description: "MQTT v3 specific configuration (clean_session)";
|
|
4160
4959
|
};
|
|
4161
4960
|
readonly v5_config: {
|
|
4162
4961
|
readonly $ref: "#/components/schemas/MqttV5Config";
|
|
4962
|
+
readonly nullable: true;
|
|
4963
|
+
readonly description: "MQTT v5 specific configuration (clean_start, topic_alias_maximum, session_expiry_interval)";
|
|
4163
4964
|
};
|
|
4164
4965
|
readonly client_id: {
|
|
4165
4966
|
readonly type: "string";
|
|
4967
|
+
readonly nullable: true;
|
|
4968
|
+
readonly description: "MQTT client ID for this connection";
|
|
4166
4969
|
};
|
|
4167
4970
|
readonly client_version: {
|
|
4168
4971
|
readonly $ref: "#/components/schemas/MqttClientVersion";
|
|
4972
|
+
readonly nullable: true;
|
|
4973
|
+
readonly description: "MQTT protocol version ('v3' or 'v5')";
|
|
4169
4974
|
};
|
|
4170
4975
|
readonly server_id: {
|
|
4171
4976
|
readonly type: "string";
|
|
4977
|
+
readonly description: "ID of the server currently handling this trigger (internal)";
|
|
4172
4978
|
};
|
|
4173
4979
|
readonly last_server_ping: {
|
|
4174
4980
|
readonly type: "string";
|
|
4175
4981
|
readonly format: "date-time";
|
|
4982
|
+
readonly description: "Timestamp of last server heartbeat (internal)";
|
|
4176
4983
|
};
|
|
4177
4984
|
readonly error: {
|
|
4178
4985
|
readonly type: "string";
|
|
4986
|
+
readonly description: "Last error message if the trigger failed";
|
|
4179
4987
|
};
|
|
4180
4988
|
readonly error_handler_path: {
|
|
4181
4989
|
readonly type: "string";
|
|
4990
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4182
4991
|
};
|
|
4183
4992
|
readonly error_handler_args: {
|
|
4184
4993
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
4994
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4185
4995
|
};
|
|
4186
4996
|
readonly retry: {
|
|
4187
4997
|
readonly $ref: "#/components/schemas/Retry";
|
|
4998
|
+
readonly description: "Retry configuration for failed executions";
|
|
4188
4999
|
};
|
|
4189
5000
|
};
|
|
4190
5001
|
readonly required: readonly ["subscribe_topics", "mqtt_resource_path"];
|
|
@@ -4194,45 +5005,61 @@ export declare const $NewMqttTrigger: {
|
|
|
4194
5005
|
readonly properties: {
|
|
4195
5006
|
readonly mqtt_resource_path: {
|
|
4196
5007
|
readonly type: "string";
|
|
5008
|
+
readonly description: "Path to the MQTT resource containing broker connection configuration";
|
|
4197
5009
|
};
|
|
4198
5010
|
readonly subscribe_topics: {
|
|
4199
5011
|
readonly type: "array";
|
|
4200
5012
|
readonly items: {
|
|
4201
5013
|
readonly $ref: "#/components/schemas/MqttSubscribeTopic";
|
|
4202
5014
|
};
|
|
5015
|
+
readonly description: "Array of MQTT topics to subscribe to, each with topic name and QoS level";
|
|
4203
5016
|
};
|
|
4204
5017
|
readonly client_id: {
|
|
4205
5018
|
readonly type: "string";
|
|
5019
|
+
readonly nullable: true;
|
|
5020
|
+
readonly description: "MQTT client ID for this connection";
|
|
4206
5021
|
};
|
|
4207
5022
|
readonly v3_config: {
|
|
5023
|
+
readonly nullable: true;
|
|
4208
5024
|
readonly $ref: "#/components/schemas/MqttV3Config";
|
|
5025
|
+
readonly description: "MQTT v3 specific configuration (clean_session)";
|
|
4209
5026
|
};
|
|
4210
5027
|
readonly v5_config: {
|
|
5028
|
+
readonly nullable: true;
|
|
4211
5029
|
readonly $ref: "#/components/schemas/MqttV5Config";
|
|
5030
|
+
readonly description: "MQTT v5 specific configuration (clean_start, topic_alias_maximum, session_expiry_interval)";
|
|
4212
5031
|
};
|
|
4213
5032
|
readonly client_version: {
|
|
5033
|
+
readonly nullable: true;
|
|
4214
5034
|
readonly $ref: "#/components/schemas/MqttClientVersion";
|
|
5035
|
+
readonly description: "MQTT protocol version ('v3' or 'v5')";
|
|
4215
5036
|
};
|
|
4216
5037
|
readonly path: {
|
|
4217
5038
|
readonly type: "string";
|
|
5039
|
+
readonly description: "The unique path identifier for this trigger";
|
|
4218
5040
|
};
|
|
4219
5041
|
readonly script_path: {
|
|
4220
5042
|
readonly type: "string";
|
|
5043
|
+
readonly description: "Path to the script or flow to execute when a message is received";
|
|
4221
5044
|
};
|
|
4222
5045
|
readonly is_flow: {
|
|
4223
5046
|
readonly type: "boolean";
|
|
5047
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
4224
5048
|
};
|
|
4225
5049
|
readonly mode: {
|
|
4226
5050
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
4227
5051
|
};
|
|
4228
5052
|
readonly error_handler_path: {
|
|
4229
5053
|
readonly type: "string";
|
|
5054
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4230
5055
|
};
|
|
4231
5056
|
readonly error_handler_args: {
|
|
4232
5057
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5058
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4233
5059
|
};
|
|
4234
5060
|
readonly retry: {
|
|
4235
5061
|
readonly $ref: "#/components/schemas/Retry";
|
|
5062
|
+
readonly description: "Retry configuration for failed executions";
|
|
4236
5063
|
};
|
|
4237
5064
|
};
|
|
4238
5065
|
readonly required: readonly ["path", "script_path", "is_flow", "subscribe_topics", "mqtt_resource_path"];
|
|
@@ -4242,45 +5069,61 @@ export declare const $EditMqttTrigger: {
|
|
|
4242
5069
|
readonly properties: {
|
|
4243
5070
|
readonly mqtt_resource_path: {
|
|
4244
5071
|
readonly type: "string";
|
|
5072
|
+
readonly description: "Path to the MQTT resource containing broker connection configuration";
|
|
4245
5073
|
};
|
|
4246
5074
|
readonly subscribe_topics: {
|
|
4247
5075
|
readonly type: "array";
|
|
4248
5076
|
readonly items: {
|
|
4249
5077
|
readonly $ref: "#/components/schemas/MqttSubscribeTopic";
|
|
4250
5078
|
};
|
|
5079
|
+
readonly description: "Array of MQTT topics to subscribe to, each with topic name and QoS level";
|
|
4251
5080
|
};
|
|
4252
5081
|
readonly client_id: {
|
|
4253
5082
|
readonly type: "string";
|
|
5083
|
+
readonly nullable: true;
|
|
5084
|
+
readonly description: "MQTT client ID for this connection";
|
|
4254
5085
|
};
|
|
4255
5086
|
readonly v3_config: {
|
|
5087
|
+
readonly nullable: true;
|
|
4256
5088
|
readonly $ref: "#/components/schemas/MqttV3Config";
|
|
5089
|
+
readonly description: "MQTT v3 specific configuration (clean_session)";
|
|
4257
5090
|
};
|
|
4258
5091
|
readonly v5_config: {
|
|
5092
|
+
readonly nullable: true;
|
|
4259
5093
|
readonly $ref: "#/components/schemas/MqttV5Config";
|
|
5094
|
+
readonly description: "MQTT v5 specific configuration (clean_start, topic_alias_maximum, session_expiry_interval)";
|
|
4260
5095
|
};
|
|
4261
5096
|
readonly client_version: {
|
|
5097
|
+
readonly nullable: true;
|
|
4262
5098
|
readonly $ref: "#/components/schemas/MqttClientVersion";
|
|
5099
|
+
readonly description: "MQTT protocol version ('v3' or 'v5')";
|
|
4263
5100
|
};
|
|
4264
5101
|
readonly path: {
|
|
4265
5102
|
readonly type: "string";
|
|
5103
|
+
readonly description: "The unique path identifier for this trigger";
|
|
4266
5104
|
};
|
|
4267
5105
|
readonly script_path: {
|
|
4268
5106
|
readonly type: "string";
|
|
5107
|
+
readonly description: "Path to the script or flow to execute when a message is received";
|
|
4269
5108
|
};
|
|
4270
5109
|
readonly is_flow: {
|
|
4271
5110
|
readonly type: "boolean";
|
|
5111
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
4272
5112
|
};
|
|
4273
5113
|
readonly mode: {
|
|
4274
5114
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
4275
5115
|
};
|
|
4276
5116
|
readonly error_handler_path: {
|
|
4277
5117
|
readonly type: "string";
|
|
5118
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4278
5119
|
};
|
|
4279
5120
|
readonly error_handler_args: {
|
|
4280
5121
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5122
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4281
5123
|
};
|
|
4282
5124
|
readonly retry: {
|
|
4283
5125
|
readonly $ref: "#/components/schemas/Retry";
|
|
5126
|
+
readonly description: "Retry configuration for failed executions";
|
|
4284
5127
|
};
|
|
4285
5128
|
};
|
|
4286
5129
|
readonly required: readonly ["path", "script_path", "is_flow", "enabled", "subscribe_topics", "mqtt_resource_path"];
|
|
@@ -4288,15 +5131,19 @@ export declare const $EditMqttTrigger: {
|
|
|
4288
5131
|
export declare const $DeliveryType: {
|
|
4289
5132
|
readonly type: "string";
|
|
4290
5133
|
readonly enum: readonly ["push", "pull"];
|
|
5134
|
+
readonly description: "Delivery mode for messages. 'push' for HTTP push delivery where messages are sent to a webhook endpoint, 'pull' for polling where the trigger actively fetches messages.";
|
|
4291
5135
|
};
|
|
4292
5136
|
export declare const $PushConfig: {
|
|
4293
5137
|
readonly type: "object";
|
|
5138
|
+
readonly description: "Configuration for push delivery mode.";
|
|
4294
5139
|
readonly properties: {
|
|
4295
5140
|
readonly audience: {
|
|
4296
5141
|
readonly type: "string";
|
|
5142
|
+
readonly description: "The audience claim for OIDC tokens used in push authentication.";
|
|
4297
5143
|
};
|
|
4298
5144
|
readonly authenticate: {
|
|
4299
5145
|
readonly type: "boolean";
|
|
5146
|
+
readonly description: "If true, push messages will include OIDC authentication tokens.";
|
|
4300
5147
|
};
|
|
4301
5148
|
};
|
|
4302
5149
|
readonly required: readonly ["authenticate", "base_endpoint"];
|
|
@@ -4306,24 +5153,30 @@ export declare const $GcpTrigger: {
|
|
|
4306
5153
|
readonly $ref: "#/components/schemas/TriggerExtraProperty";
|
|
4307
5154
|
}];
|
|
4308
5155
|
readonly type: "object";
|
|
5156
|
+
readonly description: "A Google Cloud Pub/Sub trigger that executes a script or flow when messages are received.";
|
|
4309
5157
|
readonly properties: {
|
|
4310
5158
|
readonly gcp_resource_path: {
|
|
4311
5159
|
readonly type: "string";
|
|
5160
|
+
readonly description: "Path to the GCP resource containing service account credentials for authentication.";
|
|
4312
5161
|
};
|
|
4313
5162
|
readonly topic_id: {
|
|
4314
5163
|
readonly type: "string";
|
|
5164
|
+
readonly description: "Google Cloud Pub/Sub topic ID to subscribe to.";
|
|
4315
5165
|
};
|
|
4316
5166
|
readonly subscription_id: {
|
|
4317
5167
|
readonly type: "string";
|
|
5168
|
+
readonly description: "Google Cloud Pub/Sub subscription ID.";
|
|
4318
5169
|
};
|
|
4319
5170
|
readonly server_id: {
|
|
4320
5171
|
readonly type: "string";
|
|
5172
|
+
readonly description: "ID of the server currently handling this trigger (internal use).";
|
|
4321
5173
|
};
|
|
4322
5174
|
readonly delivery_type: {
|
|
4323
5175
|
readonly $ref: "#/components/schemas/DeliveryType";
|
|
4324
5176
|
};
|
|
4325
5177
|
readonly delivery_config: {
|
|
4326
5178
|
readonly $ref: "#/components/schemas/PushConfig";
|
|
5179
|
+
readonly nullable: true;
|
|
4327
5180
|
};
|
|
4328
5181
|
readonly subscription_mode: {
|
|
4329
5182
|
readonly $ref: "#/components/schemas/SubscriptionMode";
|
|
@@ -4331,18 +5184,23 @@ export declare const $GcpTrigger: {
|
|
|
4331
5184
|
readonly last_server_ping: {
|
|
4332
5185
|
readonly type: "string";
|
|
4333
5186
|
readonly format: "date-time";
|
|
5187
|
+
readonly description: "Timestamp of last server heartbeat (internal use).";
|
|
4334
5188
|
};
|
|
4335
5189
|
readonly error: {
|
|
4336
5190
|
readonly type: "string";
|
|
5191
|
+
readonly description: "Last error message if the trigger failed.";
|
|
4337
5192
|
};
|
|
4338
5193
|
readonly error_handler_path: {
|
|
4339
5194
|
readonly type: "string";
|
|
5195
|
+
readonly description: "Path to a script or flow to run when the triggered job fails.";
|
|
4340
5196
|
};
|
|
4341
5197
|
readonly error_handler_args: {
|
|
4342
5198
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5199
|
+
readonly description: "Arguments to pass to the error handler.";
|
|
4343
5200
|
};
|
|
4344
5201
|
readonly retry: {
|
|
4345
5202
|
readonly $ref: "#/components/schemas/Retry";
|
|
5203
|
+
readonly description: "Retry configuration for failed executions.";
|
|
4346
5204
|
};
|
|
4347
5205
|
};
|
|
4348
5206
|
readonly required: readonly ["gcp_resource_path", "topic_id", "subscription_id", "delivery_type", "subscription_mode"];
|
|
@@ -4354,42 +5212,52 @@ export declare const $SubscriptionMode: {
|
|
|
4354
5212
|
};
|
|
4355
5213
|
export declare const $GcpTriggerData: {
|
|
4356
5214
|
readonly type: "object";
|
|
5215
|
+
readonly description: "Data for creating or updating a Google Cloud Pub/Sub trigger.";
|
|
4357
5216
|
readonly properties: {
|
|
4358
5217
|
readonly gcp_resource_path: {
|
|
4359
5218
|
readonly type: "string";
|
|
5219
|
+
readonly description: "Path to the GCP resource containing service account credentials for authentication.";
|
|
4360
5220
|
};
|
|
4361
5221
|
readonly subscription_mode: {
|
|
4362
5222
|
readonly $ref: "#/components/schemas/SubscriptionMode";
|
|
4363
5223
|
};
|
|
4364
5224
|
readonly topic_id: {
|
|
4365
5225
|
readonly type: "string";
|
|
5226
|
+
readonly description: "Google Cloud Pub/Sub topic ID to subscribe to.";
|
|
4366
5227
|
};
|
|
4367
5228
|
readonly subscription_id: {
|
|
4368
5229
|
readonly type: "string";
|
|
5230
|
+
readonly description: "Google Cloud Pub/Sub subscription ID.";
|
|
4369
5231
|
};
|
|
4370
5232
|
readonly base_endpoint: {
|
|
4371
5233
|
readonly type: "string";
|
|
5234
|
+
readonly description: "Base URL for push delivery endpoint.";
|
|
4372
5235
|
};
|
|
4373
5236
|
readonly delivery_type: {
|
|
4374
5237
|
readonly $ref: "#/components/schemas/DeliveryType";
|
|
4375
5238
|
};
|
|
4376
5239
|
readonly delivery_config: {
|
|
5240
|
+
readonly nullable: true;
|
|
4377
5241
|
readonly $ref: "#/components/schemas/PushConfig";
|
|
4378
5242
|
};
|
|
4379
5243
|
readonly path: {
|
|
4380
5244
|
readonly type: "string";
|
|
5245
|
+
readonly description: "The unique path identifier for this trigger.";
|
|
4381
5246
|
};
|
|
4382
5247
|
readonly script_path: {
|
|
4383
5248
|
readonly type: "string";
|
|
5249
|
+
readonly description: "Path to the script or flow to execute when a message is received.";
|
|
4384
5250
|
};
|
|
4385
5251
|
readonly is_flow: {
|
|
4386
5252
|
readonly type: "boolean";
|
|
5253
|
+
readonly description: "True if script_path points to a flow, false if it points to a script.";
|
|
4387
5254
|
};
|
|
4388
5255
|
readonly mode: {
|
|
4389
5256
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
4390
5257
|
};
|
|
4391
5258
|
readonly auto_acknowledge_msg: {
|
|
4392
5259
|
readonly type: "boolean";
|
|
5260
|
+
readonly description: "If true, automatically acknowledge messages after processing.";
|
|
4393
5261
|
};
|
|
4394
5262
|
readonly ack_deadline: {
|
|
4395
5263
|
readonly type: "integer";
|
|
@@ -4400,12 +5268,15 @@ export declare const $GcpTriggerData: {
|
|
|
4400
5268
|
};
|
|
4401
5269
|
readonly error_handler_path: {
|
|
4402
5270
|
readonly type: "string";
|
|
5271
|
+
readonly description: "Path to a script or flow to run when the triggered job fails.";
|
|
4403
5272
|
};
|
|
4404
5273
|
readonly error_handler_args: {
|
|
4405
5274
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5275
|
+
readonly description: "Arguments to pass to the error handler.";
|
|
4406
5276
|
};
|
|
4407
5277
|
readonly retry: {
|
|
4408
5278
|
readonly $ref: "#/components/schemas/Retry";
|
|
5279
|
+
readonly description: "Retry configuration for failed executions.";
|
|
4409
5280
|
};
|
|
4410
5281
|
};
|
|
4411
5282
|
readonly required: readonly ["path", "script_path", "is_flow", "gcp_resource_path", "topic_id", "subscription_mode"];
|
|
@@ -4440,37 +5311,48 @@ export declare const $SqsTrigger: {
|
|
|
4440
5311
|
readonly properties: {
|
|
4441
5312
|
readonly queue_url: {
|
|
4442
5313
|
readonly type: "string";
|
|
5314
|
+
readonly description: "The full URL of the AWS SQS queue to poll for messages";
|
|
4443
5315
|
};
|
|
4444
5316
|
readonly aws_auth_resource_type: {
|
|
4445
5317
|
readonly $ref: "#/components/schemas/AwsAuthResourceType";
|
|
5318
|
+
readonly description: "Authentication type - 'credentials' for access key/secret, 'oidc' for OpenID Connect";
|
|
4446
5319
|
};
|
|
4447
5320
|
readonly aws_resource_path: {
|
|
4448
5321
|
readonly type: "string";
|
|
5322
|
+
readonly description: "Path to the AWS resource containing credentials or OIDC configuration";
|
|
4449
5323
|
};
|
|
4450
5324
|
readonly message_attributes: {
|
|
4451
5325
|
readonly type: "array";
|
|
5326
|
+
readonly nullable: true;
|
|
4452
5327
|
readonly items: {
|
|
4453
5328
|
readonly type: "string";
|
|
4454
5329
|
};
|
|
5330
|
+
readonly description: "Array of SQS message attribute names to include with each message";
|
|
4455
5331
|
};
|
|
4456
5332
|
readonly server_id: {
|
|
4457
5333
|
readonly type: "string";
|
|
5334
|
+
readonly description: "ID of the server currently handling this trigger (internal)";
|
|
4458
5335
|
};
|
|
4459
5336
|
readonly last_server_ping: {
|
|
4460
5337
|
readonly type: "string";
|
|
4461
5338
|
readonly format: "date-time";
|
|
5339
|
+
readonly description: "Timestamp of last server heartbeat (internal)";
|
|
4462
5340
|
};
|
|
4463
5341
|
readonly error: {
|
|
4464
5342
|
readonly type: "string";
|
|
5343
|
+
readonly description: "Last error message if the trigger failed";
|
|
4465
5344
|
};
|
|
4466
5345
|
readonly error_handler_path: {
|
|
4467
5346
|
readonly type: "string";
|
|
5347
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4468
5348
|
};
|
|
4469
5349
|
readonly error_handler_args: {
|
|
4470
5350
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5351
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4471
5352
|
};
|
|
4472
5353
|
readonly retry: {
|
|
4473
5354
|
readonly $ref: "#/components/schemas/Retry";
|
|
5355
|
+
readonly description: "Retry configuration for failed executions";
|
|
4474
5356
|
};
|
|
4475
5357
|
};
|
|
4476
5358
|
readonly required: readonly ["queue_url", "aws_resource_path", "aws_auth_resource_type"];
|
|
@@ -4534,39 +5416,50 @@ export declare const $NewSqsTrigger: {
|
|
|
4534
5416
|
readonly properties: {
|
|
4535
5417
|
readonly queue_url: {
|
|
4536
5418
|
readonly type: "string";
|
|
5419
|
+
readonly description: "The full URL of the AWS SQS queue to poll for messages";
|
|
4537
5420
|
};
|
|
4538
5421
|
readonly aws_auth_resource_type: {
|
|
4539
5422
|
readonly $ref: "#/components/schemas/AwsAuthResourceType";
|
|
5423
|
+
readonly description: "Authentication type - 'credentials' for access key/secret, 'oidc' for OpenID Connect";
|
|
4540
5424
|
};
|
|
4541
5425
|
readonly aws_resource_path: {
|
|
4542
5426
|
readonly type: "string";
|
|
5427
|
+
readonly description: "Path to the AWS resource containing credentials or OIDC configuration";
|
|
4543
5428
|
};
|
|
4544
5429
|
readonly message_attributes: {
|
|
4545
5430
|
readonly type: "array";
|
|
5431
|
+
readonly nullable: true;
|
|
4546
5432
|
readonly items: {
|
|
4547
5433
|
readonly type: "string";
|
|
4548
5434
|
};
|
|
5435
|
+
readonly description: "Array of SQS message attribute names to include with each message";
|
|
4549
5436
|
};
|
|
4550
5437
|
readonly path: {
|
|
4551
5438
|
readonly type: "string";
|
|
5439
|
+
readonly description: "The unique path identifier for this trigger";
|
|
4552
5440
|
};
|
|
4553
5441
|
readonly script_path: {
|
|
4554
5442
|
readonly type: "string";
|
|
5443
|
+
readonly description: "Path to the script or flow to execute when a message is received";
|
|
4555
5444
|
};
|
|
4556
5445
|
readonly is_flow: {
|
|
4557
5446
|
readonly type: "boolean";
|
|
5447
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
4558
5448
|
};
|
|
4559
5449
|
readonly mode: {
|
|
4560
5450
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
4561
5451
|
};
|
|
4562
5452
|
readonly error_handler_path: {
|
|
4563
5453
|
readonly type: "string";
|
|
5454
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4564
5455
|
};
|
|
4565
5456
|
readonly error_handler_args: {
|
|
4566
5457
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5458
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4567
5459
|
};
|
|
4568
5460
|
readonly retry: {
|
|
4569
5461
|
readonly $ref: "#/components/schemas/Retry";
|
|
5462
|
+
readonly description: "Retry configuration for failed executions";
|
|
4570
5463
|
};
|
|
4571
5464
|
};
|
|
4572
5465
|
readonly required: readonly ["queue_url", "aws_resource_path", "path", "script_path", "is_flow", "aws_auth_resource_type"];
|
|
@@ -4576,39 +5469,50 @@ export declare const $EditSqsTrigger: {
|
|
|
4576
5469
|
readonly properties: {
|
|
4577
5470
|
readonly queue_url: {
|
|
4578
5471
|
readonly type: "string";
|
|
5472
|
+
readonly description: "The full URL of the AWS SQS queue to poll for messages";
|
|
4579
5473
|
};
|
|
4580
5474
|
readonly aws_auth_resource_type: {
|
|
4581
5475
|
readonly $ref: "#/components/schemas/AwsAuthResourceType";
|
|
5476
|
+
readonly description: "Authentication type - 'credentials' for access key/secret, 'oidc' for OpenID Connect";
|
|
4582
5477
|
};
|
|
4583
5478
|
readonly aws_resource_path: {
|
|
4584
5479
|
readonly type: "string";
|
|
5480
|
+
readonly description: "Path to the AWS resource containing credentials or OIDC configuration";
|
|
4585
5481
|
};
|
|
4586
5482
|
readonly message_attributes: {
|
|
4587
5483
|
readonly type: "array";
|
|
5484
|
+
readonly nullable: true;
|
|
4588
5485
|
readonly items: {
|
|
4589
5486
|
readonly type: "string";
|
|
4590
5487
|
};
|
|
5488
|
+
readonly description: "Array of SQS message attribute names to include with each message";
|
|
4591
5489
|
};
|
|
4592
5490
|
readonly path: {
|
|
4593
5491
|
readonly type: "string";
|
|
5492
|
+
readonly description: "The unique path identifier for this trigger";
|
|
4594
5493
|
};
|
|
4595
5494
|
readonly script_path: {
|
|
4596
5495
|
readonly type: "string";
|
|
5496
|
+
readonly description: "Path to the script or flow to execute when a message is received";
|
|
4597
5497
|
};
|
|
4598
5498
|
readonly is_flow: {
|
|
4599
5499
|
readonly type: "boolean";
|
|
5500
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
4600
5501
|
};
|
|
4601
5502
|
readonly mode: {
|
|
4602
5503
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
4603
5504
|
};
|
|
4604
5505
|
readonly error_handler_path: {
|
|
4605
5506
|
readonly type: "string";
|
|
5507
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4606
5508
|
};
|
|
4607
5509
|
readonly error_handler_args: {
|
|
4608
5510
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5511
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4609
5512
|
};
|
|
4610
5513
|
readonly retry: {
|
|
4611
5514
|
readonly $ref: "#/components/schemas/Retry";
|
|
5515
|
+
readonly description: "Retry configuration for failed executions";
|
|
4612
5516
|
};
|
|
4613
5517
|
};
|
|
4614
5518
|
readonly required: readonly ["queue_url", "aws_resource_path", "path", "script_path", "is_flow", "enabled", "aws_auth_resource_type"];
|
|
@@ -4713,31 +5617,40 @@ export declare const $PostgresTrigger: {
|
|
|
4713
5617
|
readonly properties: {
|
|
4714
5618
|
readonly postgres_resource_path: {
|
|
4715
5619
|
readonly type: "string";
|
|
5620
|
+
readonly description: "Path to the PostgreSQL resource containing connection configuration";
|
|
4716
5621
|
};
|
|
4717
5622
|
readonly publication_name: {
|
|
4718
5623
|
readonly type: "string";
|
|
5624
|
+
readonly description: "Name of the PostgreSQL publication to subscribe to for change data capture";
|
|
4719
5625
|
};
|
|
4720
5626
|
readonly server_id: {
|
|
4721
5627
|
readonly type: "string";
|
|
5628
|
+
readonly description: "ID of the server currently handling this trigger (internal)";
|
|
4722
5629
|
};
|
|
4723
5630
|
readonly replication_slot_name: {
|
|
4724
5631
|
readonly type: "string";
|
|
5632
|
+
readonly description: "Name of the PostgreSQL logical replication slot to use";
|
|
4725
5633
|
};
|
|
4726
5634
|
readonly error: {
|
|
4727
5635
|
readonly type: "string";
|
|
5636
|
+
readonly description: "Last error message if the trigger failed";
|
|
4728
5637
|
};
|
|
4729
5638
|
readonly last_server_ping: {
|
|
4730
5639
|
readonly type: "string";
|
|
4731
5640
|
readonly format: "date-time";
|
|
5641
|
+
readonly description: "Timestamp of last server heartbeat (internal)";
|
|
4732
5642
|
};
|
|
4733
5643
|
readonly error_handler_path: {
|
|
4734
5644
|
readonly type: "string";
|
|
5645
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4735
5646
|
};
|
|
4736
5647
|
readonly error_handler_args: {
|
|
4737
5648
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5649
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4738
5650
|
};
|
|
4739
5651
|
readonly retry: {
|
|
4740
5652
|
readonly $ref: "#/components/schemas/Retry";
|
|
5653
|
+
readonly description: "Retry configuration for failed executions";
|
|
4741
5654
|
};
|
|
4742
5655
|
};
|
|
4743
5656
|
readonly required: readonly ["postgres_resource_path", "replication_slot_name", "publication_name"];
|
|
@@ -4747,36 +5660,46 @@ export declare const $NewPostgresTrigger: {
|
|
|
4747
5660
|
readonly properties: {
|
|
4748
5661
|
readonly replication_slot_name: {
|
|
4749
5662
|
readonly type: "string";
|
|
5663
|
+
readonly description: "Name of the PostgreSQL logical replication slot to use";
|
|
4750
5664
|
};
|
|
4751
5665
|
readonly publication_name: {
|
|
4752
5666
|
readonly type: "string";
|
|
5667
|
+
readonly description: "Name of the PostgreSQL publication to subscribe to for change data capture";
|
|
4753
5668
|
};
|
|
4754
5669
|
readonly path: {
|
|
4755
5670
|
readonly type: "string";
|
|
5671
|
+
readonly description: "The unique path identifier for this trigger";
|
|
4756
5672
|
};
|
|
4757
5673
|
readonly script_path: {
|
|
4758
5674
|
readonly type: "string";
|
|
5675
|
+
readonly description: "Path to the script or flow to execute when database changes are detected";
|
|
4759
5676
|
};
|
|
4760
5677
|
readonly is_flow: {
|
|
4761
5678
|
readonly type: "boolean";
|
|
5679
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
4762
5680
|
};
|
|
4763
5681
|
readonly mode: {
|
|
4764
5682
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
4765
5683
|
};
|
|
4766
5684
|
readonly postgres_resource_path: {
|
|
4767
5685
|
readonly type: "string";
|
|
5686
|
+
readonly description: "Path to the PostgreSQL resource containing connection configuration";
|
|
4768
5687
|
};
|
|
4769
5688
|
readonly publication: {
|
|
4770
5689
|
readonly $ref: "#/components/schemas/PublicationData";
|
|
5690
|
+
readonly description: "Configuration for creating/managing the publication (tables, operations)";
|
|
4771
5691
|
};
|
|
4772
5692
|
readonly error_handler_path: {
|
|
4773
5693
|
readonly type: "string";
|
|
5694
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4774
5695
|
};
|
|
4775
5696
|
readonly error_handler_args: {
|
|
4776
5697
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5698
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4777
5699
|
};
|
|
4778
5700
|
readonly retry: {
|
|
4779
5701
|
readonly $ref: "#/components/schemas/Retry";
|
|
5702
|
+
readonly description: "Retry configuration for failed executions";
|
|
4780
5703
|
};
|
|
4781
5704
|
};
|
|
4782
5705
|
readonly required: readonly ["path", "script_path", "is_flow", "enabled", "postgres_resource_path"];
|
|
@@ -4786,36 +5709,46 @@ export declare const $EditPostgresTrigger: {
|
|
|
4786
5709
|
readonly properties: {
|
|
4787
5710
|
readonly replication_slot_name: {
|
|
4788
5711
|
readonly type: "string";
|
|
5712
|
+
readonly description: "Name of the PostgreSQL logical replication slot to use";
|
|
4789
5713
|
};
|
|
4790
5714
|
readonly publication_name: {
|
|
4791
5715
|
readonly type: "string";
|
|
5716
|
+
readonly description: "Name of the PostgreSQL publication to subscribe to for change data capture";
|
|
4792
5717
|
};
|
|
4793
5718
|
readonly path: {
|
|
4794
5719
|
readonly type: "string";
|
|
5720
|
+
readonly description: "The unique path identifier for this trigger";
|
|
4795
5721
|
};
|
|
4796
5722
|
readonly script_path: {
|
|
4797
5723
|
readonly type: "string";
|
|
5724
|
+
readonly description: "Path to the script or flow to execute when database changes are detected";
|
|
4798
5725
|
};
|
|
4799
5726
|
readonly is_flow: {
|
|
4800
5727
|
readonly type: "boolean";
|
|
5728
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
4801
5729
|
};
|
|
4802
5730
|
readonly mode: {
|
|
4803
5731
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
4804
5732
|
};
|
|
4805
5733
|
readonly postgres_resource_path: {
|
|
4806
5734
|
readonly type: "string";
|
|
5735
|
+
readonly description: "Path to the PostgreSQL resource containing connection configuration";
|
|
4807
5736
|
};
|
|
4808
5737
|
readonly publication: {
|
|
4809
5738
|
readonly $ref: "#/components/schemas/PublicationData";
|
|
5739
|
+
readonly description: "Configuration for creating/managing the publication (tables, operations)";
|
|
4810
5740
|
};
|
|
4811
5741
|
readonly error_handler_path: {
|
|
4812
5742
|
readonly type: "string";
|
|
5743
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4813
5744
|
};
|
|
4814
5745
|
readonly error_handler_args: {
|
|
4815
5746
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5747
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4816
5748
|
};
|
|
4817
5749
|
readonly retry: {
|
|
4818
5750
|
readonly $ref: "#/components/schemas/Retry";
|
|
5751
|
+
readonly description: "Retry configuration for failed executions";
|
|
4819
5752
|
};
|
|
4820
5753
|
};
|
|
4821
5754
|
readonly required: readonly ["path", "script_path", "is_flow", "enabled", "postgres_resource_path", "publication_name", "replication_slot_name"];
|
|
@@ -4828,112 +5761,178 @@ export declare const $KafkaTrigger: {
|
|
|
4828
5761
|
readonly properties: {
|
|
4829
5762
|
readonly kafka_resource_path: {
|
|
4830
5763
|
readonly type: "string";
|
|
5764
|
+
readonly description: "Path to the Kafka resource containing connection configuration";
|
|
4831
5765
|
};
|
|
4832
5766
|
readonly group_id: {
|
|
4833
5767
|
readonly type: "string";
|
|
5768
|
+
readonly description: "Kafka consumer group ID for this trigger";
|
|
4834
5769
|
};
|
|
4835
5770
|
readonly topics: {
|
|
4836
5771
|
readonly type: "array";
|
|
4837
5772
|
readonly items: {
|
|
4838
5773
|
readonly type: "string";
|
|
4839
5774
|
};
|
|
5775
|
+
readonly description: "Array of Kafka topic names to subscribe to";
|
|
5776
|
+
};
|
|
5777
|
+
readonly filters: {
|
|
5778
|
+
readonly type: "array";
|
|
5779
|
+
readonly items: {
|
|
5780
|
+
readonly type: "object";
|
|
5781
|
+
readonly properties: {
|
|
5782
|
+
readonly key: {
|
|
5783
|
+
readonly type: "string";
|
|
5784
|
+
};
|
|
5785
|
+
readonly value: {};
|
|
5786
|
+
};
|
|
5787
|
+
readonly required: readonly ["key", "value"];
|
|
5788
|
+
};
|
|
4840
5789
|
};
|
|
4841
5790
|
readonly server_id: {
|
|
4842
5791
|
readonly type: "string";
|
|
5792
|
+
readonly description: "ID of the server currently handling this trigger (internal)";
|
|
4843
5793
|
};
|
|
4844
5794
|
readonly last_server_ping: {
|
|
4845
5795
|
readonly type: "string";
|
|
4846
5796
|
readonly format: "date-time";
|
|
5797
|
+
readonly description: "Timestamp of last server heartbeat (internal)";
|
|
4847
5798
|
};
|
|
4848
5799
|
readonly error: {
|
|
4849
5800
|
readonly type: "string";
|
|
5801
|
+
readonly description: "Last error message if the trigger failed";
|
|
4850
5802
|
};
|
|
4851
5803
|
readonly error_handler_path: {
|
|
4852
5804
|
readonly type: "string";
|
|
5805
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4853
5806
|
};
|
|
4854
5807
|
readonly error_handler_args: {
|
|
4855
5808
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5809
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4856
5810
|
};
|
|
4857
5811
|
readonly retry: {
|
|
4858
5812
|
readonly $ref: "#/components/schemas/Retry";
|
|
5813
|
+
readonly description: "Retry configuration for failed executions";
|
|
4859
5814
|
};
|
|
4860
5815
|
};
|
|
4861
|
-
readonly required: readonly ["kafka_resource_path", "group_id", "topics"];
|
|
5816
|
+
readonly required: readonly ["kafka_resource_path", "group_id", "topics", "filters"];
|
|
4862
5817
|
};
|
|
4863
5818
|
export declare const $NewKafkaTrigger: {
|
|
4864
5819
|
readonly type: "object";
|
|
4865
5820
|
readonly properties: {
|
|
4866
5821
|
readonly path: {
|
|
4867
5822
|
readonly type: "string";
|
|
5823
|
+
readonly description: "The unique path identifier for this trigger";
|
|
4868
5824
|
};
|
|
4869
5825
|
readonly script_path: {
|
|
4870
5826
|
readonly type: "string";
|
|
5827
|
+
readonly description: "Path to the script or flow to execute when a message is received";
|
|
4871
5828
|
};
|
|
4872
5829
|
readonly is_flow: {
|
|
4873
5830
|
readonly type: "boolean";
|
|
5831
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
4874
5832
|
};
|
|
4875
5833
|
readonly kafka_resource_path: {
|
|
4876
5834
|
readonly type: "string";
|
|
5835
|
+
readonly description: "Path to the Kafka resource containing connection configuration";
|
|
4877
5836
|
};
|
|
4878
5837
|
readonly group_id: {
|
|
4879
5838
|
readonly type: "string";
|
|
5839
|
+
readonly description: "Kafka consumer group ID for this trigger";
|
|
4880
5840
|
};
|
|
4881
5841
|
readonly topics: {
|
|
4882
5842
|
readonly type: "array";
|
|
4883
5843
|
readonly items: {
|
|
4884
5844
|
readonly type: "string";
|
|
4885
5845
|
};
|
|
5846
|
+
readonly description: "Array of Kafka topic names to subscribe to";
|
|
5847
|
+
};
|
|
5848
|
+
readonly filters: {
|
|
5849
|
+
readonly type: "array";
|
|
5850
|
+
readonly items: {
|
|
5851
|
+
readonly type: "object";
|
|
5852
|
+
readonly properties: {
|
|
5853
|
+
readonly key: {
|
|
5854
|
+
readonly type: "string";
|
|
5855
|
+
};
|
|
5856
|
+
readonly value: {};
|
|
5857
|
+
};
|
|
5858
|
+
readonly required: readonly ["key", "value"];
|
|
5859
|
+
};
|
|
4886
5860
|
};
|
|
4887
5861
|
readonly mode: {
|
|
4888
5862
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
4889
5863
|
};
|
|
4890
5864
|
readonly error_handler_path: {
|
|
4891
5865
|
readonly type: "string";
|
|
5866
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4892
5867
|
};
|
|
4893
5868
|
readonly error_handler_args: {
|
|
4894
5869
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5870
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4895
5871
|
};
|
|
4896
5872
|
readonly retry: {
|
|
4897
5873
|
readonly $ref: "#/components/schemas/Retry";
|
|
5874
|
+
readonly description: "Retry configuration for failed executions";
|
|
4898
5875
|
};
|
|
4899
5876
|
};
|
|
4900
|
-
readonly required: readonly ["path", "script_path", "is_flow", "kafka_resource_path", "group_id", "topics"];
|
|
5877
|
+
readonly required: readonly ["path", "script_path", "is_flow", "kafka_resource_path", "group_id", "topics", "filters"];
|
|
4901
5878
|
};
|
|
4902
5879
|
export declare const $EditKafkaTrigger: {
|
|
4903
5880
|
readonly type: "object";
|
|
4904
5881
|
readonly properties: {
|
|
4905
5882
|
readonly kafka_resource_path: {
|
|
4906
5883
|
readonly type: "string";
|
|
5884
|
+
readonly description: "Path to the Kafka resource containing connection configuration";
|
|
4907
5885
|
};
|
|
4908
5886
|
readonly group_id: {
|
|
4909
5887
|
readonly type: "string";
|
|
5888
|
+
readonly description: "Kafka consumer group ID for this trigger";
|
|
4910
5889
|
};
|
|
4911
5890
|
readonly topics: {
|
|
4912
5891
|
readonly type: "array";
|
|
4913
5892
|
readonly items: {
|
|
4914
5893
|
readonly type: "string";
|
|
4915
5894
|
};
|
|
5895
|
+
readonly description: "Array of Kafka topic names to subscribe to";
|
|
5896
|
+
};
|
|
5897
|
+
readonly filters: {
|
|
5898
|
+
readonly type: "array";
|
|
5899
|
+
readonly items: {
|
|
5900
|
+
readonly type: "object";
|
|
5901
|
+
readonly properties: {
|
|
5902
|
+
readonly key: {
|
|
5903
|
+
readonly type: "string";
|
|
5904
|
+
};
|
|
5905
|
+
readonly value: {};
|
|
5906
|
+
};
|
|
5907
|
+
readonly required: readonly ["key", "value"];
|
|
5908
|
+
};
|
|
4916
5909
|
};
|
|
4917
5910
|
readonly path: {
|
|
4918
5911
|
readonly type: "string";
|
|
5912
|
+
readonly description: "The unique path identifier for this trigger";
|
|
4919
5913
|
};
|
|
4920
5914
|
readonly script_path: {
|
|
4921
5915
|
readonly type: "string";
|
|
5916
|
+
readonly description: "Path to the script or flow to execute when a message is received";
|
|
4922
5917
|
};
|
|
4923
5918
|
readonly is_flow: {
|
|
4924
5919
|
readonly type: "boolean";
|
|
5920
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
4925
5921
|
};
|
|
4926
5922
|
readonly error_handler_path: {
|
|
4927
5923
|
readonly type: "string";
|
|
5924
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4928
5925
|
};
|
|
4929
5926
|
readonly error_handler_args: {
|
|
4930
5927
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5928
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4931
5929
|
};
|
|
4932
5930
|
readonly retry: {
|
|
4933
5931
|
readonly $ref: "#/components/schemas/Retry";
|
|
5932
|
+
readonly description: "Retry configuration for failed executions";
|
|
4934
5933
|
};
|
|
4935
5934
|
};
|
|
4936
|
-
readonly required: readonly ["path", "script_path", "kafka_resource_path", "group_id", "topics", "is_flow"];
|
|
5935
|
+
readonly required: readonly ["path", "script_path", "kafka_resource_path", "group_id", "topics", "filters", "is_flow"];
|
|
4937
5936
|
};
|
|
4938
5937
|
export declare const $NatsTrigger: {
|
|
4939
5938
|
readonly allOf: readonly [{
|
|
@@ -4943,40 +5942,53 @@ export declare const $NatsTrigger: {
|
|
|
4943
5942
|
readonly properties: {
|
|
4944
5943
|
readonly nats_resource_path: {
|
|
4945
5944
|
readonly type: "string";
|
|
5945
|
+
readonly description: "Path to the NATS resource containing connection configuration";
|
|
4946
5946
|
};
|
|
4947
5947
|
readonly use_jetstream: {
|
|
4948
5948
|
readonly type: "boolean";
|
|
5949
|
+
readonly description: "If true, uses NATS JetStream for durable message delivery";
|
|
4949
5950
|
};
|
|
4950
5951
|
readonly stream_name: {
|
|
4951
5952
|
readonly type: "string";
|
|
5953
|
+
readonly nullable: true;
|
|
5954
|
+
readonly description: "JetStream stream name (required when use_jetstream is true)";
|
|
4952
5955
|
};
|
|
4953
5956
|
readonly consumer_name: {
|
|
4954
5957
|
readonly type: "string";
|
|
5958
|
+
readonly nullable: true;
|
|
5959
|
+
readonly description: "JetStream consumer name (required when use_jetstream is true)";
|
|
4955
5960
|
};
|
|
4956
5961
|
readonly subjects: {
|
|
4957
5962
|
readonly type: "array";
|
|
4958
5963
|
readonly items: {
|
|
4959
5964
|
readonly type: "string";
|
|
4960
5965
|
};
|
|
5966
|
+
readonly description: "Array of NATS subjects to subscribe to";
|
|
4961
5967
|
};
|
|
4962
5968
|
readonly server_id: {
|
|
4963
5969
|
readonly type: "string";
|
|
5970
|
+
readonly description: "ID of the server currently handling this trigger (internal)";
|
|
4964
5971
|
};
|
|
4965
5972
|
readonly last_server_ping: {
|
|
4966
5973
|
readonly type: "string";
|
|
4967
5974
|
readonly format: "date-time";
|
|
5975
|
+
readonly description: "Timestamp of last server heartbeat (internal)";
|
|
4968
5976
|
};
|
|
4969
5977
|
readonly error: {
|
|
4970
5978
|
readonly type: "string";
|
|
5979
|
+
readonly description: "Last error message if the trigger failed";
|
|
4971
5980
|
};
|
|
4972
5981
|
readonly error_handler_path: {
|
|
4973
5982
|
readonly type: "string";
|
|
5983
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
4974
5984
|
};
|
|
4975
5985
|
readonly error_handler_args: {
|
|
4976
5986
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
5987
|
+
readonly description: "Arguments to pass to the error handler";
|
|
4977
5988
|
};
|
|
4978
5989
|
readonly retry: {
|
|
4979
5990
|
readonly $ref: "#/components/schemas/Retry";
|
|
5991
|
+
readonly description: "Retry configuration for failed executions";
|
|
4980
5992
|
};
|
|
4981
5993
|
};
|
|
4982
5994
|
readonly required: readonly ["nats_resource_path", "use_jetstream", "subjects"];
|
|
@@ -4986,42 +5998,55 @@ export declare const $NewNatsTrigger: {
|
|
|
4986
5998
|
readonly properties: {
|
|
4987
5999
|
readonly path: {
|
|
4988
6000
|
readonly type: "string";
|
|
6001
|
+
readonly description: "The unique path identifier for this trigger";
|
|
4989
6002
|
};
|
|
4990
6003
|
readonly script_path: {
|
|
4991
6004
|
readonly type: "string";
|
|
6005
|
+
readonly description: "Path to the script or flow to execute when a message is received";
|
|
4992
6006
|
};
|
|
4993
6007
|
readonly is_flow: {
|
|
4994
6008
|
readonly type: "boolean";
|
|
6009
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
4995
6010
|
};
|
|
4996
6011
|
readonly nats_resource_path: {
|
|
4997
6012
|
readonly type: "string";
|
|
6013
|
+
readonly description: "Path to the NATS resource containing connection configuration";
|
|
4998
6014
|
};
|
|
4999
6015
|
readonly use_jetstream: {
|
|
5000
6016
|
readonly type: "boolean";
|
|
6017
|
+
readonly description: "If true, uses NATS JetStream for durable message delivery";
|
|
5001
6018
|
};
|
|
5002
6019
|
readonly stream_name: {
|
|
5003
6020
|
readonly type: "string";
|
|
6021
|
+
readonly nullable: true;
|
|
6022
|
+
readonly description: "JetStream stream name (required when use_jetstream is true)";
|
|
5004
6023
|
};
|
|
5005
6024
|
readonly consumer_name: {
|
|
5006
6025
|
readonly type: "string";
|
|
6026
|
+
readonly nullable: true;
|
|
6027
|
+
readonly description: "JetStream consumer name (required when use_jetstream is true)";
|
|
5007
6028
|
};
|
|
5008
6029
|
readonly subjects: {
|
|
5009
6030
|
readonly type: "array";
|
|
5010
6031
|
readonly items: {
|
|
5011
6032
|
readonly type: "string";
|
|
5012
6033
|
};
|
|
6034
|
+
readonly description: "Array of NATS subjects to subscribe to";
|
|
5013
6035
|
};
|
|
5014
6036
|
readonly mode: {
|
|
5015
6037
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
5016
6038
|
};
|
|
5017
6039
|
readonly error_handler_path: {
|
|
5018
6040
|
readonly type: "string";
|
|
6041
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
5019
6042
|
};
|
|
5020
6043
|
readonly error_handler_args: {
|
|
5021
6044
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
6045
|
+
readonly description: "Arguments to pass to the error handler";
|
|
5022
6046
|
};
|
|
5023
6047
|
readonly retry: {
|
|
5024
6048
|
readonly $ref: "#/components/schemas/Retry";
|
|
6049
|
+
readonly description: "Retry configuration for failed executions";
|
|
5025
6050
|
};
|
|
5026
6051
|
};
|
|
5027
6052
|
readonly required: readonly ["path", "script_path", "is_flow", "nats_resource_path", "use_jetstream", "subjects"];
|
|
@@ -5031,39 +6056,52 @@ export declare const $EditNatsTrigger: {
|
|
|
5031
6056
|
readonly properties: {
|
|
5032
6057
|
readonly nats_resource_path: {
|
|
5033
6058
|
readonly type: "string";
|
|
6059
|
+
readonly description: "Path to the NATS resource containing connection configuration";
|
|
5034
6060
|
};
|
|
5035
6061
|
readonly use_jetstream: {
|
|
5036
6062
|
readonly type: "boolean";
|
|
6063
|
+
readonly description: "If true, uses NATS JetStream for durable message delivery";
|
|
5037
6064
|
};
|
|
5038
6065
|
readonly stream_name: {
|
|
5039
6066
|
readonly type: "string";
|
|
6067
|
+
readonly nullable: true;
|
|
6068
|
+
readonly description: "JetStream stream name (required when use_jetstream is true)";
|
|
5040
6069
|
};
|
|
5041
6070
|
readonly consumer_name: {
|
|
5042
6071
|
readonly type: "string";
|
|
6072
|
+
readonly nullable: true;
|
|
6073
|
+
readonly description: "JetStream consumer name (required when use_jetstream is true)";
|
|
5043
6074
|
};
|
|
5044
6075
|
readonly subjects: {
|
|
5045
6076
|
readonly type: "array";
|
|
5046
6077
|
readonly items: {
|
|
5047
6078
|
readonly type: "string";
|
|
5048
6079
|
};
|
|
6080
|
+
readonly description: "Array of NATS subjects to subscribe to";
|
|
5049
6081
|
};
|
|
5050
6082
|
readonly path: {
|
|
5051
6083
|
readonly type: "string";
|
|
6084
|
+
readonly description: "The unique path identifier for this trigger";
|
|
5052
6085
|
};
|
|
5053
6086
|
readonly script_path: {
|
|
5054
6087
|
readonly type: "string";
|
|
6088
|
+
readonly description: "Path to the script or flow to execute when a message is received";
|
|
5055
6089
|
};
|
|
5056
6090
|
readonly is_flow: {
|
|
5057
6091
|
readonly type: "boolean";
|
|
6092
|
+
readonly description: "True if script_path points to a flow, false if it points to a script";
|
|
5058
6093
|
};
|
|
5059
6094
|
readonly error_handler_path: {
|
|
5060
6095
|
readonly type: "string";
|
|
6096
|
+
readonly description: "Path to a script or flow to run when the triggered job fails";
|
|
5061
6097
|
};
|
|
5062
6098
|
readonly error_handler_args: {
|
|
5063
6099
|
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
6100
|
+
readonly description: "Arguments to pass to the error handler";
|
|
5064
6101
|
};
|
|
5065
6102
|
readonly retry: {
|
|
5066
6103
|
readonly $ref: "#/components/schemas/Retry";
|
|
6104
|
+
readonly description: "Retry configuration for failed executions";
|
|
5067
6105
|
};
|
|
5068
6106
|
};
|
|
5069
6107
|
readonly required: readonly ["path", "script_path", "nats_resource_path", "use_jetstream", "subjects", "is_flow"];
|
|
@@ -5334,6 +6372,9 @@ export declare const $WorkerPing: {
|
|
|
5334
6372
|
readonly job_isolation: {
|
|
5335
6373
|
readonly type: "string";
|
|
5336
6374
|
};
|
|
6375
|
+
readonly native_mode: {
|
|
6376
|
+
readonly type: "boolean";
|
|
6377
|
+
};
|
|
5337
6378
|
};
|
|
5338
6379
|
readonly required: readonly ["worker", "worker_instance", "ping_at", "started_at", "ip", "jobs_executed", "worker_group", "wm_version"];
|
|
5339
6380
|
};
|
|
@@ -5889,9 +6930,7 @@ export declare const $AppWithLastVersion: {
|
|
|
5889
6930
|
readonly type: "string";
|
|
5890
6931
|
readonly format: "date-time";
|
|
5891
6932
|
};
|
|
5892
|
-
readonly value: {
|
|
5893
|
-
readonly type: "object";
|
|
5894
|
-
};
|
|
6933
|
+
readonly value: {};
|
|
5895
6934
|
readonly policy: {
|
|
5896
6935
|
readonly $ref: "#/components/schemas/Policy";
|
|
5897
6936
|
};
|
|
@@ -5908,8 +6947,14 @@ export declare const $AppWithLastVersion: {
|
|
|
5908
6947
|
readonly custom_path: {
|
|
5909
6948
|
readonly type: "string";
|
|
5910
6949
|
};
|
|
6950
|
+
readonly raw_app: {
|
|
6951
|
+
readonly type: "boolean";
|
|
6952
|
+
};
|
|
6953
|
+
readonly bundle_secret: {
|
|
6954
|
+
readonly type: "string";
|
|
6955
|
+
};
|
|
5911
6956
|
};
|
|
5912
|
-
readonly required: readonly ["id", "workspace_id", "path", "summary", "versions", "created_by", "created_at", "value", "policy", "execution_mode", "extra_perms"];
|
|
6957
|
+
readonly required: readonly ["id", "workspace_id", "path", "summary", "versions", "created_by", "created_at", "value", "policy", "execution_mode", "extra_perms", "raw_app"];
|
|
5913
6958
|
};
|
|
5914
6959
|
export declare const $AppWithLastVersionWDraft: {
|
|
5915
6960
|
readonly allOf: readonly [{
|
|
@@ -6098,6 +7143,9 @@ export declare const $DucklakeSettings: {
|
|
|
6098
7143
|
};
|
|
6099
7144
|
readonly required: readonly ["path"];
|
|
6100
7145
|
};
|
|
7146
|
+
readonly extra_args: {
|
|
7147
|
+
readonly type: "string";
|
|
7148
|
+
};
|
|
6101
7149
|
};
|
|
6102
7150
|
};
|
|
6103
7151
|
};
|
|
@@ -6131,6 +7179,34 @@ export declare const $DataTableSettings: {
|
|
|
6131
7179
|
};
|
|
6132
7180
|
};
|
|
6133
7181
|
};
|
|
7182
|
+
export declare const $DataTableSchema: {
|
|
7183
|
+
readonly type: "object";
|
|
7184
|
+
readonly required: readonly ["datatable_name", "schemas"];
|
|
7185
|
+
readonly properties: {
|
|
7186
|
+
readonly datatable_name: {
|
|
7187
|
+
readonly type: "string";
|
|
7188
|
+
};
|
|
7189
|
+
readonly schemas: {
|
|
7190
|
+
readonly type: "object";
|
|
7191
|
+
readonly description: "Hierarchical schema: schema_name -> table_name -> column_name -> compact_type (e.g. 'int4', 'text?', 'int4?=0')";
|
|
7192
|
+
readonly additionalProperties: {
|
|
7193
|
+
readonly type: "object";
|
|
7194
|
+
readonly description: "Tables in this schema";
|
|
7195
|
+
readonly additionalProperties: {
|
|
7196
|
+
readonly type: "object";
|
|
7197
|
+
readonly description: "Columns in this table";
|
|
7198
|
+
readonly additionalProperties: {
|
|
7199
|
+
readonly type: "string";
|
|
7200
|
+
readonly description: "Compact type: 'type[?][=default]' where ? means nullable";
|
|
7201
|
+
};
|
|
7202
|
+
};
|
|
7203
|
+
};
|
|
7204
|
+
};
|
|
7205
|
+
readonly error: {
|
|
7206
|
+
readonly type: "string";
|
|
7207
|
+
};
|
|
7208
|
+
};
|
|
7209
|
+
};
|
|
6134
7210
|
export declare const $DynamicInputData: {
|
|
6135
7211
|
readonly type: "object";
|
|
6136
7212
|
readonly properties: {
|
|
@@ -6510,11 +7586,28 @@ export declare const $GlobalSetting: {
|
|
|
6510
7586
|
readonly name: {
|
|
6511
7587
|
readonly type: "string";
|
|
6512
7588
|
};
|
|
6513
|
-
readonly value: {
|
|
7589
|
+
readonly value: {};
|
|
7590
|
+
};
|
|
7591
|
+
readonly required: readonly ["name", "value"];
|
|
7592
|
+
};
|
|
7593
|
+
export declare const $InstanceConfig: {
|
|
7594
|
+
readonly type: "object";
|
|
7595
|
+
readonly description: "Unified instance configuration combining global settings and worker group configs";
|
|
7596
|
+
readonly properties: {
|
|
7597
|
+
readonly global_settings: {
|
|
7598
|
+
readonly type: "object";
|
|
7599
|
+
readonly description: "Global settings keyed by setting name. Known fields include base_url, license_key, retention_period_secs, smtp_settings, otel, etc. Unknown fields are preserved as-is.\n";
|
|
7600
|
+
readonly additionalProperties: true;
|
|
7601
|
+
};
|
|
7602
|
+
readonly worker_configs: {
|
|
6514
7603
|
readonly type: "object";
|
|
7604
|
+
readonly description: "Worker group configurations keyed by group name (e.g. \"default\", \"gpu\"). Each value contains worker_tags, init_bash, autoscaling, etc.\n";
|
|
7605
|
+
readonly additionalProperties: {
|
|
7606
|
+
readonly type: "object";
|
|
7607
|
+
readonly additionalProperties: true;
|
|
7608
|
+
};
|
|
6515
7609
|
};
|
|
6516
7610
|
};
|
|
6517
|
-
readonly required: readonly ["name", "value"];
|
|
6518
7611
|
};
|
|
6519
7612
|
export declare const $Config: {
|
|
6520
7613
|
readonly type: "object";
|
|
@@ -6749,7 +7842,7 @@ export declare const $WorkspaceItemDiff: {
|
|
|
6749
7842
|
readonly properties: {
|
|
6750
7843
|
readonly kind: {
|
|
6751
7844
|
readonly type: "string";
|
|
6752
|
-
readonly enum: readonly ["script", "flow", "app", "resource", "variable"];
|
|
7845
|
+
readonly enum: readonly ["script", "flow", "app", "resource", "variable", "resource_type"];
|
|
6753
7846
|
readonly description: "Type of the item";
|
|
6754
7847
|
};
|
|
6755
7848
|
readonly path: {
|
|
@@ -6780,7 +7873,7 @@ export declare const $WorkspaceItemDiff: {
|
|
|
6780
7873
|
};
|
|
6781
7874
|
export declare const $CompareSummary: {
|
|
6782
7875
|
readonly type: "object";
|
|
6783
|
-
readonly required: readonly ["total_diffs", "total_ahead", "total_behind", "scripts_changed", "flows_changed", "apps_changed", "resources_changed", "variables_changed", "conflicts"];
|
|
7876
|
+
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"];
|
|
6784
7877
|
readonly properties: {
|
|
6785
7878
|
readonly total_diffs: {
|
|
6786
7879
|
readonly type: "integer";
|
|
@@ -6814,6 +7907,14 @@ export declare const $CompareSummary: {
|
|
|
6814
7907
|
readonly type: "integer";
|
|
6815
7908
|
readonly description: "Number of variables with differences";
|
|
6816
7909
|
};
|
|
7910
|
+
readonly resource_types_changed: {
|
|
7911
|
+
readonly type: "integer";
|
|
7912
|
+
readonly description: "Number of resource types with differences";
|
|
7913
|
+
};
|
|
7914
|
+
readonly folders_changed: {
|
|
7915
|
+
readonly type: "integer";
|
|
7916
|
+
readonly description: "Number of folders with differences";
|
|
7917
|
+
};
|
|
6817
7918
|
readonly conflicts: {
|
|
6818
7919
|
readonly type: "integer";
|
|
6819
7920
|
readonly description: "Number of items that are both ahead and behind (conflicts)";
|
|
@@ -6972,11 +8073,12 @@ export declare const $TeamsChannel: {
|
|
|
6972
8073
|
};
|
|
6973
8074
|
export declare const $AssetUsageKind: {
|
|
6974
8075
|
readonly type: "string";
|
|
6975
|
-
readonly enum: readonly ["script", "flow"];
|
|
8076
|
+
readonly enum: readonly ["script", "flow", "job"];
|
|
6976
8077
|
};
|
|
6977
8078
|
export declare const $AssetUsageAccessType: {
|
|
6978
8079
|
readonly type: "string";
|
|
6979
8080
|
readonly enum: readonly ["r", "w", "rw"];
|
|
8081
|
+
readonly nullable: true;
|
|
6980
8082
|
};
|
|
6981
8083
|
export declare const $AssetKind: {
|
|
6982
8084
|
readonly type: "string";
|
|
@@ -6994,3 +8096,340 @@ export declare const $Asset: {
|
|
|
6994
8096
|
};
|
|
6995
8097
|
readonly required: readonly ["path", "kind"];
|
|
6996
8098
|
};
|
|
8099
|
+
export declare const $ProtectionRuleset: {
|
|
8100
|
+
readonly type: "object";
|
|
8101
|
+
readonly description: "A workspace protection rule defining restrictions and bypass permissions";
|
|
8102
|
+
readonly required: readonly ["name", "rules", "bypass_groups", "bypass_users"];
|
|
8103
|
+
readonly properties: {
|
|
8104
|
+
readonly name: {
|
|
8105
|
+
readonly type: "string";
|
|
8106
|
+
readonly description: "Unique name for the protection rule";
|
|
8107
|
+
readonly example: "Production Protection";
|
|
8108
|
+
};
|
|
8109
|
+
readonly workspace_id: {
|
|
8110
|
+
readonly type: "string";
|
|
8111
|
+
};
|
|
8112
|
+
readonly rules: {
|
|
8113
|
+
readonly $ref: "#/components/schemas/ProtectionRules";
|
|
8114
|
+
};
|
|
8115
|
+
readonly bypass_groups: {
|
|
8116
|
+
readonly $ref: "#/components/schemas/RuleBypasserGroups";
|
|
8117
|
+
};
|
|
8118
|
+
readonly bypass_users: {
|
|
8119
|
+
readonly $ref: "#/components/schemas/RuleBypasserUsers";
|
|
8120
|
+
};
|
|
8121
|
+
};
|
|
8122
|
+
};
|
|
8123
|
+
export declare const $ProtectionRules: {
|
|
8124
|
+
readonly type: "array";
|
|
8125
|
+
readonly description: "Configuration of protection restrictions";
|
|
8126
|
+
readonly items: {
|
|
8127
|
+
readonly $ref: "#/components/schemas/ProtectionRuleKind";
|
|
8128
|
+
};
|
|
8129
|
+
};
|
|
8130
|
+
export declare const $ProtectionRuleKind: {
|
|
8131
|
+
readonly type: "string";
|
|
8132
|
+
readonly enum: readonly ["DisableDirectDeployment", "DisableWorkspaceForking"];
|
|
8133
|
+
};
|
|
8134
|
+
export declare const $RuleBypasserGroups: {
|
|
8135
|
+
readonly type: "array";
|
|
8136
|
+
readonly description: "Groups that can bypass this ruleset";
|
|
8137
|
+
readonly items: {
|
|
8138
|
+
readonly type: "string";
|
|
8139
|
+
};
|
|
8140
|
+
};
|
|
8141
|
+
export declare const $RuleBypasserUsers: {
|
|
8142
|
+
readonly type: "array";
|
|
8143
|
+
readonly description: "Users that can bypass this ruleset";
|
|
8144
|
+
readonly items: {
|
|
8145
|
+
readonly type: "string";
|
|
8146
|
+
};
|
|
8147
|
+
};
|
|
8148
|
+
export declare const $NativeServiceName: {
|
|
8149
|
+
readonly type: "string";
|
|
8150
|
+
readonly enum: readonly ["nextcloud", "google"];
|
|
8151
|
+
};
|
|
8152
|
+
export declare const $NativeTrigger: {
|
|
8153
|
+
readonly type: "object";
|
|
8154
|
+
readonly description: "A native trigger stored in Windmill";
|
|
8155
|
+
readonly properties: {
|
|
8156
|
+
readonly external_id: {
|
|
8157
|
+
readonly type: "string";
|
|
8158
|
+
readonly description: "The unique identifier from the external service";
|
|
8159
|
+
};
|
|
8160
|
+
readonly workspace_id: {
|
|
8161
|
+
readonly type: "string";
|
|
8162
|
+
readonly description: "The workspace this trigger belongs to";
|
|
8163
|
+
};
|
|
8164
|
+
readonly service_name: {
|
|
8165
|
+
readonly $ref: "#/components/schemas/NativeServiceName";
|
|
8166
|
+
};
|
|
8167
|
+
readonly script_path: {
|
|
8168
|
+
readonly type: "string";
|
|
8169
|
+
readonly description: "The path to the script or flow that will be triggered";
|
|
8170
|
+
};
|
|
8171
|
+
readonly is_flow: {
|
|
8172
|
+
readonly type: "boolean";
|
|
8173
|
+
readonly description: "Whether the trigger targets a flow (true) or a script (false)";
|
|
8174
|
+
};
|
|
8175
|
+
readonly service_config: {
|
|
8176
|
+
readonly type: "object";
|
|
8177
|
+
readonly description: "Configuration for the trigger including event_type and service_config";
|
|
8178
|
+
readonly additionalProperties: true;
|
|
8179
|
+
};
|
|
8180
|
+
readonly error: {
|
|
8181
|
+
readonly type: "string";
|
|
8182
|
+
readonly nullable: true;
|
|
8183
|
+
readonly description: "Error message if the trigger is in an error state";
|
|
8184
|
+
};
|
|
8185
|
+
};
|
|
8186
|
+
readonly required: readonly ["external_id", "workspace_id", "service_name", "script_path", "is_flow", "service_config"];
|
|
8187
|
+
};
|
|
8188
|
+
export declare const $NativeTriggerWithExternal: {
|
|
8189
|
+
readonly type: "object";
|
|
8190
|
+
readonly description: "Full trigger response containing both Windmill data and external service data";
|
|
8191
|
+
readonly properties: {
|
|
8192
|
+
readonly external_id: {
|
|
8193
|
+
readonly type: "string";
|
|
8194
|
+
readonly description: "The unique identifier from the external service";
|
|
8195
|
+
};
|
|
8196
|
+
readonly workspace_id: {
|
|
8197
|
+
readonly type: "string";
|
|
8198
|
+
readonly description: "The workspace this trigger belongs to";
|
|
8199
|
+
};
|
|
8200
|
+
readonly service_name: {
|
|
8201
|
+
readonly $ref: "#/components/schemas/NativeServiceName";
|
|
8202
|
+
};
|
|
8203
|
+
readonly script_path: {
|
|
8204
|
+
readonly type: "string";
|
|
8205
|
+
readonly description: "The path to the script or flow that will be triggered";
|
|
8206
|
+
};
|
|
8207
|
+
readonly is_flow: {
|
|
8208
|
+
readonly type: "boolean";
|
|
8209
|
+
readonly description: "Whether the trigger targets a flow (true) or a script (false)";
|
|
8210
|
+
};
|
|
8211
|
+
readonly service_config: {
|
|
8212
|
+
readonly type: "object";
|
|
8213
|
+
readonly description: "Configuration for the trigger including event_type and service_config";
|
|
8214
|
+
readonly additionalProperties: true;
|
|
8215
|
+
};
|
|
8216
|
+
readonly error: {
|
|
8217
|
+
readonly type: "string";
|
|
8218
|
+
readonly nullable: true;
|
|
8219
|
+
readonly description: "Error message if the trigger is in an error state";
|
|
8220
|
+
};
|
|
8221
|
+
readonly external_data: {
|
|
8222
|
+
readonly type: "object";
|
|
8223
|
+
readonly description: "Configuration data from the external service";
|
|
8224
|
+
readonly additionalProperties: true;
|
|
8225
|
+
};
|
|
8226
|
+
};
|
|
8227
|
+
readonly required: readonly ["external_id", "workspace_id", "service_name", "script_path", "is_flow", "service_config", "external_data"];
|
|
8228
|
+
};
|
|
8229
|
+
export declare const $WorkspaceIntegrations: {
|
|
8230
|
+
readonly type: "object";
|
|
8231
|
+
readonly properties: {
|
|
8232
|
+
readonly service_name: {
|
|
8233
|
+
readonly $ref: "#/components/schemas/NativeServiceName";
|
|
8234
|
+
};
|
|
8235
|
+
readonly oauth_data: {
|
|
8236
|
+
readonly nullable: true;
|
|
8237
|
+
readonly $ref: "#/components/schemas/WorkspaceOAuthConfig";
|
|
8238
|
+
};
|
|
8239
|
+
readonly resource_path: {
|
|
8240
|
+
readonly type: "string";
|
|
8241
|
+
readonly nullable: true;
|
|
8242
|
+
readonly description: "Path to the resource storing the OAuth token";
|
|
8243
|
+
};
|
|
8244
|
+
};
|
|
8245
|
+
readonly required: readonly ["service_name"];
|
|
8246
|
+
};
|
|
8247
|
+
export declare const $WorkspaceOAuthConfig: {
|
|
8248
|
+
readonly type: "object";
|
|
8249
|
+
readonly properties: {
|
|
8250
|
+
readonly client_id: {
|
|
8251
|
+
readonly type: "string";
|
|
8252
|
+
readonly description: "The OAuth client ID for the workspace";
|
|
8253
|
+
};
|
|
8254
|
+
readonly client_secret: {
|
|
8255
|
+
readonly type: "string";
|
|
8256
|
+
readonly description: "The OAuth client secret for the workspace";
|
|
8257
|
+
};
|
|
8258
|
+
readonly base_url: {
|
|
8259
|
+
readonly type: "string";
|
|
8260
|
+
readonly format: "uri";
|
|
8261
|
+
readonly description: "The base URL of the workspace";
|
|
8262
|
+
};
|
|
8263
|
+
readonly redirect_uri: {
|
|
8264
|
+
readonly type: "string";
|
|
8265
|
+
readonly format: "uri";
|
|
8266
|
+
readonly description: "The OAuth redirect URI";
|
|
8267
|
+
};
|
|
8268
|
+
};
|
|
8269
|
+
readonly required: readonly ["client_id", "client_secret", "base_url", "redirect_uri"];
|
|
8270
|
+
};
|
|
8271
|
+
export declare const $WebhookEvent: {
|
|
8272
|
+
readonly type: "object";
|
|
8273
|
+
readonly properties: {
|
|
8274
|
+
readonly type: {
|
|
8275
|
+
readonly type: "string";
|
|
8276
|
+
readonly enum: readonly ["webhook"];
|
|
8277
|
+
};
|
|
8278
|
+
readonly request_type: {
|
|
8279
|
+
readonly $ref: "#/components/schemas/WebhookRequestType";
|
|
8280
|
+
};
|
|
8281
|
+
};
|
|
8282
|
+
readonly required: readonly ["type", "request_type"];
|
|
8283
|
+
};
|
|
8284
|
+
export declare const $WebhookRequestType: {
|
|
8285
|
+
readonly type: "string";
|
|
8286
|
+
readonly description: "The type of webhook request (define possible values here)";
|
|
8287
|
+
readonly enum: readonly ["async", "sync"];
|
|
8288
|
+
};
|
|
8289
|
+
export declare const $RedirectUri: {
|
|
8290
|
+
readonly type: "object";
|
|
8291
|
+
readonly properties: {
|
|
8292
|
+
readonly redirect_uri: {
|
|
8293
|
+
readonly type: "string";
|
|
8294
|
+
};
|
|
8295
|
+
};
|
|
8296
|
+
readonly required: readonly ["redirect_uri"];
|
|
8297
|
+
};
|
|
8298
|
+
export declare const $NativeTriggerData: {
|
|
8299
|
+
readonly type: "object";
|
|
8300
|
+
readonly description: "Data for creating or updating a native trigger";
|
|
8301
|
+
readonly properties: {
|
|
8302
|
+
readonly script_path: {
|
|
8303
|
+
readonly type: "string";
|
|
8304
|
+
readonly description: "The path to the script or flow that will be triggered";
|
|
8305
|
+
};
|
|
8306
|
+
readonly is_flow: {
|
|
8307
|
+
readonly type: "boolean";
|
|
8308
|
+
readonly description: "Whether the trigger targets a flow (true) or a script (false)";
|
|
8309
|
+
};
|
|
8310
|
+
readonly service_config: {
|
|
8311
|
+
readonly type: "object";
|
|
8312
|
+
readonly description: "Service-specific configuration (e.g., event types, filters)";
|
|
8313
|
+
readonly additionalProperties: true;
|
|
8314
|
+
};
|
|
8315
|
+
};
|
|
8316
|
+
readonly required: readonly ["script_path", "is_flow", "service_config"];
|
|
8317
|
+
};
|
|
8318
|
+
export declare const $CreateTriggerResponse: {
|
|
8319
|
+
readonly type: "object";
|
|
8320
|
+
readonly description: "Response returned when a native trigger is created";
|
|
8321
|
+
readonly properties: {
|
|
8322
|
+
readonly external_id: {
|
|
8323
|
+
readonly type: "string";
|
|
8324
|
+
readonly description: "The external ID of the created trigger from the external service";
|
|
8325
|
+
};
|
|
8326
|
+
};
|
|
8327
|
+
readonly required: readonly ["external_id"];
|
|
8328
|
+
};
|
|
8329
|
+
export declare const $SyncResult: {
|
|
8330
|
+
readonly type: "object";
|
|
8331
|
+
readonly properties: {
|
|
8332
|
+
readonly already_in_sync: {
|
|
8333
|
+
readonly type: "boolean";
|
|
8334
|
+
};
|
|
8335
|
+
readonly added_count: {
|
|
8336
|
+
readonly type: "integer";
|
|
8337
|
+
};
|
|
8338
|
+
readonly added_triggers: {
|
|
8339
|
+
readonly type: "array";
|
|
8340
|
+
readonly items: {
|
|
8341
|
+
readonly type: "string";
|
|
8342
|
+
};
|
|
8343
|
+
};
|
|
8344
|
+
readonly total_external: {
|
|
8345
|
+
readonly type: "integer";
|
|
8346
|
+
};
|
|
8347
|
+
readonly total_windmill: {
|
|
8348
|
+
readonly type: "integer";
|
|
8349
|
+
};
|
|
8350
|
+
};
|
|
8351
|
+
readonly required: readonly ["already_in_sync", "added_count", "added_triggers", "total_external", "total_windmill"];
|
|
8352
|
+
};
|
|
8353
|
+
export declare const $NextCloudEventType: {
|
|
8354
|
+
readonly type: "object";
|
|
8355
|
+
readonly properties: {
|
|
8356
|
+
readonly id: {
|
|
8357
|
+
readonly type: "string";
|
|
8358
|
+
};
|
|
8359
|
+
readonly name: {
|
|
8360
|
+
readonly type: "string";
|
|
8361
|
+
};
|
|
8362
|
+
readonly description: {
|
|
8363
|
+
readonly type: "string";
|
|
8364
|
+
};
|
|
8365
|
+
readonly category: {
|
|
8366
|
+
readonly type: "string";
|
|
8367
|
+
};
|
|
8368
|
+
readonly path: {
|
|
8369
|
+
readonly type: "string";
|
|
8370
|
+
};
|
|
8371
|
+
};
|
|
8372
|
+
readonly required: readonly ["id", "name", "path"];
|
|
8373
|
+
};
|
|
8374
|
+
export declare const $GoogleCalendarEntry: {
|
|
8375
|
+
readonly type: "object";
|
|
8376
|
+
readonly properties: {
|
|
8377
|
+
readonly id: {
|
|
8378
|
+
readonly type: "string";
|
|
8379
|
+
};
|
|
8380
|
+
readonly summary: {
|
|
8381
|
+
readonly type: "string";
|
|
8382
|
+
};
|
|
8383
|
+
readonly primary: {
|
|
8384
|
+
readonly type: "boolean";
|
|
8385
|
+
readonly default: false;
|
|
8386
|
+
};
|
|
8387
|
+
};
|
|
8388
|
+
readonly required: readonly ["id", "summary"];
|
|
8389
|
+
};
|
|
8390
|
+
export declare const $GoogleDriveFile: {
|
|
8391
|
+
readonly type: "object";
|
|
8392
|
+
readonly properties: {
|
|
8393
|
+
readonly id: {
|
|
8394
|
+
readonly type: "string";
|
|
8395
|
+
};
|
|
8396
|
+
readonly name: {
|
|
8397
|
+
readonly type: "string";
|
|
8398
|
+
};
|
|
8399
|
+
readonly mime_type: {
|
|
8400
|
+
readonly type: "string";
|
|
8401
|
+
};
|
|
8402
|
+
readonly is_folder: {
|
|
8403
|
+
readonly type: "boolean";
|
|
8404
|
+
readonly default: false;
|
|
8405
|
+
};
|
|
8406
|
+
};
|
|
8407
|
+
readonly required: readonly ["id", "name", "mime_type"];
|
|
8408
|
+
};
|
|
8409
|
+
export declare const $GoogleDriveFilesResponse: {
|
|
8410
|
+
readonly type: "object";
|
|
8411
|
+
readonly properties: {
|
|
8412
|
+
readonly files: {
|
|
8413
|
+
readonly type: "array";
|
|
8414
|
+
readonly items: {
|
|
8415
|
+
readonly $ref: "#/components/schemas/GoogleDriveFile";
|
|
8416
|
+
};
|
|
8417
|
+
};
|
|
8418
|
+
readonly next_page_token: {
|
|
8419
|
+
readonly type: "string";
|
|
8420
|
+
};
|
|
8421
|
+
};
|
|
8422
|
+
readonly required: readonly ["files"];
|
|
8423
|
+
};
|
|
8424
|
+
export declare const $SharedDriveEntry: {
|
|
8425
|
+
readonly type: "object";
|
|
8426
|
+
readonly properties: {
|
|
8427
|
+
readonly id: {
|
|
8428
|
+
readonly type: "string";
|
|
8429
|
+
};
|
|
8430
|
+
readonly name: {
|
|
8431
|
+
readonly type: "string";
|
|
8432
|
+
};
|
|
8433
|
+
};
|
|
8434
|
+
readonly required: readonly ["id", "name"];
|
|
8435
|
+
};
|