windmill-components 1.677.1 → 1.695.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package/components/AppConnectInner.svelte +6 -0
- package/package/components/ArgInput.svelte +2 -0
- package/package/components/AutoscalingConfigEditor.svelte +18 -4
- package/package/components/CiTestResults.svelte +64 -0
- package/package/components/CiTestResults.svelte.d.ts +7 -0
- package/package/components/CompareWorkspaces.svelte +741 -484
- package/package/components/DBManager.svelte +35 -4
- package/package/components/DBManager.svelte.d.ts +2 -0
- package/package/components/DBManagerContent.svelte +3 -1
- package/package/components/DBManagerContent.svelte.d.ts +3 -0
- package/package/components/DBManagerDrawer.svelte +145 -3
- package/package/components/DBTableEditor.svelte +14 -4
- package/package/components/DatatablePicker.svelte +2 -5
- package/package/components/DatatableSchemaDiff.svelte +531 -0
- package/package/components/DatatableSchemaDiff.svelte.d.ts +29 -0
- package/package/components/DedicatedWorkersSelector.svelte +4 -2
- package/package/components/DefaultTagsInner.svelte +42 -2
- package/package/components/DeployWorkspaceDrawer.svelte +1 -1
- package/package/components/Dev.svelte +407 -74
- package/package/components/EditableSchemaForm.svelte +4 -0
- package/package/components/Editor.svelte +1 -1
- package/package/components/EditorBar.svelte +1 -1
- package/package/components/EditorBar.svelte.d.ts +1 -1
- package/package/components/ErrorOrRecoveryHandler.svelte +2 -2
- package/package/components/FlowPreviewContent.svelte +32 -30
- package/package/components/FlowRestartButton.svelte +143 -61
- package/package/components/FlowRestartButton.svelte.d.ts +37 -0
- package/package/components/FlowStatusViewer.svelte +15 -1
- package/package/components/FlowStatusViewer.svelte.d.ts +10 -2
- package/package/components/FlowStatusViewerInner.svelte +270 -222
- package/package/components/FlowStatusViewerInner.svelte.d.ts +6 -2
- package/package/components/FlowTimeline.svelte +1 -1
- package/package/components/FolderEditor.svelte +189 -4
- package/package/components/ForkConflictModal.svelte +57 -0
- package/package/components/ForkConflictModal.svelte.d.ts +3 -0
- package/package/components/ForkWorkspaceBanner.svelte +82 -11
- package/package/components/GitRepoViewer.svelte +251 -97
- package/package/components/GlobalUserOffboardingModal.svelte +293 -0
- package/package/components/GlobalUserOffboardingModal.svelte.d.ts +10 -0
- package/package/components/InputTransformSchemaForm.svelte +1 -1
- package/package/components/InstanceSettings.svelte +58 -19
- package/package/components/Login.svelte +133 -36
- package/package/components/Login.svelte.d.ts +1 -0
- package/package/components/ModuleTest.svelte +2 -1
- package/package/components/NoMainFuncBadge.svelte +1 -1
- package/package/components/OffboardItemsBox.svelte +56 -0
- package/package/components/OffboardItemsBox.svelte.d.ts +12 -0
- package/package/components/OffboardReassignControls.svelte +47 -0
- package/package/components/OffboardReassignControls.svelte.d.ts +20 -0
- package/package/components/OffboardWorkspaceSection.svelte +110 -0
- package/package/components/OffboardWorkspaceSection.svelte.d.ts +24 -0
- package/package/components/OnBehalfOfSelector.svelte +21 -3
- package/package/components/OnBehalfOfSelector.svelte.d.ts +7 -0
- package/package/components/Path.svelte +7 -1
- package/package/components/Path.svelte.d.ts +1 -1
- package/package/components/QueueAlerts.svelte +10 -10
- package/package/components/ResourcePicker.svelte +2 -2
- package/package/components/RunsPage.svelte +2 -1
- package/package/components/S3FilePickerInner.svelte +89 -89
- package/package/components/ScriptBuilder.svelte +52 -11
- package/package/components/ScriptEditor.svelte +19 -8
- package/package/components/ScriptEditor.svelte.d.ts +1 -1
- package/package/components/ShareModal.svelte +236 -98
- package/package/components/ShareModal.svelte.d.ts +1 -1
- package/package/components/SuperadminSettingsInner.svelte +362 -315
- package/package/components/UserOffboardingModal.svelte +238 -0
- package/package/components/UserOffboardingModal.svelte.d.ts +10 -0
- package/package/components/WorkspaceDeployLayout.svelte +3 -3
- package/package/components/WorkspaceDeployLayout.svelte.d.ts +1 -0
- package/package/components/apps/components/helpers/RunnableComponent.svelte.d.ts +3 -0
- package/package/components/apps/components/helpers/executeRunnable.js +2 -1
- package/package/components/apps/editor/AppReportsDrawerInner.svelte +1 -1
- package/package/components/apps/editor/appPolicy.js +2 -1
- package/package/components/apps/editor/commonAppUtils.d.ts +3 -0
- package/package/components/apps/editor/inlineScriptsPanel/CacheTtlPopup.svelte +1 -1
- package/package/components/apps/editor/inlineScriptsPanel/InlineScriptEditor.svelte +7 -0
- package/package/components/apps/editor/inlineScriptsPanel/InlineScriptRunnableByPath.svelte +4 -2
- package/package/components/apps/editor/inlineScriptsPanel/TagPopup.svelte +49 -0
- package/package/components/apps/editor/inlineScriptsPanel/TagPopup.svelte.d.ts +9 -0
- package/package/components/apps/editor/settingsPanel/mainInput/RunnableSelector.svelte +12 -0
- package/package/components/apps/inputType.d.ts +1 -0
- package/package/components/apps/sharedTypes.d.ts +1 -0
- package/package/components/assets/AssetsDropdownButton.svelte +1 -1
- package/package/components/auditLogs/AuditLogsFilters.svelte +8 -3
- package/package/components/common/confirmationModal/ConfirmationModal.svelte +1 -1
- package/package/components/common/fileUpload/S3ArgInput.svelte +12 -10
- package/package/components/common/fileUpload/S3ArgInput.svelte.d.ts +2 -0
- package/package/components/common/table/AppRow.svelte +3 -3
- package/package/components/common/table/FlowRow.svelte +3 -3
- package/package/components/common/table/RawAppRow.svelte +4 -4
- package/package/components/common/table/Row.svelte +6 -2
- package/package/components/common/table/ScriptRow.svelte +11 -3
- package/package/components/copilot/chat/AIChatDisplay.svelte +5 -36
- package/package/components/copilot/chat/AIChatInput.svelte +56 -47
- package/package/components/copilot/chat/AIChatManager.svelte.js +50 -48
- package/package/components/copilot/chat/ContextElementBadge.svelte +6 -4
- package/package/components/copilot/chat/anthropic.d.ts +7 -1
- package/package/components/copilot/chat/anthropic.js +5 -2
- package/package/components/copilot/chat/app/core.d.ts +12 -20
- package/package/components/copilot/chat/app/core.js +230 -159
- package/package/components/copilot/chat/app/core.test.js +417 -0
- package/package/components/copilot/chat/chatLoop.d.ts +3 -0
- package/package/components/copilot/chat/chatLoop.js +13 -5
- package/package/components/copilot/chat/context.js +44 -0
- package/package/components/copilot/chat/flow/FlowAIChat.svelte +57 -76
- package/package/components/copilot/chat/flow/core.d.ts +14 -3
- package/package/components/copilot/chat/flow/core.js +494 -116
- package/package/components/copilot/chat/flow/helperUtils.d.ts +22 -0
- package/package/components/copilot/chat/flow/helperUtils.js +100 -0
- package/package/components/copilot/chat/flow/helperUtils.test.js +231 -0
- package/package/components/copilot/chat/flow/inlineScriptsUtils.d.ts +5 -24
- package/package/components/copilot/chat/flow/inlineScriptsUtils.js +30 -55
- package/package/components/copilot/chat/flow/openFlow.json +1 -1
- package/package/components/copilot/chat/flow/openFlowZod.gen.js +24 -0
- package/package/components/copilot/chat/flow/utils.test.js +59 -0
- package/package/components/copilot/chat/openai-responses.d.ts +7 -1
- package/package/components/copilot/chat/openai-responses.js +5 -2
- package/package/components/copilot/chat/script/core.js +3 -0
- package/package/components/copilot/chat/shared.d.ts +7 -2
- package/package/components/copilot/chat/shared.js +116 -53
- package/package/components/copilot/chat/shared.test.d.ts +1 -0
- package/package/components/copilot/chat/shared.test.js +412 -0
- package/package/components/copilot/chat/tokenUsage.d.ts +23 -0
- package/package/components/copilot/chat/tokenUsage.js +42 -0
- package/package/components/copilot/chat/workspaceTools.d.ts +7 -0
- package/package/components/copilot/chat/workspaceTools.js +239 -0
- package/package/components/copilot/chat/workspaceToolsZod.gen.d.ts +1295 -0
- package/package/components/copilot/chat/workspaceToolsZod.gen.js +424 -0
- package/package/components/copilot/lib.d.ts +5 -1
- package/package/components/copilot/lib.js +24 -6
- package/package/components/copilot/lib.test.d.ts +1 -0
- package/package/components/copilot/lib.test.js +19 -0
- package/package/components/copilot/modelConfig.d.ts +3 -0
- package/package/components/copilot/modelConfig.js +10 -0
- package/package/components/deploymentRequest/DeploymentRequestPanel.svelte +337 -0
- package/package/components/deploymentRequest/DeploymentRequestPanel.svelte.d.ts +15 -0
- package/package/components/details/CopyableCodeBlock.svelte +18 -8
- package/package/components/details/CopyableCodeBlock.svelte.d.ts +1 -0
- package/package/components/flows/FlowAssetsHandler.svelte +19 -21
- package/package/components/flows/FlowProgressBar.svelte +5 -2
- package/package/components/flows/agentToolTree.d.ts +17 -0
- package/package/components/flows/agentToolTree.js +114 -0
- package/package/components/flows/agentToolTree.test.d.ts +1 -0
- package/package/components/flows/agentToolTree.test.js +86 -0
- package/package/components/flows/agentToolUtils.d.ts +0 -5
- package/package/components/flows/agentToolUtils.js +0 -49
- package/package/components/flows/content/FlowLoop.svelte +7 -4
- package/package/components/flows/content/FlowModuleComponent.svelte +636 -599
- package/package/components/flows/content/FlowModuleDeleteAfterUse.svelte +15 -7
- package/package/components/flows/content/FlowSettings.svelte +29 -0
- package/package/components/flows/conversations/FlowChatManager.svelte.js +21 -10
- package/package/components/flows/dfs.d.ts +6 -2
- package/package/components/flows/dfs.js +19 -11
- package/package/components/flows/flowDeleteController.d.ts +32 -0
- package/package/components/flows/flowDeleteController.js +54 -0
- package/package/components/flows/flowDeleteController.test.d.ts +1 -0
- package/package/components/flows/flowDeleteController.test.js +121 -0
- package/package/components/flows/flowDeleteUtils.d.ts +48 -0
- package/package/components/flows/flowDeleteUtils.js +150 -0
- package/package/components/flows/flowDeleteUtils.test.d.ts +1 -0
- package/package/components/flows/flowDeleteUtils.test.js +131 -0
- package/package/components/flows/flowDiff.d.ts +2 -47
- package/package/components/flows/flowDiff.js +16 -293
- package/package/components/flows/flowDiff.testUtils.d.ts +8 -0
- package/package/components/flows/flowDiff.testUtils.js +26 -0
- package/package/components/flows/flowDiffManager.svelte.js +20 -75
- package/package/components/flows/flowDiffManager.svelte.test.js +103 -2
- package/package/components/flows/flowExplorer.d.ts +4 -0
- package/package/components/flows/flowExplorer.js +7 -30
- package/package/components/flows/flowState.d.ts +1 -0
- package/package/components/flows/flowStateUtils.svelte.js +11 -2
- package/package/components/flows/flowTree.d.ts +91 -0
- package/package/components/flows/flowTree.js +326 -0
- package/package/components/flows/flowTree.test.d.ts +1 -0
- package/package/components/flows/flowTree.test.js +236 -0
- package/package/components/flows/map/FlowJobsMenu.svelte +36 -30
- package/package/components/flows/map/FlowModuleSchemaItem.svelte +1 -1
- package/package/components/flows/map/FlowModuleSchemaMap.svelte +73 -229
- package/package/components/flows/map/FlowModuleSchemaMap.svelte.d.ts +1 -2
- package/package/components/flows/pickers/PickHubScriptQuick.svelte +2 -2
- package/package/components/flows/previousResults.js +13 -41
- package/package/components/flows/previousResults.test.d.ts +1 -0
- package/package/components/flows/previousResults.test.js +65 -0
- package/package/components/flows/propPicker/OutputPicker.svelte +2 -1
- package/package/components/flows/propPicker/OutputPickerInner.svelte +41 -4
- package/package/components/flows/propPicker/StepHistory.svelte +9 -1
- package/package/components/git_sync/GitSyncContext.svelte.js +11 -7
- package/package/components/git_sync/GitSyncRepositoryCard.svelte +2 -29
- package/package/components/git_sync/PullWorkspaceModal.svelte +6 -7
- package/package/components/graph/FlowGraphV2.svelte +8 -4
- package/package/components/graph/FlowGraphV2.svelte.d.ts +2 -0
- package/package/components/graph/groupedModulesProxy.svelte.d.ts +10 -0
- package/package/components/graph/groupedModulesProxy.svelte.js +17 -1
- package/package/components/graph/renderers/triggers/TriggersBadge.svelte +8 -2
- package/package/components/home/HomeConnectDrawer.svelte +125 -0
- package/package/components/home/HomeConnectDrawer.svelte.d.ts +5 -0
- package/package/components/home/deploy_ui.js +1 -1
- package/package/components/icons/AzureIcon.svelte +12 -25
- package/package/components/icons/AzureIcon.svelte.d.ts +3 -2
- package/package/components/icons/GithubIcon.svelte +4 -4
- package/package/components/icons/GithubIcon.svelte.d.ts +5 -2
- package/package/components/instanceSettings/ExternalJwtTokens.svelte +85 -0
- package/package/components/instanceSettings/ExternalJwtTokens.svelte.d.ts +12 -0
- package/package/components/instanceSettings/GhesAppSettings.svelte +17 -0
- package/package/components/instanceSettings/IndexerMemorySettings.svelte +56 -29
- package/package/components/instanceSettings/SecretBackendConfig.svelte +9 -2
- package/package/components/instanceSettings.d.ts +1 -0
- package/package/components/instanceSettings.js +66 -8
- package/package/components/mcp/McpScopeSelector.svelte +119 -9
- package/package/components/mcp/McpScopeSelector.svelte.d.ts +1 -0
- package/package/components/offboarding-utils.d.ts +11 -0
- package/package/components/offboarding-utils.js +102 -0
- package/package/components/progressBar/ProgressBar.svelte +9 -5
- package/package/components/progressBar/ProgressBar.svelte.d.ts +1 -0
- package/package/components/raw_apps/DeleteAfterUsePopup.svelte +52 -0
- package/package/components/raw_apps/DeleteAfterUsePopup.svelte.d.ts +9 -0
- package/package/components/raw_apps/RawAppBackgroundRunner.svelte +5 -1
- package/package/components/raw_apps/RawAppDataTableDrawer.svelte +1 -1
- package/package/components/raw_apps/RawAppEditor.svelte +186 -102
- package/package/components/raw_apps/RawAppEditorHeader.svelte +6 -1
- package/package/components/raw_apps/RawAppEditorHeader.svelte.d.ts +1 -0
- package/package/components/raw_apps/RawAppInlineScriptEditor.svelte +9 -3
- package/package/components/raw_apps/RawAppInlineScriptEditor.svelte.d.ts +2 -1
- package/package/components/raw_apps/RawAppInlineScriptRunnable.svelte +1 -0
- package/package/components/raw_apps/RawAppInlineScriptRunnable.svelte.d.ts +1 -0
- package/package/components/raw_apps/RawAppInputsSpecEditor.svelte +48 -5
- package/package/components/raw_apps/RawAppSharedUiDrawer.svelte +129 -0
- package/package/components/raw_apps/RawAppSharedUiDrawer.svelte.d.ts +5 -0
- package/package/components/raw_apps/RawAppSidebar.svelte +12 -0
- package/package/components/raw_apps/RawAppYamlEditor.svelte +81 -0
- package/package/components/raw_apps/RawAppYamlEditor.svelte.d.ts +20 -0
- package/package/components/raw_apps/dataTableRefUtils.d.ts +7 -0
- package/package/components/raw_apps/dataTableRefUtils.js +34 -0
- package/package/components/raw_apps/dataTableRefUtils.test.d.ts +1 -0
- package/package/components/raw_apps/dataTableRefUtils.test.js +29 -0
- package/package/components/raw_apps/datatableUtils.svelte.js +1 -1
- package/package/components/raw_apps/rawAppPolicy.d.ts +1 -0
- package/package/components/raw_apps/rawAppPolicy.js +17 -2
- package/package/components/resources/resourceTypesFilter.d.ts +19 -0
- package/package/components/resources/resourceTypesFilter.js +21 -0
- package/package/components/restartFromStepPath.d.ts +39 -0
- package/package/components/restartFromStepPath.js +89 -0
- package/package/components/runs/JobDetailFieldConfig.d.ts +1 -0
- package/package/components/runs/JobDetailFieldConfig.js +57 -10
- package/package/components/runs/JobDetailHeader.svelte +24 -3
- package/package/components/runs/runsFilter.d.ts +1 -1
- package/package/components/schema/FlowPropertyEditor.svelte +30 -1
- package/package/components/schema/FlowPropertyEditor.svelte.d.ts +5 -2
- package/package/components/script_builder.d.ts +1 -1
- package/package/components/search/GlobalSearchModal.svelte +8 -1
- package/package/components/select/Select.svelte +3 -2
- package/package/components/select/Select.svelte.d.ts +1 -0
- package/package/components/settings/CreateToken.svelte +91 -71
- package/package/components/settings/CreateToken.svelte.d.ts +3 -0
- package/package/components/settings/EditTokenScopesModal.svelte +57 -0
- package/package/components/settings/EditTokenScopesModal.svelte.d.ts +10 -0
- package/package/components/settings/ScopesPicker.svelte +43 -0
- package/package/components/settings/ScopesPicker.svelte.d.ts +11 -0
- package/package/components/settings/TokensTable.svelte +51 -15
- package/package/components/settings/WorkspaceUserSettings.svelte +34 -28
- package/package/components/sidebar/OperatorMenu.svelte +6 -0
- package/package/components/sidebar/SidebarContent.svelte +68 -2
- package/package/components/sidebar/WorkspaceMenu.svelte +8 -4
- package/package/components/triggers/AddTriggersButton.svelte +17 -0
- package/package/components/triggers/CaptureWrapper.svelte +19 -1
- package/package/components/triggers/PermissionedAsLine.svelte +37 -3
- package/package/components/triggers/PermissionedAsLine.svelte.d.ts +6 -0
- package/package/components/triggers/TriggerEditorToolbar.svelte.d.ts +1 -1
- package/package/components/triggers/TriggerModeToggle.svelte +36 -7
- package/package/components/triggers/TriggerModeToggle.svelte.d.ts +1 -1
- package/package/components/triggers/TriggerSuspendedJobsModal.svelte.d.ts +1 -1
- package/package/components/triggers/TriggersEditor.svelte +10 -2
- package/package/components/triggers/TriggersWrapper.svelte +20 -0
- package/package/components/triggers/azure/AzureCapture.svelte +41 -0
- package/package/components/triggers/azure/AzureCapture.svelte.d.ts +44 -0
- package/package/components/triggers/azure/AzureTriggerEditor.svelte +20 -0
- package/package/components/triggers/azure/AzureTriggerEditor.svelte.d.ts +9 -0
- package/package/components/triggers/azure/AzureTriggerEditorConfigSection.svelte +301 -0
- package/package/components/triggers/azure/AzureTriggerEditorConfigSection.svelte.d.ts +16 -0
- package/package/components/triggers/azure/AzureTriggerEditorInner.svelte +422 -0
- package/package/components/triggers/azure/AzureTriggerEditorInner.svelte.d.ts +25 -0
- package/package/components/triggers/azure/AzureTriggerPanel.svelte +55 -0
- package/package/components/triggers/azure/AzureTriggerPanel.svelte.d.ts +10 -0
- package/{dist/sharedUtils/components/triggers/kafka → package/components/triggers/azure}/utils.d.ts +1 -1
- package/package/components/triggers/azure/utils.js +56 -0
- package/package/components/triggers/email/EmailTriggerEditorInner.svelte +15 -11
- package/package/components/triggers/gcp/GcpTriggerEditorInner.svelte +22 -14
- package/package/components/triggers/http/RouteEditorConfigSection.svelte +15 -7
- package/package/components/triggers/http/RouteEditorInner.svelte +16 -14
- package/package/components/triggers/http/RoutesGenerator.svelte +6 -1
- package/package/components/triggers/http/RoutesPanel.svelte +1 -1
- package/package/components/triggers/http/utils.d.ts +1 -1
- package/package/components/triggers/http/utils.js +2 -2
- package/package/components/triggers/kafka/KafkaTriggerEditorInner.svelte +22 -14
- package/package/components/triggers/mqtt/MqttTriggerEditorInner.svelte +22 -14
- package/package/components/triggers/native/NativeTriggerEditor.svelte +3 -0
- package/package/components/triggers/native/services/github/GitHubTriggerForm.svelte +118 -0
- package/package/components/triggers/native/services/github/GitHubTriggerForm.svelte.d.ts +17 -0
- package/package/components/triggers/native/utils.js +14 -0
- package/package/components/triggers/nats/NatsTriggerEditor.svelte.d.ts +4 -3
- package/package/components/triggers/nats/NatsTriggerEditorInner.svelte +22 -14
- package/package/components/triggers/postgres/PostgresTriggerEditor.svelte.d.ts +4 -3
- package/package/components/triggers/postgres/PostgresTriggerEditorInner.svelte +22 -14
- package/package/components/triggers/schedules/ScheduleEditorInner.svelte +22 -14
- package/package/components/triggers/sqs/SqsTriggerEditor.svelte.d.ts +4 -3
- package/package/components/triggers/sqs/SqsTriggerEditorInner.svelte +22 -14
- package/package/components/triggers/triggers.svelte.d.ts +1 -0
- package/package/components/triggers/triggers.svelte.js +24 -1
- package/package/components/triggers/utils.js +47 -6
- package/package/components/triggers/websocket/WebsocketTriggerEditorInner.svelte +22 -14
- package/package/components/triggers.d.ts +1 -1
- package/package/components/useFolderDefaultPermissionedAs.svelte.d.ts +13 -0
- package/package/components/useFolderDefaultPermissionedAs.svelte.js +63 -0
- package/package/components/useNestedRestartState.svelte.d.ts +56 -0
- package/package/components/useNestedRestartState.svelte.js +320 -0
- package/package/components/workspaceSettings/CreateWorkspace.svelte +16 -677
- package/package/components/workspaceSettings/CreateWorkspaceInner.svelte +604 -0
- package/package/components/workspaceSettings/CreateWorkspaceInner.svelte.d.ts +7 -0
- package/package/components/workspaceSettings/CustomInstanceDbSelect.svelte +27 -25
- package/package/components/workspaceSettings/CustomInstanceDbWizardModal.svelte +46 -8
- package/package/components/workspaceSettings/DataTableSettings.svelte +27 -22
- package/package/components/workspaceSettings/DucklakeSettings.svelte +1 -1
- package/package/components/workspaceSettings/ForkDatatableSection.svelte +228 -0
- package/package/components/workspaceSettings/ForkDatatableSection.svelte.d.ts +28 -0
- package/package/components/workspaceSettings/GitSyncFilterSettings.svelte +8 -2
- package/package/components/workspaceSettings/RulesetEditor.svelte +27 -2
- package/package/components/workspaceSettings/SharedUiSettings.svelte +175 -0
- package/package/components/workspaceSettings/SharedUiSettings.svelte.d.ts +3 -0
- package/package/components/workspaceSettings/VolumeStorageSettings.svelte +1 -1
- package/package/components/workspaceSettings/WorkspaceIntegrations.svelte +17 -1
- package/package/consts.d.ts +3 -0
- package/package/consts.js +10 -0
- package/package/gen/core/OpenAPI.js +1 -1
- package/package/gen/schemas.gen.d.ts +795 -59
- package/package/gen/schemas.gen.js +801 -60
- package/package/gen/services.gen.d.ts +475 -5
- package/package/gen/services.gen.js +976 -23
- package/package/gen/types.gen.d.ts +1865 -75
- package/package/githubApp.js +5 -1
- package/package/hubPaths.json +2 -8
- package/package/infer.d.ts +1 -1
- package/package/infer.js +50 -52
- package/package/infer.svelte.js +10 -1
- package/package/mcpEndpointTools.js +60 -4
- package/package/monaco_workers/sqlTypePlugin.worker.d.ts +10 -0
- package/package/monaco_workers/sqlTypePlugin.worker.js +39 -0
- package/package/script_helpers.d.ts +8 -2
- package/package/script_helpers.js +31 -0
- package/package/stores.d.ts +11 -0
- package/package/stores.js +6 -0
- package/package/system_prompts/index.d.ts +1 -0
- package/package/system_prompts/index.js +8 -0
- package/package/system_prompts/prompts.d.ts +17 -13
- package/package/system_prompts/prompts.js +921 -61
- package/package/templates/ci_test_bun.ts.template +27 -0
- package/package/templates/ci_test_python.py.template +26 -0
- package/package/utils/forkConflict.d.ts +26 -0
- package/package/utils/forkConflict.js +56 -0
- package/package/utils_deployable.d.ts +164 -121
- package/package/utils_deployable.js +61 -11
- package/package/utils_workspace_deploy.d.ts +8 -8
- package/package/utils_workspace_deploy.js +89 -421
- package/package.json +30 -6
- package/dist/sharedUtils/assets/tokens/colorTokensConfig.d.ts +0 -2
- package/dist/sharedUtils/base.d.ts +0 -1
- package/dist/sharedUtils/cloud.d.ts +0 -1
- package/dist/sharedUtils/common.d.ts +0 -111
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/count.d.ts +0 -5
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/delete.d.ts +0 -5
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/insert.d.ts +0 -5
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/select.d.ts +0 -13
- package/dist/sharedUtils/components/apps/components/display/dbtable/queries/update.d.ts +0 -11
- package/dist/sharedUtils/components/apps/components/display/dbtable/utils.d.ts +0 -95
- package/dist/sharedUtils/components/apps/editor/appPolicy.d.ts +0 -6
- package/dist/sharedUtils/components/apps/editor/appUtilsCore.d.ts +0 -7
- package/dist/sharedUtils/components/apps/editor/appUtilsS3.d.ts +0 -33
- package/dist/sharedUtils/components/apps/editor/commonAppUtils.d.ts +0 -10
- package/dist/sharedUtils/components/apps/editor/component/components.d.ts +0 -5371
- package/dist/sharedUtils/components/apps/editor/component/default-codes.d.ts +0 -3
- package/dist/sharedUtils/components/apps/editor/component/index.d.ts +0 -3
- package/dist/sharedUtils/components/apps/editor/component/sets.d.ts +0 -7
- package/dist/sharedUtils/components/apps/editor/componentsPanel/componentDefaultProps.d.ts +0 -3
- package/dist/sharedUtils/components/apps/gridUtils.d.ts +0 -14
- package/dist/sharedUtils/components/apps/inputType.d.ts +0 -178
- package/dist/sharedUtils/components/apps/rx.d.ts +0 -29
- package/dist/sharedUtils/components/apps/sharedTypes.d.ts +0 -21
- package/dist/sharedUtils/components/apps/types.d.ts +0 -274
- package/dist/sharedUtils/components/assets/lib.d.ts +0 -25
- package/dist/sharedUtils/components/common/alert/model.d.ts +0 -2
- package/dist/sharedUtils/components/common/badge/model.d.ts +0 -8
- package/dist/sharedUtils/components/common/button/model.d.ts +0 -45
- package/dist/sharedUtils/components/common/fileInput/model.d.ts +0 -1
- package/dist/sharedUtils/components/common/index.d.ts +0 -24
- package/dist/sharedUtils/components/common/skeleton/model.d.ts +0 -21
- package/dist/sharedUtils/components/dbTypes.d.ts +0 -14
- package/dist/sharedUtils/components/diff_drawer.d.ts +0 -26
- package/dist/sharedUtils/components/ducklake.d.ts +0 -1
- package/dist/sharedUtils/components/flows/scheduleUtils.d.ts +0 -7
- package/dist/sharedUtils/components/icons/index.d.ts +0 -101
- package/dist/sharedUtils/components/random_positive_adjetive.d.ts +0 -1
- package/dist/sharedUtils/components/raw_apps/rawAppPolicy.d.ts +0 -10
- package/dist/sharedUtils/components/raw_apps/utils.d.ts +0 -15
- package/dist/sharedUtils/components/triggers/email/utils.d.ts +0 -4
- package/dist/sharedUtils/components/triggers/gcp/utils.d.ts +0 -2
- package/dist/sharedUtils/components/triggers/http/utils.d.ts +0 -11
- package/dist/sharedUtils/components/triggers/mqtt/utils.d.ts +0 -2
- package/dist/sharedUtils/components/triggers/nats/utils.d.ts +0 -2
- package/dist/sharedUtils/components/triggers/postgres/utils.d.ts +0 -8
- package/dist/sharedUtils/components/triggers/sqs/utils.d.ts +0 -2
- package/dist/sharedUtils/components/triggers/triggers.svelte.d.ts +0 -32
- package/dist/sharedUtils/components/triggers/utils.d.ts +0 -80
- package/dist/sharedUtils/components/triggers/websocket/utils.d.ts +0 -2
- package/dist/sharedUtils/components/triggers.d.ts +0 -20
- package/dist/sharedUtils/gen/core/ApiError.d.ts +0 -10
- package/dist/sharedUtils/gen/core/ApiRequestOptions.d.ts +0 -13
- package/dist/sharedUtils/gen/core/ApiResult.d.ts +0 -7
- package/dist/sharedUtils/gen/core/CancelablePromise.d.ts +0 -26
- package/dist/sharedUtils/gen/core/OpenAPI.d.ts +0 -27
- package/dist/sharedUtils/gen/core/request.d.ts +0 -29
- package/dist/sharedUtils/gen/index.d.ts +0 -6
- package/dist/sharedUtils/gen/schemas.gen.d.ts +0 -7036
- package/dist/sharedUtils/gen/services.gen.d.ts +0 -6047
- package/dist/sharedUtils/gen/types.gen.d.ts +0 -21881
- package/dist/sharedUtils/history.svelte.d.ts +0 -9
- package/dist/sharedUtils/hub.d.ts +0 -49
- package/dist/sharedUtils/jsr.json +0 -6
- package/dist/sharedUtils/lib.d.ts +0 -5
- package/dist/sharedUtils/lib.es.js +0 -1588
- package/dist/sharedUtils/package.json +0 -12
- package/dist/sharedUtils/schema.d.ts +0 -3
- package/dist/sharedUtils/stores.d.ts +0 -97
- package/dist/sharedUtils/svelte5Utils.svelte.d.ts +0 -80
- package/dist/sharedUtils/toast.d.ts +0 -8
- package/dist/sharedUtils/utils.d.ts +0 -265
- package/package/components/copilot/chat/__tests__/app/appChat.eval.test.js +0 -153
- package/package/components/copilot/chat/__tests__/app/appEvalComparison.d.ts +0 -21
- package/package/components/copilot/chat/__tests__/app/appEvalComparison.js +0 -136
- package/package/components/copilot/chat/__tests__/app/appEvalHelpers.d.ts +0 -15
- package/package/components/copilot/chat/__tests__/app/appEvalHelpers.js +0 -107
- package/package/components/copilot/chat/__tests__/app/appEvalRunner.d.ts +0 -50
- package/package/components/copilot/chat/__tests__/app/appEvalRunner.js +0 -93
- package/package/components/copilot/chat/__tests__/app/appFixtureLoader.d.ts +0 -29
- package/package/components/copilot/chat/__tests__/app/appFixtureLoader.js +0 -134
- package/package/components/copilot/chat/__tests__/app/appResultsWriter.d.ts +0 -30
- package/package/components/copilot/chat/__tests__/app/appResultsWriter.js +0 -197
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/createFolder/main.d.ts +0 -10
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/createFolder/main.js +0 -9
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/createFolder/meta.json +0 -4
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/deleteItem/main.d.ts +0 -6
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/deleteItem/main.js +0 -5
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/deleteItem/meta.json +0 -4
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/listFiles/main.d.ts +0 -12
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/listFiles/main.js +0 -14
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/listFiles/meta.json +0 -4
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/listFolders/main.d.ts +0 -8
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/listFolders/main.js +0 -25
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/listFolders/meta.json +0 -4
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/moveItem/main.d.ts +0 -7
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/moveItem/main.js +0 -5
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/moveItem/meta.json +0 -4
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/renameItem/main.d.ts +0 -8
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/renameItem/main.js +0 -5
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/backend/renameItem/meta.json +0 -4
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/frontend/components/Breadcrumb.d.ts +0 -10
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/frontend/components/Breadcrumb.tsx +0 -26
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/frontend/components/FileItem.d.ts +0 -10
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/frontend/components/FileItem.tsx +0 -79
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/frontend/components/FileList.d.ts +0 -10
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/frontend/components/FileList.tsx +0 -46
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/frontend/components/FolderTree.d.ts +0 -10
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/frontend/components/FolderTree.tsx +0 -56
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/frontend/components/Toolbar.d.ts +0 -6
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/frontend/components/Toolbar.tsx +0 -59
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/frontend/index.d.ts +0 -16
- package/package/components/copilot/chat/__tests__/app/initial/file_manager/frontend/index.tsx +0 -119
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/backend/addToCart/main.d.ts +0 -15
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/backend/addToCart/main.js +0 -14
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/backend/addToCart/meta.json +0 -4
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/backend/calculateTotal/main.d.ts +0 -14
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/backend/calculateTotal/main.js +0 -5
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/backend/calculateTotal/meta.json +0 -4
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/backend/getProducts/main.d.ts +0 -6
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/backend/getProducts/main.js +0 -41
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/backend/getProducts/meta.json +0 -4
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/backend/removeFromCart/main.d.ts +0 -15
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/backend/removeFromCart/main.js +0 -3
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/backend/removeFromCart/meta.json +0 -4
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/frontend/components/Cart.d.ts +0 -9
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/frontend/components/Cart.tsx +0 -51
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/frontend/components/ProductCard.d.ts +0 -8
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/frontend/components/ProductCard.tsx +0 -27
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/frontend/components/ProductList.d.ts +0 -8
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/frontend/components/ProductList.tsx +0 -18
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/frontend/index.d.ts +0 -12
- package/package/components/copilot/chat/__tests__/app/initial/shopping_cart/frontend/index.tsx +0 -81
- package/package/components/copilot/chat/__tests__/app/initial/test1_counter_app/backend/decrementCounter/main.d.ts +0 -3
- package/package/components/copilot/chat/__tests__/app/initial/test1_counter_app/backend/decrementCounter/main.js +0 -3
- package/package/components/copilot/chat/__tests__/app/initial/test1_counter_app/backend/decrementCounter/meta.json +0 -4
- package/package/components/copilot/chat/__tests__/app/initial/test1_counter_app/backend/incrementCounter/main.d.ts +0 -3
- package/package/components/copilot/chat/__tests__/app/initial/test1_counter_app/backend/incrementCounter/main.js +0 -3
- package/package/components/copilot/chat/__tests__/app/initial/test1_counter_app/backend/incrementCounter/meta.json +0 -4
- package/package/components/copilot/chat/__tests__/app/initial/test1_counter_app/frontend/index.d.ts +0 -2
- package/package/components/copilot/chat/__tests__/app/initial/test1_counter_app/frontend/index.tsx +0 -38
- package/package/components/copilot/chat/__tests__/app/variants/baseline.d.ts +0 -6
- package/package/components/copilot/chat/__tests__/app/variants/baseline.js +0 -10
- package/package/components/copilot/chat/__tests__/app/variants/index.d.ts +0 -3
- package/package/components/copilot/chat/__tests__/app/variants/index.js +0 -3
- package/package/components/copilot/chat/__tests__/app/variants/streamlined.d.ts +0 -6
- package/package/components/copilot/chat/__tests__/app/variants/streamlined.js +0 -137
- package/package/components/copilot/chat/__tests__/flow/expected/test1.json +0 -134
- package/package/components/copilot/chat/__tests__/flow/expected/test2.json +0 -183
- package/package/components/copilot/chat/__tests__/flow/expected/test3.json +0 -204
- package/package/components/copilot/chat/__tests__/flow/expected/test4.json +0 -175
- package/package/components/copilot/chat/__tests__/flow/expected/test5_modify_simple.json +0 -68
- package/package/components/copilot/chat/__tests__/flow/expected/test6_modify_medium.json +0 -142
- package/package/components/copilot/chat/__tests__/flow/expected/test7_modify_complex.json +0 -136
- package/package/components/copilot/chat/__tests__/flow/flowChat.eval.test.js +0 -294
- package/package/components/copilot/chat/__tests__/flow/flowEvalComparison.d.ts +0 -17
- package/package/components/copilot/chat/__tests__/flow/flowEvalComparison.js +0 -49
- package/package/components/copilot/chat/__tests__/flow/flowEvalHelpers.d.ts +0 -12
- package/package/components/copilot/chat/__tests__/flow/flowEvalHelpers.js +0 -79
- package/package/components/copilot/chat/__tests__/flow/flowEvalRunner.d.ts +0 -50
- package/package/components/copilot/chat/__tests__/flow/flowEvalRunner.js +0 -102
- package/package/components/copilot/chat/__tests__/flow/initial/test5_initial.json +0 -53
- package/package/components/copilot/chat/__tests__/flow/initial/test6_initial.json +0 -68
- package/package/components/copilot/chat/__tests__/flow/initial/test7_initial.json +0 -120
- package/package/components/copilot/chat/__tests__/flow/variants/baseline.d.ts +0 -6
- package/package/components/copilot/chat/__tests__/flow/variants/baseline.js +0 -10
- package/package/components/copilot/chat/__tests__/flow/variants/index.d.ts +0 -3
- package/package/components/copilot/chat/__tests__/flow/variants/index.js +0 -3
- package/package/components/copilot/chat/__tests__/flow/variants/minimal-single-tool.d.ts +0 -15
- package/package/components/copilot/chat/__tests__/flow/variants/minimal-single-tool.js +0 -388
- package/package/components/copilot/chat/__tests__/shared/baseEvalRunner.d.ts +0 -45
- package/package/components/copilot/chat/__tests__/shared/baseEvalRunner.js +0 -121
- package/package/components/copilot/chat/__tests__/shared/baseLLMEvaluator.d.ts +0 -28
- package/package/components/copilot/chat/__tests__/shared/baseLLMEvaluator.js +0 -96
- package/package/components/copilot/chat/__tests__/shared/baseResultsWriter.d.ts +0 -32
- package/package/components/copilot/chat/__tests__/shared/baseResultsWriter.js +0 -130
- package/package/components/copilot/chat/__tests__/shared/baseVariants.d.ts +0 -45
- package/package/components/copilot/chat/__tests__/shared/baseVariants.js +0 -57
- package/package/components/copilot/chat/__tests__/shared/index.d.ts +0 -10
- package/package/components/copilot/chat/__tests__/shared/index.js +0 -5
- package/package/components/copilot/chat/__tests__/shared/types.d.ts +0 -105
- package/package/components/copilot/chat/__tests__/shared/types.js +0 -9
- package/package/components/copilot/chat/flow/openFlowZod.js +0 -24
- package/package/components/copilot/chat/flow/utils.d.ts +0 -14
- package/package/components/copilot/chat/flow/utils.js +0 -108
- package/package/components/flows/agentToolUtils.test.js +0 -55
- /package/package/components/copilot/chat/{__tests__/app/appChat.eval.test.d.ts → app/core.test.d.ts} +0 -0
- /package/package/components/copilot/chat/{__tests__/flow/flowChat.eval.test.d.ts → flow/helperUtils.test.d.ts} +0 -0
- /package/package/components/copilot/chat/flow/{openFlowZod.d.ts → openFlowZod.gen.d.ts} +0 -0
- /package/package/components/{flows/agentToolUtils.test.d.ts → copilot/chat/flow/utils.test.d.ts} +0 -0
|
@@ -93,6 +93,10 @@ export declare const $FlowValue: {
|
|
|
93
93
|
readonly cache_ignore_s3_path: {
|
|
94
94
|
readonly type: "boolean";
|
|
95
95
|
};
|
|
96
|
+
readonly delete_after_secs: {
|
|
97
|
+
readonly type: "integer";
|
|
98
|
+
readonly description: "If set, delete the flow job's args, result and logs after this many seconds following job completion";
|
|
99
|
+
};
|
|
96
100
|
readonly flow_env: {
|
|
97
101
|
readonly type: "object";
|
|
98
102
|
readonly description: "Environment variables available to all steps. Values can be strings, JSON values, or special references: '$var:path' (workspace variable) or '$res:path' (resource).";
|
|
@@ -277,9 +281,9 @@ export declare const $FlowModule: {
|
|
|
277
281
|
readonly description: "Maximum execution time in seconds (static value or expression)";
|
|
278
282
|
readonly $ref: "#/components/schemas/InputTransform";
|
|
279
283
|
};
|
|
280
|
-
readonly
|
|
281
|
-
readonly type: "
|
|
282
|
-
readonly description: "If
|
|
284
|
+
readonly delete_after_secs: {
|
|
285
|
+
readonly type: "integer";
|
|
286
|
+
readonly description: "If set, delete the step's args, result and logs after this many seconds following job completion";
|
|
283
287
|
};
|
|
284
288
|
readonly summary: {
|
|
285
289
|
readonly type: "string";
|
|
@@ -1066,6 +1070,11 @@ export declare const $AiAgent: {
|
|
|
1066
1070
|
readonly type: "string";
|
|
1067
1071
|
readonly enum: readonly ["aiagent"];
|
|
1068
1072
|
};
|
|
1073
|
+
readonly omit_output_from_conversation: {
|
|
1074
|
+
readonly type: "boolean";
|
|
1075
|
+
readonly default: false;
|
|
1076
|
+
readonly description: "If true, this AI agent step does not persist its assistant or tool messages to the flow conversation when chat mode is enabled.";
|
|
1077
|
+
};
|
|
1069
1078
|
readonly parallel: {
|
|
1070
1079
|
readonly type: "boolean";
|
|
1071
1080
|
readonly description: "If true, the agent can execute multiple tool calls in parallel";
|
|
@@ -1394,6 +1403,29 @@ export declare const $FlowNote: {
|
|
|
1394
1403
|
};
|
|
1395
1404
|
readonly required: readonly ["id", "text", "color", "type"];
|
|
1396
1405
|
};
|
|
1406
|
+
export declare const $CiTestResult: {
|
|
1407
|
+
readonly type: "object";
|
|
1408
|
+
readonly properties: {
|
|
1409
|
+
readonly test_script_path: {
|
|
1410
|
+
readonly type: "string";
|
|
1411
|
+
};
|
|
1412
|
+
readonly job_id: {
|
|
1413
|
+
readonly type: "string";
|
|
1414
|
+
readonly format: "uuid";
|
|
1415
|
+
readonly nullable: true;
|
|
1416
|
+
};
|
|
1417
|
+
readonly status: {
|
|
1418
|
+
readonly type: "string";
|
|
1419
|
+
readonly nullable: true;
|
|
1420
|
+
};
|
|
1421
|
+
readonly started_at: {
|
|
1422
|
+
readonly type: "string";
|
|
1423
|
+
readonly format: "date-time";
|
|
1424
|
+
readonly nullable: true;
|
|
1425
|
+
};
|
|
1426
|
+
};
|
|
1427
|
+
readonly required: readonly ["test_script_path"];
|
|
1428
|
+
};
|
|
1397
1429
|
export declare const $HealthStatusResponse: {
|
|
1398
1430
|
readonly type: "object";
|
|
1399
1431
|
readonly description: "Health status response (cached with 5s TTL)";
|
|
@@ -1740,6 +1772,10 @@ export declare const $VaultSettings: {
|
|
|
1740
1772
|
readonly type: "string";
|
|
1741
1773
|
readonly description: "Static Vault token for testing/development (optional, if provided this is used instead of JWT authentication)";
|
|
1742
1774
|
};
|
|
1775
|
+
readonly skip_ssl_verify: {
|
|
1776
|
+
readonly type: "boolean";
|
|
1777
|
+
readonly description: "Skip TLS certificate verification when connecting to Vault. Only use for self-signed certificates in development environments.";
|
|
1778
|
+
};
|
|
1743
1779
|
};
|
|
1744
1780
|
};
|
|
1745
1781
|
export declare const $AzureKeyVaultSettings: {
|
|
@@ -1894,7 +1930,7 @@ export declare const $FlowConversation: {
|
|
|
1894
1930
|
};
|
|
1895
1931
|
export declare const $FlowConversationMessage: {
|
|
1896
1932
|
readonly type: "object";
|
|
1897
|
-
readonly required: readonly ["id", "conversation_id", "message_type", "content", "created_at"];
|
|
1933
|
+
readonly required: readonly ["id", "conversation_id", "message_type", "content", "created_at", "created_seq"];
|
|
1898
1934
|
readonly properties: {
|
|
1899
1935
|
readonly id: {
|
|
1900
1936
|
readonly type: "string";
|
|
@@ -1926,6 +1962,11 @@ export declare const $FlowConversationMessage: {
|
|
|
1926
1962
|
readonly format: "date-time";
|
|
1927
1963
|
readonly description: "When the message was created";
|
|
1928
1964
|
};
|
|
1965
|
+
readonly created_seq: {
|
|
1966
|
+
readonly type: "integer";
|
|
1967
|
+
readonly format: "int64";
|
|
1968
|
+
readonly description: "Monotonic cursor assigned when the message is inserted";
|
|
1969
|
+
};
|
|
1929
1970
|
readonly step_name: {
|
|
1930
1971
|
readonly type: "string";
|
|
1931
1972
|
readonly description: "The step name that produced that message";
|
|
@@ -2293,8 +2334,9 @@ export declare const $Script: {
|
|
|
2293
2334
|
readonly timeout: {
|
|
2294
2335
|
readonly type: "integer";
|
|
2295
2336
|
};
|
|
2296
|
-
readonly
|
|
2297
|
-
readonly type: "
|
|
2337
|
+
readonly delete_after_secs: {
|
|
2338
|
+
readonly type: "integer";
|
|
2339
|
+
readonly description: "If set, delete the job's args, result and logs after this many seconds following job completion";
|
|
2298
2340
|
};
|
|
2299
2341
|
readonly visible_to_runner_only: {
|
|
2300
2342
|
readonly type: "boolean";
|
|
@@ -2402,8 +2444,9 @@ export declare const $NewScript: {
|
|
|
2402
2444
|
readonly timeout: {
|
|
2403
2445
|
readonly type: "integer";
|
|
2404
2446
|
};
|
|
2405
|
-
readonly
|
|
2406
|
-
readonly type: "
|
|
2447
|
+
readonly delete_after_secs: {
|
|
2448
|
+
readonly type: "integer";
|
|
2449
|
+
readonly description: "If set, delete the job's args, result and logs after this many seconds following job completion";
|
|
2407
2450
|
};
|
|
2408
2451
|
readonly deployment_message: {
|
|
2409
2452
|
readonly type: "string";
|
|
@@ -3300,6 +3343,229 @@ export declare const $EditWorkspaceUser: {
|
|
|
3300
3343
|
};
|
|
3301
3344
|
};
|
|
3302
3345
|
};
|
|
3346
|
+
export declare const $OffboardAffectedPaths: {
|
|
3347
|
+
readonly type: "object";
|
|
3348
|
+
readonly properties: {
|
|
3349
|
+
readonly scripts: {
|
|
3350
|
+
readonly type: "array";
|
|
3351
|
+
readonly items: {
|
|
3352
|
+
readonly type: "string";
|
|
3353
|
+
};
|
|
3354
|
+
};
|
|
3355
|
+
readonly flows: {
|
|
3356
|
+
readonly type: "array";
|
|
3357
|
+
readonly items: {
|
|
3358
|
+
readonly type: "string";
|
|
3359
|
+
};
|
|
3360
|
+
};
|
|
3361
|
+
readonly apps: {
|
|
3362
|
+
readonly type: "array";
|
|
3363
|
+
readonly items: {
|
|
3364
|
+
readonly type: "string";
|
|
3365
|
+
};
|
|
3366
|
+
};
|
|
3367
|
+
readonly resources: {
|
|
3368
|
+
readonly type: "array";
|
|
3369
|
+
readonly items: {
|
|
3370
|
+
readonly type: "string";
|
|
3371
|
+
};
|
|
3372
|
+
};
|
|
3373
|
+
readonly variables: {
|
|
3374
|
+
readonly type: "array";
|
|
3375
|
+
readonly items: {
|
|
3376
|
+
readonly type: "string";
|
|
3377
|
+
};
|
|
3378
|
+
};
|
|
3379
|
+
readonly schedules: {
|
|
3380
|
+
readonly type: "array";
|
|
3381
|
+
readonly items: {
|
|
3382
|
+
readonly type: "string";
|
|
3383
|
+
};
|
|
3384
|
+
};
|
|
3385
|
+
readonly triggers: {
|
|
3386
|
+
readonly type: "object";
|
|
3387
|
+
readonly additionalProperties: {
|
|
3388
|
+
readonly type: "array";
|
|
3389
|
+
readonly items: {
|
|
3390
|
+
readonly type: "string";
|
|
3391
|
+
};
|
|
3392
|
+
};
|
|
3393
|
+
};
|
|
3394
|
+
};
|
|
3395
|
+
};
|
|
3396
|
+
export declare const $OffboardPreview: {
|
|
3397
|
+
readonly type: "object";
|
|
3398
|
+
readonly properties: {
|
|
3399
|
+
readonly owned: {
|
|
3400
|
+
readonly $ref: "#/components/schemas/OffboardAffectedPaths";
|
|
3401
|
+
readonly description: "Objects under u/{username}/ that will be reassigned";
|
|
3402
|
+
};
|
|
3403
|
+
readonly executing_on_behalf: {
|
|
3404
|
+
readonly $ref: "#/components/schemas/OffboardAffectedPaths";
|
|
3405
|
+
readonly description: "Objects not under the user's path but that execute on behalf of this user (permissioned_as/on_behalf_of will be updated)";
|
|
3406
|
+
};
|
|
3407
|
+
readonly referencing: {
|
|
3408
|
+
readonly $ref: "#/components/schemas/OffboardAffectedPaths";
|
|
3409
|
+
readonly description: "Scripts/flows/apps/resources whose content or value references this user's paths (may break after reassignment)";
|
|
3410
|
+
};
|
|
3411
|
+
readonly tokens: {
|
|
3412
|
+
readonly type: "array";
|
|
3413
|
+
readonly items: {
|
|
3414
|
+
readonly $ref: "#/components/schemas/OffboardTokenInfo";
|
|
3415
|
+
};
|
|
3416
|
+
readonly description: "Tokens owned by this user (will be deleted)";
|
|
3417
|
+
};
|
|
3418
|
+
readonly http_triggers: {
|
|
3419
|
+
readonly type: "integer";
|
|
3420
|
+
readonly description: "HTTP triggers under the user's path (webhook URLs will change)";
|
|
3421
|
+
};
|
|
3422
|
+
readonly email_triggers: {
|
|
3423
|
+
readonly type: "integer";
|
|
3424
|
+
readonly description: "Email triggers under the user's path (email addresses will change)";
|
|
3425
|
+
};
|
|
3426
|
+
};
|
|
3427
|
+
readonly required: readonly ["owned", "executing_on_behalf", "referencing", "tokens", "http_triggers", "email_triggers"];
|
|
3428
|
+
};
|
|
3429
|
+
export declare const $OffboardTokenInfo: {
|
|
3430
|
+
readonly type: "object";
|
|
3431
|
+
readonly properties: {
|
|
3432
|
+
readonly label: {
|
|
3433
|
+
readonly type: "string";
|
|
3434
|
+
};
|
|
3435
|
+
readonly scopes: {
|
|
3436
|
+
readonly type: "array";
|
|
3437
|
+
readonly items: {
|
|
3438
|
+
readonly type: "string";
|
|
3439
|
+
};
|
|
3440
|
+
};
|
|
3441
|
+
readonly expiration: {
|
|
3442
|
+
readonly type: "string";
|
|
3443
|
+
};
|
|
3444
|
+
};
|
|
3445
|
+
readonly required: readonly ["label", "scopes"];
|
|
3446
|
+
};
|
|
3447
|
+
export declare const $OffboardRequest: {
|
|
3448
|
+
readonly type: "object";
|
|
3449
|
+
readonly properties: {
|
|
3450
|
+
readonly reassign_to: {
|
|
3451
|
+
readonly type: "string";
|
|
3452
|
+
readonly description: "Target for reassignment: 'u/{username}' or 'f/{folder}'";
|
|
3453
|
+
};
|
|
3454
|
+
readonly new_on_behalf_of_user: {
|
|
3455
|
+
readonly type: "string";
|
|
3456
|
+
readonly description: "Required when reassign_to is a folder. The username whose identity will be used as permissioned_as for schedules and triggers.";
|
|
3457
|
+
};
|
|
3458
|
+
readonly delete_user: {
|
|
3459
|
+
readonly type: "boolean";
|
|
3460
|
+
readonly default: true;
|
|
3461
|
+
readonly description: "Whether to also remove the user from the workspace";
|
|
3462
|
+
};
|
|
3463
|
+
};
|
|
3464
|
+
readonly required: readonly ["reassign_to"];
|
|
3465
|
+
};
|
|
3466
|
+
export declare const $OffboardResponse: {
|
|
3467
|
+
readonly type: "object";
|
|
3468
|
+
readonly properties: {
|
|
3469
|
+
readonly conflicts: {
|
|
3470
|
+
readonly type: "array";
|
|
3471
|
+
readonly items: {
|
|
3472
|
+
readonly type: "string";
|
|
3473
|
+
};
|
|
3474
|
+
readonly description: "List of path conflicts that block the offboarding. Empty on success.";
|
|
3475
|
+
};
|
|
3476
|
+
readonly summary: {
|
|
3477
|
+
readonly $ref: "#/components/schemas/OffboardSummary";
|
|
3478
|
+
};
|
|
3479
|
+
};
|
|
3480
|
+
};
|
|
3481
|
+
export declare const $OffboardSummary: {
|
|
3482
|
+
readonly type: "object";
|
|
3483
|
+
readonly properties: {
|
|
3484
|
+
readonly scripts_reassigned: {
|
|
3485
|
+
readonly type: "integer";
|
|
3486
|
+
};
|
|
3487
|
+
readonly flows_reassigned: {
|
|
3488
|
+
readonly type: "integer";
|
|
3489
|
+
};
|
|
3490
|
+
readonly apps_reassigned: {
|
|
3491
|
+
readonly type: "integer";
|
|
3492
|
+
};
|
|
3493
|
+
readonly resources_reassigned: {
|
|
3494
|
+
readonly type: "integer";
|
|
3495
|
+
};
|
|
3496
|
+
readonly variables_reassigned: {
|
|
3497
|
+
readonly type: "integer";
|
|
3498
|
+
};
|
|
3499
|
+
readonly schedules_reassigned: {
|
|
3500
|
+
readonly type: "integer";
|
|
3501
|
+
};
|
|
3502
|
+
readonly triggers_reassigned: {
|
|
3503
|
+
readonly type: "integer";
|
|
3504
|
+
};
|
|
3505
|
+
readonly drafts_deleted: {
|
|
3506
|
+
readonly type: "integer";
|
|
3507
|
+
};
|
|
3508
|
+
};
|
|
3509
|
+
readonly required: readonly ["scripts_reassigned", "flows_reassigned", "apps_reassigned", "resources_reassigned", "variables_reassigned", "schedules_reassigned", "triggers_reassigned", "drafts_deleted"];
|
|
3510
|
+
};
|
|
3511
|
+
export declare const $GlobalOffboardPreview: {
|
|
3512
|
+
readonly type: "object";
|
|
3513
|
+
readonly properties: {
|
|
3514
|
+
readonly workspaces: {
|
|
3515
|
+
readonly type: "array";
|
|
3516
|
+
readonly items: {
|
|
3517
|
+
readonly $ref: "#/components/schemas/WorkspaceOffboardPreview";
|
|
3518
|
+
};
|
|
3519
|
+
};
|
|
3520
|
+
};
|
|
3521
|
+
readonly required: readonly ["workspaces"];
|
|
3522
|
+
};
|
|
3523
|
+
export declare const $WorkspaceOffboardPreview: {
|
|
3524
|
+
readonly type: "object";
|
|
3525
|
+
readonly properties: {
|
|
3526
|
+
readonly workspace_id: {
|
|
3527
|
+
readonly type: "string";
|
|
3528
|
+
};
|
|
3529
|
+
readonly username: {
|
|
3530
|
+
readonly type: "string";
|
|
3531
|
+
};
|
|
3532
|
+
readonly preview: {
|
|
3533
|
+
readonly $ref: "#/components/schemas/OffboardPreview";
|
|
3534
|
+
};
|
|
3535
|
+
};
|
|
3536
|
+
readonly required: readonly ["workspace_id", "username", "preview"];
|
|
3537
|
+
};
|
|
3538
|
+
export declare const $GlobalOffboardRequest: {
|
|
3539
|
+
readonly type: "object";
|
|
3540
|
+
readonly properties: {
|
|
3541
|
+
readonly reassignments: {
|
|
3542
|
+
readonly type: "object";
|
|
3543
|
+
readonly additionalProperties: {
|
|
3544
|
+
readonly $ref: "#/components/schemas/WorkspaceReassignment";
|
|
3545
|
+
};
|
|
3546
|
+
readonly description: "Map of workspace_id to reassignment config";
|
|
3547
|
+
};
|
|
3548
|
+
readonly delete_user: {
|
|
3549
|
+
readonly type: "boolean";
|
|
3550
|
+
readonly default: true;
|
|
3551
|
+
readonly description: "Whether to also remove the user from the instance";
|
|
3552
|
+
};
|
|
3553
|
+
};
|
|
3554
|
+
};
|
|
3555
|
+
export declare const $WorkspaceReassignment: {
|
|
3556
|
+
readonly type: "object";
|
|
3557
|
+
readonly properties: {
|
|
3558
|
+
readonly reassign_to: {
|
|
3559
|
+
readonly type: "string";
|
|
3560
|
+
readonly description: "Target: 'u/{username}' or 'f/{folder}'";
|
|
3561
|
+
};
|
|
3562
|
+
readonly new_on_behalf_of_user: {
|
|
3563
|
+
readonly type: "string";
|
|
3564
|
+
readonly description: "Required when reassign_to is a folder. Username to use as permissioned_as.";
|
|
3565
|
+
};
|
|
3566
|
+
};
|
|
3567
|
+
readonly required: readonly ["reassign_to"];
|
|
3568
|
+
};
|
|
3303
3569
|
export declare const $TruncatedToken: {
|
|
3304
3570
|
readonly type: "object";
|
|
3305
3571
|
readonly properties: {
|
|
@@ -3330,9 +3596,50 @@ export declare const $TruncatedToken: {
|
|
|
3330
3596
|
readonly email: {
|
|
3331
3597
|
readonly type: "string";
|
|
3332
3598
|
};
|
|
3599
|
+
readonly workspace_id: {
|
|
3600
|
+
readonly type: "string";
|
|
3601
|
+
};
|
|
3333
3602
|
};
|
|
3334
3603
|
readonly required: readonly ["token_prefix", "created_at", "last_used_at"];
|
|
3335
3604
|
};
|
|
3605
|
+
export declare const $ExternalJwtToken: {
|
|
3606
|
+
readonly type: "object";
|
|
3607
|
+
readonly properties: {
|
|
3608
|
+
readonly jwt_hash: {
|
|
3609
|
+
readonly type: "integer";
|
|
3610
|
+
readonly format: "int64";
|
|
3611
|
+
};
|
|
3612
|
+
readonly email: {
|
|
3613
|
+
readonly type: "string";
|
|
3614
|
+
};
|
|
3615
|
+
readonly username: {
|
|
3616
|
+
readonly type: "string";
|
|
3617
|
+
};
|
|
3618
|
+
readonly is_admin: {
|
|
3619
|
+
readonly type: "boolean";
|
|
3620
|
+
};
|
|
3621
|
+
readonly is_operator: {
|
|
3622
|
+
readonly type: "boolean";
|
|
3623
|
+
};
|
|
3624
|
+
readonly workspace_id: {
|
|
3625
|
+
readonly type: "string";
|
|
3626
|
+
};
|
|
3627
|
+
readonly label: {
|
|
3628
|
+
readonly type: "string";
|
|
3629
|
+
};
|
|
3630
|
+
readonly scopes: {
|
|
3631
|
+
readonly type: "array";
|
|
3632
|
+
readonly items: {
|
|
3633
|
+
readonly type: "string";
|
|
3634
|
+
};
|
|
3635
|
+
};
|
|
3636
|
+
readonly last_used_at: {
|
|
3637
|
+
readonly type: "string";
|
|
3638
|
+
readonly format: "date-time";
|
|
3639
|
+
};
|
|
3640
|
+
};
|
|
3641
|
+
readonly required: readonly ["jwt_hash", "email", "username", "is_admin", "is_operator", "last_used_at"];
|
|
3642
|
+
};
|
|
3336
3643
|
export declare const $NewToken: {
|
|
3337
3644
|
readonly type: "object";
|
|
3338
3645
|
readonly properties: {
|
|
@@ -3996,7 +4303,7 @@ export declare const $Schedule: {
|
|
|
3996
4303
|
readonly properties: {
|
|
3997
4304
|
readonly path: {
|
|
3998
4305
|
readonly type: "string";
|
|
3999
|
-
readonly description: "The unique path
|
|
4306
|
+
readonly description: "The unique Windmill path for this schedule. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`.";
|
|
4000
4307
|
};
|
|
4001
4308
|
readonly edited_by: {
|
|
4002
4309
|
readonly type: "string";
|
|
@@ -4182,7 +4489,7 @@ export declare const $NewSchedule: {
|
|
|
4182
4489
|
readonly properties: {
|
|
4183
4490
|
readonly path: {
|
|
4184
4491
|
readonly type: "string";
|
|
4185
|
-
readonly description: "The unique path
|
|
4492
|
+
readonly description: "The unique Windmill path for this schedule. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`.";
|
|
4186
4493
|
};
|
|
4187
4494
|
readonly schedule: {
|
|
4188
4495
|
readonly type: "string";
|
|
@@ -4432,7 +4739,7 @@ export declare const $EditSchedule: {
|
|
|
4432
4739
|
export declare const $JobTriggerKind: {
|
|
4433
4740
|
readonly description: "job trigger kind (schedule, http, websocket...)";
|
|
4434
4741
|
readonly type: "string";
|
|
4435
|
-
readonly enum: readonly ["webhook", "default_email", "email", "schedule", "http", "websocket", "postgres", "kafka", "nats", "mqtt", "sqs", "gcp", "google"];
|
|
4742
|
+
readonly enum: readonly ["webhook", "default_email", "email", "schedule", "http", "websocket", "postgres", "kafka", "nats", "mqtt", "sqs", "gcp", "azure", "google", "github"];
|
|
4436
4743
|
};
|
|
4437
4744
|
export declare const $TriggerMode: {
|
|
4438
4745
|
readonly description: "job trigger mode";
|
|
@@ -4444,7 +4751,7 @@ export declare const $TriggerExtraProperty: {
|
|
|
4444
4751
|
readonly properties: {
|
|
4445
4752
|
readonly path: {
|
|
4446
4753
|
readonly type: "string";
|
|
4447
|
-
readonly description: "The unique path
|
|
4754
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
4448
4755
|
};
|
|
4449
4756
|
readonly script_path: {
|
|
4450
4757
|
readonly type: "string";
|
|
@@ -4712,7 +5019,7 @@ export declare const $NewHttpTrigger: {
|
|
|
4712
5019
|
readonly properties: {
|
|
4713
5020
|
readonly path: {
|
|
4714
5021
|
readonly type: "string";
|
|
4715
|
-
readonly description: "The unique path
|
|
5022
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
4716
5023
|
};
|
|
4717
5024
|
readonly script_path: {
|
|
4718
5025
|
readonly type: "string";
|
|
@@ -4830,7 +5137,7 @@ export declare const $EditHttpTrigger: {
|
|
|
4830
5137
|
readonly properties: {
|
|
4831
5138
|
readonly path: {
|
|
4832
5139
|
readonly type: "string";
|
|
4833
|
-
readonly description: "The unique path
|
|
5140
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
4834
5141
|
};
|
|
4835
5142
|
readonly script_path: {
|
|
4836
5143
|
readonly type: "string";
|
|
@@ -4984,6 +5291,9 @@ export declare const $TriggersCount: {
|
|
|
4984
5291
|
readonly gcp_count: {
|
|
4985
5292
|
readonly type: "number";
|
|
4986
5293
|
};
|
|
5294
|
+
readonly azure_count: {
|
|
5295
|
+
readonly type: "number";
|
|
5296
|
+
};
|
|
4987
5297
|
readonly sqs_count: {
|
|
4988
5298
|
readonly type: "number";
|
|
4989
5299
|
};
|
|
@@ -4993,6 +5303,9 @@ export declare const $TriggersCount: {
|
|
|
4993
5303
|
readonly google_count: {
|
|
4994
5304
|
readonly type: "number";
|
|
4995
5305
|
};
|
|
5306
|
+
readonly github_count: {
|
|
5307
|
+
readonly type: "number";
|
|
5308
|
+
};
|
|
4996
5309
|
};
|
|
4997
5310
|
};
|
|
4998
5311
|
export declare const $WebsocketHeartbeat: {
|
|
@@ -5103,7 +5416,7 @@ export declare const $NewWebsocketTrigger: {
|
|
|
5103
5416
|
readonly properties: {
|
|
5104
5417
|
readonly path: {
|
|
5105
5418
|
readonly type: "string";
|
|
5106
|
-
readonly description: "The unique path
|
|
5419
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
5107
5420
|
};
|
|
5108
5421
|
readonly script_path: {
|
|
5109
5422
|
readonly type: "string";
|
|
@@ -5204,7 +5517,7 @@ export declare const $EditWebsocketTrigger: {
|
|
|
5204
5517
|
};
|
|
5205
5518
|
readonly path: {
|
|
5206
5519
|
readonly type: "string";
|
|
5207
|
-
readonly description: "The unique path
|
|
5520
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
5208
5521
|
};
|
|
5209
5522
|
readonly script_path: {
|
|
5210
5523
|
readonly type: "string";
|
|
@@ -5463,7 +5776,7 @@ export declare const $NewMqttTrigger: {
|
|
|
5463
5776
|
};
|
|
5464
5777
|
readonly path: {
|
|
5465
5778
|
readonly type: "string";
|
|
5466
|
-
readonly description: "The unique path
|
|
5779
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
5467
5780
|
};
|
|
5468
5781
|
readonly script_path: {
|
|
5469
5782
|
readonly type: "string";
|
|
@@ -5541,7 +5854,7 @@ export declare const $EditMqttTrigger: {
|
|
|
5541
5854
|
};
|
|
5542
5855
|
readonly path: {
|
|
5543
5856
|
readonly type: "string";
|
|
5544
|
-
readonly description: "The unique path
|
|
5857
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
5545
5858
|
};
|
|
5546
5859
|
readonly script_path: {
|
|
5547
5860
|
readonly type: "string";
|
|
@@ -5697,7 +6010,7 @@ export declare const $GcpTriggerData: {
|
|
|
5697
6010
|
};
|
|
5698
6011
|
readonly path: {
|
|
5699
6012
|
readonly type: "string";
|
|
5700
|
-
readonly description: "The unique path
|
|
6013
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
5701
6014
|
};
|
|
5702
6015
|
readonly script_path: {
|
|
5703
6016
|
readonly type: "string";
|
|
@@ -5768,32 +6081,226 @@ export declare const $DeleteGcpSubscription: {
|
|
|
5768
6081
|
};
|
|
5769
6082
|
readonly required: readonly ["subscription_id"];
|
|
5770
6083
|
};
|
|
5771
|
-
export declare const $
|
|
6084
|
+
export declare const $AzureMode: {
|
|
5772
6085
|
readonly type: "string";
|
|
5773
|
-
readonly enum: readonly ["
|
|
6086
|
+
readonly enum: readonly ["basic_push", "namespace_push", "namespace_pull"];
|
|
6087
|
+
readonly description: "Azure Event Grid trigger mode.";
|
|
5774
6088
|
};
|
|
5775
|
-
export declare const $
|
|
5776
|
-
readonly allOf: readonly [{
|
|
5777
|
-
readonly $ref: "#/components/schemas/TriggerExtraProperty";
|
|
5778
|
-
}];
|
|
6089
|
+
export declare const $AzureArmResource: {
|
|
5779
6090
|
readonly type: "object";
|
|
6091
|
+
readonly description: "An ARM resource the service principal can see.";
|
|
5780
6092
|
readonly properties: {
|
|
5781
|
-
readonly
|
|
6093
|
+
readonly id: {
|
|
5782
6094
|
readonly type: "string";
|
|
5783
|
-
readonly description: "The full URL of the AWS SQS queue to poll for messages";
|
|
5784
6095
|
};
|
|
5785
|
-
readonly
|
|
5786
|
-
readonly
|
|
5787
|
-
readonly description: "Authentication type - 'credentials' for access key/secret, 'oidc' for OpenID Connect";
|
|
6096
|
+
readonly name: {
|
|
6097
|
+
readonly type: "string";
|
|
5788
6098
|
};
|
|
5789
|
-
readonly
|
|
6099
|
+
readonly location: {
|
|
5790
6100
|
readonly type: "string";
|
|
5791
|
-
readonly description: "Path to the AWS resource containing credentials or OIDC configuration";
|
|
5792
6101
|
};
|
|
5793
|
-
readonly
|
|
5794
|
-
readonly type: "
|
|
5795
|
-
|
|
5796
|
-
|
|
6102
|
+
readonly type: {
|
|
6103
|
+
readonly type: "string";
|
|
6104
|
+
};
|
|
6105
|
+
};
|
|
6106
|
+
readonly required: readonly ["id", "name", "type"];
|
|
6107
|
+
};
|
|
6108
|
+
export declare const $AzureDeleteSubscription: {
|
|
6109
|
+
readonly type: "object";
|
|
6110
|
+
readonly properties: {
|
|
6111
|
+
readonly azure_mode: {
|
|
6112
|
+
readonly $ref: "#/components/schemas/AzureMode";
|
|
6113
|
+
};
|
|
6114
|
+
readonly scope_resource_id: {
|
|
6115
|
+
readonly type: "string";
|
|
6116
|
+
};
|
|
6117
|
+
readonly topic_name: {
|
|
6118
|
+
readonly type: "string";
|
|
6119
|
+
readonly nullable: true;
|
|
6120
|
+
};
|
|
6121
|
+
readonly subscription_name: {
|
|
6122
|
+
readonly type: "string";
|
|
6123
|
+
};
|
|
6124
|
+
};
|
|
6125
|
+
readonly required: readonly ["azure_mode", "scope_resource_id", "subscription_name"];
|
|
6126
|
+
};
|
|
6127
|
+
export declare const $AzureTrigger: {
|
|
6128
|
+
readonly allOf: readonly [{
|
|
6129
|
+
readonly $ref: "#/components/schemas/TriggerExtraProperty";
|
|
6130
|
+
}];
|
|
6131
|
+
readonly type: "object";
|
|
6132
|
+
readonly description: "An Azure Event Grid trigger that executes a script or flow when events arrive.";
|
|
6133
|
+
readonly properties: {
|
|
6134
|
+
readonly azure_resource_path: {
|
|
6135
|
+
readonly type: "string";
|
|
6136
|
+
};
|
|
6137
|
+
readonly azure_mode: {
|
|
6138
|
+
readonly $ref: "#/components/schemas/AzureMode";
|
|
6139
|
+
};
|
|
6140
|
+
readonly scope_resource_id: {
|
|
6141
|
+
readonly type: "string";
|
|
6142
|
+
readonly description: "ARM resource ID of the topic (basic) or namespace (namespace modes).";
|
|
6143
|
+
};
|
|
6144
|
+
readonly topic_name: {
|
|
6145
|
+
readonly type: "string";
|
|
6146
|
+
readonly nullable: true;
|
|
6147
|
+
readonly description: "Topic name within the namespace (namespace modes only).";
|
|
6148
|
+
};
|
|
6149
|
+
readonly subscription_name: {
|
|
6150
|
+
readonly type: "string";
|
|
6151
|
+
};
|
|
6152
|
+
readonly event_type_filters: {
|
|
6153
|
+
readonly type: "array";
|
|
6154
|
+
readonly items: {
|
|
6155
|
+
readonly type: "string";
|
|
6156
|
+
};
|
|
6157
|
+
readonly nullable: true;
|
|
6158
|
+
};
|
|
6159
|
+
readonly server_id: {
|
|
6160
|
+
readonly type: "string";
|
|
6161
|
+
};
|
|
6162
|
+
readonly last_server_ping: {
|
|
6163
|
+
readonly type: "string";
|
|
6164
|
+
readonly format: "date-time";
|
|
6165
|
+
};
|
|
6166
|
+
readonly error: {
|
|
6167
|
+
readonly type: "string";
|
|
6168
|
+
};
|
|
6169
|
+
readonly error_handler_path: {
|
|
6170
|
+
readonly type: "string";
|
|
6171
|
+
};
|
|
6172
|
+
readonly error_handler_args: {
|
|
6173
|
+
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
6174
|
+
};
|
|
6175
|
+
readonly retry: {
|
|
6176
|
+
readonly $ref: "#/components/schemas/Retry";
|
|
6177
|
+
};
|
|
6178
|
+
};
|
|
6179
|
+
readonly required: readonly ["azure_resource_path", "azure_mode", "scope_resource_id", "subscription_name"];
|
|
6180
|
+
};
|
|
6181
|
+
export declare const $AzureTriggerData: {
|
|
6182
|
+
readonly type: "object";
|
|
6183
|
+
readonly description: "Data for creating or updating an Azure Event Grid trigger.";
|
|
6184
|
+
readonly properties: {
|
|
6185
|
+
readonly azure_resource_path: {
|
|
6186
|
+
readonly type: "string";
|
|
6187
|
+
};
|
|
6188
|
+
readonly azure_mode: {
|
|
6189
|
+
readonly $ref: "#/components/schemas/AzureMode";
|
|
6190
|
+
};
|
|
6191
|
+
readonly scope_resource_id: {
|
|
6192
|
+
readonly type: "string";
|
|
6193
|
+
};
|
|
6194
|
+
readonly topic_name: {
|
|
6195
|
+
readonly type: "string";
|
|
6196
|
+
readonly nullable: true;
|
|
6197
|
+
};
|
|
6198
|
+
readonly subscription_name: {
|
|
6199
|
+
readonly type: "string";
|
|
6200
|
+
};
|
|
6201
|
+
readonly base_endpoint: {
|
|
6202
|
+
readonly type: "string";
|
|
6203
|
+
readonly description: "Base URL for push delivery endpoints (push modes only).";
|
|
6204
|
+
};
|
|
6205
|
+
readonly event_type_filters: {
|
|
6206
|
+
readonly type: "array";
|
|
6207
|
+
readonly items: {
|
|
6208
|
+
readonly type: "string";
|
|
6209
|
+
};
|
|
6210
|
+
};
|
|
6211
|
+
readonly path: {
|
|
6212
|
+
readonly type: "string";
|
|
6213
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
6214
|
+
};
|
|
6215
|
+
readonly script_path: {
|
|
6216
|
+
readonly type: "string";
|
|
6217
|
+
};
|
|
6218
|
+
readonly is_flow: {
|
|
6219
|
+
readonly type: "boolean";
|
|
6220
|
+
};
|
|
6221
|
+
readonly mode: {
|
|
6222
|
+
readonly $ref: "#/components/schemas/TriggerMode";
|
|
6223
|
+
};
|
|
6224
|
+
readonly error_handler_path: {
|
|
6225
|
+
readonly type: "string";
|
|
6226
|
+
};
|
|
6227
|
+
readonly error_handler_args: {
|
|
6228
|
+
readonly $ref: "#/components/schemas/ScriptArgs";
|
|
6229
|
+
};
|
|
6230
|
+
readonly retry: {
|
|
6231
|
+
readonly $ref: "#/components/schemas/Retry";
|
|
6232
|
+
};
|
|
6233
|
+
readonly permissioned_as: {
|
|
6234
|
+
readonly type: "string";
|
|
6235
|
+
};
|
|
6236
|
+
readonly preserve_permissioned_as: {
|
|
6237
|
+
readonly type: "boolean";
|
|
6238
|
+
};
|
|
6239
|
+
readonly labels: {
|
|
6240
|
+
readonly type: "array";
|
|
6241
|
+
readonly items: {
|
|
6242
|
+
readonly type: "string";
|
|
6243
|
+
};
|
|
6244
|
+
};
|
|
6245
|
+
};
|
|
6246
|
+
readonly required: readonly ["path", "script_path", "is_flow", "azure_resource_path", "azure_mode", "scope_resource_id", "subscription_name"];
|
|
6247
|
+
};
|
|
6248
|
+
export declare const $TestAzureConnection: {
|
|
6249
|
+
readonly type: "object";
|
|
6250
|
+
readonly properties: {
|
|
6251
|
+
readonly azure_resource_path: {
|
|
6252
|
+
readonly type: "string";
|
|
6253
|
+
};
|
|
6254
|
+
};
|
|
6255
|
+
readonly required: readonly ["azure_resource_path"];
|
|
6256
|
+
};
|
|
6257
|
+
export declare const $AzureListTopics: {
|
|
6258
|
+
readonly type: "object";
|
|
6259
|
+
readonly properties: {
|
|
6260
|
+
readonly scope_resource_id: {
|
|
6261
|
+
readonly type: "string";
|
|
6262
|
+
};
|
|
6263
|
+
};
|
|
6264
|
+
readonly required: readonly ["scope_resource_id"];
|
|
6265
|
+
};
|
|
6266
|
+
export declare const $AzureListSubscriptions: {
|
|
6267
|
+
readonly type: "object";
|
|
6268
|
+
readonly properties: {
|
|
6269
|
+
readonly scope_resource_id: {
|
|
6270
|
+
readonly type: "string";
|
|
6271
|
+
};
|
|
6272
|
+
readonly topic_name: {
|
|
6273
|
+
readonly type: "string";
|
|
6274
|
+
};
|
|
6275
|
+
};
|
|
6276
|
+
readonly required: readonly ["scope_resource_id", "topic_name"];
|
|
6277
|
+
};
|
|
6278
|
+
export declare const $AwsAuthResourceType: {
|
|
6279
|
+
readonly type: "string";
|
|
6280
|
+
readonly enum: readonly ["oidc", "credentials"];
|
|
6281
|
+
};
|
|
6282
|
+
export declare const $SqsTrigger: {
|
|
6283
|
+
readonly allOf: readonly [{
|
|
6284
|
+
readonly $ref: "#/components/schemas/TriggerExtraProperty";
|
|
6285
|
+
}];
|
|
6286
|
+
readonly type: "object";
|
|
6287
|
+
readonly properties: {
|
|
6288
|
+
readonly queue_url: {
|
|
6289
|
+
readonly type: "string";
|
|
6290
|
+
readonly description: "The full URL of the AWS SQS queue to poll for messages";
|
|
6291
|
+
};
|
|
6292
|
+
readonly aws_auth_resource_type: {
|
|
6293
|
+
readonly $ref: "#/components/schemas/AwsAuthResourceType";
|
|
6294
|
+
readonly description: "Authentication type - 'credentials' for access key/secret, 'oidc' for OpenID Connect";
|
|
6295
|
+
};
|
|
6296
|
+
readonly aws_resource_path: {
|
|
6297
|
+
readonly type: "string";
|
|
6298
|
+
readonly description: "Path to the AWS resource containing credentials or OIDC configuration";
|
|
6299
|
+
};
|
|
6300
|
+
readonly message_attributes: {
|
|
6301
|
+
readonly type: "array";
|
|
6302
|
+
readonly nullable: true;
|
|
6303
|
+
readonly items: {
|
|
5797
6304
|
readonly type: "string";
|
|
5798
6305
|
};
|
|
5799
6306
|
readonly description: "Array of SQS message attribute names to include with each message";
|
|
@@ -5905,7 +6412,7 @@ export declare const $NewSqsTrigger: {
|
|
|
5905
6412
|
};
|
|
5906
6413
|
readonly path: {
|
|
5907
6414
|
readonly type: "string";
|
|
5908
|
-
readonly description: "The unique path
|
|
6415
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
5909
6416
|
};
|
|
5910
6417
|
readonly script_path: {
|
|
5911
6418
|
readonly type: "string";
|
|
@@ -5972,7 +6479,7 @@ export declare const $EditSqsTrigger: {
|
|
|
5972
6479
|
};
|
|
5973
6480
|
readonly path: {
|
|
5974
6481
|
readonly type: "string";
|
|
5975
|
-
readonly description: "The unique path
|
|
6482
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
5976
6483
|
};
|
|
5977
6484
|
readonly script_path: {
|
|
5978
6485
|
readonly type: "string";
|
|
@@ -6165,7 +6672,7 @@ export declare const $NewPostgresTrigger: {
|
|
|
6165
6672
|
};
|
|
6166
6673
|
readonly path: {
|
|
6167
6674
|
readonly type: "string";
|
|
6168
|
-
readonly description: "The unique path
|
|
6675
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
6169
6676
|
};
|
|
6170
6677
|
readonly script_path: {
|
|
6171
6678
|
readonly type: "string";
|
|
@@ -6228,7 +6735,7 @@ export declare const $EditPostgresTrigger: {
|
|
|
6228
6735
|
};
|
|
6229
6736
|
readonly path: {
|
|
6230
6737
|
readonly type: "string";
|
|
6231
|
-
readonly description: "The unique path
|
|
6738
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
6232
6739
|
};
|
|
6233
6740
|
readonly script_path: {
|
|
6234
6741
|
readonly type: "string";
|
|
@@ -6362,7 +6869,7 @@ export declare const $NewKafkaTrigger: {
|
|
|
6362
6869
|
readonly properties: {
|
|
6363
6870
|
readonly path: {
|
|
6364
6871
|
readonly type: "string";
|
|
6365
|
-
readonly description: "The unique path
|
|
6872
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
6366
6873
|
};
|
|
6367
6874
|
readonly script_path: {
|
|
6368
6875
|
readonly type: "string";
|
|
@@ -6499,7 +7006,7 @@ export declare const $EditKafkaTrigger: {
|
|
|
6499
7006
|
};
|
|
6500
7007
|
readonly path: {
|
|
6501
7008
|
readonly type: "string";
|
|
6502
|
-
readonly description: "The unique path
|
|
7009
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
6503
7010
|
};
|
|
6504
7011
|
readonly script_path: {
|
|
6505
7012
|
readonly type: "string";
|
|
@@ -6602,7 +7109,7 @@ export declare const $NewNatsTrigger: {
|
|
|
6602
7109
|
readonly properties: {
|
|
6603
7110
|
readonly path: {
|
|
6604
7111
|
readonly type: "string";
|
|
6605
|
-
readonly description: "The unique path
|
|
7112
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
6606
7113
|
};
|
|
6607
7114
|
readonly script_path: {
|
|
6608
7115
|
readonly type: "string";
|
|
@@ -6699,7 +7206,7 @@ export declare const $EditNatsTrigger: {
|
|
|
6699
7206
|
};
|
|
6700
7207
|
readonly path: {
|
|
6701
7208
|
readonly type: "string";
|
|
6702
|
-
readonly description: "The unique path
|
|
7209
|
+
readonly description: "The unique Windmill path for this trigger. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`. This is the trigger object path, not the HTTP route path.";
|
|
6703
7210
|
};
|
|
6704
7211
|
readonly script_path: {
|
|
6705
7212
|
readonly type: "string";
|
|
@@ -6972,9 +7479,30 @@ export declare const $Folder: {
|
|
|
6972
7479
|
readonly type: "string";
|
|
6973
7480
|
readonly format: "date-time";
|
|
6974
7481
|
};
|
|
7482
|
+
readonly default_permissioned_as: {
|
|
7483
|
+
readonly $ref: "#/components/schemas/FolderDefaultPermissionedAs";
|
|
7484
|
+
};
|
|
6975
7485
|
};
|
|
6976
7486
|
readonly required: readonly ["name", "owners", "extra_perms"];
|
|
6977
7487
|
};
|
|
7488
|
+
export declare const $FolderDefaultPermissionedAs: {
|
|
7489
|
+
readonly description: "Ordered list of rules applied at create-time when admins or `wm_deployers` members deploy items in this folder. The first rule whose `path_glob` matches the item path (relative to the folder root) wins, and its `permissioned_as` is used as the default.\n";
|
|
7490
|
+
readonly type: "array";
|
|
7491
|
+
readonly items: {
|
|
7492
|
+
readonly type: "object";
|
|
7493
|
+
readonly required: readonly ["path_glob", "permissioned_as"];
|
|
7494
|
+
readonly properties: {
|
|
7495
|
+
readonly path_glob: {
|
|
7496
|
+
readonly type: "string";
|
|
7497
|
+
readonly description: "Glob pattern evaluated against the item path *relative* to the folder root (e.g. \"jobs/**\" matches every item whose full path is `f/<folder>/jobs/...`). Supports `*`, `**`, `?`, `[abc]`, `{a,b}`.\n";
|
|
7498
|
+
};
|
|
7499
|
+
readonly permissioned_as: {
|
|
7500
|
+
readonly type: "string";
|
|
7501
|
+
readonly description: "Target identity the matched item should be permissioned as. Must be `u/<username>`, `g/<groupname>`, or an email that exists in this workspace.\n";
|
|
7502
|
+
};
|
|
7503
|
+
};
|
|
7504
|
+
};
|
|
7505
|
+
};
|
|
6978
7506
|
export declare const $WorkerPing: {
|
|
6979
7507
|
readonly type: "object";
|
|
6980
7508
|
readonly properties: {
|
|
@@ -7122,6 +7650,23 @@ export declare const $CreateWorkspaceFork: {
|
|
|
7122
7650
|
readonly color: {
|
|
7123
7651
|
readonly type: "string";
|
|
7124
7652
|
};
|
|
7653
|
+
readonly forked_datatables: {
|
|
7654
|
+
readonly type: "array";
|
|
7655
|
+
readonly items: {
|
|
7656
|
+
readonly type: "object";
|
|
7657
|
+
readonly required: readonly ["name", "new_dbname"];
|
|
7658
|
+
readonly properties: {
|
|
7659
|
+
readonly name: {
|
|
7660
|
+
readonly type: "string";
|
|
7661
|
+
readonly description: "Datatable name";
|
|
7662
|
+
};
|
|
7663
|
+
readonly new_dbname: {
|
|
7664
|
+
readonly type: "string";
|
|
7665
|
+
readonly description: "New database name for the fork";
|
|
7666
|
+
};
|
|
7667
|
+
};
|
|
7668
|
+
};
|
|
7669
|
+
};
|
|
7125
7670
|
};
|
|
7126
7671
|
readonly required: readonly ["id", "name", "parent_workspace_id"];
|
|
7127
7672
|
};
|
|
@@ -7433,10 +7978,28 @@ export declare const $RestartedFrom: {
|
|
|
7433
7978
|
};
|
|
7434
7979
|
readonly branch_or_iteration_n: {
|
|
7435
7980
|
readonly type: "integer";
|
|
7981
|
+
readonly description: "0-based iteration index for ForLoop / branch index for BranchAll. Iterations 0..n-1 are preserved; iteration n is restarted.";
|
|
7436
7982
|
};
|
|
7437
7983
|
readonly flow_version: {
|
|
7438
7984
|
readonly type: "integer";
|
|
7439
7985
|
};
|
|
7986
|
+
readonly branch_chosen: {
|
|
7987
|
+
readonly description: "For BranchOne nested restart — the branch that was originally chosen, used to lock branch evaluation.";
|
|
7988
|
+
readonly type: "object";
|
|
7989
|
+
readonly properties: {
|
|
7990
|
+
readonly type: {
|
|
7991
|
+
readonly type: "string";
|
|
7992
|
+
readonly enum: readonly ["default", "branch"];
|
|
7993
|
+
};
|
|
7994
|
+
readonly branch: {
|
|
7995
|
+
readonly type: "integer";
|
|
7996
|
+
};
|
|
7997
|
+
};
|
|
7998
|
+
};
|
|
7999
|
+
readonly nested: {
|
|
8000
|
+
readonly $ref: "#/components/schemas/RestartedFrom";
|
|
8001
|
+
readonly description: "When set, the worker spawns the child for `step_id` as a `RestartedFlow` against `nested.flow_job_id` instead of fresh-launching it.";
|
|
8002
|
+
};
|
|
7440
8003
|
};
|
|
7441
8004
|
};
|
|
7442
8005
|
export declare const $Policy: {
|
|
@@ -7718,22 +8281,20 @@ export declare const $SlackToken: {
|
|
|
7718
8281
|
readonly access_token: {
|
|
7719
8282
|
readonly type: "string";
|
|
7720
8283
|
};
|
|
7721
|
-
readonly
|
|
7722
|
-
readonly type: "string";
|
|
7723
|
-
};
|
|
7724
|
-
readonly team_name: {
|
|
7725
|
-
readonly type: "string";
|
|
7726
|
-
};
|
|
7727
|
-
readonly bot: {
|
|
8284
|
+
readonly team: {
|
|
7728
8285
|
readonly type: "object";
|
|
7729
8286
|
readonly properties: {
|
|
7730
|
-
readonly
|
|
8287
|
+
readonly id: {
|
|
8288
|
+
readonly type: "string";
|
|
8289
|
+
};
|
|
8290
|
+
readonly name: {
|
|
7731
8291
|
readonly type: "string";
|
|
7732
8292
|
};
|
|
7733
8293
|
};
|
|
8294
|
+
readonly required: readonly ["id", "name"];
|
|
7734
8295
|
};
|
|
7735
8296
|
};
|
|
7736
|
-
readonly required: readonly ["access_token"
|
|
8297
|
+
readonly required: readonly ["access_token"];
|
|
7737
8298
|
};
|
|
7738
8299
|
export declare const $TokenResponse: {
|
|
7739
8300
|
readonly type: "object";
|
|
@@ -7889,6 +8450,17 @@ export declare const $DataTableSettings: {
|
|
|
7889
8450
|
};
|
|
7890
8451
|
readonly required: readonly ["resource_type"];
|
|
7891
8452
|
};
|
|
8453
|
+
readonly forked_from: {
|
|
8454
|
+
readonly type: "object";
|
|
8455
|
+
readonly description: "Fork origin info with schema snapshot";
|
|
8456
|
+
readonly properties: {
|
|
8457
|
+
readonly schema: {
|
|
8458
|
+
readonly type: "object";
|
|
8459
|
+
readonly description: "Schema snapshot at fork time";
|
|
8460
|
+
readonly additionalProperties: true;
|
|
8461
|
+
};
|
|
8462
|
+
};
|
|
8463
|
+
};
|
|
7892
8464
|
};
|
|
7893
8465
|
};
|
|
7894
8466
|
};
|
|
@@ -7922,6 +8494,51 @@ export declare const $DataTableSchema: {
|
|
|
7922
8494
|
};
|
|
7923
8495
|
};
|
|
7924
8496
|
};
|
|
8497
|
+
export declare const $DataTableTables: {
|
|
8498
|
+
readonly type: "object";
|
|
8499
|
+
readonly required: readonly ["datatable_name", "schemas"];
|
|
8500
|
+
readonly properties: {
|
|
8501
|
+
readonly datatable_name: {
|
|
8502
|
+
readonly type: "string";
|
|
8503
|
+
};
|
|
8504
|
+
readonly schemas: {
|
|
8505
|
+
readonly type: "object";
|
|
8506
|
+
readonly description: "Hierarchical metadata: schema_name -> table_names";
|
|
8507
|
+
readonly additionalProperties: {
|
|
8508
|
+
readonly type: "array";
|
|
8509
|
+
readonly items: {
|
|
8510
|
+
readonly type: "string";
|
|
8511
|
+
};
|
|
8512
|
+
};
|
|
8513
|
+
};
|
|
8514
|
+
readonly error: {
|
|
8515
|
+
readonly type: "string";
|
|
8516
|
+
};
|
|
8517
|
+
};
|
|
8518
|
+
};
|
|
8519
|
+
export declare const $DataTableTableSchema: {
|
|
8520
|
+
readonly type: "object";
|
|
8521
|
+
readonly required: readonly ["datatable_name", "schema_name", "table_name", "columns"];
|
|
8522
|
+
readonly properties: {
|
|
8523
|
+
readonly datatable_name: {
|
|
8524
|
+
readonly type: "string";
|
|
8525
|
+
};
|
|
8526
|
+
readonly schema_name: {
|
|
8527
|
+
readonly type: "string";
|
|
8528
|
+
};
|
|
8529
|
+
readonly table_name: {
|
|
8530
|
+
readonly type: "string";
|
|
8531
|
+
};
|
|
8532
|
+
readonly columns: {
|
|
8533
|
+
readonly type: "object";
|
|
8534
|
+
readonly description: "Columns in this table: column_name -> compact_type";
|
|
8535
|
+
readonly additionalProperties: {
|
|
8536
|
+
readonly type: "string";
|
|
8537
|
+
readonly description: "Compact type: 'type[?][=default]' where ? means nullable";
|
|
8538
|
+
};
|
|
8539
|
+
};
|
|
8540
|
+
};
|
|
8541
|
+
};
|
|
7925
8542
|
export declare const $DynamicInputData: {
|
|
7926
8543
|
readonly type: "object";
|
|
7927
8544
|
readonly properties: {
|
|
@@ -8123,9 +8740,6 @@ export declare const $GitRepositorySettings: {
|
|
|
8123
8740
|
readonly group_by_folder: {
|
|
8124
8741
|
readonly type: "boolean";
|
|
8125
8742
|
};
|
|
8126
|
-
readonly force_branch: {
|
|
8127
|
-
readonly type: "string";
|
|
8128
|
-
};
|
|
8129
8743
|
readonly collapsed: {
|
|
8130
8744
|
readonly type: "boolean";
|
|
8131
8745
|
};
|
|
@@ -8446,7 +9060,7 @@ export declare const $CriticalAlert: {
|
|
|
8446
9060
|
};
|
|
8447
9061
|
export declare const $CaptureTriggerKind: {
|
|
8448
9062
|
readonly type: "string";
|
|
8449
|
-
readonly enum: readonly ["webhook", "http", "websocket", "kafka", "default_email", "nats", "postgres", "sqs", "mqtt", "gcp", "email"];
|
|
9063
|
+
readonly enum: readonly ["webhook", "http", "websocket", "kafka", "default_email", "nats", "postgres", "sqs", "mqtt", "gcp", "azure", "email"];
|
|
8450
9064
|
};
|
|
8451
9065
|
export declare const $Capture: {
|
|
8452
9066
|
readonly type: "object";
|
|
@@ -8889,7 +9503,7 @@ export declare const $ProtectionRules: {
|
|
|
8889
9503
|
};
|
|
8890
9504
|
export declare const $ProtectionRuleKind: {
|
|
8891
9505
|
readonly type: "string";
|
|
8892
|
-
readonly enum: readonly ["DisableDirectDeployment", "DisableWorkspaceForking"];
|
|
9506
|
+
readonly enum: readonly ["DisableDirectDeployment", "DisableWorkspaceForking", "RestrictDeployToDeployers"];
|
|
8893
9507
|
};
|
|
8894
9508
|
export declare const $RuleBypasserGroups: {
|
|
8895
9509
|
readonly type: "array";
|
|
@@ -8905,6 +9519,110 @@ export declare const $RuleBypasserUsers: {
|
|
|
8905
9519
|
readonly type: "string";
|
|
8906
9520
|
};
|
|
8907
9521
|
};
|
|
9522
|
+
export declare const $DeploymentRequestEligibleDeployer: {
|
|
9523
|
+
readonly type: "object";
|
|
9524
|
+
readonly required: readonly ["username", "email", "is_admin"];
|
|
9525
|
+
readonly properties: {
|
|
9526
|
+
readonly username: {
|
|
9527
|
+
readonly type: "string";
|
|
9528
|
+
};
|
|
9529
|
+
readonly email: {
|
|
9530
|
+
readonly type: "string";
|
|
9531
|
+
};
|
|
9532
|
+
readonly is_admin: {
|
|
9533
|
+
readonly type: "boolean";
|
|
9534
|
+
};
|
|
9535
|
+
};
|
|
9536
|
+
};
|
|
9537
|
+
export declare const $DeploymentRequestAssignee: {
|
|
9538
|
+
readonly type: "object";
|
|
9539
|
+
readonly required: readonly ["username", "email"];
|
|
9540
|
+
readonly properties: {
|
|
9541
|
+
readonly username: {
|
|
9542
|
+
readonly type: "string";
|
|
9543
|
+
};
|
|
9544
|
+
readonly email: {
|
|
9545
|
+
readonly type: "string";
|
|
9546
|
+
};
|
|
9547
|
+
};
|
|
9548
|
+
};
|
|
9549
|
+
export declare const $DeploymentRequestComment: {
|
|
9550
|
+
readonly type: "object";
|
|
9551
|
+
readonly required: readonly ["id", "author", "author_email", "body", "obsolete", "created_at"];
|
|
9552
|
+
readonly properties: {
|
|
9553
|
+
readonly id: {
|
|
9554
|
+
readonly type: "integer";
|
|
9555
|
+
readonly format: "int64";
|
|
9556
|
+
};
|
|
9557
|
+
readonly parent_id: {
|
|
9558
|
+
readonly type: "integer";
|
|
9559
|
+
readonly format: "int64";
|
|
9560
|
+
readonly nullable: true;
|
|
9561
|
+
};
|
|
9562
|
+
readonly author: {
|
|
9563
|
+
readonly type: "string";
|
|
9564
|
+
};
|
|
9565
|
+
readonly author_email: {
|
|
9566
|
+
readonly type: "string";
|
|
9567
|
+
};
|
|
9568
|
+
readonly body: {
|
|
9569
|
+
readonly type: "string";
|
|
9570
|
+
};
|
|
9571
|
+
readonly anchor_kind: {
|
|
9572
|
+
readonly type: "string";
|
|
9573
|
+
readonly nullable: true;
|
|
9574
|
+
};
|
|
9575
|
+
readonly anchor_path: {
|
|
9576
|
+
readonly type: "string";
|
|
9577
|
+
readonly nullable: true;
|
|
9578
|
+
};
|
|
9579
|
+
readonly obsolete: {
|
|
9580
|
+
readonly type: "boolean";
|
|
9581
|
+
};
|
|
9582
|
+
readonly created_at: {
|
|
9583
|
+
readonly type: "string";
|
|
9584
|
+
readonly format: "date-time";
|
|
9585
|
+
};
|
|
9586
|
+
};
|
|
9587
|
+
};
|
|
9588
|
+
export declare const $DeploymentRequest: {
|
|
9589
|
+
readonly type: "object";
|
|
9590
|
+
readonly required: readonly ["id", "source_workspace_id", "fork_workspace_id", "requested_by", "requested_by_email", "requested_at", "assignees", "comments"];
|
|
9591
|
+
readonly properties: {
|
|
9592
|
+
readonly id: {
|
|
9593
|
+
readonly type: "integer";
|
|
9594
|
+
readonly format: "int64";
|
|
9595
|
+
};
|
|
9596
|
+
readonly source_workspace_id: {
|
|
9597
|
+
readonly type: "string";
|
|
9598
|
+
};
|
|
9599
|
+
readonly fork_workspace_id: {
|
|
9600
|
+
readonly type: "string";
|
|
9601
|
+
};
|
|
9602
|
+
readonly requested_by: {
|
|
9603
|
+
readonly type: "string";
|
|
9604
|
+
};
|
|
9605
|
+
readonly requested_by_email: {
|
|
9606
|
+
readonly type: "string";
|
|
9607
|
+
};
|
|
9608
|
+
readonly requested_at: {
|
|
9609
|
+
readonly type: "string";
|
|
9610
|
+
readonly format: "date-time";
|
|
9611
|
+
};
|
|
9612
|
+
readonly assignees: {
|
|
9613
|
+
readonly type: "array";
|
|
9614
|
+
readonly items: {
|
|
9615
|
+
readonly $ref: "#/components/schemas/DeploymentRequestAssignee";
|
|
9616
|
+
};
|
|
9617
|
+
};
|
|
9618
|
+
readonly comments: {
|
|
9619
|
+
readonly type: "array";
|
|
9620
|
+
readonly items: {
|
|
9621
|
+
readonly $ref: "#/components/schemas/DeploymentRequestComment";
|
|
9622
|
+
};
|
|
9623
|
+
};
|
|
9624
|
+
};
|
|
9625
|
+
};
|
|
8908
9626
|
export declare const $QuotaInfo: {
|
|
8909
9627
|
readonly type: "object";
|
|
8910
9628
|
readonly properties: {
|
|
@@ -8922,7 +9640,7 @@ export declare const $QuotaInfo: {
|
|
|
8922
9640
|
};
|
|
8923
9641
|
export declare const $NativeServiceName: {
|
|
8924
9642
|
readonly type: "string";
|
|
8925
|
-
readonly enum: readonly ["nextcloud", "google"];
|
|
9643
|
+
readonly enum: readonly ["nextcloud", "google", "github"];
|
|
8926
9644
|
};
|
|
8927
9645
|
export declare const $NativeTrigger: {
|
|
8928
9646
|
readonly type: "object";
|
|
@@ -9223,3 +9941,21 @@ export declare const $SharedDriveEntry: {
|
|
|
9223
9941
|
};
|
|
9224
9942
|
readonly required: readonly ["id", "name"];
|
|
9225
9943
|
};
|
|
9944
|
+
export declare const $GithubRepoEntry: {
|
|
9945
|
+
readonly type: "object";
|
|
9946
|
+
readonly properties: {
|
|
9947
|
+
readonly full_name: {
|
|
9948
|
+
readonly type: "string";
|
|
9949
|
+
};
|
|
9950
|
+
readonly name: {
|
|
9951
|
+
readonly type: "string";
|
|
9952
|
+
};
|
|
9953
|
+
readonly owner: {
|
|
9954
|
+
readonly type: "string";
|
|
9955
|
+
};
|
|
9956
|
+
readonly private: {
|
|
9957
|
+
readonly type: "boolean";
|
|
9958
|
+
};
|
|
9959
|
+
};
|
|
9960
|
+
readonly required: readonly ["full_name", "name", "owner", "private"];
|
|
9961
|
+
};
|