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
|
@@ -94,6 +94,10 @@ export const $FlowValue = {
|
|
|
94
94
|
cache_ignore_s3_path: {
|
|
95
95
|
type: 'boolean'
|
|
96
96
|
},
|
|
97
|
+
delete_after_secs: {
|
|
98
|
+
type: 'integer',
|
|
99
|
+
description: "If set, delete the flow job's args, result and logs after this many seconds following job completion"
|
|
100
|
+
},
|
|
97
101
|
flow_env: {
|
|
98
102
|
type: 'object',
|
|
99
103
|
description: "Environment variables available to all steps. Values can be strings, JSON values, or special references: '$var:path' (workspace variable) or '$res:path' (resource).",
|
|
@@ -278,9 +282,9 @@ export const $FlowModule = {
|
|
|
278
282
|
description: 'Maximum execution time in seconds (static value or expression)',
|
|
279
283
|
'$ref': '#/components/schemas/InputTransform'
|
|
280
284
|
},
|
|
281
|
-
|
|
282
|
-
type: '
|
|
283
|
-
description: "If
|
|
285
|
+
delete_after_secs: {
|
|
286
|
+
type: 'integer',
|
|
287
|
+
description: "If set, delete the step's args, result and logs after this many seconds following job completion"
|
|
284
288
|
},
|
|
285
289
|
summary: {
|
|
286
290
|
type: 'string',
|
|
@@ -1133,6 +1137,11 @@ Range: 0.0 to 2.0 (provider-dependent)
|
|
|
1133
1137
|
type: 'string',
|
|
1134
1138
|
enum: ['aiagent']
|
|
1135
1139
|
},
|
|
1140
|
+
omit_output_from_conversation: {
|
|
1141
|
+
type: 'boolean',
|
|
1142
|
+
default: false,
|
|
1143
|
+
description: 'If true, this AI agent step does not persist its assistant or tool messages to the flow conversation when chat mode is enabled.'
|
|
1144
|
+
},
|
|
1136
1145
|
parallel: {
|
|
1137
1146
|
type: 'boolean',
|
|
1138
1147
|
description: 'If true, the agent can execute multiple tool calls in parallel'
|
|
@@ -1471,6 +1480,29 @@ export const $FlowNote = {
|
|
|
1471
1480
|
},
|
|
1472
1481
|
required: ['id', 'text', 'color', 'type']
|
|
1473
1482
|
};
|
|
1483
|
+
export const $CiTestResult = {
|
|
1484
|
+
type: 'object',
|
|
1485
|
+
properties: {
|
|
1486
|
+
test_script_path: {
|
|
1487
|
+
type: 'string'
|
|
1488
|
+
},
|
|
1489
|
+
job_id: {
|
|
1490
|
+
type: 'string',
|
|
1491
|
+
format: 'uuid',
|
|
1492
|
+
nullable: true
|
|
1493
|
+
},
|
|
1494
|
+
status: {
|
|
1495
|
+
type: 'string',
|
|
1496
|
+
nullable: true
|
|
1497
|
+
},
|
|
1498
|
+
started_at: {
|
|
1499
|
+
type: 'string',
|
|
1500
|
+
format: 'date-time',
|
|
1501
|
+
nullable: true
|
|
1502
|
+
}
|
|
1503
|
+
},
|
|
1504
|
+
required: ['test_script_path']
|
|
1505
|
+
};
|
|
1474
1506
|
export const $HealthStatusResponse = {
|
|
1475
1507
|
type: 'object',
|
|
1476
1508
|
description: 'Health status response (cached with 5s TTL)',
|
|
@@ -1822,6 +1854,10 @@ export const $VaultSettings = {
|
|
|
1822
1854
|
token: {
|
|
1823
1855
|
type: 'string',
|
|
1824
1856
|
description: 'Static Vault token for testing/development (optional, if provided this is used instead of JWT authentication)'
|
|
1857
|
+
},
|
|
1858
|
+
skip_ssl_verify: {
|
|
1859
|
+
type: 'boolean',
|
|
1860
|
+
description: 'Skip TLS certificate verification when connecting to Vault. Only use for self-signed certificates in development environments.'
|
|
1825
1861
|
}
|
|
1826
1862
|
}
|
|
1827
1863
|
};
|
|
@@ -1977,7 +2013,7 @@ export const $FlowConversation = {
|
|
|
1977
2013
|
};
|
|
1978
2014
|
export const $FlowConversationMessage = {
|
|
1979
2015
|
type: 'object',
|
|
1980
|
-
required: ['id', 'conversation_id', 'message_type', 'content', 'created_at'],
|
|
2016
|
+
required: ['id', 'conversation_id', 'message_type', 'content', 'created_at', 'created_seq'],
|
|
1981
2017
|
properties: {
|
|
1982
2018
|
id: {
|
|
1983
2019
|
type: 'string',
|
|
@@ -2009,6 +2045,11 @@ export const $FlowConversationMessage = {
|
|
|
2009
2045
|
format: 'date-time',
|
|
2010
2046
|
description: 'When the message was created'
|
|
2011
2047
|
},
|
|
2048
|
+
created_seq: {
|
|
2049
|
+
type: 'integer',
|
|
2050
|
+
format: 'int64',
|
|
2051
|
+
description: 'Monotonic cursor assigned when the message is inserted'
|
|
2052
|
+
},
|
|
2012
2053
|
step_name: {
|
|
2013
2054
|
type: 'string',
|
|
2014
2055
|
description: 'The step name that produced that message'
|
|
@@ -2377,8 +2418,9 @@ export const $Script = {
|
|
|
2377
2418
|
timeout: {
|
|
2378
2419
|
type: 'integer'
|
|
2379
2420
|
},
|
|
2380
|
-
|
|
2381
|
-
type: '
|
|
2421
|
+
delete_after_secs: {
|
|
2422
|
+
type: 'integer',
|
|
2423
|
+
description: "If set, delete the job's args, result and logs after this many seconds following job completion"
|
|
2382
2424
|
},
|
|
2383
2425
|
visible_to_runner_only: {
|
|
2384
2426
|
type: 'boolean'
|
|
@@ -2486,8 +2528,9 @@ export const $NewScript = {
|
|
|
2486
2528
|
timeout: {
|
|
2487
2529
|
type: 'integer'
|
|
2488
2530
|
},
|
|
2489
|
-
|
|
2490
|
-
type: '
|
|
2531
|
+
delete_after_secs: {
|
|
2532
|
+
type: 'integer',
|
|
2533
|
+
description: "If set, delete the job's args, result and logs after this many seconds following job completion"
|
|
2491
2534
|
},
|
|
2492
2535
|
deployment_message: {
|
|
2493
2536
|
type: 'string'
|
|
@@ -3402,6 +3445,229 @@ export const $EditWorkspaceUser = {
|
|
|
3402
3445
|
}
|
|
3403
3446
|
}
|
|
3404
3447
|
};
|
|
3448
|
+
export const $OffboardAffectedPaths = {
|
|
3449
|
+
type: 'object',
|
|
3450
|
+
properties: {
|
|
3451
|
+
scripts: {
|
|
3452
|
+
type: 'array',
|
|
3453
|
+
items: {
|
|
3454
|
+
type: 'string'
|
|
3455
|
+
}
|
|
3456
|
+
},
|
|
3457
|
+
flows: {
|
|
3458
|
+
type: 'array',
|
|
3459
|
+
items: {
|
|
3460
|
+
type: 'string'
|
|
3461
|
+
}
|
|
3462
|
+
},
|
|
3463
|
+
apps: {
|
|
3464
|
+
type: 'array',
|
|
3465
|
+
items: {
|
|
3466
|
+
type: 'string'
|
|
3467
|
+
}
|
|
3468
|
+
},
|
|
3469
|
+
resources: {
|
|
3470
|
+
type: 'array',
|
|
3471
|
+
items: {
|
|
3472
|
+
type: 'string'
|
|
3473
|
+
}
|
|
3474
|
+
},
|
|
3475
|
+
variables: {
|
|
3476
|
+
type: 'array',
|
|
3477
|
+
items: {
|
|
3478
|
+
type: 'string'
|
|
3479
|
+
}
|
|
3480
|
+
},
|
|
3481
|
+
schedules: {
|
|
3482
|
+
type: 'array',
|
|
3483
|
+
items: {
|
|
3484
|
+
type: 'string'
|
|
3485
|
+
}
|
|
3486
|
+
},
|
|
3487
|
+
triggers: {
|
|
3488
|
+
type: 'object',
|
|
3489
|
+
additionalProperties: {
|
|
3490
|
+
type: 'array',
|
|
3491
|
+
items: {
|
|
3492
|
+
type: 'string'
|
|
3493
|
+
}
|
|
3494
|
+
}
|
|
3495
|
+
}
|
|
3496
|
+
}
|
|
3497
|
+
};
|
|
3498
|
+
export const $OffboardPreview = {
|
|
3499
|
+
type: 'object',
|
|
3500
|
+
properties: {
|
|
3501
|
+
owned: {
|
|
3502
|
+
'$ref': '#/components/schemas/OffboardAffectedPaths',
|
|
3503
|
+
description: 'Objects under u/{username}/ that will be reassigned'
|
|
3504
|
+
},
|
|
3505
|
+
executing_on_behalf: {
|
|
3506
|
+
'$ref': '#/components/schemas/OffboardAffectedPaths',
|
|
3507
|
+
description: "Objects not under the user's path but that execute on behalf of this user (permissioned_as/on_behalf_of will be updated)"
|
|
3508
|
+
},
|
|
3509
|
+
referencing: {
|
|
3510
|
+
'$ref': '#/components/schemas/OffboardAffectedPaths',
|
|
3511
|
+
description: "Scripts/flows/apps/resources whose content or value references this user's paths (may break after reassignment)"
|
|
3512
|
+
},
|
|
3513
|
+
tokens: {
|
|
3514
|
+
type: 'array',
|
|
3515
|
+
items: {
|
|
3516
|
+
'$ref': '#/components/schemas/OffboardTokenInfo'
|
|
3517
|
+
},
|
|
3518
|
+
description: 'Tokens owned by this user (will be deleted)'
|
|
3519
|
+
},
|
|
3520
|
+
http_triggers: {
|
|
3521
|
+
type: 'integer',
|
|
3522
|
+
description: "HTTP triggers under the user's path (webhook URLs will change)"
|
|
3523
|
+
},
|
|
3524
|
+
email_triggers: {
|
|
3525
|
+
type: 'integer',
|
|
3526
|
+
description: "Email triggers under the user's path (email addresses will change)"
|
|
3527
|
+
}
|
|
3528
|
+
},
|
|
3529
|
+
required: ['owned', 'executing_on_behalf', 'referencing', 'tokens', 'http_triggers', 'email_triggers']
|
|
3530
|
+
};
|
|
3531
|
+
export const $OffboardTokenInfo = {
|
|
3532
|
+
type: 'object',
|
|
3533
|
+
properties: {
|
|
3534
|
+
label: {
|
|
3535
|
+
type: 'string'
|
|
3536
|
+
},
|
|
3537
|
+
scopes: {
|
|
3538
|
+
type: 'array',
|
|
3539
|
+
items: {
|
|
3540
|
+
type: 'string'
|
|
3541
|
+
}
|
|
3542
|
+
},
|
|
3543
|
+
expiration: {
|
|
3544
|
+
type: 'string'
|
|
3545
|
+
}
|
|
3546
|
+
},
|
|
3547
|
+
required: ['label', 'scopes']
|
|
3548
|
+
};
|
|
3549
|
+
export const $OffboardRequest = {
|
|
3550
|
+
type: 'object',
|
|
3551
|
+
properties: {
|
|
3552
|
+
reassign_to: {
|
|
3553
|
+
type: 'string',
|
|
3554
|
+
description: "Target for reassignment: 'u/{username}' or 'f/{folder}'"
|
|
3555
|
+
},
|
|
3556
|
+
new_on_behalf_of_user: {
|
|
3557
|
+
type: 'string',
|
|
3558
|
+
description: 'Required when reassign_to is a folder. The username whose identity will be used as permissioned_as for schedules and triggers.'
|
|
3559
|
+
},
|
|
3560
|
+
delete_user: {
|
|
3561
|
+
type: 'boolean',
|
|
3562
|
+
default: true,
|
|
3563
|
+
description: 'Whether to also remove the user from the workspace'
|
|
3564
|
+
}
|
|
3565
|
+
},
|
|
3566
|
+
required: ['reassign_to']
|
|
3567
|
+
};
|
|
3568
|
+
export const $OffboardResponse = {
|
|
3569
|
+
type: 'object',
|
|
3570
|
+
properties: {
|
|
3571
|
+
conflicts: {
|
|
3572
|
+
type: 'array',
|
|
3573
|
+
items: {
|
|
3574
|
+
type: 'string'
|
|
3575
|
+
},
|
|
3576
|
+
description: 'List of path conflicts that block the offboarding. Empty on success.'
|
|
3577
|
+
},
|
|
3578
|
+
summary: {
|
|
3579
|
+
'$ref': '#/components/schemas/OffboardSummary'
|
|
3580
|
+
}
|
|
3581
|
+
}
|
|
3582
|
+
};
|
|
3583
|
+
export const $OffboardSummary = {
|
|
3584
|
+
type: 'object',
|
|
3585
|
+
properties: {
|
|
3586
|
+
scripts_reassigned: {
|
|
3587
|
+
type: 'integer'
|
|
3588
|
+
},
|
|
3589
|
+
flows_reassigned: {
|
|
3590
|
+
type: 'integer'
|
|
3591
|
+
},
|
|
3592
|
+
apps_reassigned: {
|
|
3593
|
+
type: 'integer'
|
|
3594
|
+
},
|
|
3595
|
+
resources_reassigned: {
|
|
3596
|
+
type: 'integer'
|
|
3597
|
+
},
|
|
3598
|
+
variables_reassigned: {
|
|
3599
|
+
type: 'integer'
|
|
3600
|
+
},
|
|
3601
|
+
schedules_reassigned: {
|
|
3602
|
+
type: 'integer'
|
|
3603
|
+
},
|
|
3604
|
+
triggers_reassigned: {
|
|
3605
|
+
type: 'integer'
|
|
3606
|
+
},
|
|
3607
|
+
drafts_deleted: {
|
|
3608
|
+
type: 'integer'
|
|
3609
|
+
}
|
|
3610
|
+
},
|
|
3611
|
+
required: ['scripts_reassigned', 'flows_reassigned', 'apps_reassigned', 'resources_reassigned', 'variables_reassigned', 'schedules_reassigned', 'triggers_reassigned', 'drafts_deleted']
|
|
3612
|
+
};
|
|
3613
|
+
export const $GlobalOffboardPreview = {
|
|
3614
|
+
type: 'object',
|
|
3615
|
+
properties: {
|
|
3616
|
+
workspaces: {
|
|
3617
|
+
type: 'array',
|
|
3618
|
+
items: {
|
|
3619
|
+
'$ref': '#/components/schemas/WorkspaceOffboardPreview'
|
|
3620
|
+
}
|
|
3621
|
+
}
|
|
3622
|
+
},
|
|
3623
|
+
required: ['workspaces']
|
|
3624
|
+
};
|
|
3625
|
+
export const $WorkspaceOffboardPreview = {
|
|
3626
|
+
type: 'object',
|
|
3627
|
+
properties: {
|
|
3628
|
+
workspace_id: {
|
|
3629
|
+
type: 'string'
|
|
3630
|
+
},
|
|
3631
|
+
username: {
|
|
3632
|
+
type: 'string'
|
|
3633
|
+
},
|
|
3634
|
+
preview: {
|
|
3635
|
+
'$ref': '#/components/schemas/OffboardPreview'
|
|
3636
|
+
}
|
|
3637
|
+
},
|
|
3638
|
+
required: ['workspace_id', 'username', 'preview']
|
|
3639
|
+
};
|
|
3640
|
+
export const $GlobalOffboardRequest = {
|
|
3641
|
+
type: 'object',
|
|
3642
|
+
properties: {
|
|
3643
|
+
reassignments: {
|
|
3644
|
+
type: 'object',
|
|
3645
|
+
additionalProperties: {
|
|
3646
|
+
'$ref': '#/components/schemas/WorkspaceReassignment'
|
|
3647
|
+
},
|
|
3648
|
+
description: 'Map of workspace_id to reassignment config'
|
|
3649
|
+
},
|
|
3650
|
+
delete_user: {
|
|
3651
|
+
type: 'boolean',
|
|
3652
|
+
default: true,
|
|
3653
|
+
description: 'Whether to also remove the user from the instance'
|
|
3654
|
+
}
|
|
3655
|
+
}
|
|
3656
|
+
};
|
|
3657
|
+
export const $WorkspaceReassignment = {
|
|
3658
|
+
type: 'object',
|
|
3659
|
+
properties: {
|
|
3660
|
+
reassign_to: {
|
|
3661
|
+
type: 'string',
|
|
3662
|
+
description: "Target: 'u/{username}' or 'f/{folder}'"
|
|
3663
|
+
},
|
|
3664
|
+
new_on_behalf_of_user: {
|
|
3665
|
+
type: 'string',
|
|
3666
|
+
description: 'Required when reassign_to is a folder. Username to use as permissioned_as.'
|
|
3667
|
+
}
|
|
3668
|
+
},
|
|
3669
|
+
required: ['reassign_to']
|
|
3670
|
+
};
|
|
3405
3671
|
export const $TruncatedToken = {
|
|
3406
3672
|
type: 'object',
|
|
3407
3673
|
properties: {
|
|
@@ -3431,10 +3697,51 @@ export const $TruncatedToken = {
|
|
|
3431
3697
|
},
|
|
3432
3698
|
email: {
|
|
3433
3699
|
type: 'string'
|
|
3700
|
+
},
|
|
3701
|
+
workspace_id: {
|
|
3702
|
+
type: 'string'
|
|
3434
3703
|
}
|
|
3435
3704
|
},
|
|
3436
3705
|
required: ['token_prefix', 'created_at', 'last_used_at']
|
|
3437
3706
|
};
|
|
3707
|
+
export const $ExternalJwtToken = {
|
|
3708
|
+
type: 'object',
|
|
3709
|
+
properties: {
|
|
3710
|
+
jwt_hash: {
|
|
3711
|
+
type: 'integer',
|
|
3712
|
+
format: 'int64'
|
|
3713
|
+
},
|
|
3714
|
+
email: {
|
|
3715
|
+
type: 'string'
|
|
3716
|
+
},
|
|
3717
|
+
username: {
|
|
3718
|
+
type: 'string'
|
|
3719
|
+
},
|
|
3720
|
+
is_admin: {
|
|
3721
|
+
type: 'boolean'
|
|
3722
|
+
},
|
|
3723
|
+
is_operator: {
|
|
3724
|
+
type: 'boolean'
|
|
3725
|
+
},
|
|
3726
|
+
workspace_id: {
|
|
3727
|
+
type: 'string'
|
|
3728
|
+
},
|
|
3729
|
+
label: {
|
|
3730
|
+
type: 'string'
|
|
3731
|
+
},
|
|
3732
|
+
scopes: {
|
|
3733
|
+
type: 'array',
|
|
3734
|
+
items: {
|
|
3735
|
+
type: 'string'
|
|
3736
|
+
}
|
|
3737
|
+
},
|
|
3738
|
+
last_used_at: {
|
|
3739
|
+
type: 'string',
|
|
3740
|
+
format: 'date-time'
|
|
3741
|
+
}
|
|
3742
|
+
},
|
|
3743
|
+
required: ['jwt_hash', 'email', 'username', 'is_admin', 'is_operator', 'last_used_at']
|
|
3744
|
+
};
|
|
3438
3745
|
export const $NewToken = {
|
|
3439
3746
|
type: 'object',
|
|
3440
3747
|
properties: {
|
|
@@ -4110,7 +4417,7 @@ export const $Schedule = {
|
|
|
4110
4417
|
properties: {
|
|
4111
4418
|
path: {
|
|
4112
4419
|
type: 'string',
|
|
4113
|
-
description: 'The unique path
|
|
4420
|
+
description: 'The unique Windmill path for this schedule. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`.'
|
|
4114
4421
|
},
|
|
4115
4422
|
edited_by: {
|
|
4116
4423
|
type: 'string',
|
|
@@ -4299,7 +4606,7 @@ export const $NewSchedule = {
|
|
|
4299
4606
|
properties: {
|
|
4300
4607
|
path: {
|
|
4301
4608
|
type: 'string',
|
|
4302
|
-
description: 'The unique path
|
|
4609
|
+
description: 'The unique Windmill path for this schedule. Must be of the form `u/<user>/<path>` or `f/<folder>/<path>`.'
|
|
4303
4610
|
},
|
|
4304
4611
|
schedule: {
|
|
4305
4612
|
type: 'string',
|
|
@@ -4549,7 +4856,7 @@ export const $EditSchedule = {
|
|
|
4549
4856
|
export const $JobTriggerKind = {
|
|
4550
4857
|
description: 'job trigger kind (schedule, http, websocket...)',
|
|
4551
4858
|
type: 'string',
|
|
4552
|
-
enum: ['webhook', 'default_email', 'email', 'schedule', 'http', 'websocket', 'postgres', 'kafka', 'nats', 'mqtt', 'sqs', 'gcp', 'google']
|
|
4859
|
+
enum: ['webhook', 'default_email', 'email', 'schedule', 'http', 'websocket', 'postgres', 'kafka', 'nats', 'mqtt', 'sqs', 'gcp', 'azure', 'google', 'github']
|
|
4553
4860
|
};
|
|
4554
4861
|
export const $TriggerMode = {
|
|
4555
4862
|
description: 'job trigger mode',
|
|
@@ -4561,7 +4868,7 @@ export const $TriggerExtraProperty = {
|
|
|
4561
4868
|
properties: {
|
|
4562
4869
|
path: {
|
|
4563
4870
|
type: 'string',
|
|
4564
|
-
description: 'The unique path
|
|
4871
|
+
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.'
|
|
4565
4872
|
},
|
|
4566
4873
|
script_path: {
|
|
4567
4874
|
type: 'string',
|
|
@@ -4831,7 +5138,7 @@ export const $NewHttpTrigger = {
|
|
|
4831
5138
|
properties: {
|
|
4832
5139
|
path: {
|
|
4833
5140
|
type: 'string',
|
|
4834
|
-
description: 'The unique path
|
|
5141
|
+
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.'
|
|
4835
5142
|
},
|
|
4836
5143
|
script_path: {
|
|
4837
5144
|
type: 'string',
|
|
@@ -4949,7 +5256,7 @@ export const $EditHttpTrigger = {
|
|
|
4949
5256
|
properties: {
|
|
4950
5257
|
path: {
|
|
4951
5258
|
type: 'string',
|
|
4952
|
-
description: 'The unique path
|
|
5259
|
+
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.'
|
|
4953
5260
|
},
|
|
4954
5261
|
script_path: {
|
|
4955
5262
|
type: 'string',
|
|
@@ -5103,6 +5410,9 @@ export const $TriggersCount = {
|
|
|
5103
5410
|
gcp_count: {
|
|
5104
5411
|
type: 'number'
|
|
5105
5412
|
},
|
|
5413
|
+
azure_count: {
|
|
5414
|
+
type: 'number'
|
|
5415
|
+
},
|
|
5106
5416
|
sqs_count: {
|
|
5107
5417
|
type: 'number'
|
|
5108
5418
|
},
|
|
@@ -5111,6 +5421,9 @@ export const $TriggersCount = {
|
|
|
5111
5421
|
},
|
|
5112
5422
|
google_count: {
|
|
5113
5423
|
type: 'number'
|
|
5424
|
+
},
|
|
5425
|
+
github_count: {
|
|
5426
|
+
type: 'number'
|
|
5114
5427
|
}
|
|
5115
5428
|
}
|
|
5116
5429
|
};
|
|
@@ -5224,7 +5537,7 @@ export const $NewWebsocketTrigger = {
|
|
|
5224
5537
|
properties: {
|
|
5225
5538
|
path: {
|
|
5226
5539
|
type: 'string',
|
|
5227
|
-
description: 'The unique path
|
|
5540
|
+
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.'
|
|
5228
5541
|
},
|
|
5229
5542
|
script_path: {
|
|
5230
5543
|
type: 'string',
|
|
@@ -5325,7 +5638,7 @@ export const $EditWebsocketTrigger = {
|
|
|
5325
5638
|
},
|
|
5326
5639
|
path: {
|
|
5327
5640
|
type: 'string',
|
|
5328
|
-
description: 'The unique path
|
|
5641
|
+
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.'
|
|
5329
5642
|
},
|
|
5330
5643
|
script_path: {
|
|
5331
5644
|
type: 'string',
|
|
@@ -5589,7 +5902,7 @@ export const $NewMqttTrigger = {
|
|
|
5589
5902
|
},
|
|
5590
5903
|
path: {
|
|
5591
5904
|
type: 'string',
|
|
5592
|
-
description: 'The unique path
|
|
5905
|
+
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.'
|
|
5593
5906
|
},
|
|
5594
5907
|
script_path: {
|
|
5595
5908
|
type: 'string',
|
|
@@ -5667,7 +5980,7 @@ export const $EditMqttTrigger = {
|
|
|
5667
5980
|
},
|
|
5668
5981
|
path: {
|
|
5669
5982
|
type: 'string',
|
|
5670
|
-
description: 'The unique path
|
|
5983
|
+
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.'
|
|
5671
5984
|
},
|
|
5672
5985
|
script_path: {
|
|
5673
5986
|
type: 'string',
|
|
@@ -5825,7 +6138,7 @@ export const $GcpTriggerData = {
|
|
|
5825
6138
|
},
|
|
5826
6139
|
path: {
|
|
5827
6140
|
type: 'string',
|
|
5828
|
-
description: 'The unique path
|
|
6141
|
+
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.'
|
|
5829
6142
|
},
|
|
5830
6143
|
script_path: {
|
|
5831
6144
|
type: 'string',
|
|
@@ -5896,28 +6209,224 @@ export const $DeleteGcpSubscription = {
|
|
|
5896
6209
|
},
|
|
5897
6210
|
required: ['subscription_id']
|
|
5898
6211
|
};
|
|
5899
|
-
export const $
|
|
6212
|
+
export const $AzureMode = {
|
|
5900
6213
|
type: 'string',
|
|
5901
|
-
enum: ['
|
|
6214
|
+
enum: ['basic_push', 'namespace_push', 'namespace_pull'],
|
|
6215
|
+
description: 'Azure Event Grid trigger mode.'
|
|
5902
6216
|
};
|
|
5903
|
-
export const $
|
|
5904
|
-
allOf: [
|
|
5905
|
-
{
|
|
5906
|
-
'$ref': '#/components/schemas/TriggerExtraProperty'
|
|
5907
|
-
}
|
|
5908
|
-
],
|
|
6217
|
+
export const $AzureArmResource = {
|
|
5909
6218
|
type: 'object',
|
|
6219
|
+
description: 'An ARM resource the service principal can see.',
|
|
5910
6220
|
properties: {
|
|
5911
|
-
|
|
5912
|
-
type: 'string'
|
|
5913
|
-
description: 'The full URL of the AWS SQS queue to poll for messages'
|
|
6221
|
+
id: {
|
|
6222
|
+
type: 'string'
|
|
5914
6223
|
},
|
|
5915
|
-
|
|
5916
|
-
|
|
5917
|
-
description: "Authentication type - 'credentials' for access key/secret, 'oidc' for OpenID Connect"
|
|
6224
|
+
name: {
|
|
6225
|
+
type: 'string'
|
|
5918
6226
|
},
|
|
5919
|
-
|
|
5920
|
-
type: 'string'
|
|
6227
|
+
location: {
|
|
6228
|
+
type: 'string'
|
|
6229
|
+
},
|
|
6230
|
+
type: {
|
|
6231
|
+
type: 'string'
|
|
6232
|
+
}
|
|
6233
|
+
},
|
|
6234
|
+
required: ['id', 'name', 'type']
|
|
6235
|
+
};
|
|
6236
|
+
export const $AzureDeleteSubscription = {
|
|
6237
|
+
type: 'object',
|
|
6238
|
+
properties: {
|
|
6239
|
+
azure_mode: {
|
|
6240
|
+
'$ref': '#/components/schemas/AzureMode'
|
|
6241
|
+
},
|
|
6242
|
+
scope_resource_id: {
|
|
6243
|
+
type: 'string'
|
|
6244
|
+
},
|
|
6245
|
+
topic_name: {
|
|
6246
|
+
type: 'string',
|
|
6247
|
+
nullable: true
|
|
6248
|
+
},
|
|
6249
|
+
subscription_name: {
|
|
6250
|
+
type: 'string'
|
|
6251
|
+
}
|
|
6252
|
+
},
|
|
6253
|
+
required: ['azure_mode', 'scope_resource_id', 'subscription_name']
|
|
6254
|
+
};
|
|
6255
|
+
export const $AzureTrigger = {
|
|
6256
|
+
allOf: [
|
|
6257
|
+
{
|
|
6258
|
+
'$ref': '#/components/schemas/TriggerExtraProperty'
|
|
6259
|
+
}
|
|
6260
|
+
],
|
|
6261
|
+
type: 'object',
|
|
6262
|
+
description: 'An Azure Event Grid trigger that executes a script or flow when events arrive.',
|
|
6263
|
+
properties: {
|
|
6264
|
+
azure_resource_path: {
|
|
6265
|
+
type: 'string'
|
|
6266
|
+
},
|
|
6267
|
+
azure_mode: {
|
|
6268
|
+
'$ref': '#/components/schemas/AzureMode'
|
|
6269
|
+
},
|
|
6270
|
+
scope_resource_id: {
|
|
6271
|
+
type: 'string',
|
|
6272
|
+
description: 'ARM resource ID of the topic (basic) or namespace (namespace modes).'
|
|
6273
|
+
},
|
|
6274
|
+
topic_name: {
|
|
6275
|
+
type: 'string',
|
|
6276
|
+
nullable: true,
|
|
6277
|
+
description: 'Topic name within the namespace (namespace modes only).'
|
|
6278
|
+
},
|
|
6279
|
+
subscription_name: {
|
|
6280
|
+
type: 'string'
|
|
6281
|
+
},
|
|
6282
|
+
event_type_filters: {
|
|
6283
|
+
type: 'array',
|
|
6284
|
+
items: {
|
|
6285
|
+
type: 'string'
|
|
6286
|
+
},
|
|
6287
|
+
nullable: true
|
|
6288
|
+
},
|
|
6289
|
+
server_id: {
|
|
6290
|
+
type: 'string'
|
|
6291
|
+
},
|
|
6292
|
+
last_server_ping: {
|
|
6293
|
+
type: 'string',
|
|
6294
|
+
format: 'date-time'
|
|
6295
|
+
},
|
|
6296
|
+
error: {
|
|
6297
|
+
type: 'string'
|
|
6298
|
+
},
|
|
6299
|
+
error_handler_path: {
|
|
6300
|
+
type: 'string'
|
|
6301
|
+
},
|
|
6302
|
+
error_handler_args: {
|
|
6303
|
+
'$ref': '#/components/schemas/ScriptArgs'
|
|
6304
|
+
},
|
|
6305
|
+
retry: {
|
|
6306
|
+
'$ref': '#/components/schemas/Retry'
|
|
6307
|
+
}
|
|
6308
|
+
},
|
|
6309
|
+
required: ['azure_resource_path', 'azure_mode', 'scope_resource_id', 'subscription_name']
|
|
6310
|
+
};
|
|
6311
|
+
export const $AzureTriggerData = {
|
|
6312
|
+
type: 'object',
|
|
6313
|
+
description: 'Data for creating or updating an Azure Event Grid trigger.',
|
|
6314
|
+
properties: {
|
|
6315
|
+
azure_resource_path: {
|
|
6316
|
+
type: 'string'
|
|
6317
|
+
},
|
|
6318
|
+
azure_mode: {
|
|
6319
|
+
'$ref': '#/components/schemas/AzureMode'
|
|
6320
|
+
},
|
|
6321
|
+
scope_resource_id: {
|
|
6322
|
+
type: 'string'
|
|
6323
|
+
},
|
|
6324
|
+
topic_name: {
|
|
6325
|
+
type: 'string',
|
|
6326
|
+
nullable: true
|
|
6327
|
+
},
|
|
6328
|
+
subscription_name: {
|
|
6329
|
+
type: 'string'
|
|
6330
|
+
},
|
|
6331
|
+
base_endpoint: {
|
|
6332
|
+
type: 'string',
|
|
6333
|
+
description: 'Base URL for push delivery endpoints (push modes only).'
|
|
6334
|
+
},
|
|
6335
|
+
event_type_filters: {
|
|
6336
|
+
type: 'array',
|
|
6337
|
+
items: {
|
|
6338
|
+
type: 'string'
|
|
6339
|
+
}
|
|
6340
|
+
},
|
|
6341
|
+
path: {
|
|
6342
|
+
type: 'string',
|
|
6343
|
+
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.'
|
|
6344
|
+
},
|
|
6345
|
+
script_path: {
|
|
6346
|
+
type: 'string'
|
|
6347
|
+
},
|
|
6348
|
+
is_flow: {
|
|
6349
|
+
type: 'boolean'
|
|
6350
|
+
},
|
|
6351
|
+
mode: {
|
|
6352
|
+
'$ref': '#/components/schemas/TriggerMode'
|
|
6353
|
+
},
|
|
6354
|
+
error_handler_path: {
|
|
6355
|
+
type: 'string'
|
|
6356
|
+
},
|
|
6357
|
+
error_handler_args: {
|
|
6358
|
+
'$ref': '#/components/schemas/ScriptArgs'
|
|
6359
|
+
},
|
|
6360
|
+
retry: {
|
|
6361
|
+
'$ref': '#/components/schemas/Retry'
|
|
6362
|
+
},
|
|
6363
|
+
permissioned_as: {
|
|
6364
|
+
type: 'string'
|
|
6365
|
+
},
|
|
6366
|
+
preserve_permissioned_as: {
|
|
6367
|
+
type: 'boolean'
|
|
6368
|
+
},
|
|
6369
|
+
labels: {
|
|
6370
|
+
type: 'array',
|
|
6371
|
+
items: {
|
|
6372
|
+
type: 'string'
|
|
6373
|
+
}
|
|
6374
|
+
}
|
|
6375
|
+
},
|
|
6376
|
+
required: ['path', 'script_path', 'is_flow', 'azure_resource_path', 'azure_mode', 'scope_resource_id', 'subscription_name']
|
|
6377
|
+
};
|
|
6378
|
+
export const $TestAzureConnection = {
|
|
6379
|
+
type: 'object',
|
|
6380
|
+
properties: {
|
|
6381
|
+
azure_resource_path: {
|
|
6382
|
+
type: 'string'
|
|
6383
|
+
}
|
|
6384
|
+
},
|
|
6385
|
+
required: ['azure_resource_path']
|
|
6386
|
+
};
|
|
6387
|
+
export const $AzureListTopics = {
|
|
6388
|
+
type: 'object',
|
|
6389
|
+
properties: {
|
|
6390
|
+
scope_resource_id: {
|
|
6391
|
+
type: 'string'
|
|
6392
|
+
}
|
|
6393
|
+
},
|
|
6394
|
+
required: ['scope_resource_id']
|
|
6395
|
+
};
|
|
6396
|
+
export const $AzureListSubscriptions = {
|
|
6397
|
+
type: 'object',
|
|
6398
|
+
properties: {
|
|
6399
|
+
scope_resource_id: {
|
|
6400
|
+
type: 'string'
|
|
6401
|
+
},
|
|
6402
|
+
topic_name: {
|
|
6403
|
+
type: 'string'
|
|
6404
|
+
}
|
|
6405
|
+
},
|
|
6406
|
+
required: ['scope_resource_id', 'topic_name']
|
|
6407
|
+
};
|
|
6408
|
+
export const $AwsAuthResourceType = {
|
|
6409
|
+
type: 'string',
|
|
6410
|
+
enum: ['oidc', 'credentials']
|
|
6411
|
+
};
|
|
6412
|
+
export const $SqsTrigger = {
|
|
6413
|
+
allOf: [
|
|
6414
|
+
{
|
|
6415
|
+
'$ref': '#/components/schemas/TriggerExtraProperty'
|
|
6416
|
+
}
|
|
6417
|
+
],
|
|
6418
|
+
type: 'object',
|
|
6419
|
+
properties: {
|
|
6420
|
+
queue_url: {
|
|
6421
|
+
type: 'string',
|
|
6422
|
+
description: 'The full URL of the AWS SQS queue to poll for messages'
|
|
6423
|
+
},
|
|
6424
|
+
aws_auth_resource_type: {
|
|
6425
|
+
'$ref': '#/components/schemas/AwsAuthResourceType',
|
|
6426
|
+
description: "Authentication type - 'credentials' for access key/secret, 'oidc' for OpenID Connect"
|
|
6427
|
+
},
|
|
6428
|
+
aws_resource_path: {
|
|
6429
|
+
type: 'string',
|
|
5921
6430
|
description: 'Path to the AWS resource containing credentials or OIDC configuration'
|
|
5922
6431
|
},
|
|
5923
6432
|
message_attributes: {
|
|
@@ -6035,7 +6544,7 @@ export const $NewSqsTrigger = {
|
|
|
6035
6544
|
},
|
|
6036
6545
|
path: {
|
|
6037
6546
|
type: 'string',
|
|
6038
|
-
description: 'The unique path
|
|
6547
|
+
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.'
|
|
6039
6548
|
},
|
|
6040
6549
|
script_path: {
|
|
6041
6550
|
type: 'string',
|
|
@@ -6102,7 +6611,7 @@ export const $EditSqsTrigger = {
|
|
|
6102
6611
|
},
|
|
6103
6612
|
path: {
|
|
6104
6613
|
type: 'string',
|
|
6105
|
-
description: 'The unique path
|
|
6614
|
+
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.'
|
|
6106
6615
|
},
|
|
6107
6616
|
script_path: {
|
|
6108
6617
|
type: 'string',
|
|
@@ -6297,7 +6806,7 @@ export const $NewPostgresTrigger = {
|
|
|
6297
6806
|
},
|
|
6298
6807
|
path: {
|
|
6299
6808
|
type: 'string',
|
|
6300
|
-
description: 'The unique path
|
|
6809
|
+
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.'
|
|
6301
6810
|
},
|
|
6302
6811
|
script_path: {
|
|
6303
6812
|
type: 'string',
|
|
@@ -6360,7 +6869,7 @@ export const $EditPostgresTrigger = {
|
|
|
6360
6869
|
},
|
|
6361
6870
|
path: {
|
|
6362
6871
|
type: 'string',
|
|
6363
|
-
description: 'The unique path
|
|
6872
|
+
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.'
|
|
6364
6873
|
},
|
|
6365
6874
|
script_path: {
|
|
6366
6875
|
type: 'string',
|
|
@@ -6496,7 +7005,7 @@ export const $NewKafkaTrigger = {
|
|
|
6496
7005
|
properties: {
|
|
6497
7006
|
path: {
|
|
6498
7007
|
type: 'string',
|
|
6499
|
-
description: 'The unique path
|
|
7008
|
+
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.'
|
|
6500
7009
|
},
|
|
6501
7010
|
script_path: {
|
|
6502
7011
|
type: 'string',
|
|
@@ -6633,7 +7142,7 @@ export const $EditKafkaTrigger = {
|
|
|
6633
7142
|
},
|
|
6634
7143
|
path: {
|
|
6635
7144
|
type: 'string',
|
|
6636
|
-
description: 'The unique path
|
|
7145
|
+
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.'
|
|
6637
7146
|
},
|
|
6638
7147
|
script_path: {
|
|
6639
7148
|
type: 'string',
|
|
@@ -6738,7 +7247,7 @@ export const $NewNatsTrigger = {
|
|
|
6738
7247
|
properties: {
|
|
6739
7248
|
path: {
|
|
6740
7249
|
type: 'string',
|
|
6741
|
-
description: 'The unique path
|
|
7250
|
+
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.'
|
|
6742
7251
|
},
|
|
6743
7252
|
script_path: {
|
|
6744
7253
|
type: 'string',
|
|
@@ -6835,7 +7344,7 @@ export const $EditNatsTrigger = {
|
|
|
6835
7344
|
},
|
|
6836
7345
|
path: {
|
|
6837
7346
|
type: 'string',
|
|
6838
|
-
description: 'The unique path
|
|
7347
|
+
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.'
|
|
6839
7348
|
},
|
|
6840
7349
|
script_path: {
|
|
6841
7350
|
type: 'string',
|
|
@@ -7109,10 +7618,34 @@ export const $Folder = {
|
|
|
7109
7618
|
edited_at: {
|
|
7110
7619
|
type: 'string',
|
|
7111
7620
|
format: 'date-time'
|
|
7621
|
+
},
|
|
7622
|
+
default_permissioned_as: {
|
|
7623
|
+
'$ref': '#/components/schemas/FolderDefaultPermissionedAs'
|
|
7112
7624
|
}
|
|
7113
7625
|
},
|
|
7114
7626
|
required: ['name', 'owners', 'extra_perms']
|
|
7115
7627
|
};
|
|
7628
|
+
export const $FolderDefaultPermissionedAs = {
|
|
7629
|
+
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.
|
|
7630
|
+
`,
|
|
7631
|
+
type: 'array',
|
|
7632
|
+
items: {
|
|
7633
|
+
type: 'object',
|
|
7634
|
+
required: ['path_glob', 'permissioned_as'],
|
|
7635
|
+
properties: {
|
|
7636
|
+
path_glob: {
|
|
7637
|
+
type: 'string',
|
|
7638
|
+
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}\`.
|
|
7639
|
+
`
|
|
7640
|
+
},
|
|
7641
|
+
permissioned_as: {
|
|
7642
|
+
type: 'string',
|
|
7643
|
+
description: `Target identity the matched item should be permissioned as. Must be \`u/<username>\`, \`g/<groupname>\`, or an email that exists in this workspace.
|
|
7644
|
+
`
|
|
7645
|
+
}
|
|
7646
|
+
}
|
|
7647
|
+
}
|
|
7648
|
+
};
|
|
7116
7649
|
export const $WorkerPing = {
|
|
7117
7650
|
type: 'object',
|
|
7118
7651
|
properties: {
|
|
@@ -7259,6 +7792,23 @@ export const $CreateWorkspaceFork = {
|
|
|
7259
7792
|
},
|
|
7260
7793
|
color: {
|
|
7261
7794
|
type: 'string'
|
|
7795
|
+
},
|
|
7796
|
+
forked_datatables: {
|
|
7797
|
+
type: 'array',
|
|
7798
|
+
items: {
|
|
7799
|
+
type: 'object',
|
|
7800
|
+
required: ['name', 'new_dbname'],
|
|
7801
|
+
properties: {
|
|
7802
|
+
name: {
|
|
7803
|
+
type: 'string',
|
|
7804
|
+
description: 'Datatable name'
|
|
7805
|
+
},
|
|
7806
|
+
new_dbname: {
|
|
7807
|
+
type: 'string',
|
|
7808
|
+
description: 'New database name for the fork'
|
|
7809
|
+
}
|
|
7810
|
+
}
|
|
7811
|
+
}
|
|
7262
7812
|
}
|
|
7263
7813
|
},
|
|
7264
7814
|
required: ['id', 'name', 'parent_workspace_id']
|
|
@@ -7577,10 +8127,28 @@ export const $RestartedFrom = {
|
|
|
7577
8127
|
type: 'string'
|
|
7578
8128
|
},
|
|
7579
8129
|
branch_or_iteration_n: {
|
|
7580
|
-
type: 'integer'
|
|
8130
|
+
type: 'integer',
|
|
8131
|
+
description: '0-based iteration index for ForLoop / branch index for BranchAll. Iterations 0..n-1 are preserved; iteration n is restarted.'
|
|
7581
8132
|
},
|
|
7582
8133
|
flow_version: {
|
|
7583
8134
|
type: 'integer'
|
|
8135
|
+
},
|
|
8136
|
+
branch_chosen: {
|
|
8137
|
+
description: 'For BranchOne nested restart — the branch that was originally chosen, used to lock branch evaluation.',
|
|
8138
|
+
type: 'object',
|
|
8139
|
+
properties: {
|
|
8140
|
+
type: {
|
|
8141
|
+
type: 'string',
|
|
8142
|
+
enum: ['default', 'branch']
|
|
8143
|
+
},
|
|
8144
|
+
branch: {
|
|
8145
|
+
type: 'integer'
|
|
8146
|
+
}
|
|
8147
|
+
}
|
|
8148
|
+
},
|
|
8149
|
+
nested: {
|
|
8150
|
+
'$ref': '#/components/schemas/RestartedFrom',
|
|
8151
|
+
description: 'When set, the worker spawns the child for `step_id` as a `RestartedFlow` against `nested.flow_job_id` instead of fresh-launching it.'
|
|
7584
8152
|
}
|
|
7585
8153
|
}
|
|
7586
8154
|
};
|
|
@@ -7866,22 +8434,20 @@ export const $SlackToken = {
|
|
|
7866
8434
|
access_token: {
|
|
7867
8435
|
type: 'string'
|
|
7868
8436
|
},
|
|
7869
|
-
|
|
7870
|
-
type: 'string'
|
|
7871
|
-
},
|
|
7872
|
-
team_name: {
|
|
7873
|
-
type: 'string'
|
|
7874
|
-
},
|
|
7875
|
-
bot: {
|
|
8437
|
+
team: {
|
|
7876
8438
|
type: 'object',
|
|
7877
8439
|
properties: {
|
|
7878
|
-
|
|
8440
|
+
id: {
|
|
8441
|
+
type: 'string'
|
|
8442
|
+
},
|
|
8443
|
+
name: {
|
|
7879
8444
|
type: 'string'
|
|
7880
8445
|
}
|
|
7881
|
-
}
|
|
8446
|
+
},
|
|
8447
|
+
required: ['id', 'name']
|
|
7882
8448
|
}
|
|
7883
8449
|
},
|
|
7884
|
-
required: ['access_token'
|
|
8450
|
+
required: ['access_token']
|
|
7885
8451
|
};
|
|
7886
8452
|
export const $TokenResponse = {
|
|
7887
8453
|
type: 'object',
|
|
@@ -8036,6 +8602,17 @@ export const $DataTableSettings = {
|
|
|
8036
8602
|
}
|
|
8037
8603
|
},
|
|
8038
8604
|
required: ['resource_type']
|
|
8605
|
+
},
|
|
8606
|
+
forked_from: {
|
|
8607
|
+
type: 'object',
|
|
8608
|
+
description: 'Fork origin info with schema snapshot',
|
|
8609
|
+
properties: {
|
|
8610
|
+
schema: {
|
|
8611
|
+
type: 'object',
|
|
8612
|
+
description: 'Schema snapshot at fork time',
|
|
8613
|
+
additionalProperties: true
|
|
8614
|
+
}
|
|
8615
|
+
}
|
|
8039
8616
|
}
|
|
8040
8617
|
}
|
|
8041
8618
|
}
|
|
@@ -8070,6 +8647,51 @@ export const $DataTableSchema = {
|
|
|
8070
8647
|
}
|
|
8071
8648
|
}
|
|
8072
8649
|
};
|
|
8650
|
+
export const $DataTableTables = {
|
|
8651
|
+
type: 'object',
|
|
8652
|
+
required: ['datatable_name', 'schemas'],
|
|
8653
|
+
properties: {
|
|
8654
|
+
datatable_name: {
|
|
8655
|
+
type: 'string'
|
|
8656
|
+
},
|
|
8657
|
+
schemas: {
|
|
8658
|
+
type: 'object',
|
|
8659
|
+
description: 'Hierarchical metadata: schema_name -> table_names',
|
|
8660
|
+
additionalProperties: {
|
|
8661
|
+
type: 'array',
|
|
8662
|
+
items: {
|
|
8663
|
+
type: 'string'
|
|
8664
|
+
}
|
|
8665
|
+
}
|
|
8666
|
+
},
|
|
8667
|
+
error: {
|
|
8668
|
+
type: 'string'
|
|
8669
|
+
}
|
|
8670
|
+
}
|
|
8671
|
+
};
|
|
8672
|
+
export const $DataTableTableSchema = {
|
|
8673
|
+
type: 'object',
|
|
8674
|
+
required: ['datatable_name', 'schema_name', 'table_name', 'columns'],
|
|
8675
|
+
properties: {
|
|
8676
|
+
datatable_name: {
|
|
8677
|
+
type: 'string'
|
|
8678
|
+
},
|
|
8679
|
+
schema_name: {
|
|
8680
|
+
type: 'string'
|
|
8681
|
+
},
|
|
8682
|
+
table_name: {
|
|
8683
|
+
type: 'string'
|
|
8684
|
+
},
|
|
8685
|
+
columns: {
|
|
8686
|
+
type: 'object',
|
|
8687
|
+
description: 'Columns in this table: column_name -> compact_type',
|
|
8688
|
+
additionalProperties: {
|
|
8689
|
+
type: 'string',
|
|
8690
|
+
description: "Compact type: 'type[?][=default]' where ? means nullable"
|
|
8691
|
+
}
|
|
8692
|
+
}
|
|
8693
|
+
}
|
|
8694
|
+
};
|
|
8073
8695
|
export const $DynamicInputData = {
|
|
8074
8696
|
type: 'object',
|
|
8075
8697
|
properties: {
|
|
@@ -8274,9 +8896,6 @@ export const $GitRepositorySettings = {
|
|
|
8274
8896
|
group_by_folder: {
|
|
8275
8897
|
type: 'boolean'
|
|
8276
8898
|
},
|
|
8277
|
-
force_branch: {
|
|
8278
|
-
type: 'string'
|
|
8279
|
-
},
|
|
8280
8899
|
collapsed: {
|
|
8281
8900
|
type: 'boolean'
|
|
8282
8901
|
},
|
|
@@ -8599,7 +9218,7 @@ export const $CriticalAlert = {
|
|
|
8599
9218
|
};
|
|
8600
9219
|
export const $CaptureTriggerKind = {
|
|
8601
9220
|
type: 'string',
|
|
8602
|
-
enum: ['webhook', 'http', 'websocket', 'kafka', 'default_email', 'nats', 'postgres', 'sqs', 'mqtt', 'gcp', 'email']
|
|
9221
|
+
enum: ['webhook', 'http', 'websocket', 'kafka', 'default_email', 'nats', 'postgres', 'sqs', 'mqtt', 'gcp', 'azure', 'email']
|
|
8603
9222
|
};
|
|
8604
9223
|
export const $Capture = {
|
|
8605
9224
|
type: 'object',
|
|
@@ -9042,7 +9661,7 @@ export const $ProtectionRules = {
|
|
|
9042
9661
|
};
|
|
9043
9662
|
export const $ProtectionRuleKind = {
|
|
9044
9663
|
type: 'string',
|
|
9045
|
-
enum: ['DisableDirectDeployment', 'DisableWorkspaceForking']
|
|
9664
|
+
enum: ['DisableDirectDeployment', 'DisableWorkspaceForking', 'RestrictDeployToDeployers']
|
|
9046
9665
|
};
|
|
9047
9666
|
export const $RuleBypasserGroups = {
|
|
9048
9667
|
type: 'array',
|
|
@@ -9058,6 +9677,110 @@ export const $RuleBypasserUsers = {
|
|
|
9058
9677
|
type: 'string'
|
|
9059
9678
|
}
|
|
9060
9679
|
};
|
|
9680
|
+
export const $DeploymentRequestEligibleDeployer = {
|
|
9681
|
+
type: 'object',
|
|
9682
|
+
required: ['username', 'email', 'is_admin'],
|
|
9683
|
+
properties: {
|
|
9684
|
+
username: {
|
|
9685
|
+
type: 'string'
|
|
9686
|
+
},
|
|
9687
|
+
email: {
|
|
9688
|
+
type: 'string'
|
|
9689
|
+
},
|
|
9690
|
+
is_admin: {
|
|
9691
|
+
type: 'boolean'
|
|
9692
|
+
}
|
|
9693
|
+
}
|
|
9694
|
+
};
|
|
9695
|
+
export const $DeploymentRequestAssignee = {
|
|
9696
|
+
type: 'object',
|
|
9697
|
+
required: ['username', 'email'],
|
|
9698
|
+
properties: {
|
|
9699
|
+
username: {
|
|
9700
|
+
type: 'string'
|
|
9701
|
+
},
|
|
9702
|
+
email: {
|
|
9703
|
+
type: 'string'
|
|
9704
|
+
}
|
|
9705
|
+
}
|
|
9706
|
+
};
|
|
9707
|
+
export const $DeploymentRequestComment = {
|
|
9708
|
+
type: 'object',
|
|
9709
|
+
required: ['id', 'author', 'author_email', 'body', 'obsolete', 'created_at'],
|
|
9710
|
+
properties: {
|
|
9711
|
+
id: {
|
|
9712
|
+
type: 'integer',
|
|
9713
|
+
format: 'int64'
|
|
9714
|
+
},
|
|
9715
|
+
parent_id: {
|
|
9716
|
+
type: 'integer',
|
|
9717
|
+
format: 'int64',
|
|
9718
|
+
nullable: true
|
|
9719
|
+
},
|
|
9720
|
+
author: {
|
|
9721
|
+
type: 'string'
|
|
9722
|
+
},
|
|
9723
|
+
author_email: {
|
|
9724
|
+
type: 'string'
|
|
9725
|
+
},
|
|
9726
|
+
body: {
|
|
9727
|
+
type: 'string'
|
|
9728
|
+
},
|
|
9729
|
+
anchor_kind: {
|
|
9730
|
+
type: 'string',
|
|
9731
|
+
nullable: true
|
|
9732
|
+
},
|
|
9733
|
+
anchor_path: {
|
|
9734
|
+
type: 'string',
|
|
9735
|
+
nullable: true
|
|
9736
|
+
},
|
|
9737
|
+
obsolete: {
|
|
9738
|
+
type: 'boolean'
|
|
9739
|
+
},
|
|
9740
|
+
created_at: {
|
|
9741
|
+
type: 'string',
|
|
9742
|
+
format: 'date-time'
|
|
9743
|
+
}
|
|
9744
|
+
}
|
|
9745
|
+
};
|
|
9746
|
+
export const $DeploymentRequest = {
|
|
9747
|
+
type: 'object',
|
|
9748
|
+
required: ['id', 'source_workspace_id', 'fork_workspace_id', 'requested_by', 'requested_by_email', 'requested_at', 'assignees', 'comments'],
|
|
9749
|
+
properties: {
|
|
9750
|
+
id: {
|
|
9751
|
+
type: 'integer',
|
|
9752
|
+
format: 'int64'
|
|
9753
|
+
},
|
|
9754
|
+
source_workspace_id: {
|
|
9755
|
+
type: 'string'
|
|
9756
|
+
},
|
|
9757
|
+
fork_workspace_id: {
|
|
9758
|
+
type: 'string'
|
|
9759
|
+
},
|
|
9760
|
+
requested_by: {
|
|
9761
|
+
type: 'string'
|
|
9762
|
+
},
|
|
9763
|
+
requested_by_email: {
|
|
9764
|
+
type: 'string'
|
|
9765
|
+
},
|
|
9766
|
+
requested_at: {
|
|
9767
|
+
type: 'string',
|
|
9768
|
+
format: 'date-time'
|
|
9769
|
+
},
|
|
9770
|
+
assignees: {
|
|
9771
|
+
type: 'array',
|
|
9772
|
+
items: {
|
|
9773
|
+
'$ref': '#/components/schemas/DeploymentRequestAssignee'
|
|
9774
|
+
}
|
|
9775
|
+
},
|
|
9776
|
+
comments: {
|
|
9777
|
+
type: 'array',
|
|
9778
|
+
items: {
|
|
9779
|
+
'$ref': '#/components/schemas/DeploymentRequestComment'
|
|
9780
|
+
}
|
|
9781
|
+
}
|
|
9782
|
+
}
|
|
9783
|
+
};
|
|
9061
9784
|
export const $QuotaInfo = {
|
|
9062
9785
|
type: 'object',
|
|
9063
9786
|
properties: {
|
|
@@ -9075,7 +9798,7 @@ export const $QuotaInfo = {
|
|
|
9075
9798
|
};
|
|
9076
9799
|
export const $NativeServiceName = {
|
|
9077
9800
|
type: 'string',
|
|
9078
|
-
enum: ['nextcloud', 'google']
|
|
9801
|
+
enum: ['nextcloud', 'google', 'github']
|
|
9079
9802
|
};
|
|
9080
9803
|
export const $NativeTrigger = {
|
|
9081
9804
|
type: 'object',
|
|
@@ -9376,3 +10099,21 @@ export const $SharedDriveEntry = {
|
|
|
9376
10099
|
},
|
|
9377
10100
|
required: ['id', 'name']
|
|
9378
10101
|
};
|
|
10102
|
+
export const $GithubRepoEntry = {
|
|
10103
|
+
type: 'object',
|
|
10104
|
+
properties: {
|
|
10105
|
+
full_name: {
|
|
10106
|
+
type: 'string'
|
|
10107
|
+
},
|
|
10108
|
+
name: {
|
|
10109
|
+
type: 'string'
|
|
10110
|
+
},
|
|
10111
|
+
owner: {
|
|
10112
|
+
type: 'string'
|
|
10113
|
+
},
|
|
10114
|
+
private: {
|
|
10115
|
+
type: 'boolean'
|
|
10116
|
+
}
|
|
10117
|
+
},
|
|
10118
|
+
required: ['full_name', 'name', 'owner', 'private']
|
|
10119
|
+
};
|