windmill-components 1.655.2 → 1.665.1
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/ApiConnectForm.svelte +6 -6
- package/package/components/ApiConnectForm.svelte.d.ts +3 -2
- package/package/components/AppConnectDrawer.svelte +3 -1
- package/package/components/AppConnectDrawer.svelte.d.ts +2 -0
- package/package/components/AppConnectInner.svelte +137 -72
- package/package/components/AppConnectInner.svelte.d.ts +1 -0
- package/package/components/CompareWorkspaces.svelte +32 -24
- package/package/components/DBManager.svelte +7 -13
- package/package/components/DBTable.svelte +2 -2
- package/package/components/DBTableEditor.svelte +39 -31
- package/package/components/DBTableEditor.svelte.d.ts +2 -2
- package/package/components/DedicatedWorkersSelector.svelte +292 -85
- package/package/components/DeployWorkspace.svelte +30 -26
- package/package/components/Dev.svelte +7 -2
- package/package/components/Dev.svelte.d.ts +3 -0
- package/package/components/Editor.svelte +17 -13
- package/package/components/EditorBar.svelte.d.ts +1 -1
- package/package/components/FilterSearchbar.svelte +1 -1
- package/package/components/FirstStepInputs.svelte +0 -1
- package/package/components/FlowBuilder.svelte +5 -0
- package/package/components/FlowGraphDiffViewer.svelte +3 -0
- package/package/components/FlowGraphViewer.svelte +7 -4
- package/package/components/FlowGraphViewer.svelte.d.ts +1 -0
- package/package/components/FlowGraphViewerStep.svelte +3 -3
- package/package/components/FlowGraphViewerStep.svelte.d.ts +1 -0
- package/package/components/FlowPreviewContent.svelte +11 -1
- package/package/components/FlowStatusViewer.svelte +4 -1
- package/package/components/FlowStatusViewer.svelte.d.ts +3 -1
- package/package/components/FlowStatusViewerInner.svelte +46 -11
- package/package/components/FlowStatusViewerInner.svelte.d.ts +4 -1
- package/package/components/FlowStatusWaitingForEvents.svelte +48 -103
- package/package/components/FlowTimeline.svelte +76 -84
- package/package/components/FlowViewer.svelte +40 -22
- package/package/components/FlowViewer.svelte.d.ts +8 -2
- package/package/components/GroupEditor.svelte +7 -9
- package/package/components/HistoricList.svelte +12 -4
- package/package/components/InstanceGroupEditor.svelte +92 -19
- package/package/components/InstanceSetting.svelte +16 -6
- package/package/components/InstanceSettings.svelte +51 -7
- package/package/components/InstanceSettings.svelte.d.ts +2 -1
- package/package/components/JobLoader.svelte +5 -4
- package/package/components/JobLoader.svelte.d.ts +1 -1
- package/package/components/Login.svelte +9 -1
- package/package/components/NoMainFuncBadge.svelte +2 -2
- package/package/components/OnBehalfOfSelector.svelte +49 -37
- package/package/components/OnBehalfOfSelector.svelte.d.ts +16 -6
- package/package/components/ResourceEditor.svelte +16 -11
- package/package/components/ResourceEditor.svelte.d.ts +1 -0
- package/package/components/ResourceEditorDrawer.svelte +3 -1
- package/package/components/ResourceEditorDrawer.svelte.d.ts +6 -2
- package/package/components/ResourcePicker.svelte +10 -5
- package/package/components/ResourcePicker.svelte.d.ts +2 -0
- package/package/components/S3FilePickerInner.svelte +12 -4
- package/package/components/SchemaForm.svelte +20 -14
- package/package/components/SchemaForm.svelte.d.ts +2 -2
- package/package/components/ScriptBuilder.svelte +158 -18
- package/package/components/ScriptEditor.svelte +674 -150
- package/package/components/ScriptEditor.svelte.d.ts +7 -3
- package/package/components/SuperadminSettings.svelte +4 -1
- package/package/components/SuperadminSettingsInner.svelte +176 -67
- package/package/components/SuperadminSettingsInner.svelte.d.ts +3 -1
- package/package/components/SyncResourceTypes.svelte +31 -0
- package/package/components/SyncResourceTypes.svelte.d.ts +6 -0
- package/package/components/TimelineBar.svelte +14 -8
- package/package/components/TimelineBar.svelte.d.ts +1 -0
- package/package/components/WorkerGroup.svelte +11 -4
- package/package/components/WorkflowTimeline.svelte +386 -58
- package/package/components/WorkflowTimeline.svelte.d.ts +6 -1
- package/package/components/WorkspaceDependenciesEditor.svelte +32 -2
- package/package/components/apps/components/display/dbtable/DeleteRow.svelte +2 -2
- package/package/components/apps/components/display/dbtable/InsertRowRunnable.svelte +2 -2
- package/package/components/apps/components/display/dbtable/UpdateCell.svelte +2 -2
- package/package/components/apps/components/display/dbtable/metadata.js +44 -222
- package/package/components/apps/components/display/dbtable/queries/count.d.ts +9 -0
- package/package/components/apps/components/display/dbtable/queries/delete.d.ts +9 -0
- package/package/components/apps/components/display/dbtable/queries/insert.d.ts +9 -0
- package/package/components/apps/components/display/dbtable/queries/relationalKeys.d.ts +7 -0
- package/package/components/apps/components/display/dbtable/queries/relationalKeys.js +1 -1
- package/package/components/apps/components/display/dbtable/queries/select.d.ts +9 -0
- package/package/components/apps/components/display/dbtable/queries/update.d.ts +9 -0
- package/package/components/apps/editor/AppEditorHeaderDeploy.svelte +11 -9
- package/package/components/apps/editor/appUtilsS3.js +2 -2
- package/package/components/apps/editor/inlineScriptsPanel/InlineScriptsPanel.svelte +53 -10
- package/package/components/common/clearableInput/ClearableInput.svelte +3 -7
- package/package/components/common/confirmationModal/ConfirmationModal.svelte +7 -1
- package/package/components/common/confirmationModal/ConfirmationModal.svelte.d.ts +1 -0
- package/package/components/common/drawer/Disposable.svelte +24 -2
- package/package/components/common/drawer/Disposable.svelte.d.ts +5 -0
- package/package/components/common/modal/Modal.svelte +84 -58
- package/package/components/common/table/AppRow.svelte.d.ts +1 -1
- package/package/components/common/table/FlowRow.svelte.d.ts +1 -1
- package/package/components/common/table/ScriptRow.svelte +31 -3
- package/package/components/common/table/ScriptRow.svelte.d.ts +1 -1
- package/package/components/copilot/MetadataGen.svelte +8 -5
- package/package/components/copilot/MetadataGen.svelte.d.ts +1 -0
- package/package/components/copilot/TestAIKey.svelte +2 -1
- package/package/components/copilot/TestAIKey.svelte.d.ts +1 -0
- package/package/components/copilot/chat/AIChatManager.svelte.js +62 -80
- package/package/components/copilot/chat/HistoryManager.svelte.d.ts +1 -0
- package/package/components/copilot/chat/HistoryManager.svelte.js +3 -0
- package/package/components/copilot/chat/__tests__/app/appChat.eval.test.js +47 -31
- package/package/components/copilot/chat/__tests__/app/appEvalComparison.d.ts +1 -6
- package/package/components/copilot/chat/__tests__/app/appEvalComparison.js +18 -13
- package/package/components/copilot/chat/__tests__/app/appEvalRunner.d.ts +14 -5
- package/package/components/copilot/chat/__tests__/app/appEvalRunner.js +13 -12
- package/package/components/copilot/chat/__tests__/flow/flowChat.eval.test.js +46 -29
- package/package/components/copilot/chat/__tests__/flow/flowEvalComparison.js +1 -4
- package/package/components/copilot/chat/__tests__/flow/flowEvalRunner.d.ts +14 -5
- package/package/components/copilot/chat/__tests__/flow/flowEvalRunner.js +13 -12
- package/package/components/copilot/chat/__tests__/shared/baseEvalRunner.d.ts +5 -8
- package/package/components/copilot/chat/__tests__/shared/baseEvalRunner.js +82 -108
- package/package/components/copilot/chat/__tests__/shared/baseLLMEvaluator.d.ts +4 -7
- package/package/components/copilot/chat/__tests__/shared/baseLLMEvaluator.js +19 -11
- package/package/components/copilot/chat/__tests__/shared/types.d.ts +3 -0
- package/package/components/copilot/chat/anthropic.d.ts +9 -2
- package/package/components/copilot/chat/anthropic.js +12 -6
- package/package/components/copilot/chat/app/core.js +5 -12
- package/package/components/copilot/chat/chatLoop.d.ts +40 -0
- package/package/components/copilot/chat/chatLoop.js +97 -0
- package/package/components/copilot/chat/openai-responses.d.ts +8 -2
- package/package/components/copilot/chat/openai-responses.js +17 -17
- package/package/components/copilot/chat/shared.d.ts +2 -1
- package/package/components/copilot/chat/shared.js +2 -2
- package/package/components/copilot/lib.d.ts +14 -5
- package/package/components/copilot/lib.js +68 -48
- package/package/components/dbOps.d.ts +2 -2
- package/package/components/dbOps.js +129 -53
- package/package/components/debug/debugUtils.d.ts +5 -0
- package/package/components/debug/debugUtils.js +20 -0
- package/package/components/debug/index.d.ts +1 -1
- package/package/components/debug/index.js +3 -7
- package/package/components/flows/CreateActionsFlow.svelte +221 -43
- package/package/components/flows/DebounceLimit.svelte +42 -9
- package/package/components/flows/common/FlowCard.svelte +2 -1
- package/package/components/flows/common/FlowCard.svelte.d.ts +1 -0
- package/package/components/flows/common/FlowCardHeader.svelte +14 -10
- package/package/components/flows/common/FlowCardHeader.svelte.d.ts +1 -0
- package/package/components/flows/content/AgentToolWrapper.svelte +2 -1
- package/package/components/flows/content/AgentToolWrapper.svelte.d.ts +1 -0
- package/package/components/flows/content/FlowEditorPanel.svelte +1 -0
- package/package/components/flows/content/FlowModuleComponent.svelte +32 -18
- package/package/components/flows/content/FlowModuleComponent.svelte.d.ts +1 -0
- package/package/components/flows/content/FlowModuleDebounce.svelte +46 -0
- package/package/components/flows/content/FlowModuleDebounce.svelte.d.ts +8 -0
- package/package/components/flows/content/FlowModuleEarlyStop.svelte +26 -5
- package/package/components/flows/content/FlowModuleWrapper.svelte +1 -0
- package/package/components/flows/content/FlowRetries.svelte +57 -57
- package/package/components/flows/content/FlowSelectionPanel.svelte +9 -14
- package/package/components/flows/content/FlowSelectionPanel.svelte.d.ts +1 -0
- package/package/components/flows/content/FlowSettings.svelte +6 -6
- package/package/components/flows/content/ScriptEditorDrawer.svelte +1 -1
- package/package/components/flows/content/SuspendDrawer.svelte +0 -18
- package/package/components/flows/header/FlowYamlEditor.svelte +20 -4
- package/package/components/flows/map/FlowErrorHandlerItem.svelte +32 -14
- package/package/components/flows/map/FlowErrorHandlerItem.svelte.d.ts +1 -0
- package/package/components/flows/map/FlowModuleSchemaItem.svelte +7 -10
- package/package/components/flows/map/FlowModuleSchemaItemViewer.svelte +1 -8
- package/package/components/flows/map/FlowModuleSchemaItemViewer.svelte.d.ts +0 -2
- package/package/components/flows/map/FlowModuleSchemaMap.svelte +343 -137
- package/package/components/flows/map/FlowModuleSchemaMap.svelte.d.ts +1 -0
- package/package/components/flows/map/FlowStickyNode.svelte +24 -16
- package/package/components/flows/map/FlowStickyNode.svelte.d.ts +1 -0
- package/package/components/flows/map/VirtualItemWrapper.svelte +1 -1
- package/package/components/flows/pickers/PickHubScriptQuick.svelte.d.ts +1 -1
- package/package/components/flows/propPicker/OutputPickerInner.svelte +5 -1
- package/package/components/flows/scheduleUtils.js +3 -1
- package/package/components/flows/utils.svelte.js +6 -1
- package/package/components/git_sync/GitSyncContext.svelte.js +13 -2
- package/package/components/git_sync/GitSyncSection.svelte +135 -99
- package/package/components/graph/DragGhost.svelte +11 -2
- package/package/components/graph/FlowGraphV2.svelte +138 -42
- package/package/components/graph/FlowGraphV2.svelte.d.ts +15 -1
- package/package/components/graph/GroupActionBar.svelte +124 -0
- package/package/components/graph/GroupActionBar.svelte.d.ts +20 -0
- package/package/components/graph/GroupHeader.svelte +98 -0
- package/package/components/graph/GroupHeader.svelte.d.ts +11 -0
- package/package/components/graph/GroupHeaderBlock.svelte +58 -0
- package/package/components/graph/GroupHeaderBlock.svelte.d.ts +13 -0
- package/package/components/graph/GroupModuleIcons.svelte +163 -0
- package/package/components/graph/GroupModuleIcons.svelte.d.ts +11 -0
- package/package/components/graph/GroupNodeCard.svelte +127 -0
- package/package/components/graph/GroupNodeCard.svelte.d.ts +18 -0
- package/package/components/graph/GroupNoteArea.svelte +132 -0
- package/package/components/graph/GroupNoteArea.svelte.d.ts +11 -0
- package/package/components/graph/GroupOverlay.svelte +71 -0
- package/package/components/graph/GroupOverlay.svelte.d.ts +12 -0
- package/package/components/graph/MiniFlowGraph.svelte +17 -2
- package/package/components/graph/SelectionBoundingBox.svelte +14 -14
- package/package/components/graph/compoundLayout.d.ts +17 -1
- package/package/components/graph/compoundLayout.js +129 -14
- package/package/components/graph/flowStructure.d.ts +63 -0
- package/package/components/graph/flowStructure.js +422 -0
- package/package/components/graph/flowStructure.test.d.ts +1 -0
- package/package/components/graph/flowStructure.test.js +205 -0
- package/package/components/graph/graphBuilder.svelte.d.ts +52 -3
- package/package/components/graph/graphBuilder.svelte.js +170 -67
- package/package/components/graph/graphContext.d.ts +7 -0
- package/package/components/graph/groupDetectionUtils.d.ts +24 -1
- package/package/components/graph/groupDetectionUtils.js +101 -1
- package/package/components/graph/groupEditor.svelte.d.ts +105 -0
- package/package/components/graph/groupEditor.svelte.js +253 -0
- package/package/components/graph/groupedModulesProxy.svelte.d.ts +55 -0
- package/package/components/graph/groupedModulesProxy.svelte.js +130 -0
- package/package/components/graph/model.d.ts +2 -1
- package/package/components/graph/moveManager.svelte.js +0 -3
- package/package/components/graph/nodeExtraSpace.d.ts +32 -0
- package/package/components/graph/nodeExtraSpace.js +113 -0
- package/package/components/graph/noteColors.d.ts +1 -0
- package/package/components/graph/noteColors.js +20 -10
- package/package/components/graph/noteUtils.svelte.d.ts +0 -18
- package/package/components/graph/noteUtils.svelte.js +6 -41
- package/package/components/graph/renderers/edges/BaseEdge.svelte +26 -11
- package/package/components/graph/renderers/nodes/AIToolNode.svelte +24 -49
- package/package/components/graph/renderers/nodes/AIToolNode.svelte.d.ts +1 -4
- package/package/components/graph/renderers/nodes/AssetNode.svelte +1 -27
- package/package/components/graph/renderers/nodes/AssetNode.svelte.d.ts +0 -4
- package/package/components/graph/renderers/nodes/CollapsedGroupNode.svelte +85 -0
- package/package/components/graph/renderers/nodes/CollapsedGroupNode.svelte.d.ts +8 -0
- package/package/components/graph/renderers/nodes/ForLoopStartNode.svelte +3 -2
- package/package/components/graph/renderers/nodes/GroupEndNode.svelte +9 -0
- package/package/components/graph/renderers/nodes/GroupEndNode.svelte.d.ts +6 -0
- package/package/components/graph/renderers/nodes/GroupHeadNode.svelte +20 -0
- package/package/components/graph/renderers/nodes/GroupHeadNode.svelte.d.ts +8 -0
- package/package/components/graph/renderers/nodes/ModuleNode.svelte +8 -5
- package/package/components/graph/renderers/triggers/TriggersWrapper.svelte +1 -1
- package/package/components/graph/util.d.ts +5 -1
- package/package/components/graph/util.js +7 -5
- package/package/components/home/Item.svelte +1 -0
- package/package/components/home/ItemsList.svelte +1 -1
- package/package/components/icons/ActiveCampaignIcon.svelte +10 -0
- package/package/components/icons/ActiveCampaignIcon.svelte.d.ts +7 -0
- package/package/components/icons/AlgoliaIcon.svelte +7 -0
- package/package/components/icons/AlgoliaIcon.svelte.d.ts +7 -0
- package/package/components/icons/ApolloIcon.svelte +7 -0
- package/package/components/icons/ApolloIcon.svelte.d.ts +7 -0
- package/package/components/icons/BambooHrIcon.svelte +7 -0
- package/package/components/icons/BambooHrIcon.svelte.d.ts +7 -0
- package/package/components/icons/BaremetricsIcon.svelte +7 -0
- package/package/components/icons/BaremetricsIcon.svelte.d.ts +7 -0
- package/package/components/icons/BitlyIcon.svelte +7 -0
- package/package/components/icons/BitlyIcon.svelte.d.ts +7 -0
- package/package/components/icons/BloggerIcon.svelte +7 -0
- package/package/components/icons/BloggerIcon.svelte.d.ts +7 -0
- package/package/components/icons/BlueskyIcon.svelte +7 -0
- package/package/components/icons/BlueskyIcon.svelte.d.ts +7 -0
- package/package/components/icons/BoxIcon.svelte +7 -0
- package/package/components/icons/BoxIcon.svelte.d.ts +7 -0
- package/package/components/icons/BrevoIcon.svelte +7 -0
- package/package/components/icons/BrevoIcon.svelte.d.ts +7 -0
- package/package/components/icons/BrexIcon.svelte +7 -0
- package/package/components/icons/BrexIcon.svelte.d.ts +7 -0
- package/package/components/icons/BrowserlessIcon.svelte +7 -0
- package/package/components/icons/BrowserlessIcon.svelte.d.ts +7 -0
- package/package/components/icons/BubbleIcon.svelte +11 -0
- package/package/components/icons/BubbleIcon.svelte.d.ts +7 -0
- package/package/components/icons/BuildkiteIcon.svelte +7 -0
- package/package/components/icons/BuildkiteIcon.svelte.d.ts +7 -0
- package/package/components/icons/CalcomIcon.svelte +1 -1
- package/package/components/icons/CalendlyIcon.svelte +7 -0
- package/package/components/icons/CalendlyIcon.svelte.d.ts +7 -0
- package/package/components/icons/CircleCiIcon.svelte +7 -0
- package/package/components/icons/CircleCiIcon.svelte.d.ts +7 -0
- package/package/components/icons/CiscoIcon.svelte +7 -0
- package/package/components/icons/CiscoIcon.svelte.d.ts +7 -0
- package/package/components/icons/ClearbitIcon.svelte +7 -0
- package/package/components/icons/ClearbitIcon.svelte.d.ts +7 -0
- package/package/components/icons/ClerkIcon.svelte +7 -0
- package/package/components/icons/ClerkIcon.svelte.d.ts +7 -0
- package/package/components/icons/CloseIcon.svelte +37 -0
- package/package/components/icons/CloseIcon.svelte.d.ts +7 -0
- package/package/components/icons/CloudinaryIcon.svelte +7 -0
- package/package/components/icons/CloudinaryIcon.svelte.d.ts +7 -0
- package/package/components/icons/CockroachDbIcon.svelte +7 -0
- package/package/components/icons/CockroachDbIcon.svelte.d.ts +7 -0
- package/package/components/icons/CodaIcon.svelte +7 -0
- package/package/components/icons/CodaIcon.svelte.d.ts +7 -0
- package/package/components/icons/CohereIcon.svelte +16 -0
- package/package/components/icons/CohereIcon.svelte.d.ts +7 -0
- package/package/components/icons/CoinMarketCapIcon.svelte +7 -0
- package/package/components/icons/CoinMarketCapIcon.svelte.d.ts +7 -0
- package/package/components/icons/CoinbaseIcon.svelte +7 -0
- package/package/components/icons/CoinbaseIcon.svelte.d.ts +7 -0
- package/package/components/icons/ConfluenceIcon.svelte +7 -0
- package/package/components/icons/ConfluenceIcon.svelte.d.ts +7 -0
- package/package/components/icons/ContentfulIcon.svelte +7 -0
- package/package/components/icons/ContentfulIcon.svelte.d.ts +7 -0
- package/package/components/icons/ConvertKitIcon.svelte +7 -0
- package/package/components/icons/ConvertKitIcon.svelte.d.ts +7 -0
- package/package/components/icons/DatoCmsIcon.svelte +7 -0
- package/package/components/icons/DatoCmsIcon.svelte.d.ts +7 -0
- package/package/components/icons/DeelIcon.svelte +7 -0
- package/package/components/icons/DeelIcon.svelte.d.ts +7 -0
- package/package/components/icons/DeepLIcon.svelte +7 -0
- package/package/components/icons/DeepLIcon.svelte.d.ts +7 -0
- package/package/components/icons/DigitalOceanIcon.svelte +7 -0
- package/package/components/icons/DigitalOceanIcon.svelte.d.ts +7 -0
- package/package/components/icons/DiscourseIcon.svelte +7 -0
- package/package/components/icons/DiscourseIcon.svelte.d.ts +7 -0
- package/package/components/icons/DocusignIcon.svelte +7 -0
- package/package/components/icons/DocusignIcon.svelte.d.ts +7 -0
- package/package/components/icons/DropboxIcon.svelte +7 -0
- package/package/components/icons/DropboxIcon.svelte.d.ts +7 -0
- package/package/components/icons/EdgeDbIcon.svelte +16 -20
- package/package/components/icons/EventbriteIcon.svelte +10 -0
- package/package/components/icons/EventbriteIcon.svelte.d.ts +7 -0
- package/package/components/icons/FigmaIcon.svelte +7 -0
- package/package/components/icons/FigmaIcon.svelte.d.ts +7 -0
- package/package/components/icons/FlyIcon.svelte +7 -0
- package/package/components/icons/FlyIcon.svelte.d.ts +7 -0
- package/package/components/icons/FreshdeskIcon.svelte +7 -0
- package/package/components/icons/FreshdeskIcon.svelte.d.ts +7 -0
- package/package/components/icons/FrontAppIcon.svelte +7 -0
- package/package/components/icons/FrontAppIcon.svelte.d.ts +7 -0
- package/package/components/icons/GhostCmsIcon.svelte +7 -0
- package/package/components/icons/GhostCmsIcon.svelte.d.ts +7 -0
- package/package/components/icons/GiphyIcon.svelte +7 -0
- package/package/components/icons/GiphyIcon.svelte.d.ts +7 -0
- package/package/components/icons/GitBookIcon.svelte +7 -0
- package/package/components/icons/GitBookIcon.svelte.d.ts +7 -0
- package/package/components/icons/GroqIcon.svelte +7 -0
- package/package/components/icons/GroqIcon.svelte.d.ts +7 -0
- package/package/components/icons/HoneybadgerIcon.svelte +7 -0
- package/package/components/icons/HoneybadgerIcon.svelte.d.ts +7 -0
- package/package/components/icons/HttpIcon.svelte +1 -0
- package/package/components/icons/IftttIcon.svelte +7 -0
- package/package/components/icons/IftttIcon.svelte.d.ts +7 -0
- package/package/components/icons/IntercomIcon.svelte +7 -0
- package/package/components/icons/IntercomIcon.svelte.d.ts +7 -0
- package/package/components/icons/JoomlaIcon.svelte +7 -0
- package/package/components/icons/JoomlaIcon.svelte.d.ts +7 -0
- package/package/components/icons/LineIcon.svelte +7 -0
- package/package/components/icons/LineIcon.svelte.d.ts +7 -0
- package/package/components/icons/LinearIcon.svelte +7 -0
- package/package/components/icons/LinearIcon.svelte.d.ts +7 -0
- package/package/components/icons/LinodeIcon.svelte +7 -0
- package/package/components/icons/LinodeIcon.svelte.d.ts +7 -0
- package/package/components/icons/LumaAiIcon.svelte +39 -0
- package/package/components/icons/LumaAiIcon.svelte.d.ts +7 -0
- package/package/components/icons/MSTeamsIcon.svelte +20 -38
- package/package/components/icons/MSTeamsIcon.svelte.d.ts +2 -0
- package/package/components/icons/MagentoIcon.svelte +7 -0
- package/package/components/icons/MagentoIcon.svelte.d.ts +7 -0
- package/package/components/icons/MailchimpIcon.svelte +25 -13
- package/package/components/icons/MandrillIcon.svelte +7 -0
- package/package/components/icons/MandrillIcon.svelte.d.ts +7 -0
- package/package/components/icons/MauticIcon.svelte +7 -0
- package/package/components/icons/MauticIcon.svelte.d.ts +7 -0
- package/package/components/icons/MediumIcon.svelte +7 -0
- package/package/components/icons/MediumIcon.svelte.d.ts +7 -0
- package/package/components/icons/MiroIcon.svelte +7 -0
- package/package/components/icons/MiroIcon.svelte.d.ts +7 -0
- package/package/components/icons/MistralIcon.svelte +7 -0
- package/package/components/icons/MistralIcon.svelte.d.ts +7 -0
- package/package/components/icons/MixpanelIcon.svelte +7 -0
- package/package/components/icons/MixpanelIcon.svelte.d.ts +7 -0
- package/package/components/icons/MondayIcon.svelte +7 -0
- package/package/components/icons/MondayIcon.svelte.d.ts +7 -0
- package/package/components/icons/NeonDbIcon.svelte +23 -0
- package/package/components/icons/NeonDbIcon.svelte.d.ts +7 -0
- package/package/components/icons/NetlifyIcon.svelte +7 -0
- package/package/components/icons/NetlifyIcon.svelte.d.ts +7 -0
- package/package/components/icons/OneSignalIcon.svelte +9 -0
- package/package/components/icons/OneSignalIcon.svelte.d.ts +7 -0
- package/package/components/icons/OpenWeatherIcon.svelte +7 -0
- package/package/components/icons/OpenWeatherIcon.svelte.d.ts +7 -0
- package/package/components/icons/PagerDutyIcon.svelte +7 -0
- package/package/components/icons/PagerDutyIcon.svelte.d.ts +7 -0
- package/package/components/icons/PandaDocIcon.svelte +7 -0
- package/package/components/icons/PandaDocIcon.svelte.d.ts +7 -0
- package/package/components/icons/PaypalIcon.svelte +7 -0
- package/package/components/icons/PaypalIcon.svelte.d.ts +7 -0
- package/package/components/icons/PersonioIcon.svelte +7 -0
- package/package/components/icons/PersonioIcon.svelte.d.ts +7 -0
- package/package/components/icons/PinterestIcon.svelte +7 -0
- package/package/components/icons/PinterestIcon.svelte.d.ts +7 -0
- package/package/components/icons/PipedriveIcon.svelte +11 -0
- package/package/components/icons/PipedriveIcon.svelte.d.ts +7 -0
- package/package/components/icons/PlanetScaleIcon.svelte +7 -0
- package/package/components/icons/PlanetScaleIcon.svelte.d.ts +7 -0
- package/package/components/icons/PostmarkIcon.svelte +7 -0
- package/package/components/icons/PostmarkIcon.svelte.d.ts +7 -0
- package/package/components/icons/PusherIcon.svelte +7 -0
- package/package/components/icons/PusherIcon.svelte.d.ts +7 -0
- package/package/components/icons/QuickbooksIcon.svelte +13 -1
- package/package/components/icons/RaindropIcon.svelte +27 -0
- package/package/components/icons/RaindropIcon.svelte.d.ts +7 -0
- package/package/components/icons/ReadwiseIcon.svelte +12 -0
- package/package/components/icons/ReadwiseIcon.svelte.d.ts +7 -0
- package/package/components/icons/RenderIcon.svelte +7 -0
- package/package/components/icons/RenderIcon.svelte.d.ts +7 -0
- package/package/components/icons/ReplicateIcon.svelte +7 -0
- package/package/components/icons/ReplicateIcon.svelte.d.ts +7 -0
- package/package/components/icons/ResendIcon.svelte +1 -1
- package/package/components/icons/RestIcon.svelte +1 -0
- package/package/components/icons/RingCentralIcon.svelte +7 -0
- package/package/components/icons/RingCentralIcon.svelte.d.ts +7 -0
- package/package/components/icons/RocketChatIcon.svelte +7 -0
- package/package/components/icons/RocketChatIcon.svelte.d.ts +7 -0
- package/package/components/icons/RunPodIcon.svelte +8 -0
- package/package/components/icons/RunPodIcon.svelte.d.ts +7 -0
- package/package/components/icons/RustIcon.svelte +74 -56
- package/package/components/icons/SalesforceIcon.svelte +7 -0
- package/package/components/icons/SalesforceIcon.svelte.d.ts +7 -0
- package/package/components/icons/SegmentIcon.svelte +7 -0
- package/package/components/icons/SegmentIcon.svelte.d.ts +7 -0
- package/package/components/icons/SentryIcon.svelte +7 -0
- package/package/components/icons/SentryIcon.svelte.d.ts +7 -0
- package/package/components/icons/ServiceNowIcon.svelte +7 -0
- package/package/components/icons/ServiceNowIcon.svelte.d.ts +7 -0
- package/package/components/icons/ShortcutIcon.svelte +7 -0
- package/package/components/icons/ShortcutIcon.svelte.d.ts +7 -0
- package/package/components/icons/SigNozIcon.svelte +8 -0
- package/package/components/icons/SigNozIcon.svelte.d.ts +7 -0
- package/package/components/icons/SmartsheetIcon.svelte +7 -0
- package/package/components/icons/SmartsheetIcon.svelte.d.ts +7 -0
- package/package/components/icons/SpeechifyIcon.svelte +7 -0
- package/package/components/icons/SpeechifyIcon.svelte.d.ts +7 -0
- package/package/components/icons/SplitwiseIcon.svelte +7 -0
- package/package/components/icons/SplitwiseIcon.svelte.d.ts +7 -0
- package/package/components/icons/StravaIcon.svelte +7 -0
- package/package/components/icons/StravaIcon.svelte.d.ts +7 -0
- package/package/components/icons/TallyIcon.svelte +7 -0
- package/package/components/icons/TallyIcon.svelte.d.ts +7 -0
- package/package/components/icons/TelnyxIcon.svelte +19 -0
- package/package/components/icons/TelnyxIcon.svelte.d.ts +7 -0
- package/package/components/icons/ThreadsIcon.svelte +7 -0
- package/package/components/icons/ThreadsIcon.svelte.d.ts +7 -0
- package/package/components/icons/TodoistIcon.svelte +7 -0
- package/package/components/icons/TodoistIcon.svelte.d.ts +7 -0
- package/package/components/icons/TogetherAiIcon.svelte +23 -0
- package/package/components/icons/TogetherAiIcon.svelte.d.ts +7 -0
- package/package/components/icons/TrelloIcon.svelte +22 -1
- package/package/components/icons/TursoIcon.svelte +7 -0
- package/package/components/icons/TursoIcon.svelte.d.ts +7 -0
- package/package/components/icons/TwitchIcon.svelte +7 -0
- package/package/components/icons/TwitchIcon.svelte.d.ts +7 -0
- package/package/components/icons/TwitterIcon.svelte +7 -0
- package/package/components/icons/TwitterIcon.svelte.d.ts +7 -0
- package/package/components/icons/TypeformIcon.svelte +1 -1
- package/package/components/icons/VercelIcon.svelte +7 -0
- package/package/components/icons/VercelIcon.svelte.d.ts +7 -0
- package/package/components/icons/WebflowIcon.svelte +7 -0
- package/package/components/icons/WebflowIcon.svelte.d.ts +7 -0
- package/package/components/icons/WooCommerceIcon.svelte +7 -0
- package/package/components/icons/WooCommerceIcon.svelte.d.ts +7 -0
- package/package/components/icons/WordpressIcon.svelte +7 -0
- package/package/components/icons/WordpressIcon.svelte.d.ts +7 -0
- package/package/components/icons/XataIcon.svelte +13 -0
- package/package/components/icons/XataIcon.svelte.d.ts +7 -0
- package/package/components/icons/YelpIcon.svelte +7 -0
- package/package/components/icons/YelpIcon.svelte.d.ts +7 -0
- package/package/components/icons/YnabIcon.svelte +7 -0
- package/package/components/icons/YnabIcon.svelte.d.ts +7 -0
- package/package/components/icons/YoutubeIcon.svelte +7 -0
- package/package/components/icons/YoutubeIcon.svelte.d.ts +7 -0
- package/package/components/icons/ZendeskIcon.svelte +1 -1
- package/package/components/icons/ZeroTierIcon.svelte +7 -0
- package/package/components/icons/ZeroTierIcon.svelte.d.ts +7 -0
- package/package/components/icons/ZoomIcon.svelte +7 -0
- package/package/components/icons/ZoomIcon.svelte.d.ts +7 -0
- package/package/components/icons/index.d.ts +111 -1
- package/package/components/icons/index.js +225 -2
- package/package/components/instanceSettings/GhesAppSettings.svelte +161 -0
- package/package/components/instanceSettings/GhesAppSettings.svelte.d.ts +8 -0
- package/package/components/instanceSettings/IndexerMemorySettings.svelte +19 -8
- package/package/components/instanceSettings/InstanceAISettings.svelte +132 -0
- package/package/components/instanceSettings/InstanceAISettings.svelte.d.ts +10 -0
- package/package/components/instanceSettings/WorkspaceRegistries.svelte +293 -0
- package/package/components/instanceSettings/WorkspaceRegistries.svelte.d.ts +8 -0
- package/package/components/instanceSettings/WsConnectivityTest.svelte +177 -0
- package/package/components/instanceSettings/WsConnectivityTest.svelte.d.ts +7 -0
- package/package/components/instanceSettings.d.ts +3 -1
- package/package/components/instanceSettings.js +92 -2
- package/package/components/mcp/McpScopeSelector.svelte +408 -0
- package/package/components/mcp/McpScopeSelector.svelte.d.ts +7 -0
- package/package/components/meltComponents/Popover.svelte +0 -1
- package/package/components/raw_apps/RawAppPreview.svelte +6 -2
- package/package/components/recording/FlowRecordingReplay.svelte +94 -52
- package/package/components/recording/FlowRecordingReplay.svelte.d.ts +10 -1
- package/package/components/recording/ScriptRecordingReplay.svelte +139 -76
- package/package/components/recording/ScriptRecordingReplay.svelte.d.ts +10 -1
- package/package/components/runs/JobRunsPreview.svelte +8 -1
- package/package/components/runs/TimeframeSelect.svelte +0 -1
- package/package/components/schema/JobSchemaPicker.svelte +8 -2
- package/package/components/schema/JobSchemaPicker.svelte.d.ts +1 -0
- package/package/components/schema/SchemaFormDND.svelte +15 -3
- package/package/components/scriptEditor/LogPanel.svelte +78 -68
- package/package/components/script_builder.d.ts +1 -1
- package/package/components/scripts/CreateActionsScript.svelte +3 -3
- package/package/components/scripts/WacExportDrawer.svelte +127 -0
- package/package/components/scripts/WacExportDrawer.svelte.d.ts +8 -0
- package/package/components/scripts/scriptStore.svelte.d.ts +2 -0
- package/package/components/scripts/scriptStore.svelte.js +2 -0
- package/package/components/select/SelectDropdown.svelte +1 -1
- package/package/components/settings/AIPromptsModal.svelte +5 -2
- package/package/components/settings/AIPromptsModal.svelte.d.ts +1 -1
- package/package/components/settings/CloudQuotas.svelte +152 -0
- package/package/components/settings/CloudQuotas.svelte.d.ts +3 -0
- package/package/components/settings/CreateToken.svelte +15 -430
- package/package/components/settings/Trashbin.svelte +248 -0
- package/package/components/settings/Trashbin.svelte.d.ts +3 -0
- package/package/components/sidebar/MultiplayerMenu.svelte +14 -4
- package/package/components/triggers/DeleteTriggerButton.svelte +1 -0
- package/package/components/triggers/PermissionedAsLine.svelte +66 -0
- package/package/components/triggers/PermissionedAsLine.svelte.d.ts +9 -0
- package/package/components/triggers/TriggerEditorToolbar.svelte +2 -2
- package/package/components/triggers/TriggerTokens.svelte +3 -3
- package/package/components/triggers/email/EmailTriggerEditorInner.svelte +19 -1
- package/package/components/triggers/email/utils.js +3 -1
- package/package/components/triggers/gcp/GcpTriggerEditorInner.svelte +24 -4
- package/package/components/triggers/gcp/utils.js +2 -0
- package/package/components/triggers/http/RouteEditorConfigSection.svelte +22 -3
- package/package/components/triggers/http/RouteEditorInner.svelte +28 -6
- package/package/components/triggers/http/RoutesGenerator.svelte +13 -2
- package/package/components/triggers/http/utils.js +3 -1
- package/package/components/triggers/kafka/KafkaTriggerEditorInner.svelte +23 -6
- package/package/components/triggers/kafka/utils.js +3 -1
- package/package/components/triggers/mqtt/MqttTriggerEditorInner.svelte +27 -5
- package/package/components/triggers/mqtt/utils.js +2 -0
- package/package/components/triggers/native/NativeTriggerEditor.svelte +23 -1
- package/package/components/triggers/native/NativeTriggerTable.svelte +14 -3
- package/package/components/triggers/native/utils.js +3 -2
- package/package/components/triggers/nats/NatsTriggerEditorInner.svelte +19 -1
- package/package/components/triggers/nats/utils.js +2 -0
- package/package/components/triggers/postgres/PostgresTriggerEditorInner.svelte +19 -1
- package/package/components/triggers/postgres/utils.js +2 -0
- package/package/components/triggers/schedules/ScheduleEditorInner.svelte +29 -7
- package/package/components/triggers/sqs/SqsTriggerEditorInner.svelte +19 -1
- package/package/components/triggers/sqs/utils.js +2 -0
- package/package/components/triggers/utils.js +9 -2
- package/package/components/triggers/websocket/WebsocketTriggerEditorInner.svelte +24 -4
- package/package/components/triggers/websocket/utils.js +3 -1
- package/package/components/workspaceSettings/AISettings.svelte +342 -214
- package/package/components/workspaceSettings/AISettings.svelte.d.ts +18 -10
- package/package/components/workspaceSettings/CreateWorkspace.svelte +304 -196
- package/package/components/workspaceSettings/CustomInstanceDbWizardModal.svelte +1 -2
- package/package/components/workspaceSettings/DucklakeSettings.svelte +1 -1
- package/package/components/workspaceSettings/InstanceFallbackSettings.svelte +75 -0
- package/package/components/workspaceSettings/InstanceFallbackSettings.svelte.d.ts +9 -0
- package/package/components/workspaceSettings/StorageSettings.svelte +4 -35
- package/package/components/workspaceSettings/VolumeStorageSettings.svelte +80 -0
- package/package/components/workspaceSettings/VolumeStorageSettings.svelte.d.ts +10 -0
- package/package/components/workspaceSettings/WorkspaceIntegrations.svelte +4 -1
- package/package/forLater.js +4 -0
- package/package/gen/core/OpenAPI.js +1 -1
- package/package/gen/schemas.gen.d.ts +294 -94
- package/package/gen/schemas.gen.js +294 -94
- package/package/gen/services.gen.d.ts +121 -5
- package/package/gen/services.gen.js +237 -5
- package/package/gen/types.gen.d.ts +715 -91
- package/package/githubApp.js +19 -1
- package/package/hubPaths.json +8 -4
- package/package/infer.d.ts +1 -1
- package/package/infer.js +5 -1
- package/package/logoutRedirect.d.ts +1 -0
- package/package/logoutRedirect.js +24 -0
- package/package/script_helpers.d.ts +8 -2
- package/package/script_helpers.js +15 -1
- package/package/services/trashService.d.ts +28 -0
- package/package/services/trashService.js +47 -0
- package/package/stores.d.ts +1 -0
- package/package/stores.js +1 -0
- package/package/system_prompts/index.d.ts +1 -0
- package/package/system_prompts/index.js +7 -0
- package/package/system_prompts/prompts.d.ts +7 -5
- package/package/system_prompts/prompts.js +182 -11
- package/package/templates/wac_python.py.template +42 -0
- package/package/templates/wac_typescript.ts.template +48 -0
- package/package/utils_deployable.d.ts +22 -21
- package/package/utils_deployable.js +58 -25
- package/package/utils_workspace_deploy.d.ts +15 -4
- package/package/utils_workspace_deploy.js +19 -15
- package/package/wsUrl.d.ts +1 -0
- package/package/wsUrl.js +15 -0
- package/package.json +13 -5
- 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/kafka/utils.d.ts +0 -2
- 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/graph/NodeContextMenu.svelte +0 -36
- package/package/components/graph/NodeContextMenu.svelte.d.ts +0 -8
- package/package/svelte5Utils.svelte.d.ts +0 -184
|
@@ -60,7 +60,7 @@ export declare const $FlowValue: {
|
|
|
60
60
|
readonly description: "Time window in seconds for concurrent_limit";
|
|
61
61
|
};
|
|
62
62
|
readonly debounce_delay_s: {
|
|
63
|
-
readonly type: "
|
|
63
|
+
readonly type: "integer";
|
|
64
64
|
readonly description: "Delay in seconds to debounce flow executions";
|
|
65
65
|
};
|
|
66
66
|
readonly debounce_key: {
|
|
@@ -75,11 +75,11 @@ export declare const $FlowValue: {
|
|
|
75
75
|
};
|
|
76
76
|
};
|
|
77
77
|
readonly max_total_debouncing_time: {
|
|
78
|
-
readonly type: "
|
|
78
|
+
readonly type: "integer";
|
|
79
79
|
readonly description: "Maximum total time in seconds that a job can be debounced";
|
|
80
80
|
};
|
|
81
81
|
readonly max_total_debounces_amount: {
|
|
82
|
-
readonly type: "
|
|
82
|
+
readonly type: "integer";
|
|
83
83
|
readonly description: "Maximum number of times a job can be debounced";
|
|
84
84
|
};
|
|
85
85
|
readonly skip_expr: {
|
|
@@ -117,6 +117,42 @@ export declare const $FlowValue: {
|
|
|
117
117
|
readonly $ref: "#/components/schemas/FlowNote";
|
|
118
118
|
};
|
|
119
119
|
};
|
|
120
|
+
readonly groups: {
|
|
121
|
+
readonly type: "array";
|
|
122
|
+
readonly description: "Semantic groups of modules for organizational purposes";
|
|
123
|
+
readonly items: {
|
|
124
|
+
readonly type: "object";
|
|
125
|
+
readonly description: "A semantic group of flow modules for organizational purposes. Does not affect execution — modules remain in their original position in the flow. Groups provide naming and collapsibility in the editor. Members are computed dynamically from all nodes on paths between start_id and end_id.";
|
|
126
|
+
readonly properties: {
|
|
127
|
+
readonly summary: {
|
|
128
|
+
readonly type: "string";
|
|
129
|
+
readonly description: "Display name for this group";
|
|
130
|
+
};
|
|
131
|
+
readonly note: {
|
|
132
|
+
readonly type: "string";
|
|
133
|
+
readonly description: "Markdown note shown below the group header";
|
|
134
|
+
};
|
|
135
|
+
readonly autocollapse: {
|
|
136
|
+
readonly type: "boolean";
|
|
137
|
+
readonly default: false;
|
|
138
|
+
readonly description: "If true, this group is collapsed by default in the flow editor. UI hint only.";
|
|
139
|
+
};
|
|
140
|
+
readonly start_id: {
|
|
141
|
+
readonly type: "string";
|
|
142
|
+
readonly description: "ID of the first flow module in this group (topological entry point)";
|
|
143
|
+
};
|
|
144
|
+
readonly end_id: {
|
|
145
|
+
readonly type: "string";
|
|
146
|
+
readonly description: "ID of the last flow module in this group (topological exit point)";
|
|
147
|
+
};
|
|
148
|
+
readonly color: {
|
|
149
|
+
readonly type: "string";
|
|
150
|
+
readonly description: "Color for the group in the flow editor";
|
|
151
|
+
};
|
|
152
|
+
};
|
|
153
|
+
readonly required: readonly ["start_id", "end_id"];
|
|
154
|
+
};
|
|
155
|
+
};
|
|
120
156
|
};
|
|
121
157
|
readonly required: readonly ["modules"];
|
|
122
158
|
};
|
|
@@ -190,7 +226,8 @@ export declare const $StopAfterIf: {
|
|
|
190
226
|
};
|
|
191
227
|
readonly error_message: {
|
|
192
228
|
readonly type: "string";
|
|
193
|
-
readonly
|
|
229
|
+
readonly nullable: true;
|
|
230
|
+
readonly description: "Custom error message when stopping with an error. Mutually exclusive with skip_if_stopped. If set to a non-empty string, the flow stops with this error. If empty string, a default error message is used. If null or omitted, no error is raised.";
|
|
194
231
|
};
|
|
195
232
|
};
|
|
196
233
|
readonly required: readonly ["expr"];
|
|
@@ -317,6 +354,35 @@ export declare const $FlowModule: {
|
|
|
317
354
|
readonly description: "Retry configuration if this step fails";
|
|
318
355
|
readonly $ref: "#/components/schemas/Retry";
|
|
319
356
|
};
|
|
357
|
+
readonly debouncing: {
|
|
358
|
+
readonly description: "Debounce configuration for this step (EE only)";
|
|
359
|
+
readonly type: "object";
|
|
360
|
+
readonly properties: {
|
|
361
|
+
readonly debounce_delay_s: {
|
|
362
|
+
readonly type: "integer";
|
|
363
|
+
readonly description: "Delay in seconds to debounce this step's executions across flow runs";
|
|
364
|
+
};
|
|
365
|
+
readonly debounce_key: {
|
|
366
|
+
readonly type: "string";
|
|
367
|
+
readonly description: "Expression to group debounced executions. Supports $workspace and $args[name]. Default: $workspace/flow/<flow_path>-<step_id>";
|
|
368
|
+
};
|
|
369
|
+
readonly debounce_args_to_accumulate: {
|
|
370
|
+
readonly type: "array";
|
|
371
|
+
readonly description: "Array-type arguments to accumulate across debounced executions";
|
|
372
|
+
readonly items: {
|
|
373
|
+
readonly type: "string";
|
|
374
|
+
};
|
|
375
|
+
};
|
|
376
|
+
readonly max_total_debouncing_time: {
|
|
377
|
+
readonly type: "integer";
|
|
378
|
+
readonly description: "Maximum total time in seconds before forced execution";
|
|
379
|
+
};
|
|
380
|
+
readonly max_total_debounces_amount: {
|
|
381
|
+
readonly type: "integer";
|
|
382
|
+
readonly description: "Maximum number of debounces before forced execution";
|
|
383
|
+
};
|
|
384
|
+
};
|
|
385
|
+
};
|
|
320
386
|
};
|
|
321
387
|
readonly required: readonly ["value", "id"];
|
|
322
388
|
};
|
|
@@ -1925,6 +1991,39 @@ export declare const $AIConfig: {
|
|
|
1925
1991
|
};
|
|
1926
1992
|
};
|
|
1927
1993
|
};
|
|
1994
|
+
export declare const $InstanceAIProviderSummary: {
|
|
1995
|
+
readonly type: "object";
|
|
1996
|
+
readonly properties: {
|
|
1997
|
+
readonly provider: {
|
|
1998
|
+
readonly $ref: "#/components/schemas/AIProvider";
|
|
1999
|
+
};
|
|
2000
|
+
readonly models: {
|
|
2001
|
+
readonly type: "array";
|
|
2002
|
+
readonly items: {
|
|
2003
|
+
readonly type: "string";
|
|
2004
|
+
};
|
|
2005
|
+
};
|
|
2006
|
+
};
|
|
2007
|
+
readonly required: readonly ["provider", "models"];
|
|
2008
|
+
};
|
|
2009
|
+
export declare const $InstanceAISummary: {
|
|
2010
|
+
readonly type: "object";
|
|
2011
|
+
readonly properties: {
|
|
2012
|
+
readonly providers: {
|
|
2013
|
+
readonly type: "array";
|
|
2014
|
+
readonly items: {
|
|
2015
|
+
readonly $ref: "#/components/schemas/InstanceAIProviderSummary";
|
|
2016
|
+
};
|
|
2017
|
+
};
|
|
2018
|
+
readonly default_model: {
|
|
2019
|
+
readonly $ref: "#/components/schemas/AIProviderModel";
|
|
2020
|
+
};
|
|
2021
|
+
readonly code_completion_model: {
|
|
2022
|
+
readonly $ref: "#/components/schemas/AIProviderModel";
|
|
2023
|
+
};
|
|
2024
|
+
};
|
|
2025
|
+
readonly required: readonly ["providers"];
|
|
2026
|
+
};
|
|
1928
2027
|
export declare const $Alert: {
|
|
1929
2028
|
readonly type: "object";
|
|
1930
2029
|
readonly properties: {
|
|
@@ -2148,8 +2247,8 @@ export declare const $Script: {
|
|
|
2148
2247
|
readonly visible_to_runner_only: {
|
|
2149
2248
|
readonly type: "boolean";
|
|
2150
2249
|
};
|
|
2151
|
-
readonly
|
|
2152
|
-
readonly type: "
|
|
2250
|
+
readonly auto_kind: {
|
|
2251
|
+
readonly type: "string";
|
|
2153
2252
|
};
|
|
2154
2253
|
readonly codebase: {
|
|
2155
2254
|
readonly type: "string";
|
|
@@ -2160,8 +2259,16 @@ export declare const $Script: {
|
|
|
2160
2259
|
readonly on_behalf_of_email: {
|
|
2161
2260
|
readonly type: "string";
|
|
2162
2261
|
};
|
|
2262
|
+
readonly modules: {
|
|
2263
|
+
readonly type: "object";
|
|
2264
|
+
readonly nullable: true;
|
|
2265
|
+
readonly description: "Additional script modules keyed by relative file path";
|
|
2266
|
+
readonly additionalProperties: {
|
|
2267
|
+
readonly $ref: "#/components/schemas/ScriptModule";
|
|
2268
|
+
};
|
|
2269
|
+
};
|
|
2163
2270
|
};
|
|
2164
|
-
readonly required: readonly ["hash", "path", "summary", "description", "content", "created_by", "created_at", "archived", "deleted", "is_template", "extra_perms", "language", "kind", "starred", "
|
|
2271
|
+
readonly required: readonly ["hash", "path", "summary", "description", "content", "created_by", "created_at", "archived", "deleted", "is_template", "extra_perms", "language", "kind", "starred", "has_preprocessor"];
|
|
2165
2272
|
};
|
|
2166
2273
|
export declare const $NewScript: {
|
|
2167
2274
|
readonly type: "object";
|
|
@@ -2266,8 +2373,8 @@ export declare const $NewScript: {
|
|
|
2266
2373
|
readonly visible_to_runner_only: {
|
|
2267
2374
|
readonly type: "boolean";
|
|
2268
2375
|
};
|
|
2269
|
-
readonly
|
|
2270
|
-
readonly type: "
|
|
2376
|
+
readonly auto_kind: {
|
|
2377
|
+
readonly type: "string";
|
|
2271
2378
|
};
|
|
2272
2379
|
readonly codebase: {
|
|
2273
2380
|
readonly type: "string";
|
|
@@ -2305,6 +2412,14 @@ export declare const $NewScript: {
|
|
|
2305
2412
|
};
|
|
2306
2413
|
};
|
|
2307
2414
|
};
|
|
2415
|
+
readonly modules: {
|
|
2416
|
+
readonly type: "object";
|
|
2417
|
+
readonly nullable: true;
|
|
2418
|
+
readonly description: "Additional script modules keyed by relative file path";
|
|
2419
|
+
readonly additionalProperties: {
|
|
2420
|
+
readonly $ref: "#/components/schemas/ScriptModule";
|
|
2421
|
+
};
|
|
2422
|
+
};
|
|
2308
2423
|
};
|
|
2309
2424
|
readonly required: readonly ["path", "summary", "content", "language"];
|
|
2310
2425
|
};
|
|
@@ -3463,8 +3578,8 @@ export declare const $MainArgSignature: {
|
|
|
3463
3578
|
readonly required: readonly ["name", "typ"];
|
|
3464
3579
|
};
|
|
3465
3580
|
};
|
|
3466
|
-
readonly
|
|
3467
|
-
readonly type: "
|
|
3581
|
+
readonly auto_kind: {
|
|
3582
|
+
readonly type: "string";
|
|
3468
3583
|
readonly nullable: true;
|
|
3469
3584
|
};
|
|
3470
3585
|
readonly has_preprocessor: {
|
|
@@ -3472,12 +3587,31 @@ export declare const $MainArgSignature: {
|
|
|
3472
3587
|
readonly nullable: true;
|
|
3473
3588
|
};
|
|
3474
3589
|
};
|
|
3475
|
-
readonly required: readonly ["star_args", "start_kwargs", "args", "type", "error", "
|
|
3590
|
+
readonly required: readonly ["star_args", "start_kwargs", "args", "type", "error", "auto_kind", "has_preprocessor"];
|
|
3476
3591
|
};
|
|
3477
3592
|
export declare const $ScriptLang: {
|
|
3478
3593
|
readonly type: "string";
|
|
3479
3594
|
readonly enum: readonly ["python3", "deno", "go", "bash", "powershell", "postgresql", "mysql", "bigquery", "snowflake", "mssql", "oracledb", "graphql", "nativets", "bun", "php", "rust", "ansible", "csharp", "nu", "java", "ruby", "duckdb", "bunnative"];
|
|
3480
3595
|
};
|
|
3596
|
+
export declare const $ScriptModule: {
|
|
3597
|
+
readonly type: "object";
|
|
3598
|
+
readonly description: "An additional module file associated with a script";
|
|
3599
|
+
readonly properties: {
|
|
3600
|
+
readonly content: {
|
|
3601
|
+
readonly type: "string";
|
|
3602
|
+
readonly description: "The source code content of this module";
|
|
3603
|
+
};
|
|
3604
|
+
readonly language: {
|
|
3605
|
+
readonly $ref: "#/components/schemas/ScriptLang";
|
|
3606
|
+
};
|
|
3607
|
+
readonly lock: {
|
|
3608
|
+
readonly type: "string";
|
|
3609
|
+
readonly nullable: true;
|
|
3610
|
+
readonly description: "Lock file content for this module's dependencies";
|
|
3611
|
+
};
|
|
3612
|
+
};
|
|
3613
|
+
readonly required: readonly ["content", "language"];
|
|
3614
|
+
};
|
|
3481
3615
|
export declare const $Preview: {
|
|
3482
3616
|
readonly type: "object";
|
|
3483
3617
|
readonly properties: {
|
|
@@ -3515,6 +3649,14 @@ export declare const $Preview: {
|
|
|
3515
3649
|
readonly flow_path: {
|
|
3516
3650
|
readonly type: "string";
|
|
3517
3651
|
};
|
|
3652
|
+
readonly modules: {
|
|
3653
|
+
readonly type: "object";
|
|
3654
|
+
readonly nullable: true;
|
|
3655
|
+
readonly description: "Additional script modules keyed by relative file path";
|
|
3656
|
+
readonly additionalProperties: {
|
|
3657
|
+
readonly $ref: "#/components/schemas/ScriptModule";
|
|
3658
|
+
};
|
|
3659
|
+
};
|
|
3518
3660
|
};
|
|
3519
3661
|
readonly required: readonly ["args"];
|
|
3520
3662
|
};
|
|
@@ -3790,6 +3932,10 @@ export declare const $Schedule: {
|
|
|
3790
3932
|
readonly type: "string";
|
|
3791
3933
|
readonly description: "Email of the user who owns this schedule, used for permissioned_as";
|
|
3792
3934
|
};
|
|
3935
|
+
readonly permissioned_as: {
|
|
3936
|
+
readonly type: "string";
|
|
3937
|
+
readonly description: "The user or group this schedule runs as (e.g., 'u/admin' or 'g/mygroup')";
|
|
3938
|
+
};
|
|
3793
3939
|
readonly error: {
|
|
3794
3940
|
readonly type: "string";
|
|
3795
3941
|
readonly nullable: true;
|
|
@@ -3881,7 +4027,7 @@ export declare const $Schedule: {
|
|
|
3881
4027
|
readonly description: "Path to a script that validates scheduled datetimes. Receives scheduled_for datetime and returns boolean to skip (true) or run (false)";
|
|
3882
4028
|
};
|
|
3883
4029
|
};
|
|
3884
|
-
readonly required: readonly ["path", "edited_by", "edited_at", "schedule", "script_path", "timezone", "extra_perms", "is_flow", "enabled", "email"];
|
|
4030
|
+
readonly required: readonly ["path", "edited_by", "edited_at", "schedule", "script_path", "timezone", "extra_perms", "is_flow", "enabled", "email", "permissioned_as"];
|
|
3885
4031
|
};
|
|
3886
4032
|
export declare const $ScheduleWJobs: {
|
|
3887
4033
|
readonly allOf: readonly [{
|
|
@@ -4030,13 +4176,13 @@ export declare const $NewSchedule: {
|
|
|
4030
4176
|
readonly nullable: true;
|
|
4031
4177
|
readonly description: "Path to a script that validates scheduled datetimes. Receives scheduled_for datetime and returns boolean to skip (true) or run (false)";
|
|
4032
4178
|
};
|
|
4033
|
-
readonly
|
|
4179
|
+
readonly permissioned_as: {
|
|
4034
4180
|
readonly type: "string";
|
|
4035
|
-
readonly description: "
|
|
4181
|
+
readonly description: "The user or group this schedule runs as. Used during deployment to preserve the original schedule owner.";
|
|
4036
4182
|
};
|
|
4037
|
-
readonly
|
|
4183
|
+
readonly preserve_permissioned_as: {
|
|
4038
4184
|
readonly type: "boolean";
|
|
4039
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
4185
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
4040
4186
|
};
|
|
4041
4187
|
};
|
|
4042
4188
|
readonly required: readonly ["path", "schedule", "timezone", "script_path", "is_flow", "args"];
|
|
@@ -4141,13 +4287,15 @@ export declare const $EditSchedule: {
|
|
|
4141
4287
|
readonly nullable: true;
|
|
4142
4288
|
readonly description: "Path to a script that validates scheduled datetimes. Receives scheduled_for datetime and returns boolean to skip (true) or run (false)";
|
|
4143
4289
|
};
|
|
4144
|
-
readonly
|
|
4290
|
+
readonly permissioned_as: {
|
|
4145
4291
|
readonly type: "string";
|
|
4146
|
-
readonly
|
|
4292
|
+
readonly nullable: true;
|
|
4293
|
+
readonly description: "The user or group this schedule runs as (e.g., 'u/admin' or 'g/mygroup'). Only admins and wm_deployers can set this via preserve_permissioned_as.";
|
|
4147
4294
|
};
|
|
4148
|
-
readonly
|
|
4295
|
+
readonly preserve_permissioned_as: {
|
|
4149
4296
|
readonly type: "boolean";
|
|
4150
|
-
readonly
|
|
4297
|
+
readonly nullable: true;
|
|
4298
|
+
readonly description: "If true and user is admin/wm_deployers, preserve the provided permissioned_as instead of using the deploying user's identity";
|
|
4151
4299
|
};
|
|
4152
4300
|
};
|
|
4153
4301
|
readonly required: readonly ["schedule", "timezone", "args"];
|
|
@@ -4173,9 +4321,9 @@ export declare const $TriggerExtraProperty: {
|
|
|
4173
4321
|
readonly type: "string";
|
|
4174
4322
|
readonly description: "Path to the script or flow to execute when triggered";
|
|
4175
4323
|
};
|
|
4176
|
-
readonly
|
|
4324
|
+
readonly permissioned_as: {
|
|
4177
4325
|
readonly type: "string";
|
|
4178
|
-
readonly description: "
|
|
4326
|
+
readonly description: "The user or group this trigger runs as (permissioned_as)";
|
|
4179
4327
|
};
|
|
4180
4328
|
readonly extra_perms: {
|
|
4181
4329
|
readonly type: "object";
|
|
@@ -4206,7 +4354,7 @@ export declare const $TriggerExtraProperty: {
|
|
|
4206
4354
|
readonly description: "Trigger mode (enabled/disabled)";
|
|
4207
4355
|
};
|
|
4208
4356
|
};
|
|
4209
|
-
readonly required: readonly ["path", "script_path", "
|
|
4357
|
+
readonly required: readonly ["path", "script_path", "permissioned_as", "extra_perms", "workspace_id", "edited_by", "edited_at", "is_flow", "mode"];
|
|
4210
4358
|
};
|
|
4211
4359
|
export declare const $AuthenticationMethod: {
|
|
4212
4360
|
readonly type: "string";
|
|
@@ -4524,13 +4672,13 @@ export declare const $NewHttpTrigger: {
|
|
|
4524
4672
|
readonly $ref: "#/components/schemas/Retry";
|
|
4525
4673
|
readonly description: "Retry configuration for failed executions";
|
|
4526
4674
|
};
|
|
4527
|
-
readonly
|
|
4675
|
+
readonly permissioned_as: {
|
|
4528
4676
|
readonly type: "string";
|
|
4529
|
-
readonly description: "
|
|
4677
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
4530
4678
|
};
|
|
4531
|
-
readonly
|
|
4679
|
+
readonly preserve_permissioned_as: {
|
|
4532
4680
|
readonly type: "boolean";
|
|
4533
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
4681
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
4534
4682
|
};
|
|
4535
4683
|
};
|
|
4536
4684
|
readonly required: readonly ["path", "script_path", "route_path", "is_flow", "authentication_method", "http_method", "is_static_website"];
|
|
@@ -4633,13 +4781,13 @@ export declare const $EditHttpTrigger: {
|
|
|
4633
4781
|
readonly $ref: "#/components/schemas/Retry";
|
|
4634
4782
|
readonly description: "Retry configuration for failed executions";
|
|
4635
4783
|
};
|
|
4636
|
-
readonly
|
|
4784
|
+
readonly permissioned_as: {
|
|
4637
4785
|
readonly type: "string";
|
|
4638
|
-
readonly description: "
|
|
4786
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
4639
4787
|
};
|
|
4640
|
-
readonly
|
|
4788
|
+
readonly preserve_permissioned_as: {
|
|
4641
4789
|
readonly type: "boolean";
|
|
4642
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
4790
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
4643
4791
|
};
|
|
4644
4792
|
};
|
|
4645
4793
|
readonly required: readonly ["path", "script_path", "is_flow", "kind", "authentication_method", "http_method", "is_static_website"];
|
|
@@ -4841,13 +4989,13 @@ export declare const $NewWebsocketTrigger: {
|
|
|
4841
4989
|
readonly description: "Retry configuration for failed executions";
|
|
4842
4990
|
readonly $ref: "#/components/schemas/Retry";
|
|
4843
4991
|
};
|
|
4844
|
-
readonly
|
|
4992
|
+
readonly permissioned_as: {
|
|
4845
4993
|
readonly type: "string";
|
|
4846
|
-
readonly description: "
|
|
4994
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
4847
4995
|
};
|
|
4848
|
-
readonly
|
|
4996
|
+
readonly preserve_permissioned_as: {
|
|
4849
4997
|
readonly type: "boolean";
|
|
4850
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
4998
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
4851
4999
|
};
|
|
4852
5000
|
};
|
|
4853
5001
|
readonly required: readonly ["path", "script_path", "url", "is_flow", "filters", "can_return_message", "can_return_error_result"];
|
|
@@ -4918,13 +5066,13 @@ export declare const $EditWebsocketTrigger: {
|
|
|
4918
5066
|
readonly description: "Retry configuration for failed executions";
|
|
4919
5067
|
readonly $ref: "#/components/schemas/Retry";
|
|
4920
5068
|
};
|
|
4921
|
-
readonly
|
|
5069
|
+
readonly permissioned_as: {
|
|
4922
5070
|
readonly type: "string";
|
|
4923
|
-
readonly description: "
|
|
5071
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
4924
5072
|
};
|
|
4925
|
-
readonly
|
|
5073
|
+
readonly preserve_permissioned_as: {
|
|
4926
5074
|
readonly type: "boolean";
|
|
4927
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
5075
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
4928
5076
|
};
|
|
4929
5077
|
};
|
|
4930
5078
|
readonly required: readonly ["path", "script_path", "url", "is_flow", "filters", "can_return_message", "can_return_error_result"];
|
|
@@ -5128,13 +5276,13 @@ export declare const $NewMqttTrigger: {
|
|
|
5128
5276
|
readonly $ref: "#/components/schemas/Retry";
|
|
5129
5277
|
readonly description: "Retry configuration for failed executions";
|
|
5130
5278
|
};
|
|
5131
|
-
readonly
|
|
5279
|
+
readonly permissioned_as: {
|
|
5132
5280
|
readonly type: "string";
|
|
5133
|
-
readonly description: "
|
|
5281
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
5134
5282
|
};
|
|
5135
|
-
readonly
|
|
5283
|
+
readonly preserve_permissioned_as: {
|
|
5136
5284
|
readonly type: "boolean";
|
|
5137
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
5285
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
5138
5286
|
};
|
|
5139
5287
|
};
|
|
5140
5288
|
readonly required: readonly ["path", "script_path", "is_flow", "subscribe_topics", "mqtt_resource_path"];
|
|
@@ -5200,13 +5348,13 @@ export declare const $EditMqttTrigger: {
|
|
|
5200
5348
|
readonly $ref: "#/components/schemas/Retry";
|
|
5201
5349
|
readonly description: "Retry configuration for failed executions";
|
|
5202
5350
|
};
|
|
5203
|
-
readonly
|
|
5351
|
+
readonly permissioned_as: {
|
|
5204
5352
|
readonly type: "string";
|
|
5205
|
-
readonly description: "
|
|
5353
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
5206
5354
|
};
|
|
5207
|
-
readonly
|
|
5355
|
+
readonly preserve_permissioned_as: {
|
|
5208
5356
|
readonly type: "boolean";
|
|
5209
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
5357
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
5210
5358
|
};
|
|
5211
5359
|
};
|
|
5212
5360
|
readonly required: readonly ["path", "script_path", "is_flow", "enabled", "subscribe_topics", "mqtt_resource_path"];
|
|
@@ -5361,13 +5509,13 @@ export declare const $GcpTriggerData: {
|
|
|
5361
5509
|
readonly $ref: "#/components/schemas/Retry";
|
|
5362
5510
|
readonly description: "Retry configuration for failed executions.";
|
|
5363
5511
|
};
|
|
5364
|
-
readonly
|
|
5512
|
+
readonly permissioned_as: {
|
|
5365
5513
|
readonly type: "string";
|
|
5366
|
-
readonly description: "
|
|
5514
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
5367
5515
|
};
|
|
5368
|
-
readonly
|
|
5516
|
+
readonly preserve_permissioned_as: {
|
|
5369
5517
|
readonly type: "boolean";
|
|
5370
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
5518
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
5371
5519
|
};
|
|
5372
5520
|
};
|
|
5373
5521
|
readonly required: readonly ["path", "script_path", "is_flow", "gcp_resource_path", "topic_id", "subscription_mode"];
|
|
@@ -5552,13 +5700,13 @@ export declare const $NewSqsTrigger: {
|
|
|
5552
5700
|
readonly $ref: "#/components/schemas/Retry";
|
|
5553
5701
|
readonly description: "Retry configuration for failed executions";
|
|
5554
5702
|
};
|
|
5555
|
-
readonly
|
|
5703
|
+
readonly permissioned_as: {
|
|
5556
5704
|
readonly type: "string";
|
|
5557
|
-
readonly description: "
|
|
5705
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
5558
5706
|
};
|
|
5559
|
-
readonly
|
|
5707
|
+
readonly preserve_permissioned_as: {
|
|
5560
5708
|
readonly type: "boolean";
|
|
5561
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
5709
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
5562
5710
|
};
|
|
5563
5711
|
};
|
|
5564
5712
|
readonly required: readonly ["queue_url", "aws_resource_path", "path", "script_path", "is_flow", "aws_auth_resource_type"];
|
|
@@ -5613,13 +5761,13 @@ export declare const $EditSqsTrigger: {
|
|
|
5613
5761
|
readonly $ref: "#/components/schemas/Retry";
|
|
5614
5762
|
readonly description: "Retry configuration for failed executions";
|
|
5615
5763
|
};
|
|
5616
|
-
readonly
|
|
5764
|
+
readonly permissioned_as: {
|
|
5617
5765
|
readonly type: "string";
|
|
5618
|
-
readonly description: "
|
|
5766
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
5619
5767
|
};
|
|
5620
|
-
readonly
|
|
5768
|
+
readonly preserve_permissioned_as: {
|
|
5621
5769
|
readonly type: "boolean";
|
|
5622
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
5770
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
5623
5771
|
};
|
|
5624
5772
|
};
|
|
5625
5773
|
readonly required: readonly ["queue_url", "aws_resource_path", "path", "script_path", "is_flow", "enabled", "aws_auth_resource_type"];
|
|
@@ -5808,13 +5956,13 @@ export declare const $NewPostgresTrigger: {
|
|
|
5808
5956
|
readonly $ref: "#/components/schemas/Retry";
|
|
5809
5957
|
readonly description: "Retry configuration for failed executions";
|
|
5810
5958
|
};
|
|
5811
|
-
readonly
|
|
5959
|
+
readonly permissioned_as: {
|
|
5812
5960
|
readonly type: "string";
|
|
5813
|
-
readonly description: "
|
|
5961
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
5814
5962
|
};
|
|
5815
|
-
readonly
|
|
5963
|
+
readonly preserve_permissioned_as: {
|
|
5816
5964
|
readonly type: "boolean";
|
|
5817
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
5965
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
5818
5966
|
};
|
|
5819
5967
|
};
|
|
5820
5968
|
readonly required: readonly ["path", "script_path", "is_flow", "enabled", "postgres_resource_path"];
|
|
@@ -5865,13 +6013,13 @@ export declare const $EditPostgresTrigger: {
|
|
|
5865
6013
|
readonly $ref: "#/components/schemas/Retry";
|
|
5866
6014
|
readonly description: "Retry configuration for failed executions";
|
|
5867
6015
|
};
|
|
5868
|
-
readonly
|
|
6016
|
+
readonly permissioned_as: {
|
|
5869
6017
|
readonly type: "string";
|
|
5870
|
-
readonly description: "
|
|
6018
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
5871
6019
|
};
|
|
5872
|
-
readonly
|
|
6020
|
+
readonly preserve_permissioned_as: {
|
|
5873
6021
|
readonly type: "boolean";
|
|
5874
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
6022
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
5875
6023
|
};
|
|
5876
6024
|
};
|
|
5877
6025
|
readonly required: readonly ["path", "script_path", "is_flow", "enabled", "postgres_resource_path", "publication_name", "replication_slot_name"];
|
|
@@ -6018,13 +6166,13 @@ export declare const $NewKafkaTrigger: {
|
|
|
6018
6166
|
readonly $ref: "#/components/schemas/Retry";
|
|
6019
6167
|
readonly description: "Retry configuration for failed executions";
|
|
6020
6168
|
};
|
|
6021
|
-
readonly
|
|
6169
|
+
readonly permissioned_as: {
|
|
6022
6170
|
readonly type: "string";
|
|
6023
|
-
readonly description: "
|
|
6171
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
6024
6172
|
};
|
|
6025
|
-
readonly
|
|
6173
|
+
readonly preserve_permissioned_as: {
|
|
6026
6174
|
readonly type: "boolean";
|
|
6027
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
6175
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
6028
6176
|
};
|
|
6029
6177
|
};
|
|
6030
6178
|
readonly required: readonly ["path", "script_path", "is_flow", "kafka_resource_path", "group_id", "topics", "filters"];
|
|
@@ -6095,13 +6243,13 @@ export declare const $EditKafkaTrigger: {
|
|
|
6095
6243
|
readonly $ref: "#/components/schemas/Retry";
|
|
6096
6244
|
readonly description: "Retry configuration for failed executions";
|
|
6097
6245
|
};
|
|
6098
|
-
readonly
|
|
6246
|
+
readonly permissioned_as: {
|
|
6099
6247
|
readonly type: "string";
|
|
6100
|
-
readonly description: "
|
|
6248
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
6101
6249
|
};
|
|
6102
|
-
readonly
|
|
6250
|
+
readonly preserve_permissioned_as: {
|
|
6103
6251
|
readonly type: "boolean";
|
|
6104
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
6252
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
6105
6253
|
};
|
|
6106
6254
|
};
|
|
6107
6255
|
readonly required: readonly ["path", "script_path", "kafka_resource_path", "group_id", "topics", "filters", "is_flow"];
|
|
@@ -6220,13 +6368,13 @@ export declare const $NewNatsTrigger: {
|
|
|
6220
6368
|
readonly $ref: "#/components/schemas/Retry";
|
|
6221
6369
|
readonly description: "Retry configuration for failed executions";
|
|
6222
6370
|
};
|
|
6223
|
-
readonly
|
|
6371
|
+
readonly permissioned_as: {
|
|
6224
6372
|
readonly type: "string";
|
|
6225
|
-
readonly description: "
|
|
6373
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
6226
6374
|
};
|
|
6227
|
-
readonly
|
|
6375
|
+
readonly preserve_permissioned_as: {
|
|
6228
6376
|
readonly type: "boolean";
|
|
6229
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
6377
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
6230
6378
|
};
|
|
6231
6379
|
};
|
|
6232
6380
|
readonly required: readonly ["path", "script_path", "is_flow", "nats_resource_path", "use_jetstream", "subjects"];
|
|
@@ -6283,13 +6431,13 @@ export declare const $EditNatsTrigger: {
|
|
|
6283
6431
|
readonly $ref: "#/components/schemas/Retry";
|
|
6284
6432
|
readonly description: "Retry configuration for failed executions";
|
|
6285
6433
|
};
|
|
6286
|
-
readonly
|
|
6434
|
+
readonly permissioned_as: {
|
|
6287
6435
|
readonly type: "string";
|
|
6288
|
-
readonly description: "
|
|
6436
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
6289
6437
|
};
|
|
6290
|
-
readonly
|
|
6438
|
+
readonly preserve_permissioned_as: {
|
|
6291
6439
|
readonly type: "boolean";
|
|
6292
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
6440
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
6293
6441
|
};
|
|
6294
6442
|
};
|
|
6295
6443
|
readonly required: readonly ["path", "script_path", "nats_resource_path", "use_jetstream", "subjects", "is_flow"];
|
|
@@ -6348,13 +6496,13 @@ export declare const $NewEmailTrigger: {
|
|
|
6348
6496
|
readonly mode: {
|
|
6349
6497
|
readonly $ref: "#/components/schemas/TriggerMode";
|
|
6350
6498
|
};
|
|
6351
|
-
readonly
|
|
6499
|
+
readonly permissioned_as: {
|
|
6352
6500
|
readonly type: "string";
|
|
6353
|
-
readonly description: "
|
|
6501
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
6354
6502
|
};
|
|
6355
|
-
readonly
|
|
6503
|
+
readonly preserve_permissioned_as: {
|
|
6356
6504
|
readonly type: "boolean";
|
|
6357
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
6505
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
6358
6506
|
};
|
|
6359
6507
|
};
|
|
6360
6508
|
readonly required: readonly ["path", "script_path", "local_part", "is_flow"];
|
|
@@ -6386,13 +6534,13 @@ export declare const $EditEmailTrigger: {
|
|
|
6386
6534
|
readonly retry: {
|
|
6387
6535
|
readonly $ref: "#/components/schemas/Retry";
|
|
6388
6536
|
};
|
|
6389
|
-
readonly
|
|
6537
|
+
readonly permissioned_as: {
|
|
6390
6538
|
readonly type: "string";
|
|
6391
|
-
readonly description: "
|
|
6539
|
+
readonly description: "The user or group this trigger runs as. Used during deployment to preserve the original trigger owner.";
|
|
6392
6540
|
};
|
|
6393
|
-
readonly
|
|
6541
|
+
readonly preserve_permissioned_as: {
|
|
6394
6542
|
readonly type: "boolean";
|
|
6395
|
-
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original
|
|
6543
|
+
readonly description: "When true and the caller is a member of the 'wm_deployers' group, preserves the original permissioned_as value instead of overwriting it.";
|
|
6396
6544
|
};
|
|
6397
6545
|
};
|
|
6398
6546
|
readonly required: readonly ["path", "script_path", "is_flow"];
|
|
@@ -6437,6 +6585,11 @@ export declare const $InstanceGroup: {
|
|
|
6437
6585
|
readonly type: "string";
|
|
6438
6586
|
};
|
|
6439
6587
|
};
|
|
6588
|
+
readonly instance_role: {
|
|
6589
|
+
readonly type: "string";
|
|
6590
|
+
readonly nullable: true;
|
|
6591
|
+
readonly enum: readonly ["superadmin", "devops"];
|
|
6592
|
+
};
|
|
6440
6593
|
};
|
|
6441
6594
|
};
|
|
6442
6595
|
export declare const $InstanceGroupWithWorkspaces: {
|
|
@@ -6455,6 +6608,11 @@ export declare const $InstanceGroupWithWorkspaces: {
|
|
|
6455
6608
|
readonly type: "string";
|
|
6456
6609
|
};
|
|
6457
6610
|
};
|
|
6611
|
+
readonly instance_role: {
|
|
6612
|
+
readonly type: "string";
|
|
6613
|
+
readonly nullable: true;
|
|
6614
|
+
readonly enum: readonly ["superadmin", "devops"];
|
|
6615
|
+
};
|
|
6458
6616
|
readonly workspaces: {
|
|
6459
6617
|
readonly type: "array";
|
|
6460
6618
|
readonly items: {
|
|
@@ -6798,8 +6956,15 @@ export declare const $GlobalUserInfo: {
|
|
|
6798
6956
|
readonly first_time_user: {
|
|
6799
6957
|
readonly type: "boolean";
|
|
6800
6958
|
};
|
|
6959
|
+
readonly role_source: {
|
|
6960
|
+
readonly type: "string";
|
|
6961
|
+
readonly enum: readonly ["manual", "instance_group"];
|
|
6962
|
+
};
|
|
6963
|
+
readonly disabled: {
|
|
6964
|
+
readonly type: "boolean";
|
|
6965
|
+
};
|
|
6801
6966
|
};
|
|
6802
|
-
readonly required: readonly ["email", "login_type", "super_admin", "verified", "first_time_user"];
|
|
6967
|
+
readonly required: readonly ["email", "login_type", "super_admin", "verified", "first_time_user", "role_source", "disabled"];
|
|
6803
6968
|
};
|
|
6804
6969
|
export declare const $Flow: {
|
|
6805
6970
|
readonly allOf: readonly [{
|
|
@@ -7856,6 +8021,11 @@ export declare const $ExportedInstanceGroup: {
|
|
|
7856
8021
|
readonly external_id: {
|
|
7857
8022
|
readonly type: "string";
|
|
7858
8023
|
};
|
|
8024
|
+
readonly instance_role: {
|
|
8025
|
+
readonly type: "string";
|
|
8026
|
+
readonly nullable: true;
|
|
8027
|
+
readonly enum: readonly ["superadmin", "devops"];
|
|
8028
|
+
};
|
|
7859
8029
|
};
|
|
7860
8030
|
readonly required: readonly ["name"];
|
|
7861
8031
|
};
|
|
@@ -8053,7 +8223,7 @@ export declare const $WorkspaceItemDiff: {
|
|
|
8053
8223
|
readonly properties: {
|
|
8054
8224
|
readonly kind: {
|
|
8055
8225
|
readonly type: "string";
|
|
8056
|
-
readonly enum: readonly ["script", "flow", "app", "resource", "variable", "resource_type"];
|
|
8226
|
+
readonly enum: readonly ["script", "flow", "app", "raw_app", "resource", "variable", "resource_type"];
|
|
8057
8227
|
readonly description: "Type of the item";
|
|
8058
8228
|
};
|
|
8059
8229
|
readonly path: {
|
|
@@ -8393,6 +8563,21 @@ export declare const $RuleBypasserUsers: {
|
|
|
8393
8563
|
readonly type: "string";
|
|
8394
8564
|
};
|
|
8395
8565
|
};
|
|
8566
|
+
export declare const $QuotaInfo: {
|
|
8567
|
+
readonly type: "object";
|
|
8568
|
+
readonly properties: {
|
|
8569
|
+
readonly used: {
|
|
8570
|
+
readonly type: "integer";
|
|
8571
|
+
};
|
|
8572
|
+
readonly limit: {
|
|
8573
|
+
readonly type: "integer";
|
|
8574
|
+
};
|
|
8575
|
+
readonly prunable: {
|
|
8576
|
+
readonly type: "integer";
|
|
8577
|
+
};
|
|
8578
|
+
};
|
|
8579
|
+
readonly required: readonly ["used", "limit", "prunable"];
|
|
8580
|
+
};
|
|
8396
8581
|
export declare const $NativeServiceName: {
|
|
8397
8582
|
readonly type: "string";
|
|
8398
8583
|
readonly enum: readonly ["nextcloud", "google"];
|
|
@@ -8430,6 +8615,11 @@ export declare const $NativeTrigger: {
|
|
|
8430
8615
|
readonly nullable: true;
|
|
8431
8616
|
readonly description: "Error message if the trigger is in an error state";
|
|
8432
8617
|
};
|
|
8618
|
+
readonly summary: {
|
|
8619
|
+
readonly type: "string";
|
|
8620
|
+
readonly nullable: true;
|
|
8621
|
+
readonly description: "Short summary to be displayed when listed";
|
|
8622
|
+
};
|
|
8433
8623
|
};
|
|
8434
8624
|
readonly required: readonly ["external_id", "workspace_id", "service_name", "script_path", "is_flow", "service_config"];
|
|
8435
8625
|
};
|
|
@@ -8466,6 +8656,11 @@ export declare const $NativeTriggerWithExternal: {
|
|
|
8466
8656
|
readonly nullable: true;
|
|
8467
8657
|
readonly description: "Error message if the trigger is in an error state";
|
|
8468
8658
|
};
|
|
8659
|
+
readonly summary: {
|
|
8660
|
+
readonly type: "string";
|
|
8661
|
+
readonly nullable: true;
|
|
8662
|
+
readonly description: "Short summary to be displayed when listed";
|
|
8663
|
+
};
|
|
8469
8664
|
readonly external_data: {
|
|
8470
8665
|
readonly type: "object";
|
|
8471
8666
|
readonly description: "Configuration data from the external service";
|
|
@@ -8560,6 +8755,11 @@ export declare const $NativeTriggerData: {
|
|
|
8560
8755
|
readonly description: "Service-specific configuration (e.g., event types, filters)";
|
|
8561
8756
|
readonly additionalProperties: true;
|
|
8562
8757
|
};
|
|
8758
|
+
readonly summary: {
|
|
8759
|
+
readonly type: "string";
|
|
8760
|
+
readonly nullable: true;
|
|
8761
|
+
readonly description: "Short summary to be displayed when listed";
|
|
8762
|
+
};
|
|
8563
8763
|
};
|
|
8564
8764
|
readonly required: readonly ["script_path", "is_flow", "service_config"];
|
|
8565
8765
|
};
|