@hotmeshio/long-tail 0.19.1 → 0.21.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/README.md +4 -4
- package/build/api/escalations/accumulate.d.ts +96 -0
- package/build/api/escalations/accumulate.js +516 -0
- package/build/api/escalations/index.d.ts +1 -0
- package/build/api/escalations/index.js +10 -1
- package/build/api/roles.d.ts +4 -5
- package/build/api/roles.js +53 -4
- package/build/api/scan-codes/execute.js +2 -0
- package/build/api/scan-codes/verbs.d.ts +15 -0
- package/build/api/scan-codes/verbs.js +65 -0
- package/build/api/workflows/config.d.ts +3 -0
- package/build/api/workflows/config.js +15 -0
- package/build/api/workflows/index.d.ts +1 -0
- package/build/api/workflows/index.js +3 -1
- package/build/api/workflows/input-lookups.d.ts +16 -0
- package/build/api/workflows/input-lookups.js +69 -0
- package/build/api/workflows/input-validation.d.ts +4 -3
- package/build/api/workflows/input-validation.js +7 -4
- package/build/api/workflows/invocable.js +1 -0
- package/build/api/workflows/invocation.js +1 -1
- package/build/index.js +60 -0
- package/build/lib/db/schemas/035_workflow_input_lookups.sql +9 -0
- package/build/lib/db/schemas/036_role_portals.sql +12 -0
- package/build/routes/escalations/accumulate.d.ts +7 -0
- package/build/routes/escalations/accumulate.js +150 -0
- package/build/routes/escalations/index.js +5 -0
- package/build/routes/workflows/config.js +10 -0
- package/build/sdk/index.d.ts +25 -0
- package/build/sdk/index.js +8 -0
- package/build/services/config/cache.js +1 -0
- package/build/services/config/read.js +2 -0
- package/build/services/config/sql.d.ts +2 -2
- package/build/services/config/sql.js +6 -5
- package/build/services/config/write.js +10 -1
- package/build/services/escalation/accumulate.d.ts +81 -0
- package/build/services/escalation/accumulate.js +154 -0
- package/build/services/escalation/index.d.ts +1 -0
- package/build/services/escalation/index.js +1 -0
- package/build/services/knowledge/index.d.ts +1 -0
- package/build/services/knowledge/index.js +1 -0
- package/build/services/knowledge/lookup-refs.d.ts +7 -0
- package/build/services/knowledge/lookup-refs.js +26 -0
- package/build/services/mcp/db-server/schemas.d.ts +2 -2
- package/build/services/mcp/playwright-server/schemas.d.ts +2 -2
- package/build/services/orchestrator/condition.d.ts +40 -3
- package/build/services/orchestrator/condition.js +42 -2
- package/build/services/role/index.js +1 -0
- package/build/services/role/seed.js +6 -1
- package/build/services/role/sql.d.ts +6 -3
- package/build/services/role/sql.js +7 -2
- package/build/services/role/types.d.ts +38 -10
- package/build/services/role/types.js +10 -1
- package/build/services/scan-code/validate.js +16 -0
- package/build/shared/form-validation/display-only-widgets.d.ts +16 -0
- package/build/shared/form-validation/display-only-widgets.js +25 -0
- package/build/shared/form-validation/field-validator.d.ts +1 -0
- package/build/shared/form-validation/field-validator.js +94 -6
- package/build/shared/form-validation/index.d.ts +2 -0
- package/build/shared/form-validation/index.js +2 -0
- package/build/shared/form-validation/invoke-context.d.ts +4 -3
- package/build/shared/form-validation/invoke-context.js +5 -4
- package/build/shared/form-validation/x-lt-bind.d.ts +2 -14
- package/build/shared/form-validation/x-lt-bind.js +12 -8
- package/build/shared/form-validation/x-lt-invoke.d.ts +38 -0
- package/build/shared/form-validation/x-lt-invoke.js +103 -0
- package/build/shared/form-validation/x-lt-options.d.ts +3 -3
- package/build/shared/form-validation/x-lt-options.js +19 -5
- package/build/shared/form-validation/x-lt-show-if.d.ts +5 -0
- package/build/shared/form-validation/x-lt-show-if.js +10 -0
- package/build/start/workers.js +10 -0
- package/build/system/mcp-servers/admin/escalations.js +39 -0
- package/build/system/mcp-servers/admin/schemas.d.ts +256 -33
- package/build/system/mcp-servers/admin/schemas.js +55 -3
- package/build/system/mcp-servers/admin/users.js +1 -0
- package/build/system/mcp-servers/admin/workflow-config.js +54 -9
- package/build/system/mcp-servers/admin/workflows.js +9 -7
- package/build/system/mcp-servers/db-query/schemas.d.ts +2 -2
- package/build/system/mcp-servers/docs.js +4 -0
- package/build/system/mcp-servers/human-queue-schemas.d.ts +85 -0
- package/build/system/mcp-servers/human-queue-schemas.js +19 -1
- package/build/system/mcp-servers/human-queue.d.ts +2 -0
- package/build/system/mcp-servers/human-queue.js +77 -0
- package/build/system/seed/tool-manifests-admin.d.ts +1509 -227
- package/build/system/seed/tool-manifests-admin.js +8 -4
- package/build/system/seed/tool-manifests-escalation.d.ts +174 -0
- package/build/system/seed/tool-manifests-escalation.js +56 -0
- package/build/tsconfig.tsbuildinfo +1 -1
- package/build/types/config.d.ts +4 -0
- package/build/types/escalation.d.ts +52 -0
- package/build/types/escalation.js +29 -1
- package/build/types/index.d.ts +2 -2
- package/build/types/index.js +3 -1
- package/build/types/scan-code.d.ts +24 -0
- package/build/types/scan-code.js +9 -0
- package/build/types/startup.d.ts +26 -0
- package/dashboard/dist/assets/{AdminDashboard-Drs-9TRM.js → AdminDashboard-uarpHB88.js} +2 -2
- package/dashboard/dist/assets/{AdminDashboard-Drs-9TRM.js.map → AdminDashboard-uarpHB88.js.map} +1 -1
- package/dashboard/dist/assets/{AgentConfigPage-BDPDZ7-v.js → AgentConfigPage-BcUaDD5E.js} +6 -6
- package/dashboard/dist/assets/{AgentConfigPage-BDPDZ7-v.js.map → AgentConfigPage-BcUaDD5E.js.map} +1 -1
- package/dashboard/dist/assets/{AgentDetailPage-CGBulM4_.js → AgentDetailPage-BaZBhK6i.js} +3 -3
- package/dashboard/dist/assets/{AgentDetailPage-CGBulM4_.js.map → AgentDetailPage-BaZBhK6i.js.map} +1 -1
- package/dashboard/dist/assets/AgentsPage-CuVFSDc4.js +2 -0
- package/dashboard/dist/assets/{AgentsPage-D77JeViQ.js.map → AgentsPage-CuVFSDc4.js.map} +1 -1
- package/dashboard/dist/assets/AvailableEscalationsPage-iO5NyyIK.js +2 -0
- package/dashboard/dist/assets/AvailableEscalationsPage-iO5NyyIK.js.map +1 -0
- package/dashboard/dist/assets/{BotPicker-CC5vI_Sv.js → BotPicker-CClMby6B.js} +2 -2
- package/dashboard/dist/assets/{BotPicker-CC5vI_Sv.js.map → BotPicker-CClMby6B.js.map} +1 -1
- package/dashboard/dist/assets/BulkAssignModal-BL8FRgkN.js +2 -0
- package/dashboard/dist/assets/{BulkAssignModal-BXiJnlqt.js.map → BulkAssignModal-BL8FRgkN.js.map} +1 -1
- package/dashboard/dist/assets/CapabilitiesPage-D53ogPor.js +2 -0
- package/dashboard/dist/assets/{CapabilitiesPage-D9TC2iKy.js.map → CapabilitiesPage-D53ogPor.js.map} +1 -1
- package/dashboard/dist/assets/{CollapsibleSection-D10lGw_u.js → CollapsibleSection-ow8jpbtD.js} +2 -2
- package/dashboard/dist/assets/{CollapsibleSection-D10lGw_u.js.map → CollapsibleSection-ow8jpbtD.js.map} +1 -1
- package/dashboard/dist/assets/{ConfirmDeleteModal-BJdLN6No.js → ConfirmDeleteModal-CeEDt9iJ.js} +2 -2
- package/dashboard/dist/assets/{ConfirmDeleteModal-BJdLN6No.js.map → ConfirmDeleteModal-CeEDt9iJ.js.map} +1 -1
- package/dashboard/dist/assets/{CountdownTimer-D9B-BjQ7.js → CountdownTimer-CSqyZMCG.js} +2 -2
- package/dashboard/dist/assets/{CountdownTimer-D9B-BjQ7.js.map → CountdownTimer-CSqyZMCG.js.map} +1 -1
- package/dashboard/dist/assets/{CredentialsPage-hniUAFBK.js → CredentialsPage-Dx7SxA23.js} +2 -2
- package/dashboard/dist/assets/{CredentialsPage-hniUAFBK.js.map → CredentialsPage-Dx7SxA23.js.map} +1 -1
- package/dashboard/dist/assets/{CronLabel-v9DCD2FX.js → CronLabel-LYPxpvNN.js} +2 -2
- package/dashboard/dist/assets/{CronLabel-v9DCD2FX.js.map → CronLabel-LYPxpvNN.js.map} +1 -1
- package/dashboard/dist/assets/DataTable-spX1dFyb.js +2 -0
- package/dashboard/dist/assets/DataTable-spX1dFyb.js.map +1 -0
- package/dashboard/dist/assets/{DropZone-XlcY8hEH.js → DropZone-f1o-GLM8.js} +2 -2
- package/dashboard/dist/assets/{DropZone-XlcY8hEH.js.map → DropZone-f1o-GLM8.js.map} +1 -1
- package/dashboard/dist/assets/{ElapsedCell-_xvVTK8N.js → ElapsedCell-BZJTSm9N.js} +2 -2
- package/dashboard/dist/assets/{ElapsedCell-_xvVTK8N.js.map → ElapsedCell-BZJTSm9N.js.map} +1 -1
- package/dashboard/dist/assets/EntityTimelinePanel-0wIIW2en.js +2 -0
- package/dashboard/dist/assets/{EntityTimelinePanel-1lT3jkCM.js.map → EntityTimelinePanel-0wIIW2en.js.map} +1 -1
- package/dashboard/dist/assets/{EscalationListSchemaPage-BeQUTUEO.js → EscalationListSchemaPage-CoYvtMzj.js} +3 -3
- package/dashboard/dist/assets/{EscalationListSchemaPage-BeQUTUEO.js.map → EscalationListSchemaPage-CoYvtMzj.js.map} +1 -1
- package/dashboard/dist/assets/EscalationListView-DWFHPufv.js +2 -0
- package/dashboard/dist/assets/EscalationListView-DWFHPufv.js.map +1 -0
- package/dashboard/dist/assets/{EscalationSchemaPage-D4VlEwyS.js → EscalationSchemaPage-C9Xu_A25.js} +3 -3
- package/dashboard/dist/assets/{EscalationSchemaPage-D4VlEwyS.js.map → EscalationSchemaPage-C9Xu_A25.js.map} +1 -1
- package/dashboard/dist/assets/EscalationTimeline-D8W2LNNk.js +2 -0
- package/dashboard/dist/assets/EscalationTimeline-D8W2LNNk.js.map +1 -0
- package/dashboard/dist/assets/EscalationTitleSelect-DLK8NWMp.js +2 -0
- package/dashboard/dist/assets/EscalationTitleSelect-DLK8NWMp.js.map +1 -0
- package/dashboard/dist/assets/{EscalationsOverview-Bx6Zrzm-.js → EscalationsOverview-CW57FaP9.js} +2 -2
- package/dashboard/dist/assets/{EscalationsOverview-Bx6Zrzm-.js.map → EscalationsOverview-CW57FaP9.js.map} +1 -1
- package/dashboard/dist/assets/{EventTable-KEC3YWBf.js → EventTable-D1ctWhKf.js} +2 -2
- package/dashboard/dist/assets/{EventTable-KEC3YWBf.js.map → EventTable-D1ctWhKf.js.map} +1 -1
- package/dashboard/dist/assets/{FilterBar-xwN_b5fj.js → FilterBar-C-iur-Nj.js} +2 -2
- package/dashboard/dist/assets/{FilterBar-xwN_b5fj.js.map → FilterBar-C-iur-Nj.js.map} +1 -1
- package/dashboard/dist/assets/GraphInvokePage-CcA_44M4.js +2 -0
- package/dashboard/dist/assets/{GraphInvokePage-DV7Y0fe2.js.map → GraphInvokePage-CcA_44M4.js.map} +1 -1
- package/dashboard/dist/assets/HomePage-Dc085ghJ.js +2 -0
- package/dashboard/dist/assets/{HomePage-G785SWcW.js.map → HomePage-Dc085ghJ.js.map} +1 -1
- package/dashboard/dist/assets/ListToolbar-h_ziBt4O.js +2 -0
- package/dashboard/dist/assets/{ListToolbar-zPVYPg3W.js.map → ListToolbar-h_ziBt4O.js.map} +1 -1
- package/dashboard/dist/assets/{McpOverview-CMGUq8hx.js → McpOverview-qXXhbNWV.js} +2 -2
- package/dashboard/dist/assets/{McpOverview-CMGUq8hx.js.map → McpOverview-qXXhbNWV.js.map} +1 -1
- package/dashboard/dist/assets/{McpQueryDetailPage-CdhLhaKn.js → McpQueryDetailPage-SEzSbZrd.js} +2 -2
- package/dashboard/dist/assets/{McpQueryDetailPage-CdhLhaKn.js.map → McpQueryDetailPage-SEzSbZrd.js.map} +1 -1
- package/dashboard/dist/assets/McpQueryPage-Cy0V0kv9.js +2 -0
- package/dashboard/dist/assets/{McpQueryPage-CNSNMagY.js.map → McpQueryPage-Cy0V0kv9.js.map} +1 -1
- package/dashboard/dist/assets/{McpRunDetailPage-DBm8hUaW.js → McpRunDetailPage-DjJO5vSb.js} +2 -2
- package/dashboard/dist/assets/{McpRunDetailPage-DBm8hUaW.js.map → McpRunDetailPage-DjJO5vSb.js.map} +1 -1
- package/dashboard/dist/assets/McpRunsPage-BfjiJ8mM.js +2 -0
- package/dashboard/dist/assets/{McpRunsPage-B6rb5QBf.js.map → McpRunsPage-BfjiJ8mM.js.map} +1 -1
- package/dashboard/dist/assets/{NamespacePill-Bb3revqD.js → NamespacePill-DADRJOUl.js} +2 -2
- package/dashboard/dist/assets/{NamespacePill-Bb3revqD.js.map → NamespacePill-DADRJOUl.js.map} +1 -1
- package/dashboard/dist/assets/OperationsPage-dJcER0T_.js +3 -0
- package/dashboard/dist/assets/OperationsPage-dJcER0T_.js.map +1 -0
- package/dashboard/dist/assets/OperatorDashboard-zCkW4eqk.js +2 -0
- package/dashboard/dist/assets/{OperatorDashboard-DBOscDnf.js.map → OperatorDashboard-zCkW4eqk.js.map} +1 -1
- package/dashboard/dist/assets/{PageHeader-Di5Sz3an.js → PageHeader-Csq434-v.js} +2 -2
- package/dashboard/dist/assets/{PageHeader-Di5Sz3an.js.map → PageHeader-Csq434-v.js.map} +1 -1
- package/dashboard/dist/assets/{PageHeaderWithStats-DutKJ-h2.js → PageHeaderWithStats-CSnk1p5A.js} +2 -2
- package/dashboard/dist/assets/{PageHeaderWithStats-DutKJ-h2.js.map → PageHeaderWithStats-CSnk1p5A.js.map} +1 -1
- package/dashboard/dist/assets/{PersonaDetailPage-BGRdGpeR.js → PersonaDetailPage-Cx6L3Jvu.js} +2 -2
- package/dashboard/dist/assets/{PersonaDetailPage-BGRdGpeR.js.map → PersonaDetailPage-Cx6L3Jvu.js.map} +1 -1
- package/dashboard/dist/assets/{PersonasPage-DRzOZcVa.js → PersonasPage-DOgGUlJl.js} +2 -2
- package/dashboard/dist/assets/{PersonasPage-DRzOZcVa.js.map → PersonasPage-DOgGUlJl.js.map} +1 -1
- package/dashboard/dist/assets/PortalPage-BKuL1BeJ.js +2 -0
- package/dashboard/dist/assets/PortalPage-BKuL1BeJ.js.map +1 -0
- package/dashboard/dist/assets/{ProcessDetailPage-BLGjZXpM.js → ProcessDetailPage-BFcFSDUv.js} +2 -2
- package/dashboard/dist/assets/{ProcessDetailPage-BLGjZXpM.js.map → ProcessDetailPage-BFcFSDUv.js.map} +1 -1
- package/dashboard/dist/assets/ProcessesListPage-BaHV2cXp.js +2 -0
- package/dashboard/dist/assets/{ProcessesListPage-5NnysKFC.js.map → ProcessesListPage-BaHV2cXp.js.map} +1 -1
- package/dashboard/dist/assets/ResolverForm-Bgc0Zrya.js +7 -0
- package/dashboard/dist/assets/ResolverForm-Bgc0Zrya.js.map +1 -0
- package/dashboard/dist/assets/RoleDetailPage-BPY6i3CU.js +8 -0
- package/dashboard/dist/assets/RoleDetailPage-BPY6i3CU.js.map +1 -0
- package/dashboard/dist/assets/{RolePill-DhnVPK4q.js → RolePill-BafrASDX.js} +2 -2
- package/dashboard/dist/assets/{RolePill-DhnVPK4q.js.map → RolePill-BafrASDX.js.map} +1 -1
- package/dashboard/dist/assets/{RolesPage-BmW1LzkU.js → RolesPage-DSqqKPbv.js} +2 -2
- package/dashboard/dist/assets/{RolesPage-BmW1LzkU.js.map → RolesPage-DSqqKPbv.js.map} +1 -1
- package/dashboard/dist/assets/RunAsSelector-B29iWwel.js +2 -0
- package/dashboard/dist/assets/{RunAsSelector-BwZTJ4Yj.js.map → RunAsSelector-B29iWwel.js.map} +1 -1
- package/dashboard/dist/assets/ScanCodesPage-S8aAJfnC.js +2 -0
- package/dashboard/dist/assets/{ScanCodesPage-FiYIYB-m.js.map → ScanCodesPage-S8aAJfnC.js.map} +1 -1
- package/dashboard/dist/assets/{ScanSchemeDetailPage-BiAqtD-a.js → ScanSchemeDetailPage-CUBRAtmJ.js} +2 -2
- package/dashboard/dist/assets/{ScanSchemeDetailPage-BiAqtD-a.js.map → ScanSchemeDetailPage-CUBRAtmJ.js.map} +1 -1
- package/dashboard/dist/assets/ScanStationPage-R9t1-CeQ.js +2 -0
- package/dashboard/dist/assets/{ScanStationPage-8CdOtbCD.js.map → ScanStationPage-R9t1-CeQ.js.map} +1 -1
- package/dashboard/dist/assets/{ScopeBadge-CXUg0FHo.js → ScopeBadge-b6MIBiYD.js} +2 -2
- package/dashboard/dist/assets/{ScopeBadge-CXUg0FHo.js.map → ScopeBadge-b6MIBiYD.js.map} +1 -1
- package/dashboard/dist/assets/{StickyPagination-DRuqKhZt.js → StickyPagination-CkW_A507.js} +2 -2
- package/dashboard/dist/assets/{StickyPagination-DRuqKhZt.js.map → StickyPagination-CkW_A507.js.map} +1 -1
- package/dashboard/dist/assets/{StreamMessageDetail-JwlbRiMn.js → StreamMessageDetail-yzWX0wac.js} +2 -2
- package/dashboard/dist/assets/{StreamMessageDetail-JwlbRiMn.js.map → StreamMessageDetail-yzWX0wac.js.map} +1 -1
- package/dashboard/dist/assets/{SwimlaneTimeline-hu3c4bCJ.js → SwimlaneTimeline-Cf4DXFxj.js} +2 -2
- package/dashboard/dist/assets/{SwimlaneTimeline-hu3c4bCJ.js.map → SwimlaneTimeline-Cf4DXFxj.js.map} +1 -1
- package/dashboard/dist/assets/{TagInput-BZ8vb2oW.js → TagInput-ZrIIrEUP.js} +2 -2
- package/dashboard/dist/assets/{TagInput-BZ8vb2oW.js.map → TagInput-ZrIIrEUP.js.map} +1 -1
- package/dashboard/dist/assets/{TaskDetailPage-NqVZF3jW.js → TaskDetailPage-DCDcEps9.js} +2 -2
- package/dashboard/dist/assets/{TaskDetailPage-NqVZF3jW.js.map → TaskDetailPage-DCDcEps9.js.map} +1 -1
- package/dashboard/dist/assets/{TaskQueuePill-Bxir8WRl.js → TaskQueuePill-DkQ1uc6y.js} +2 -2
- package/dashboard/dist/assets/{TaskQueuePill-Bxir8WRl.js.map → TaskQueuePill-DkQ1uc6y.js.map} +1 -1
- package/dashboard/dist/assets/TasksListPage-BBATgpf7.js +2 -0
- package/dashboard/dist/assets/{TasksListPage-BQNaSzCn.js.map → TasksListPage-BBATgpf7.js.map} +1 -1
- package/dashboard/dist/assets/{TimeAgo-Cv35DOiI.js → TimeAgo-CSNVEjch.js} +2 -2
- package/dashboard/dist/assets/{TimeAgo-Cv35DOiI.js.map → TimeAgo-CSNVEjch.js.map} +1 -1
- package/dashboard/dist/assets/{TimestampCell-DHUXey9s.js → TimestampCell-Du1nBrPn.js} +2 -2
- package/dashboard/dist/assets/{TimestampCell-DHUXey9s.js.map → TimestampCell-Du1nBrPn.js.map} +1 -1
- package/dashboard/dist/assets/{ToolPill-FkgTXIhq.js → ToolPill-Baxm02L6.js} +2 -2
- package/dashboard/dist/assets/{ToolPill-FkgTXIhq.js.map → ToolPill-Baxm02L6.js.map} +1 -1
- package/dashboard/dist/assets/ToolTestPanel-CF-h_5Rg.js +2 -0
- package/dashboard/dist/assets/{ToolTestPanel-DvuLFWqQ.js.map → ToolTestPanel-CF-h_5Rg.js.map} +1 -1
- package/dashboard/dist/assets/{TopicDetailPage-TXX3QNSo.js → TopicDetailPage-Dr1UmWcp.js} +3 -3
- package/dashboard/dist/assets/{TopicDetailPage-TXX3QNSo.js.map → TopicDetailPage-Dr1UmWcp.js.map} +1 -1
- package/dashboard/dist/assets/TopicsPage-CUUo-Ylf.js +2 -0
- package/dashboard/dist/assets/{TopicsPage-h-oyTeEJ.js.map → TopicsPage-CUUo-Ylf.js.map} +1 -1
- package/dashboard/dist/assets/{UserName-BceRCeDF.js → UserName-kBh1dc39.js} +2 -2
- package/dashboard/dist/assets/{UserName-BceRCeDF.js.map → UserName-kBh1dc39.js.map} +1 -1
- package/dashboard/dist/assets/{WorkflowExecutionPage-CmHGcaN9.js → WorkflowExecutionPage-CCRSbnDx.js} +2 -2
- package/dashboard/dist/assets/{WorkflowExecutionPage-CmHGcaN9.js.map → WorkflowExecutionPage-CCRSbnDx.js.map} +1 -1
- package/dashboard/dist/assets/{WorkflowPill--AYMW7u_.js → WorkflowPill-ZepbO_ny.js} +2 -2
- package/dashboard/dist/assets/{WorkflowPill--AYMW7u_.js.map → WorkflowPill-ZepbO_ny.js.map} +1 -1
- package/dashboard/dist/assets/WorkflowsDashboard-BNQVvyek.js +2 -0
- package/dashboard/dist/assets/{WorkflowsDashboard-B0r2lQXk.js.map → WorkflowsDashboard-BNQVvyek.js.map} +1 -1
- package/dashboard/dist/assets/{WorkflowsOverview-BTMc2PJ_.js → WorkflowsOverview-DswubNJN.js} +2 -2
- package/dashboard/dist/assets/{WorkflowsOverview-BTMc2PJ_.js.map → WorkflowsOverview-DswubNJN.js.map} +1 -1
- package/dashboard/dist/assets/{YamlWorkflowDetailPage-DUiCVnZp.js → YamlWorkflowDetailPage-Cw9Dlmup.js} +11 -11
- package/dashboard/dist/assets/{YamlWorkflowDetailPage-DUiCVnZp.js.map → YamlWorkflowDetailPage-Cw9Dlmup.js.map} +1 -1
- package/dashboard/dist/assets/{YamlWorkflowsPage-BAuXfwi0.js → YamlWorkflowsPage-DB8xnIXy.js} +2 -2
- package/dashboard/dist/assets/{YamlWorkflowsPage-BAuXfwi0.js.map → YamlWorkflowsPage-DB8xnIXy.js.map} +1 -1
- package/dashboard/dist/assets/{agents-BvmLCk4h.js → agents-BwEnf6N9.js} +2 -2
- package/dashboard/dist/assets/{agents-BvmLCk4h.js.map → agents-BwEnf6N9.js.map} +1 -1
- package/dashboard/dist/assets/{bots-f_tyhl4I.js → bots-CCmJTT2u.js} +2 -2
- package/dashboard/dist/assets/{bots-f_tyhl4I.js.map → bots-CCmJTT2u.js.map} +1 -1
- package/dashboard/dist/assets/{capabilities-DNo5bqLx.js → capabilities-BZHgp_nh.js} +2 -2
- package/dashboard/dist/assets/{capabilities-DNo5bqLx.js.map → capabilities-BZHgp_nh.js.map} +1 -1
- package/dashboard/dist/assets/{constants-BHkpVaqx.js → constants-CeBBTzf5.js} +2 -2
- package/dashboard/dist/assets/{constants-BHkpVaqx.js.map → constants-CeBBTzf5.js.map} +1 -1
- package/dashboard/dist/assets/{controlplane-Dyyj2Irb.js → controlplane-CyfwUlFA.js} +2 -2
- package/dashboard/dist/assets/{controlplane-Dyyj2Irb.js.map → controlplane-CyfwUlFA.js.map} +1 -1
- package/dashboard/dist/assets/escalation-columns-BJPTNmLW.js +2 -0
- package/dashboard/dist/assets/escalation-columns-BJPTNmLW.js.map +1 -0
- package/dashboard/dist/assets/index-3gbd5neL.js +67 -0
- package/dashboard/dist/assets/index-3gbd5neL.js.map +1 -0
- package/dashboard/dist/assets/index-BAAVTyZ-.js +2 -0
- package/dashboard/dist/assets/{index-DL83W7Gu.js.map → index-BAAVTyZ-.js.map} +1 -1
- package/dashboard/dist/assets/{index-CsKiRyhy.js → index-BC6Jenlo.js} +2 -2
- package/dashboard/dist/assets/{index-CsKiRyhy.js.map → index-BC6Jenlo.js.map} +1 -1
- package/dashboard/dist/assets/index-C7KHqOTQ.js +2 -0
- package/dashboard/dist/assets/{index-D7ESqn22.js.map → index-C7KHqOTQ.js.map} +1 -1
- package/dashboard/dist/assets/index-CDrqqbSR.js +3 -0
- package/dashboard/dist/assets/index-CDrqqbSR.js.map +1 -0
- package/dashboard/dist/assets/index-CVwzCZ43.js +2 -0
- package/dashboard/dist/assets/{index-DvxxrFBo.js.map → index-CVwzCZ43.js.map} +1 -1
- package/dashboard/dist/assets/index-CaGF6TCC.js +2 -0
- package/dashboard/dist/assets/index-CaGF6TCC.js.map +1 -0
- package/dashboard/dist/assets/index-ClVbfe4z.js +13 -0
- package/dashboard/dist/assets/index-ClVbfe4z.js.map +1 -0
- package/dashboard/dist/assets/{index-DWse7ERF.js → index-CuVkSmj5.js} +2 -2
- package/dashboard/dist/assets/{index-DWse7ERF.js.map → index-CuVkSmj5.js.map} +1 -1
- package/dashboard/dist/assets/{index-PcyGjmBm.js → index-DAuX_PlL.js} +2 -2
- package/dashboard/dist/assets/{index-PcyGjmBm.js.map → index-DAuX_PlL.js.map} +1 -1
- package/dashboard/dist/assets/{index-e2X-s0EQ.js → index-DBWS5QL8.js} +2 -2
- package/dashboard/dist/assets/{index-e2X-s0EQ.js.map → index-DBWS5QL8.js.map} +1 -1
- package/dashboard/dist/assets/index-DIWCI6HC.js +2 -0
- package/dashboard/dist/assets/{index-BNZknxFY.js.map → index-DIWCI6HC.js.map} +1 -1
- package/dashboard/dist/assets/{index-C-Xr2V3F.js → index-DZ8X_Gp4.js} +2 -2
- package/dashboard/dist/assets/{index-C-Xr2V3F.js.map → index-DZ8X_Gp4.js.map} +1 -1
- package/dashboard/dist/assets/index-Dh8MJl3L.css +1 -0
- package/dashboard/dist/assets/{knowledge-Coo6CKzo.js → knowledge-CqyLhUMg.js} +2 -2
- package/dashboard/dist/assets/{knowledge-Coo6CKzo.js.map → knowledge-CqyLhUMg.js.map} +1 -1
- package/dashboard/dist/assets/{mcp-Cz5eFnP_.js → mcp-Cvu6bFYH.js} +2 -2
- package/dashboard/dist/assets/{mcp-Cz5eFnP_.js.map → mcp-Cvu6bFYH.js.map} +1 -1
- package/dashboard/dist/assets/{mcp-query-BtnuO4LF.js → mcp-query-qC6A3e9l.js} +2 -2
- package/dashboard/dist/assets/{mcp-query-BtnuO4LF.js.map → mcp-query-qC6A3e9l.js.map} +1 -1
- package/dashboard/dist/assets/metadata-display-COo3mMCr.js +2 -0
- package/dashboard/dist/assets/metadata-display-COo3mMCr.js.map +1 -0
- package/dashboard/dist/assets/{personas-C2-LgpHQ.js → personas-BKN_lJuV.js} +2 -2
- package/dashboard/dist/assets/{personas-C2-LgpHQ.js.map → personas-BKN_lJuV.js.map} +1 -1
- package/dashboard/dist/assets/{pipelines-TuXQvUA-.js → pipelines-BldIfv85.js} +2 -2
- package/dashboard/dist/assets/{pipelines-TuXQvUA-.js.map → pipelines-BldIfv85.js.map} +1 -1
- package/dashboard/dist/assets/{tasks-OUzpu__z.js → tasks-B-Uay8uL.js} +2 -2
- package/dashboard/dist/assets/{tasks-OUzpu__z.js.map → tasks-B-Uay8uL.js.map} +1 -1
- package/dashboard/dist/assets/{topics-B8bdrBaW.js → topics-438EQogt.js} +2 -2
- package/dashboard/dist/assets/{topics-B8bdrBaW.js.map → topics-438EQogt.js.map} +1 -1
- package/dashboard/dist/assets/useContainerWidth-DSLp1gEm.js +2 -0
- package/dashboard/dist/assets/useContainerWidth-DSLp1gEm.js.map +1 -0
- package/dashboard/dist/assets/{useDebouncedValue-Cp5ZOtVE.js → useDebouncedValue-Cw8hYZ8y.js} +2 -2
- package/dashboard/dist/assets/{useDebouncedValue-Cp5ZOtVE.js.map → useDebouncedValue-Cw8hYZ8y.js.map} +1 -1
- package/dashboard/dist/assets/{useNamespace-DtQe3wZ5.js → useNamespace-D1218GQ8.js} +2 -2
- package/dashboard/dist/assets/{useNamespace-DtQe3wZ5.js.map → useNamespace-D1218GQ8.js.map} +1 -1
- package/dashboard/dist/assets/{useYamlActivityEvents-CS22c15X.js → useYamlActivityEvents-BAQf_y_U.js} +2 -2
- package/dashboard/dist/assets/{useYamlActivityEvents-CS22c15X.js.map → useYamlActivityEvents-BAQf_y_U.js.map} +1 -1
- package/dashboard/dist/assets/{vendor-icons-DeBdvyKJ.js → vendor-icons-B7OcUM6b.js} +2 -2
- package/dashboard/dist/assets/{vendor-icons-DeBdvyKJ.js.map → vendor-icons-B7OcUM6b.js.map} +1 -1
- package/dashboard/dist/assets/{yaml-workflows-HQIki3hI.js → yaml-workflows-CN01gEB0.js} +2 -2
- package/dashboard/dist/assets/{yaml-workflows-HQIki3hI.js.map → yaml-workflows-CN01gEB0.js.map} +1 -1
- package/dashboard/dist/index.html +3 -3
- package/docs/accumulator.md +113 -0
- package/docs/api/http/escalations.md +89 -0
- package/docs/api/http/roles.md +1 -0
- package/docs/api/http/workflows.md +28 -1
- package/docs/api/mcp/admin.md +40 -4
- package/docs/api/sdk/escalations.md +91 -0
- package/docs/api/sdk/roles.md +2 -0
- package/docs/architecture.md +1 -1
- package/docs/code-owned-configuration.md +3 -2
- package/docs/dashboard.md +11 -5
- package/docs/hitl/design.md +1 -1
- package/docs/hitl/escalation.md +37 -1
- package/docs/hitl/form.md +12 -7
- package/docs/hitl/invoke-form.md +10 -3
- package/docs/hitl/lookups.md +21 -0
- package/docs/hitl/pinned-views.md +4 -0
- package/docs/hitl/portal.md +97 -0
- package/docs/hitl/resolution.md +41 -0
- package/docs/hitl/x-lt-embed.md +1 -1
- package/docs/hitl/x-lt-invoke.md +95 -0
- package/docs/hitl/x-lt-list-schema.md +3 -1
- package/docs/hitl/x-lt-validation.md +50 -3
- package/docs/hitl/x-lt-widget.md +22 -0
- package/docs/hitl-guide.md +12 -2
- package/docs/scan-codes.md +15 -2
- package/docs/sdk.md +1 -1
- package/docs/workflows.md +2 -2
- package/package.json +4 -2
- package/dashboard/dist/assets/AgentsPage-D77JeViQ.js +0 -2
- package/dashboard/dist/assets/AvailableEscalationsPage-CqM_MOMy.js +0 -2
- package/dashboard/dist/assets/AvailableEscalationsPage-CqM_MOMy.js.map +0 -1
- package/dashboard/dist/assets/BulkAssignModal-BXiJnlqt.js +0 -2
- package/dashboard/dist/assets/CapabilitiesPage-D9TC2iKy.js +0 -2
- package/dashboard/dist/assets/DataTable-7C7riavf.js +0 -2
- package/dashboard/dist/assets/DataTable-7C7riavf.js.map +0 -1
- package/dashboard/dist/assets/EntityTimelinePanel-1lT3jkCM.js +0 -2
- package/dashboard/dist/assets/EscalationListView-uuZRMSLB.js +0 -2
- package/dashboard/dist/assets/EscalationListView-uuZRMSLB.js.map +0 -1
- package/dashboard/dist/assets/GraphInvokePage-DV7Y0fe2.js +0 -2
- package/dashboard/dist/assets/HomePage-G785SWcW.js +0 -2
- package/dashboard/dist/assets/ListToolbar-zPVYPg3W.js +0 -2
- package/dashboard/dist/assets/McpQueryPage-CNSNMagY.js +0 -2
- package/dashboard/dist/assets/McpRunsPage-B6rb5QBf.js +0 -2
- package/dashboard/dist/assets/OperationsPage-Dxk1fAMg.js +0 -3
- package/dashboard/dist/assets/OperationsPage-Dxk1fAMg.js.map +0 -1
- package/dashboard/dist/assets/OperatorDashboard-DBOscDnf.js +0 -2
- package/dashboard/dist/assets/ProcessesListPage-5NnysKFC.js +0 -2
- package/dashboard/dist/assets/ResolverForm-Dy0yirtP.js +0 -2
- package/dashboard/dist/assets/ResolverForm-Dy0yirtP.js.map +0 -1
- package/dashboard/dist/assets/RoleDetailPage-C_LIoe1j.js +0 -8
- package/dashboard/dist/assets/RoleDetailPage-C_LIoe1j.js.map +0 -1
- package/dashboard/dist/assets/RunAsSelector-BwZTJ4Yj.js +0 -2
- package/dashboard/dist/assets/ScanCodesPage-FiYIYB-m.js +0 -2
- package/dashboard/dist/assets/ScanStationPage-8CdOtbCD.js +0 -2
- package/dashboard/dist/assets/TasksListPage-BQNaSzCn.js +0 -2
- package/dashboard/dist/assets/ToolTestPanel-DvuLFWqQ.js +0 -2
- package/dashboard/dist/assets/TopicsPage-h-oyTeEJ.js +0 -2
- package/dashboard/dist/assets/WorkflowsDashboard-B0r2lQXk.js +0 -2
- package/dashboard/dist/assets/escalation-columns-DIigeTOK.js +0 -2
- package/dashboard/dist/assets/escalation-columns-DIigeTOK.js.map +0 -1
- package/dashboard/dist/assets/index-BMlQYOE1.js +0 -67
- package/dashboard/dist/assets/index-BMlQYOE1.js.map +0 -1
- package/dashboard/dist/assets/index-BNZknxFY.js +0 -2
- package/dashboard/dist/assets/index-Bpvfr4OW.css +0 -1
- package/dashboard/dist/assets/index-CegPUKpc.js +0 -3
- package/dashboard/dist/assets/index-CegPUKpc.js.map +0 -1
- package/dashboard/dist/assets/index-D7ESqn22.js +0 -2
- package/dashboard/dist/assets/index-DL83W7Gu.js +0 -2
- package/dashboard/dist/assets/index-DPLssnMW.js +0 -6
- package/dashboard/dist/assets/index-DPLssnMW.js.map +0 -1
- package/dashboard/dist/assets/index-DoETPlJP.js +0 -11
- package/dashboard/dist/assets/index-DoETPlJP.js.map +0 -1
- package/dashboard/dist/assets/index-DvxxrFBo.js +0 -2
- package/dashboard/dist/assets/metadata-display--TzK0REC.js +0 -2
- package/dashboard/dist/assets/metadata-display--TzK0REC.js.map +0 -1
- package/dashboard/dist/assets/resolver-payload-C1dXB3n6.js +0 -2
- package/dashboard/dist/assets/resolver-payload-C1dXB3n6.js.map +0 -1
- package/dashboard/dist/assets/seed-form-json-DvPsISxD.js +0 -2
- package/dashboard/dist/assets/seed-form-json-DvPsISxD.js.map +0 -1
- package/docs/compilation.md +0 -152
- package/docs/compiler.md +0 -311
- package/docs/contributing.md +0 -56
- package/docs/design-principles.md +0 -244
- package/docs/schema-exchange.md +0 -173
- package/docs/self-test.md +0 -106
- package/docs/story.md +0 -184
|
@@ -37,10 +37,411 @@ export declare const ADMIN_TOOLS: ({
|
|
|
37
37
|
duration_minutes?: undefined;
|
|
38
38
|
resolverPayload?: undefined;
|
|
39
39
|
signalKey?: undefined;
|
|
40
|
+
itemKey?: undefined;
|
|
41
|
+
payload?: undefined;
|
|
42
|
+
metadata?: undefined;
|
|
43
|
+
reciprocal?: undefined;
|
|
44
|
+
targetRole?: undefined;
|
|
45
|
+
ids?: undefined;
|
|
46
|
+
hint?: undefined;
|
|
47
|
+
available?: undefined;
|
|
48
|
+
facets?: undefined;
|
|
49
|
+
orderBy?: undefined;
|
|
50
|
+
query?: undefined;
|
|
51
|
+
durationMinutes?: undefined;
|
|
52
|
+
sizeFacet?: undefined;
|
|
53
|
+
allOrNone?: undefined;
|
|
54
|
+
groupBy?: undefined;
|
|
55
|
+
measure?: undefined;
|
|
56
|
+
distinctBy?: undefined;
|
|
57
|
+
states?: undefined;
|
|
58
|
+
liveStatuses?: undefined;
|
|
59
|
+
facet?: undefined;
|
|
60
|
+
window?: undefined;
|
|
61
|
+
select?: undefined;
|
|
62
|
+
key?: undefined;
|
|
63
|
+
value?: undefined;
|
|
64
|
+
assignee?: undefined;
|
|
65
|
+
provisionIfAbsent?: undefined;
|
|
66
|
+
targetUserId?: undefined;
|
|
67
|
+
reassign?: undefined;
|
|
68
|
+
invocable?: undefined;
|
|
69
|
+
task_queue?: undefined;
|
|
70
|
+
default_role?: undefined;
|
|
71
|
+
description?: undefined;
|
|
72
|
+
execute_as?: undefined;
|
|
73
|
+
roles?: undefined;
|
|
74
|
+
invocation_roles?: undefined;
|
|
75
|
+
consumes?: undefined;
|
|
76
|
+
tool_tags?: undefined;
|
|
77
|
+
cron_schedule?: undefined;
|
|
78
|
+
envelope_schema?: undefined;
|
|
79
|
+
input_schema?: undefined;
|
|
80
|
+
input_lookups?: undefined;
|
|
81
|
+
icon?: undefined;
|
|
82
|
+
read_safe?: undefined;
|
|
83
|
+
include_system?: undefined;
|
|
84
|
+
data?: undefined;
|
|
85
|
+
options?: undefined;
|
|
86
|
+
app_id?: undefined;
|
|
87
|
+
tags?: undefined;
|
|
88
|
+
name?: undefined;
|
|
89
|
+
auto_connect?: undefined;
|
|
90
|
+
source_workflow_id?: undefined;
|
|
91
|
+
workflow_name?: undefined;
|
|
92
|
+
compilation_feedback?: undefined;
|
|
93
|
+
sync?: undefined;
|
|
94
|
+
timeout?: undefined;
|
|
95
|
+
external_id?: undefined;
|
|
96
|
+
display_name?: undefined;
|
|
97
|
+
email?: undefined;
|
|
98
|
+
user_id?: undefined;
|
|
99
|
+
set?: undefined;
|
|
100
|
+
remove?: undefined;
|
|
101
|
+
rename?: undefined;
|
|
102
|
+
source_role?: undefined;
|
|
103
|
+
target_role?: undefined;
|
|
104
|
+
title?: undefined;
|
|
105
|
+
form_schema?: undefined;
|
|
106
|
+
metadata_schema?: undefined;
|
|
107
|
+
properties?: undefined;
|
|
108
|
+
ops_visible?: undefined;
|
|
109
|
+
ops_home_default?: undefined;
|
|
110
|
+
parent_role?: undefined;
|
|
111
|
+
sla_minutes?: undefined;
|
|
112
|
+
target_per_hour?: undefined;
|
|
113
|
+
worker_count?: undefined;
|
|
114
|
+
priority_threshold_minutes?: undefined;
|
|
115
|
+
priority_facet?: undefined;
|
|
116
|
+
entity_facet?: undefined;
|
|
117
|
+
entity_state_source?: undefined;
|
|
118
|
+
upstream_roles?: undefined;
|
|
119
|
+
list_schema?: undefined;
|
|
120
|
+
default_pins?: undefined;
|
|
121
|
+
portals?: undefined;
|
|
122
|
+
change_summary?: undefined;
|
|
123
|
+
version?: undefined;
|
|
124
|
+
relationship?: undefined;
|
|
125
|
+
max_events?: undefined;
|
|
126
|
+
include?: undefined;
|
|
127
|
+
verbosity?: undefined;
|
|
128
|
+
idle_minutes?: undefined;
|
|
129
|
+
within_hours?: undefined;
|
|
130
|
+
expire?: undefined;
|
|
131
|
+
jobs?: undefined;
|
|
132
|
+
streams?: undefined;
|
|
133
|
+
entities?: undefined;
|
|
134
|
+
prune_transient?: undefined;
|
|
135
|
+
knowledge_domain?: undefined;
|
|
136
|
+
goals?: undefined;
|
|
137
|
+
rules?: undefined;
|
|
138
|
+
schedules?: undefined;
|
|
139
|
+
subscriptions?: undefined;
|
|
140
|
+
agent_id?: undefined;
|
|
141
|
+
topic?: undefined;
|
|
142
|
+
reaction_type?: undefined;
|
|
143
|
+
pipeline_id?: undefined;
|
|
144
|
+
mcp_prompt?: undefined;
|
|
145
|
+
input_mapping?: undefined;
|
|
146
|
+
filter?: undefined;
|
|
147
|
+
scopes?: undefined;
|
|
148
|
+
expires_at?: undefined;
|
|
149
|
+
key_id?: undefined;
|
|
150
|
+
delay?: undefined;
|
|
151
|
+
appId?: undefined;
|
|
152
|
+
throttle?: undefined;
|
|
153
|
+
guid?: undefined;
|
|
154
|
+
scope?: undefined;
|
|
155
|
+
duration?: undefined;
|
|
156
|
+
stream?: undefined;
|
|
157
|
+
namespace?: undefined;
|
|
158
|
+
source?: undefined;
|
|
159
|
+
stream_name?: undefined;
|
|
160
|
+
msg_type?: undefined;
|
|
161
|
+
jid?: undefined;
|
|
162
|
+
aid?: undefined;
|
|
163
|
+
entity?: undefined;
|
|
164
|
+
job_id?: undefined;
|
|
165
|
+
category?: undefined;
|
|
166
|
+
payload_schema?: undefined;
|
|
167
|
+
example_payload?: undefined;
|
|
168
|
+
allow?: undefined;
|
|
169
|
+
block?: undefined;
|
|
170
|
+
values?: undefined;
|
|
171
|
+
excludeSystem?: undefined;
|
|
172
|
+
omitResults?: undefined;
|
|
173
|
+
mode?: undefined;
|
|
174
|
+
maxDepth?: undefined;
|
|
175
|
+
code?: undefined;
|
|
176
|
+
actingToken?: undefined;
|
|
177
|
+
previousActingToken?: undefined;
|
|
178
|
+
schemeVersion?: undefined;
|
|
179
|
+
stepIndex?: undefined;
|
|
180
|
+
choiceIndex?: undefined;
|
|
181
|
+
escalationId?: undefined;
|
|
182
|
+
target_facet?: undefined;
|
|
183
|
+
encoding?: undefined;
|
|
184
|
+
delimiter?: undefined;
|
|
185
|
+
target_length?: undefined;
|
|
186
|
+
kind?: undefined;
|
|
187
|
+
grant_ttl_seconds?: undefined;
|
|
188
|
+
grant_max_uses?: undefined;
|
|
189
|
+
enabled?: undefined;
|
|
190
|
+
scheme_version?: undefined;
|
|
191
|
+
steps?: undefined;
|
|
192
|
+
fallback?: undefined;
|
|
193
|
+
notPrimed?: undefined;
|
|
194
|
+
body?: undefined;
|
|
195
|
+
layout?: undefined;
|
|
196
|
+
};
|
|
197
|
+
required?: undefined;
|
|
198
|
+
};
|
|
199
|
+
} | {
|
|
200
|
+
name: string;
|
|
201
|
+
description: string;
|
|
202
|
+
read_safe: boolean;
|
|
203
|
+
inputSchema: {
|
|
204
|
+
type: string;
|
|
205
|
+
properties: {
|
|
206
|
+
origin_id: {
|
|
207
|
+
type: string;
|
|
208
|
+
};
|
|
209
|
+
status?: undefined;
|
|
210
|
+
workflow_type?: undefined;
|
|
211
|
+
workflow_id?: undefined;
|
|
212
|
+
limit?: undefined;
|
|
213
|
+
offset?: undefined;
|
|
214
|
+
role?: undefined;
|
|
215
|
+
type?: undefined;
|
|
216
|
+
subtype?: undefined;
|
|
217
|
+
assigned_to?: undefined;
|
|
218
|
+
search?: undefined;
|
|
219
|
+
priority?: undefined;
|
|
220
|
+
sort_by?: undefined;
|
|
221
|
+
order?: undefined;
|
|
222
|
+
id?: undefined;
|
|
223
|
+
period?: undefined;
|
|
224
|
+
duration_minutes?: undefined;
|
|
225
|
+
resolverPayload?: undefined;
|
|
226
|
+
signalKey?: undefined;
|
|
227
|
+
itemKey?: undefined;
|
|
228
|
+
payload?: undefined;
|
|
229
|
+
metadata?: undefined;
|
|
230
|
+
reciprocal?: undefined;
|
|
231
|
+
targetRole?: undefined;
|
|
232
|
+
ids?: undefined;
|
|
233
|
+
hint?: undefined;
|
|
234
|
+
available?: undefined;
|
|
235
|
+
facets?: undefined;
|
|
236
|
+
orderBy?: undefined;
|
|
237
|
+
query?: undefined;
|
|
238
|
+
durationMinutes?: undefined;
|
|
239
|
+
sizeFacet?: undefined;
|
|
240
|
+
allOrNone?: undefined;
|
|
241
|
+
groupBy?: undefined;
|
|
242
|
+
measure?: undefined;
|
|
243
|
+
distinctBy?: undefined;
|
|
244
|
+
states?: undefined;
|
|
245
|
+
liveStatuses?: undefined;
|
|
246
|
+
facet?: undefined;
|
|
247
|
+
window?: undefined;
|
|
248
|
+
select?: undefined;
|
|
249
|
+
key?: undefined;
|
|
250
|
+
value?: undefined;
|
|
251
|
+
assignee?: undefined;
|
|
252
|
+
provisionIfAbsent?: undefined;
|
|
253
|
+
targetUserId?: undefined;
|
|
254
|
+
reassign?: undefined;
|
|
255
|
+
invocable?: undefined;
|
|
256
|
+
task_queue?: undefined;
|
|
257
|
+
default_role?: undefined;
|
|
258
|
+
description?: undefined;
|
|
259
|
+
execute_as?: undefined;
|
|
260
|
+
roles?: undefined;
|
|
261
|
+
invocation_roles?: undefined;
|
|
262
|
+
consumes?: undefined;
|
|
263
|
+
tool_tags?: undefined;
|
|
264
|
+
cron_schedule?: undefined;
|
|
265
|
+
envelope_schema?: undefined;
|
|
266
|
+
input_schema?: undefined;
|
|
267
|
+
input_lookups?: undefined;
|
|
268
|
+
icon?: undefined;
|
|
269
|
+
read_safe?: undefined;
|
|
270
|
+
include_system?: undefined;
|
|
271
|
+
data?: undefined;
|
|
272
|
+
options?: undefined;
|
|
273
|
+
app_id?: undefined;
|
|
274
|
+
tags?: undefined;
|
|
275
|
+
name?: undefined;
|
|
276
|
+
auto_connect?: undefined;
|
|
277
|
+
source_workflow_id?: undefined;
|
|
278
|
+
workflow_name?: undefined;
|
|
279
|
+
compilation_feedback?: undefined;
|
|
280
|
+
sync?: undefined;
|
|
281
|
+
timeout?: undefined;
|
|
282
|
+
external_id?: undefined;
|
|
283
|
+
display_name?: undefined;
|
|
284
|
+
email?: undefined;
|
|
285
|
+
user_id?: undefined;
|
|
286
|
+
set?: undefined;
|
|
287
|
+
remove?: undefined;
|
|
288
|
+
rename?: undefined;
|
|
289
|
+
source_role?: undefined;
|
|
290
|
+
target_role?: undefined;
|
|
291
|
+
title?: undefined;
|
|
292
|
+
form_schema?: undefined;
|
|
293
|
+
metadata_schema?: undefined;
|
|
294
|
+
properties?: undefined;
|
|
295
|
+
ops_visible?: undefined;
|
|
296
|
+
ops_home_default?: undefined;
|
|
297
|
+
parent_role?: undefined;
|
|
298
|
+
sla_minutes?: undefined;
|
|
299
|
+
target_per_hour?: undefined;
|
|
300
|
+
worker_count?: undefined;
|
|
301
|
+
priority_threshold_minutes?: undefined;
|
|
302
|
+
priority_facet?: undefined;
|
|
303
|
+
entity_facet?: undefined;
|
|
304
|
+
entity_state_source?: undefined;
|
|
305
|
+
upstream_roles?: undefined;
|
|
306
|
+
list_schema?: undefined;
|
|
307
|
+
default_pins?: undefined;
|
|
308
|
+
portals?: undefined;
|
|
309
|
+
change_summary?: undefined;
|
|
310
|
+
version?: undefined;
|
|
311
|
+
relationship?: undefined;
|
|
312
|
+
max_events?: undefined;
|
|
313
|
+
include?: undefined;
|
|
314
|
+
verbosity?: undefined;
|
|
315
|
+
idle_minutes?: undefined;
|
|
316
|
+
within_hours?: undefined;
|
|
317
|
+
expire?: undefined;
|
|
318
|
+
jobs?: undefined;
|
|
319
|
+
streams?: undefined;
|
|
320
|
+
entities?: undefined;
|
|
321
|
+
prune_transient?: undefined;
|
|
322
|
+
knowledge_domain?: undefined;
|
|
323
|
+
goals?: undefined;
|
|
324
|
+
rules?: undefined;
|
|
325
|
+
schedules?: undefined;
|
|
326
|
+
subscriptions?: undefined;
|
|
327
|
+
agent_id?: undefined;
|
|
328
|
+
topic?: undefined;
|
|
329
|
+
reaction_type?: undefined;
|
|
330
|
+
pipeline_id?: undefined;
|
|
331
|
+
mcp_prompt?: undefined;
|
|
332
|
+
input_mapping?: undefined;
|
|
333
|
+
filter?: undefined;
|
|
334
|
+
scopes?: undefined;
|
|
335
|
+
expires_at?: undefined;
|
|
336
|
+
key_id?: undefined;
|
|
337
|
+
delay?: undefined;
|
|
338
|
+
appId?: undefined;
|
|
339
|
+
throttle?: undefined;
|
|
340
|
+
guid?: undefined;
|
|
341
|
+
scope?: undefined;
|
|
342
|
+
duration?: undefined;
|
|
343
|
+
stream?: undefined;
|
|
344
|
+
namespace?: undefined;
|
|
345
|
+
source?: undefined;
|
|
346
|
+
stream_name?: undefined;
|
|
347
|
+
msg_type?: undefined;
|
|
348
|
+
jid?: undefined;
|
|
349
|
+
aid?: undefined;
|
|
350
|
+
entity?: undefined;
|
|
351
|
+
job_id?: undefined;
|
|
352
|
+
category?: undefined;
|
|
353
|
+
payload_schema?: undefined;
|
|
354
|
+
example_payload?: undefined;
|
|
355
|
+
allow?: undefined;
|
|
356
|
+
block?: undefined;
|
|
357
|
+
values?: undefined;
|
|
358
|
+
excludeSystem?: undefined;
|
|
359
|
+
omitResults?: undefined;
|
|
360
|
+
mode?: undefined;
|
|
361
|
+
maxDepth?: undefined;
|
|
362
|
+
code?: undefined;
|
|
363
|
+
actingToken?: undefined;
|
|
364
|
+
previousActingToken?: undefined;
|
|
365
|
+
schemeVersion?: undefined;
|
|
366
|
+
stepIndex?: undefined;
|
|
367
|
+
choiceIndex?: undefined;
|
|
368
|
+
escalationId?: undefined;
|
|
369
|
+
target_facet?: undefined;
|
|
370
|
+
encoding?: undefined;
|
|
371
|
+
delimiter?: undefined;
|
|
372
|
+
target_length?: undefined;
|
|
373
|
+
kind?: undefined;
|
|
374
|
+
grant_ttl_seconds?: undefined;
|
|
375
|
+
grant_max_uses?: undefined;
|
|
376
|
+
enabled?: undefined;
|
|
377
|
+
scheme_version?: undefined;
|
|
378
|
+
steps?: undefined;
|
|
379
|
+
fallback?: undefined;
|
|
380
|
+
notPrimed?: undefined;
|
|
381
|
+
body?: undefined;
|
|
382
|
+
layout?: undefined;
|
|
383
|
+
};
|
|
384
|
+
required: string[];
|
|
385
|
+
};
|
|
386
|
+
} | {
|
|
387
|
+
name: string;
|
|
388
|
+
description: string;
|
|
389
|
+
read_safe: boolean;
|
|
390
|
+
inputSchema: {
|
|
391
|
+
type: string;
|
|
392
|
+
properties: {
|
|
393
|
+
status: {
|
|
394
|
+
type: string;
|
|
395
|
+
enum: string[];
|
|
396
|
+
};
|
|
397
|
+
role: {
|
|
398
|
+
type: string;
|
|
399
|
+
};
|
|
400
|
+
type: {
|
|
401
|
+
type: string;
|
|
402
|
+
enum?: undefined;
|
|
403
|
+
};
|
|
404
|
+
subtype: {
|
|
405
|
+
type: string;
|
|
406
|
+
};
|
|
407
|
+
assigned_to: {
|
|
408
|
+
type: string;
|
|
409
|
+
};
|
|
410
|
+
search: {
|
|
411
|
+
type: string;
|
|
412
|
+
};
|
|
413
|
+
priority: {
|
|
414
|
+
type: string;
|
|
415
|
+
};
|
|
416
|
+
sort_by: {
|
|
417
|
+
type: string;
|
|
418
|
+
enum: string[];
|
|
419
|
+
};
|
|
420
|
+
order: {
|
|
421
|
+
type: string;
|
|
422
|
+
enum: string[];
|
|
423
|
+
};
|
|
424
|
+
limit: {
|
|
425
|
+
type: string;
|
|
426
|
+
};
|
|
427
|
+
offset: {
|
|
428
|
+
type: string;
|
|
429
|
+
};
|
|
430
|
+
workflow_type?: undefined;
|
|
431
|
+
workflow_id?: undefined;
|
|
432
|
+
origin_id?: undefined;
|
|
433
|
+
id?: undefined;
|
|
434
|
+
period?: undefined;
|
|
435
|
+
duration_minutes?: undefined;
|
|
436
|
+
resolverPayload?: undefined;
|
|
437
|
+
signalKey?: undefined;
|
|
438
|
+
itemKey?: undefined;
|
|
439
|
+
payload?: undefined;
|
|
440
|
+
metadata?: undefined;
|
|
441
|
+
reciprocal?: undefined;
|
|
40
442
|
targetRole?: undefined;
|
|
41
443
|
ids?: undefined;
|
|
42
444
|
hint?: undefined;
|
|
43
|
-
metadata?: undefined;
|
|
44
445
|
available?: undefined;
|
|
45
446
|
facets?: undefined;
|
|
46
447
|
orderBy?: undefined;
|
|
@@ -72,6 +473,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
72
473
|
consumes?: undefined;
|
|
73
474
|
tool_tags?: undefined;
|
|
74
475
|
cron_schedule?: undefined;
|
|
476
|
+
envelope_schema?: undefined;
|
|
477
|
+
input_schema?: undefined;
|
|
478
|
+
input_lookups?: undefined;
|
|
479
|
+
icon?: undefined;
|
|
480
|
+
read_safe?: undefined;
|
|
75
481
|
include_system?: undefined;
|
|
76
482
|
data?: undefined;
|
|
77
483
|
options?: undefined;
|
|
@@ -110,6 +516,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
110
516
|
upstream_roles?: undefined;
|
|
111
517
|
list_schema?: undefined;
|
|
112
518
|
default_pins?: undefined;
|
|
519
|
+
portals?: undefined;
|
|
113
520
|
change_summary?: undefined;
|
|
114
521
|
version?: undefined;
|
|
115
522
|
relationship?: undefined;
|
|
@@ -194,12 +601,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
194
601
|
inputSchema: {
|
|
195
602
|
type: string;
|
|
196
603
|
properties: {
|
|
197
|
-
|
|
604
|
+
id: {
|
|
198
605
|
type: string;
|
|
199
606
|
};
|
|
200
607
|
status?: undefined;
|
|
201
608
|
workflow_type?: undefined;
|
|
202
609
|
workflow_id?: undefined;
|
|
610
|
+
origin_id?: undefined;
|
|
203
611
|
limit?: undefined;
|
|
204
612
|
offset?: undefined;
|
|
205
613
|
role?: undefined;
|
|
@@ -210,15 +618,17 @@ export declare const ADMIN_TOOLS: ({
|
|
|
210
618
|
priority?: undefined;
|
|
211
619
|
sort_by?: undefined;
|
|
212
620
|
order?: undefined;
|
|
213
|
-
id?: undefined;
|
|
214
621
|
period?: undefined;
|
|
215
622
|
duration_minutes?: undefined;
|
|
216
623
|
resolverPayload?: undefined;
|
|
217
624
|
signalKey?: undefined;
|
|
625
|
+
itemKey?: undefined;
|
|
626
|
+
payload?: undefined;
|
|
627
|
+
metadata?: undefined;
|
|
628
|
+
reciprocal?: undefined;
|
|
218
629
|
targetRole?: undefined;
|
|
219
630
|
ids?: undefined;
|
|
220
631
|
hint?: undefined;
|
|
221
|
-
metadata?: undefined;
|
|
222
632
|
available?: undefined;
|
|
223
633
|
facets?: undefined;
|
|
224
634
|
orderBy?: undefined;
|
|
@@ -250,6 +660,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
250
660
|
consumes?: undefined;
|
|
251
661
|
tool_tags?: undefined;
|
|
252
662
|
cron_schedule?: undefined;
|
|
663
|
+
envelope_schema?: undefined;
|
|
664
|
+
input_schema?: undefined;
|
|
665
|
+
input_lookups?: undefined;
|
|
666
|
+
icon?: undefined;
|
|
667
|
+
read_safe?: undefined;
|
|
253
668
|
include_system?: undefined;
|
|
254
669
|
data?: undefined;
|
|
255
670
|
options?: undefined;
|
|
@@ -288,6 +703,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
288
703
|
upstream_roles?: undefined;
|
|
289
704
|
list_schema?: undefined;
|
|
290
705
|
default_pins?: undefined;
|
|
706
|
+
portals?: undefined;
|
|
291
707
|
change_summary?: undefined;
|
|
292
708
|
version?: undefined;
|
|
293
709
|
relationship?: undefined;
|
|
@@ -372,55 +788,34 @@ export declare const ADMIN_TOOLS: ({
|
|
|
372
788
|
inputSchema: {
|
|
373
789
|
type: string;
|
|
374
790
|
properties: {
|
|
375
|
-
|
|
376
|
-
type: string;
|
|
377
|
-
enum: string[];
|
|
378
|
-
};
|
|
379
|
-
role: {
|
|
380
|
-
type: string;
|
|
381
|
-
};
|
|
382
|
-
type: {
|
|
383
|
-
type: string;
|
|
384
|
-
enum?: undefined;
|
|
385
|
-
};
|
|
386
|
-
subtype: {
|
|
387
|
-
type: string;
|
|
388
|
-
};
|
|
389
|
-
assigned_to: {
|
|
390
|
-
type: string;
|
|
391
|
-
};
|
|
392
|
-
search: {
|
|
393
|
-
type: string;
|
|
394
|
-
};
|
|
395
|
-
priority: {
|
|
396
|
-
type: string;
|
|
397
|
-
};
|
|
398
|
-
sort_by: {
|
|
399
|
-
type: string;
|
|
400
|
-
enum: string[];
|
|
401
|
-
};
|
|
402
|
-
order: {
|
|
403
|
-
type: string;
|
|
404
|
-
enum: string[];
|
|
405
|
-
};
|
|
406
|
-
limit: {
|
|
407
|
-
type: string;
|
|
408
|
-
};
|
|
409
|
-
offset: {
|
|
791
|
+
workflow_id: {
|
|
410
792
|
type: string;
|
|
411
793
|
};
|
|
794
|
+
status?: undefined;
|
|
412
795
|
workflow_type?: undefined;
|
|
413
|
-
workflow_id?: undefined;
|
|
414
796
|
origin_id?: undefined;
|
|
797
|
+
limit?: undefined;
|
|
798
|
+
offset?: undefined;
|
|
799
|
+
role?: undefined;
|
|
800
|
+
type?: undefined;
|
|
801
|
+
subtype?: undefined;
|
|
802
|
+
assigned_to?: undefined;
|
|
803
|
+
search?: undefined;
|
|
804
|
+
priority?: undefined;
|
|
805
|
+
sort_by?: undefined;
|
|
806
|
+
order?: undefined;
|
|
415
807
|
id?: undefined;
|
|
416
808
|
period?: undefined;
|
|
417
809
|
duration_minutes?: undefined;
|
|
418
810
|
resolverPayload?: undefined;
|
|
419
811
|
signalKey?: undefined;
|
|
812
|
+
itemKey?: undefined;
|
|
813
|
+
payload?: undefined;
|
|
814
|
+
metadata?: undefined;
|
|
815
|
+
reciprocal?: undefined;
|
|
420
816
|
targetRole?: undefined;
|
|
421
817
|
ids?: undefined;
|
|
422
818
|
hint?: undefined;
|
|
423
|
-
metadata?: undefined;
|
|
424
819
|
available?: undefined;
|
|
425
820
|
facets?: undefined;
|
|
426
821
|
orderBy?: undefined;
|
|
@@ -452,6 +847,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
452
847
|
consumes?: undefined;
|
|
453
848
|
tool_tags?: undefined;
|
|
454
849
|
cron_schedule?: undefined;
|
|
850
|
+
envelope_schema?: undefined;
|
|
851
|
+
input_schema?: undefined;
|
|
852
|
+
input_lookups?: undefined;
|
|
853
|
+
icon?: undefined;
|
|
854
|
+
read_safe?: undefined;
|
|
455
855
|
include_system?: undefined;
|
|
456
856
|
data?: undefined;
|
|
457
857
|
options?: undefined;
|
|
@@ -490,6 +890,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
490
890
|
upstream_roles?: undefined;
|
|
491
891
|
list_schema?: undefined;
|
|
492
892
|
default_pins?: undefined;
|
|
893
|
+
portals?: undefined;
|
|
493
894
|
change_summary?: undefined;
|
|
494
895
|
version?: undefined;
|
|
495
896
|
relationship?: undefined;
|
|
@@ -565,7 +966,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
565
966
|
body?: undefined;
|
|
566
967
|
layout?: undefined;
|
|
567
968
|
};
|
|
568
|
-
required
|
|
969
|
+
required: string[];
|
|
569
970
|
};
|
|
570
971
|
} | {
|
|
571
972
|
name: string;
|
|
@@ -574,8 +975,10 @@ export declare const ADMIN_TOOLS: ({
|
|
|
574
975
|
inputSchema: {
|
|
575
976
|
type: string;
|
|
576
977
|
properties: {
|
|
577
|
-
|
|
978
|
+
period: {
|
|
578
979
|
type: string;
|
|
980
|
+
enum?: undefined;
|
|
981
|
+
description?: undefined;
|
|
579
982
|
};
|
|
580
983
|
status?: undefined;
|
|
581
984
|
workflow_type?: undefined;
|
|
@@ -591,14 +994,17 @@ export declare const ADMIN_TOOLS: ({
|
|
|
591
994
|
priority?: undefined;
|
|
592
995
|
sort_by?: undefined;
|
|
593
996
|
order?: undefined;
|
|
594
|
-
|
|
997
|
+
id?: undefined;
|
|
595
998
|
duration_minutes?: undefined;
|
|
596
999
|
resolverPayload?: undefined;
|
|
597
1000
|
signalKey?: undefined;
|
|
1001
|
+
itemKey?: undefined;
|
|
1002
|
+
payload?: undefined;
|
|
1003
|
+
metadata?: undefined;
|
|
1004
|
+
reciprocal?: undefined;
|
|
598
1005
|
targetRole?: undefined;
|
|
599
1006
|
ids?: undefined;
|
|
600
1007
|
hint?: undefined;
|
|
601
|
-
metadata?: undefined;
|
|
602
1008
|
available?: undefined;
|
|
603
1009
|
facets?: undefined;
|
|
604
1010
|
orderBy?: undefined;
|
|
@@ -630,6 +1036,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
630
1036
|
consumes?: undefined;
|
|
631
1037
|
tool_tags?: undefined;
|
|
632
1038
|
cron_schedule?: undefined;
|
|
1039
|
+
envelope_schema?: undefined;
|
|
1040
|
+
input_schema?: undefined;
|
|
1041
|
+
input_lookups?: undefined;
|
|
1042
|
+
icon?: undefined;
|
|
1043
|
+
read_safe?: undefined;
|
|
633
1044
|
include_system?: undefined;
|
|
634
1045
|
data?: undefined;
|
|
635
1046
|
options?: undefined;
|
|
@@ -668,6 +1079,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
668
1079
|
upstream_roles?: undefined;
|
|
669
1080
|
list_schema?: undefined;
|
|
670
1081
|
default_pins?: undefined;
|
|
1082
|
+
portals?: undefined;
|
|
671
1083
|
change_summary?: undefined;
|
|
672
1084
|
version?: undefined;
|
|
673
1085
|
relationship?: undefined;
|
|
@@ -743,7 +1155,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
743
1155
|
body?: undefined;
|
|
744
1156
|
layout?: undefined;
|
|
745
1157
|
};
|
|
746
|
-
required
|
|
1158
|
+
required?: undefined;
|
|
747
1159
|
};
|
|
748
1160
|
} | {
|
|
749
1161
|
name: string;
|
|
@@ -752,11 +1164,15 @@ export declare const ADMIN_TOOLS: ({
|
|
|
752
1164
|
inputSchema: {
|
|
753
1165
|
type: string;
|
|
754
1166
|
properties: {
|
|
755
|
-
|
|
1167
|
+
id: {
|
|
1168
|
+
type: string;
|
|
1169
|
+
};
|
|
1170
|
+
duration_minutes: {
|
|
756
1171
|
type: string;
|
|
757
1172
|
};
|
|
758
1173
|
status?: undefined;
|
|
759
1174
|
workflow_type?: undefined;
|
|
1175
|
+
workflow_id?: undefined;
|
|
760
1176
|
origin_id?: undefined;
|
|
761
1177
|
limit?: undefined;
|
|
762
1178
|
offset?: undefined;
|
|
@@ -768,15 +1184,16 @@ export declare const ADMIN_TOOLS: ({
|
|
|
768
1184
|
priority?: undefined;
|
|
769
1185
|
sort_by?: undefined;
|
|
770
1186
|
order?: undefined;
|
|
771
|
-
id?: undefined;
|
|
772
1187
|
period?: undefined;
|
|
773
|
-
duration_minutes?: undefined;
|
|
774
1188
|
resolverPayload?: undefined;
|
|
775
1189
|
signalKey?: undefined;
|
|
1190
|
+
itemKey?: undefined;
|
|
1191
|
+
payload?: undefined;
|
|
1192
|
+
metadata?: undefined;
|
|
1193
|
+
reciprocal?: undefined;
|
|
776
1194
|
targetRole?: undefined;
|
|
777
1195
|
ids?: undefined;
|
|
778
1196
|
hint?: undefined;
|
|
779
|
-
metadata?: undefined;
|
|
780
1197
|
available?: undefined;
|
|
781
1198
|
facets?: undefined;
|
|
782
1199
|
orderBy?: undefined;
|
|
@@ -808,6 +1225,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
808
1225
|
consumes?: undefined;
|
|
809
1226
|
tool_tags?: undefined;
|
|
810
1227
|
cron_schedule?: undefined;
|
|
1228
|
+
envelope_schema?: undefined;
|
|
1229
|
+
input_schema?: undefined;
|
|
1230
|
+
input_lookups?: undefined;
|
|
1231
|
+
icon?: undefined;
|
|
1232
|
+
read_safe?: undefined;
|
|
811
1233
|
include_system?: undefined;
|
|
812
1234
|
data?: undefined;
|
|
813
1235
|
options?: undefined;
|
|
@@ -846,6 +1268,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
846
1268
|
upstream_roles?: undefined;
|
|
847
1269
|
list_schema?: undefined;
|
|
848
1270
|
default_pins?: undefined;
|
|
1271
|
+
portals?: undefined;
|
|
849
1272
|
change_summary?: undefined;
|
|
850
1273
|
version?: undefined;
|
|
851
1274
|
relationship?: undefined;
|
|
@@ -930,10 +1353,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
930
1353
|
inputSchema: {
|
|
931
1354
|
type: string;
|
|
932
1355
|
properties: {
|
|
933
|
-
|
|
1356
|
+
id: {
|
|
1357
|
+
type: string;
|
|
1358
|
+
};
|
|
1359
|
+
resolverPayload: {
|
|
934
1360
|
type: string;
|
|
935
|
-
enum?: undefined;
|
|
936
|
-
description?: undefined;
|
|
937
1361
|
};
|
|
938
1362
|
status?: undefined;
|
|
939
1363
|
workflow_type?: undefined;
|
|
@@ -949,14 +1373,16 @@ export declare const ADMIN_TOOLS: ({
|
|
|
949
1373
|
priority?: undefined;
|
|
950
1374
|
sort_by?: undefined;
|
|
951
1375
|
order?: undefined;
|
|
952
|
-
|
|
1376
|
+
period?: undefined;
|
|
953
1377
|
duration_minutes?: undefined;
|
|
954
|
-
resolverPayload?: undefined;
|
|
955
1378
|
signalKey?: undefined;
|
|
1379
|
+
itemKey?: undefined;
|
|
1380
|
+
payload?: undefined;
|
|
1381
|
+
metadata?: undefined;
|
|
1382
|
+
reciprocal?: undefined;
|
|
956
1383
|
targetRole?: undefined;
|
|
957
1384
|
ids?: undefined;
|
|
958
1385
|
hint?: undefined;
|
|
959
|
-
metadata?: undefined;
|
|
960
1386
|
available?: undefined;
|
|
961
1387
|
facets?: undefined;
|
|
962
1388
|
orderBy?: undefined;
|
|
@@ -988,6 +1414,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
988
1414
|
consumes?: undefined;
|
|
989
1415
|
tool_tags?: undefined;
|
|
990
1416
|
cron_schedule?: undefined;
|
|
1417
|
+
envelope_schema?: undefined;
|
|
1418
|
+
input_schema?: undefined;
|
|
1419
|
+
input_lookups?: undefined;
|
|
1420
|
+
icon?: undefined;
|
|
1421
|
+
read_safe?: undefined;
|
|
991
1422
|
include_system?: undefined;
|
|
992
1423
|
data?: undefined;
|
|
993
1424
|
options?: undefined;
|
|
@@ -1026,6 +1457,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1026
1457
|
upstream_roles?: undefined;
|
|
1027
1458
|
list_schema?: undefined;
|
|
1028
1459
|
default_pins?: undefined;
|
|
1460
|
+
portals?: undefined;
|
|
1029
1461
|
change_summary?: undefined;
|
|
1030
1462
|
version?: undefined;
|
|
1031
1463
|
relationship?: undefined;
|
|
@@ -1101,7 +1533,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1101
1533
|
body?: undefined;
|
|
1102
1534
|
layout?: undefined;
|
|
1103
1535
|
};
|
|
1104
|
-
required
|
|
1536
|
+
required: string[];
|
|
1105
1537
|
};
|
|
1106
1538
|
} | {
|
|
1107
1539
|
name: string;
|
|
@@ -1110,10 +1542,10 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1110
1542
|
inputSchema: {
|
|
1111
1543
|
type: string;
|
|
1112
1544
|
properties: {
|
|
1113
|
-
|
|
1545
|
+
signalKey: {
|
|
1114
1546
|
type: string;
|
|
1115
1547
|
};
|
|
1116
|
-
|
|
1548
|
+
resolverPayload: {
|
|
1117
1549
|
type: string;
|
|
1118
1550
|
};
|
|
1119
1551
|
status?: undefined;
|
|
@@ -1130,13 +1562,16 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1130
1562
|
priority?: undefined;
|
|
1131
1563
|
sort_by?: undefined;
|
|
1132
1564
|
order?: undefined;
|
|
1565
|
+
id?: undefined;
|
|
1133
1566
|
period?: undefined;
|
|
1134
|
-
|
|
1135
|
-
|
|
1567
|
+
duration_minutes?: undefined;
|
|
1568
|
+
itemKey?: undefined;
|
|
1569
|
+
payload?: undefined;
|
|
1570
|
+
metadata?: undefined;
|
|
1571
|
+
reciprocal?: undefined;
|
|
1136
1572
|
targetRole?: undefined;
|
|
1137
1573
|
ids?: undefined;
|
|
1138
1574
|
hint?: undefined;
|
|
1139
|
-
metadata?: undefined;
|
|
1140
1575
|
available?: undefined;
|
|
1141
1576
|
facets?: undefined;
|
|
1142
1577
|
orderBy?: undefined;
|
|
@@ -1168,6 +1603,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1168
1603
|
consumes?: undefined;
|
|
1169
1604
|
tool_tags?: undefined;
|
|
1170
1605
|
cron_schedule?: undefined;
|
|
1606
|
+
envelope_schema?: undefined;
|
|
1607
|
+
input_schema?: undefined;
|
|
1608
|
+
input_lookups?: undefined;
|
|
1609
|
+
icon?: undefined;
|
|
1610
|
+
read_safe?: undefined;
|
|
1171
1611
|
include_system?: undefined;
|
|
1172
1612
|
data?: undefined;
|
|
1173
1613
|
options?: undefined;
|
|
@@ -1206,6 +1646,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1206
1646
|
upstream_roles?: undefined;
|
|
1207
1647
|
list_schema?: undefined;
|
|
1208
1648
|
default_pins?: undefined;
|
|
1649
|
+
portals?: undefined;
|
|
1209
1650
|
change_summary?: undefined;
|
|
1210
1651
|
version?: undefined;
|
|
1211
1652
|
relationship?: undefined;
|
|
@@ -1293,8 +1734,34 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1293
1734
|
id: {
|
|
1294
1735
|
type: string;
|
|
1295
1736
|
};
|
|
1296
|
-
|
|
1737
|
+
itemKey: {
|
|
1738
|
+
type: string;
|
|
1739
|
+
};
|
|
1740
|
+
payload: {
|
|
1741
|
+
type: string;
|
|
1742
|
+
};
|
|
1743
|
+
metadata: {
|
|
1744
|
+
type: string;
|
|
1745
|
+
};
|
|
1746
|
+
reciprocal: {
|
|
1297
1747
|
type: string;
|
|
1748
|
+
properties: {
|
|
1749
|
+
id: {
|
|
1750
|
+
type: string;
|
|
1751
|
+
};
|
|
1752
|
+
signalKey: {
|
|
1753
|
+
type: string;
|
|
1754
|
+
};
|
|
1755
|
+
key: {
|
|
1756
|
+
type: string;
|
|
1757
|
+
};
|
|
1758
|
+
value: {
|
|
1759
|
+
type: string;
|
|
1760
|
+
};
|
|
1761
|
+
payload: {
|
|
1762
|
+
type: string;
|
|
1763
|
+
};
|
|
1764
|
+
};
|
|
1298
1765
|
};
|
|
1299
1766
|
status?: undefined;
|
|
1300
1767
|
workflow_type?: undefined;
|
|
@@ -1312,11 +1779,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1312
1779
|
order?: undefined;
|
|
1313
1780
|
period?: undefined;
|
|
1314
1781
|
duration_minutes?: undefined;
|
|
1782
|
+
resolverPayload?: undefined;
|
|
1315
1783
|
signalKey?: undefined;
|
|
1316
1784
|
targetRole?: undefined;
|
|
1317
1785
|
ids?: undefined;
|
|
1318
1786
|
hint?: undefined;
|
|
1319
|
-
metadata?: undefined;
|
|
1320
1787
|
available?: undefined;
|
|
1321
1788
|
facets?: undefined;
|
|
1322
1789
|
orderBy?: undefined;
|
|
@@ -1348,6 +1815,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1348
1815
|
consumes?: undefined;
|
|
1349
1816
|
tool_tags?: undefined;
|
|
1350
1817
|
cron_schedule?: undefined;
|
|
1818
|
+
envelope_schema?: undefined;
|
|
1819
|
+
input_schema?: undefined;
|
|
1820
|
+
input_lookups?: undefined;
|
|
1821
|
+
icon?: undefined;
|
|
1822
|
+
read_safe?: undefined;
|
|
1351
1823
|
include_system?: undefined;
|
|
1352
1824
|
data?: undefined;
|
|
1353
1825
|
options?: undefined;
|
|
@@ -1386,6 +1858,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1386
1858
|
upstream_roles?: undefined;
|
|
1387
1859
|
list_schema?: undefined;
|
|
1388
1860
|
default_pins?: undefined;
|
|
1861
|
+
portals?: undefined;
|
|
1389
1862
|
change_summary?: undefined;
|
|
1390
1863
|
version?: undefined;
|
|
1391
1864
|
relationship?: undefined;
|
|
@@ -1470,11 +1943,29 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1470
1943
|
inputSchema: {
|
|
1471
1944
|
type: string;
|
|
1472
1945
|
properties: {
|
|
1473
|
-
|
|
1946
|
+
id: {
|
|
1474
1947
|
type: string;
|
|
1475
1948
|
};
|
|
1476
|
-
|
|
1949
|
+
itemKey: {
|
|
1950
|
+
type: string;
|
|
1951
|
+
};
|
|
1952
|
+
reciprocal: {
|
|
1477
1953
|
type: string;
|
|
1954
|
+
properties: {
|
|
1955
|
+
id: {
|
|
1956
|
+
type: string;
|
|
1957
|
+
};
|
|
1958
|
+
signalKey: {
|
|
1959
|
+
type: string;
|
|
1960
|
+
};
|
|
1961
|
+
key: {
|
|
1962
|
+
type: string;
|
|
1963
|
+
};
|
|
1964
|
+
value: {
|
|
1965
|
+
type: string;
|
|
1966
|
+
};
|
|
1967
|
+
payload?: undefined;
|
|
1968
|
+
};
|
|
1478
1969
|
};
|
|
1479
1970
|
status?: undefined;
|
|
1480
1971
|
workflow_type?: undefined;
|
|
@@ -1490,13 +1981,15 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1490
1981
|
priority?: undefined;
|
|
1491
1982
|
sort_by?: undefined;
|
|
1492
1983
|
order?: undefined;
|
|
1493
|
-
id?: undefined;
|
|
1494
1984
|
period?: undefined;
|
|
1495
1985
|
duration_minutes?: undefined;
|
|
1986
|
+
resolverPayload?: undefined;
|
|
1987
|
+
signalKey?: undefined;
|
|
1988
|
+
payload?: undefined;
|
|
1989
|
+
metadata?: undefined;
|
|
1496
1990
|
targetRole?: undefined;
|
|
1497
1991
|
ids?: undefined;
|
|
1498
1992
|
hint?: undefined;
|
|
1499
|
-
metadata?: undefined;
|
|
1500
1993
|
available?: undefined;
|
|
1501
1994
|
facets?: undefined;
|
|
1502
1995
|
orderBy?: undefined;
|
|
@@ -1528,6 +2021,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1528
2021
|
consumes?: undefined;
|
|
1529
2022
|
tool_tags?: undefined;
|
|
1530
2023
|
cron_schedule?: undefined;
|
|
2024
|
+
envelope_schema?: undefined;
|
|
2025
|
+
input_schema?: undefined;
|
|
2026
|
+
input_lookups?: undefined;
|
|
2027
|
+
icon?: undefined;
|
|
2028
|
+
read_safe?: undefined;
|
|
1531
2029
|
include_system?: undefined;
|
|
1532
2030
|
data?: undefined;
|
|
1533
2031
|
options?: undefined;
|
|
@@ -1566,6 +2064,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1566
2064
|
upstream_roles?: undefined;
|
|
1567
2065
|
list_schema?: undefined;
|
|
1568
2066
|
default_pins?: undefined;
|
|
2067
|
+
portals?: undefined;
|
|
1569
2068
|
change_summary?: undefined;
|
|
1570
2069
|
version?: undefined;
|
|
1571
2070
|
relationship?: undefined;
|
|
@@ -1674,9 +2173,12 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1674
2173
|
duration_minutes?: undefined;
|
|
1675
2174
|
resolverPayload?: undefined;
|
|
1676
2175
|
signalKey?: undefined;
|
|
2176
|
+
itemKey?: undefined;
|
|
2177
|
+
payload?: undefined;
|
|
2178
|
+
metadata?: undefined;
|
|
2179
|
+
reciprocal?: undefined;
|
|
1677
2180
|
ids?: undefined;
|
|
1678
2181
|
hint?: undefined;
|
|
1679
|
-
metadata?: undefined;
|
|
1680
2182
|
available?: undefined;
|
|
1681
2183
|
facets?: undefined;
|
|
1682
2184
|
orderBy?: undefined;
|
|
@@ -1708,6 +2210,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1708
2210
|
consumes?: undefined;
|
|
1709
2211
|
tool_tags?: undefined;
|
|
1710
2212
|
cron_schedule?: undefined;
|
|
2213
|
+
envelope_schema?: undefined;
|
|
2214
|
+
input_schema?: undefined;
|
|
2215
|
+
input_lookups?: undefined;
|
|
2216
|
+
icon?: undefined;
|
|
2217
|
+
read_safe?: undefined;
|
|
1711
2218
|
include_system?: undefined;
|
|
1712
2219
|
data?: undefined;
|
|
1713
2220
|
options?: undefined;
|
|
@@ -1746,6 +2253,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1746
2253
|
upstream_roles?: undefined;
|
|
1747
2254
|
list_schema?: undefined;
|
|
1748
2255
|
default_pins?: undefined;
|
|
2256
|
+
portals?: undefined;
|
|
1749
2257
|
change_summary?: undefined;
|
|
1750
2258
|
version?: undefined;
|
|
1751
2259
|
relationship?: undefined;
|
|
@@ -1855,9 +2363,12 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1855
2363
|
duration_minutes?: undefined;
|
|
1856
2364
|
resolverPayload?: undefined;
|
|
1857
2365
|
signalKey?: undefined;
|
|
2366
|
+
itemKey?: undefined;
|
|
2367
|
+
payload?: undefined;
|
|
2368
|
+
metadata?: undefined;
|
|
2369
|
+
reciprocal?: undefined;
|
|
1858
2370
|
targetRole?: undefined;
|
|
1859
2371
|
hint?: undefined;
|
|
1860
|
-
metadata?: undefined;
|
|
1861
2372
|
available?: undefined;
|
|
1862
2373
|
facets?: undefined;
|
|
1863
2374
|
orderBy?: undefined;
|
|
@@ -1889,6 +2400,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1889
2400
|
consumes?: undefined;
|
|
1890
2401
|
tool_tags?: undefined;
|
|
1891
2402
|
cron_schedule?: undefined;
|
|
2403
|
+
envelope_schema?: undefined;
|
|
2404
|
+
input_schema?: undefined;
|
|
2405
|
+
input_lookups?: undefined;
|
|
2406
|
+
icon?: undefined;
|
|
2407
|
+
read_safe?: undefined;
|
|
1892
2408
|
include_system?: undefined;
|
|
1893
2409
|
data?: undefined;
|
|
1894
2410
|
options?: undefined;
|
|
@@ -1927,6 +2443,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
1927
2443
|
upstream_roles?: undefined;
|
|
1928
2444
|
list_schema?: undefined;
|
|
1929
2445
|
default_pins?: undefined;
|
|
2446
|
+
portals?: undefined;
|
|
1930
2447
|
change_summary?: undefined;
|
|
1931
2448
|
version?: undefined;
|
|
1932
2449
|
relationship?: undefined;
|
|
@@ -2030,10 +2547,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2030
2547
|
duration_minutes?: undefined;
|
|
2031
2548
|
resolverPayload?: undefined;
|
|
2032
2549
|
signalKey?: undefined;
|
|
2550
|
+
itemKey?: undefined;
|
|
2551
|
+
payload?: undefined;
|
|
2552
|
+
metadata?: undefined;
|
|
2553
|
+
reciprocal?: undefined;
|
|
2033
2554
|
targetRole?: undefined;
|
|
2034
2555
|
ids?: undefined;
|
|
2035
2556
|
hint?: undefined;
|
|
2036
|
-
metadata?: undefined;
|
|
2037
2557
|
available?: undefined;
|
|
2038
2558
|
facets?: undefined;
|
|
2039
2559
|
orderBy?: undefined;
|
|
@@ -2065,6 +2585,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2065
2585
|
consumes?: undefined;
|
|
2066
2586
|
tool_tags?: undefined;
|
|
2067
2587
|
cron_schedule?: undefined;
|
|
2588
|
+
envelope_schema?: undefined;
|
|
2589
|
+
input_schema?: undefined;
|
|
2590
|
+
input_lookups?: undefined;
|
|
2591
|
+
icon?: undefined;
|
|
2592
|
+
read_safe?: undefined;
|
|
2068
2593
|
include_system?: undefined;
|
|
2069
2594
|
data?: undefined;
|
|
2070
2595
|
options?: undefined;
|
|
@@ -2103,6 +2628,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2103
2628
|
upstream_roles?: undefined;
|
|
2104
2629
|
list_schema?: undefined;
|
|
2105
2630
|
default_pins?: undefined;
|
|
2631
|
+
portals?: undefined;
|
|
2106
2632
|
change_summary?: undefined;
|
|
2107
2633
|
version?: undefined;
|
|
2108
2634
|
relationship?: undefined;
|
|
@@ -2215,8 +2741,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2215
2741
|
duration_minutes?: undefined;
|
|
2216
2742
|
resolverPayload?: undefined;
|
|
2217
2743
|
signalKey?: undefined;
|
|
2218
|
-
|
|
2744
|
+
itemKey?: undefined;
|
|
2745
|
+
payload?: undefined;
|
|
2219
2746
|
metadata?: undefined;
|
|
2747
|
+
reciprocal?: undefined;
|
|
2748
|
+
targetRole?: undefined;
|
|
2220
2749
|
available?: undefined;
|
|
2221
2750
|
facets?: undefined;
|
|
2222
2751
|
orderBy?: undefined;
|
|
@@ -2248,6 +2777,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2248
2777
|
consumes?: undefined;
|
|
2249
2778
|
tool_tags?: undefined;
|
|
2250
2779
|
cron_schedule?: undefined;
|
|
2780
|
+
envelope_schema?: undefined;
|
|
2781
|
+
input_schema?: undefined;
|
|
2782
|
+
input_lookups?: undefined;
|
|
2783
|
+
icon?: undefined;
|
|
2784
|
+
read_safe?: undefined;
|
|
2251
2785
|
include_system?: undefined;
|
|
2252
2786
|
data?: undefined;
|
|
2253
2787
|
options?: undefined;
|
|
@@ -2286,6 +2820,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2286
2820
|
upstream_roles?: undefined;
|
|
2287
2821
|
list_schema?: undefined;
|
|
2288
2822
|
default_pins?: undefined;
|
|
2823
|
+
portals?: undefined;
|
|
2289
2824
|
change_summary?: undefined;
|
|
2290
2825
|
version?: undefined;
|
|
2291
2826
|
relationship?: undefined;
|
|
@@ -2400,6 +2935,9 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2400
2935
|
period?: undefined;
|
|
2401
2936
|
duration_minutes?: undefined;
|
|
2402
2937
|
signalKey?: undefined;
|
|
2938
|
+
itemKey?: undefined;
|
|
2939
|
+
payload?: undefined;
|
|
2940
|
+
reciprocal?: undefined;
|
|
2403
2941
|
targetRole?: undefined;
|
|
2404
2942
|
hint?: undefined;
|
|
2405
2943
|
available?: undefined;
|
|
@@ -2433,6 +2971,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2433
2971
|
consumes?: undefined;
|
|
2434
2972
|
tool_tags?: undefined;
|
|
2435
2973
|
cron_schedule?: undefined;
|
|
2974
|
+
envelope_schema?: undefined;
|
|
2975
|
+
input_schema?: undefined;
|
|
2976
|
+
input_lookups?: undefined;
|
|
2977
|
+
icon?: undefined;
|
|
2978
|
+
read_safe?: undefined;
|
|
2436
2979
|
include_system?: undefined;
|
|
2437
2980
|
data?: undefined;
|
|
2438
2981
|
options?: undefined;
|
|
@@ -2471,6 +3014,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2471
3014
|
upstream_roles?: undefined;
|
|
2472
3015
|
list_schema?: undefined;
|
|
2473
3016
|
default_pins?: undefined;
|
|
3017
|
+
portals?: undefined;
|
|
2474
3018
|
change_summary?: undefined;
|
|
2475
3019
|
version?: undefined;
|
|
2476
3020
|
relationship?: undefined;
|
|
@@ -2592,10 +3136,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2592
3136
|
duration_minutes?: undefined;
|
|
2593
3137
|
resolverPayload?: undefined;
|
|
2594
3138
|
signalKey?: undefined;
|
|
3139
|
+
itemKey?: undefined;
|
|
3140
|
+
payload?: undefined;
|
|
3141
|
+
metadata?: undefined;
|
|
3142
|
+
reciprocal?: undefined;
|
|
2595
3143
|
targetRole?: undefined;
|
|
2596
3144
|
ids?: undefined;
|
|
2597
3145
|
hint?: undefined;
|
|
2598
|
-
metadata?: undefined;
|
|
2599
3146
|
query?: undefined;
|
|
2600
3147
|
durationMinutes?: undefined;
|
|
2601
3148
|
sizeFacet?: undefined;
|
|
@@ -2624,6 +3171,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2624
3171
|
consumes?: undefined;
|
|
2625
3172
|
tool_tags?: undefined;
|
|
2626
3173
|
cron_schedule?: undefined;
|
|
3174
|
+
envelope_schema?: undefined;
|
|
3175
|
+
input_schema?: undefined;
|
|
3176
|
+
input_lookups?: undefined;
|
|
3177
|
+
icon?: undefined;
|
|
3178
|
+
read_safe?: undefined;
|
|
2627
3179
|
include_system?: undefined;
|
|
2628
3180
|
data?: undefined;
|
|
2629
3181
|
options?: undefined;
|
|
@@ -2662,6 +3214,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2662
3214
|
upstream_roles?: undefined;
|
|
2663
3215
|
list_schema?: undefined;
|
|
2664
3216
|
default_pins?: undefined;
|
|
3217
|
+
portals?: undefined;
|
|
2665
3218
|
change_summary?: undefined;
|
|
2666
3219
|
version?: undefined;
|
|
2667
3220
|
relationship?: undefined;
|
|
@@ -2776,10 +3329,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2776
3329
|
duration_minutes?: undefined;
|
|
2777
3330
|
resolverPayload?: undefined;
|
|
2778
3331
|
signalKey?: undefined;
|
|
3332
|
+
itemKey?: undefined;
|
|
3333
|
+
payload?: undefined;
|
|
3334
|
+
metadata?: undefined;
|
|
3335
|
+
reciprocal?: undefined;
|
|
2779
3336
|
targetRole?: undefined;
|
|
2780
3337
|
ids?: undefined;
|
|
2781
3338
|
hint?: undefined;
|
|
2782
|
-
metadata?: undefined;
|
|
2783
3339
|
available?: undefined;
|
|
2784
3340
|
facets?: undefined;
|
|
2785
3341
|
orderBy?: undefined;
|
|
@@ -2808,6 +3364,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2808
3364
|
consumes?: undefined;
|
|
2809
3365
|
tool_tags?: undefined;
|
|
2810
3366
|
cron_schedule?: undefined;
|
|
3367
|
+
envelope_schema?: undefined;
|
|
3368
|
+
input_schema?: undefined;
|
|
3369
|
+
input_lookups?: undefined;
|
|
3370
|
+
icon?: undefined;
|
|
3371
|
+
read_safe?: undefined;
|
|
2811
3372
|
include_system?: undefined;
|
|
2812
3373
|
data?: undefined;
|
|
2813
3374
|
options?: undefined;
|
|
@@ -2846,6 +3407,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2846
3407
|
upstream_roles?: undefined;
|
|
2847
3408
|
list_schema?: undefined;
|
|
2848
3409
|
default_pins?: undefined;
|
|
3410
|
+
portals?: undefined;
|
|
2849
3411
|
change_summary?: undefined;
|
|
2850
3412
|
version?: undefined;
|
|
2851
3413
|
relationship?: undefined;
|
|
@@ -2960,10 +3522,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2960
3522
|
duration_minutes?: undefined;
|
|
2961
3523
|
resolverPayload?: undefined;
|
|
2962
3524
|
signalKey?: undefined;
|
|
3525
|
+
itemKey?: undefined;
|
|
3526
|
+
payload?: undefined;
|
|
3527
|
+
metadata?: undefined;
|
|
3528
|
+
reciprocal?: undefined;
|
|
2963
3529
|
targetRole?: undefined;
|
|
2964
3530
|
ids?: undefined;
|
|
2965
3531
|
hint?: undefined;
|
|
2966
|
-
metadata?: undefined;
|
|
2967
3532
|
available?: undefined;
|
|
2968
3533
|
facets?: undefined;
|
|
2969
3534
|
orderBy?: undefined;
|
|
@@ -2992,6 +3557,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
2992
3557
|
consumes?: undefined;
|
|
2993
3558
|
tool_tags?: undefined;
|
|
2994
3559
|
cron_schedule?: undefined;
|
|
3560
|
+
envelope_schema?: undefined;
|
|
3561
|
+
input_schema?: undefined;
|
|
3562
|
+
input_lookups?: undefined;
|
|
3563
|
+
icon?: undefined;
|
|
3564
|
+
read_safe?: undefined;
|
|
2995
3565
|
include_system?: undefined;
|
|
2996
3566
|
data?: undefined;
|
|
2997
3567
|
options?: undefined;
|
|
@@ -3030,6 +3600,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3030
3600
|
upstream_roles?: undefined;
|
|
3031
3601
|
list_schema?: undefined;
|
|
3032
3602
|
default_pins?: undefined;
|
|
3603
|
+
portals?: undefined;
|
|
3033
3604
|
change_summary?: undefined;
|
|
3034
3605
|
version?: undefined;
|
|
3035
3606
|
relationship?: undefined;
|
|
@@ -3161,10 +3732,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3161
3732
|
duration_minutes?: undefined;
|
|
3162
3733
|
resolverPayload?: undefined;
|
|
3163
3734
|
signalKey?: undefined;
|
|
3735
|
+
itemKey?: undefined;
|
|
3736
|
+
payload?: undefined;
|
|
3737
|
+
metadata?: undefined;
|
|
3738
|
+
reciprocal?: undefined;
|
|
3164
3739
|
targetRole?: undefined;
|
|
3165
3740
|
ids?: undefined;
|
|
3166
3741
|
hint?: undefined;
|
|
3167
|
-
metadata?: undefined;
|
|
3168
3742
|
available?: undefined;
|
|
3169
3743
|
facets?: undefined;
|
|
3170
3744
|
durationMinutes?: undefined;
|
|
@@ -3189,6 +3763,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3189
3763
|
consumes?: undefined;
|
|
3190
3764
|
tool_tags?: undefined;
|
|
3191
3765
|
cron_schedule?: undefined;
|
|
3766
|
+
envelope_schema?: undefined;
|
|
3767
|
+
input_schema?: undefined;
|
|
3768
|
+
input_lookups?: undefined;
|
|
3769
|
+
icon?: undefined;
|
|
3770
|
+
read_safe?: undefined;
|
|
3192
3771
|
include_system?: undefined;
|
|
3193
3772
|
data?: undefined;
|
|
3194
3773
|
options?: undefined;
|
|
@@ -3227,6 +3806,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3227
3806
|
upstream_roles?: undefined;
|
|
3228
3807
|
list_schema?: undefined;
|
|
3229
3808
|
default_pins?: undefined;
|
|
3809
|
+
portals?: undefined;
|
|
3230
3810
|
change_summary?: undefined;
|
|
3231
3811
|
version?: undefined;
|
|
3232
3812
|
relationship?: undefined;
|
|
@@ -3360,10 +3940,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3360
3940
|
duration_minutes?: undefined;
|
|
3361
3941
|
resolverPayload?: undefined;
|
|
3362
3942
|
signalKey?: undefined;
|
|
3943
|
+
itemKey?: undefined;
|
|
3944
|
+
payload?: undefined;
|
|
3945
|
+
metadata?: undefined;
|
|
3946
|
+
reciprocal?: undefined;
|
|
3363
3947
|
targetRole?: undefined;
|
|
3364
3948
|
ids?: undefined;
|
|
3365
3949
|
hint?: undefined;
|
|
3366
|
-
metadata?: undefined;
|
|
3367
3950
|
available?: undefined;
|
|
3368
3951
|
facets?: undefined;
|
|
3369
3952
|
orderBy?: undefined;
|
|
@@ -3390,6 +3973,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3390
3973
|
consumes?: undefined;
|
|
3391
3974
|
tool_tags?: undefined;
|
|
3392
3975
|
cron_schedule?: undefined;
|
|
3976
|
+
envelope_schema?: undefined;
|
|
3977
|
+
input_schema?: undefined;
|
|
3978
|
+
input_lookups?: undefined;
|
|
3979
|
+
icon?: undefined;
|
|
3980
|
+
read_safe?: undefined;
|
|
3393
3981
|
include_system?: undefined;
|
|
3394
3982
|
data?: undefined;
|
|
3395
3983
|
options?: undefined;
|
|
@@ -3428,6 +4016,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3428
4016
|
upstream_roles?: undefined;
|
|
3429
4017
|
list_schema?: undefined;
|
|
3430
4018
|
default_pins?: undefined;
|
|
4019
|
+
portals?: undefined;
|
|
3431
4020
|
change_summary?: undefined;
|
|
3432
4021
|
version?: undefined;
|
|
3433
4022
|
relationship?: undefined;
|
|
@@ -3544,10 +4133,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3544
4133
|
duration_minutes?: undefined;
|
|
3545
4134
|
resolverPayload?: undefined;
|
|
3546
4135
|
signalKey?: undefined;
|
|
4136
|
+
itemKey?: undefined;
|
|
4137
|
+
payload?: undefined;
|
|
4138
|
+
metadata?: undefined;
|
|
4139
|
+
reciprocal?: undefined;
|
|
3547
4140
|
targetRole?: undefined;
|
|
3548
4141
|
ids?: undefined;
|
|
3549
4142
|
hint?: undefined;
|
|
3550
|
-
metadata?: undefined;
|
|
3551
4143
|
available?: undefined;
|
|
3552
4144
|
facets?: undefined;
|
|
3553
4145
|
orderBy?: undefined;
|
|
@@ -3577,6 +4169,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3577
4169
|
consumes?: undefined;
|
|
3578
4170
|
tool_tags?: undefined;
|
|
3579
4171
|
cron_schedule?: undefined;
|
|
4172
|
+
envelope_schema?: undefined;
|
|
4173
|
+
input_schema?: undefined;
|
|
4174
|
+
input_lookups?: undefined;
|
|
4175
|
+
icon?: undefined;
|
|
4176
|
+
read_safe?: undefined;
|
|
3580
4177
|
include_system?: undefined;
|
|
3581
4178
|
data?: undefined;
|
|
3582
4179
|
options?: undefined;
|
|
@@ -3615,6 +4212,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3615
4212
|
upstream_roles?: undefined;
|
|
3616
4213
|
list_schema?: undefined;
|
|
3617
4214
|
default_pins?: undefined;
|
|
4215
|
+
portals?: undefined;
|
|
3618
4216
|
change_summary?: undefined;
|
|
3619
4217
|
version?: undefined;
|
|
3620
4218
|
relationship?: undefined;
|
|
@@ -3737,6 +4335,9 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3737
4335
|
duration_minutes?: undefined;
|
|
3738
4336
|
resolverPayload?: undefined;
|
|
3739
4337
|
signalKey?: undefined;
|
|
4338
|
+
itemKey?: undefined;
|
|
4339
|
+
payload?: undefined;
|
|
4340
|
+
reciprocal?: undefined;
|
|
3740
4341
|
targetRole?: undefined;
|
|
3741
4342
|
ids?: undefined;
|
|
3742
4343
|
hint?: undefined;
|
|
@@ -3766,6 +4367,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3766
4367
|
consumes?: undefined;
|
|
3767
4368
|
tool_tags?: undefined;
|
|
3768
4369
|
cron_schedule?: undefined;
|
|
4370
|
+
envelope_schema?: undefined;
|
|
4371
|
+
input_schema?: undefined;
|
|
4372
|
+
input_lookups?: undefined;
|
|
4373
|
+
icon?: undefined;
|
|
4374
|
+
read_safe?: undefined;
|
|
3769
4375
|
include_system?: undefined;
|
|
3770
4376
|
data?: undefined;
|
|
3771
4377
|
options?: undefined;
|
|
@@ -3804,6 +4410,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3804
4410
|
upstream_roles?: undefined;
|
|
3805
4411
|
list_schema?: undefined;
|
|
3806
4412
|
default_pins?: undefined;
|
|
4413
|
+
portals?: undefined;
|
|
3807
4414
|
change_summary?: undefined;
|
|
3808
4415
|
version?: undefined;
|
|
3809
4416
|
relationship?: undefined;
|
|
@@ -3921,6 +4528,9 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3921
4528
|
period?: undefined;
|
|
3922
4529
|
duration_minutes?: undefined;
|
|
3923
4530
|
signalKey?: undefined;
|
|
4531
|
+
itemKey?: undefined;
|
|
4532
|
+
payload?: undefined;
|
|
4533
|
+
reciprocal?: undefined;
|
|
3924
4534
|
targetRole?: undefined;
|
|
3925
4535
|
ids?: undefined;
|
|
3926
4536
|
hint?: undefined;
|
|
@@ -3952,6 +4562,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3952
4562
|
consumes?: undefined;
|
|
3953
4563
|
tool_tags?: undefined;
|
|
3954
4564
|
cron_schedule?: undefined;
|
|
4565
|
+
envelope_schema?: undefined;
|
|
4566
|
+
input_schema?: undefined;
|
|
4567
|
+
input_lookups?: undefined;
|
|
4568
|
+
icon?: undefined;
|
|
4569
|
+
read_safe?: undefined;
|
|
3955
4570
|
include_system?: undefined;
|
|
3956
4571
|
data?: undefined;
|
|
3957
4572
|
options?: undefined;
|
|
@@ -3990,6 +4605,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
3990
4605
|
upstream_roles?: undefined;
|
|
3991
4606
|
list_schema?: undefined;
|
|
3992
4607
|
default_pins?: undefined;
|
|
4608
|
+
portals?: undefined;
|
|
3993
4609
|
change_summary?: undefined;
|
|
3994
4610
|
version?: undefined;
|
|
3995
4611
|
relationship?: undefined;
|
|
@@ -4102,9 +4718,12 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4102
4718
|
duration_minutes?: undefined;
|
|
4103
4719
|
resolverPayload?: undefined;
|
|
4104
4720
|
signalKey?: undefined;
|
|
4721
|
+
itemKey?: undefined;
|
|
4722
|
+
payload?: undefined;
|
|
4723
|
+
metadata?: undefined;
|
|
4724
|
+
reciprocal?: undefined;
|
|
4105
4725
|
targetRole?: undefined;
|
|
4106
4726
|
hint?: undefined;
|
|
4107
|
-
metadata?: undefined;
|
|
4108
4727
|
available?: undefined;
|
|
4109
4728
|
facets?: undefined;
|
|
4110
4729
|
orderBy?: undefined;
|
|
@@ -4135,6 +4754,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4135
4754
|
consumes?: undefined;
|
|
4136
4755
|
tool_tags?: undefined;
|
|
4137
4756
|
cron_schedule?: undefined;
|
|
4757
|
+
envelope_schema?: undefined;
|
|
4758
|
+
input_schema?: undefined;
|
|
4759
|
+
input_lookups?: undefined;
|
|
4760
|
+
icon?: undefined;
|
|
4761
|
+
read_safe?: undefined;
|
|
4138
4762
|
include_system?: undefined;
|
|
4139
4763
|
data?: undefined;
|
|
4140
4764
|
options?: undefined;
|
|
@@ -4173,6 +4797,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4173
4797
|
upstream_roles?: undefined;
|
|
4174
4798
|
list_schema?: undefined;
|
|
4175
4799
|
default_pins?: undefined;
|
|
4800
|
+
portals?: undefined;
|
|
4176
4801
|
change_summary?: undefined;
|
|
4177
4802
|
version?: undefined;
|
|
4178
4803
|
relationship?: undefined;
|
|
@@ -4291,9 +4916,12 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4291
4916
|
duration_minutes?: undefined;
|
|
4292
4917
|
resolverPayload?: undefined;
|
|
4293
4918
|
signalKey?: undefined;
|
|
4919
|
+
itemKey?: undefined;
|
|
4920
|
+
payload?: undefined;
|
|
4921
|
+
metadata?: undefined;
|
|
4922
|
+
reciprocal?: undefined;
|
|
4294
4923
|
targetRole?: undefined;
|
|
4295
4924
|
hint?: undefined;
|
|
4296
|
-
metadata?: undefined;
|
|
4297
4925
|
available?: undefined;
|
|
4298
4926
|
facets?: undefined;
|
|
4299
4927
|
orderBy?: undefined;
|
|
@@ -4322,6 +4950,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4322
4950
|
consumes?: undefined;
|
|
4323
4951
|
tool_tags?: undefined;
|
|
4324
4952
|
cron_schedule?: undefined;
|
|
4953
|
+
envelope_schema?: undefined;
|
|
4954
|
+
input_schema?: undefined;
|
|
4955
|
+
input_lookups?: undefined;
|
|
4956
|
+
icon?: undefined;
|
|
4957
|
+
read_safe?: undefined;
|
|
4325
4958
|
include_system?: undefined;
|
|
4326
4959
|
data?: undefined;
|
|
4327
4960
|
options?: undefined;
|
|
@@ -4360,6 +4993,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4360
4993
|
upstream_roles?: undefined;
|
|
4361
4994
|
list_schema?: undefined;
|
|
4362
4995
|
default_pins?: undefined;
|
|
4996
|
+
portals?: undefined;
|
|
4363
4997
|
change_summary?: undefined;
|
|
4364
4998
|
version?: undefined;
|
|
4365
4999
|
relationship?: undefined;
|
|
@@ -4472,8 +5106,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4472
5106
|
duration_minutes?: undefined;
|
|
4473
5107
|
resolverPayload?: undefined;
|
|
4474
5108
|
signalKey?: undefined;
|
|
4475
|
-
|
|
5109
|
+
itemKey?: undefined;
|
|
5110
|
+
payload?: undefined;
|
|
4476
5111
|
metadata?: undefined;
|
|
5112
|
+
reciprocal?: undefined;
|
|
5113
|
+
hint?: undefined;
|
|
4477
5114
|
available?: undefined;
|
|
4478
5115
|
facets?: undefined;
|
|
4479
5116
|
orderBy?: undefined;
|
|
@@ -4505,6 +5142,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4505
5142
|
consumes?: undefined;
|
|
4506
5143
|
tool_tags?: undefined;
|
|
4507
5144
|
cron_schedule?: undefined;
|
|
5145
|
+
envelope_schema?: undefined;
|
|
5146
|
+
input_schema?: undefined;
|
|
5147
|
+
input_lookups?: undefined;
|
|
5148
|
+
icon?: undefined;
|
|
5149
|
+
read_safe?: undefined;
|
|
4508
5150
|
include_system?: undefined;
|
|
4509
5151
|
data?: undefined;
|
|
4510
5152
|
options?: undefined;
|
|
@@ -4543,6 +5185,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4543
5185
|
upstream_roles?: undefined;
|
|
4544
5186
|
list_schema?: undefined;
|
|
4545
5187
|
default_pins?: undefined;
|
|
5188
|
+
portals?: undefined;
|
|
4546
5189
|
change_summary?: undefined;
|
|
4547
5190
|
version?: undefined;
|
|
4548
5191
|
relationship?: undefined;
|
|
@@ -4654,9 +5297,12 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4654
5297
|
duration_minutes?: undefined;
|
|
4655
5298
|
resolverPayload?: undefined;
|
|
4656
5299
|
signalKey?: undefined;
|
|
5300
|
+
itemKey?: undefined;
|
|
5301
|
+
payload?: undefined;
|
|
5302
|
+
metadata?: undefined;
|
|
5303
|
+
reciprocal?: undefined;
|
|
4657
5304
|
targetRole?: undefined;
|
|
4658
5305
|
hint?: undefined;
|
|
4659
|
-
metadata?: undefined;
|
|
4660
5306
|
available?: undefined;
|
|
4661
5307
|
facets?: undefined;
|
|
4662
5308
|
orderBy?: undefined;
|
|
@@ -4688,6 +5334,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4688
5334
|
consumes?: undefined;
|
|
4689
5335
|
tool_tags?: undefined;
|
|
4690
5336
|
cron_schedule?: undefined;
|
|
5337
|
+
envelope_schema?: undefined;
|
|
5338
|
+
input_schema?: undefined;
|
|
5339
|
+
input_lookups?: undefined;
|
|
5340
|
+
icon?: undefined;
|
|
5341
|
+
read_safe?: undefined;
|
|
4691
5342
|
include_system?: undefined;
|
|
4692
5343
|
data?: undefined;
|
|
4693
5344
|
options?: undefined;
|
|
@@ -4726,6 +5377,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4726
5377
|
upstream_roles?: undefined;
|
|
4727
5378
|
list_schema?: undefined;
|
|
4728
5379
|
default_pins?: undefined;
|
|
5380
|
+
portals?: undefined;
|
|
4729
5381
|
change_summary?: undefined;
|
|
4730
5382
|
version?: undefined;
|
|
4731
5383
|
relationship?: undefined;
|
|
@@ -4780,81 +5432,37 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4780
5432
|
mode?: undefined;
|
|
4781
5433
|
maxDepth?: undefined;
|
|
4782
5434
|
code?: undefined;
|
|
4783
|
-
actingToken?: undefined;
|
|
4784
|
-
previousActingToken?: undefined;
|
|
4785
|
-
schemeVersion?: undefined;
|
|
4786
|
-
stepIndex?: undefined;
|
|
4787
|
-
choiceIndex?: undefined;
|
|
4788
|
-
escalationId?: undefined;
|
|
4789
|
-
target_facet?: undefined;
|
|
4790
|
-
encoding?: undefined;
|
|
4791
|
-
delimiter?: undefined;
|
|
4792
|
-
target_length?: undefined;
|
|
4793
|
-
kind?: undefined;
|
|
4794
|
-
grant_ttl_seconds?: undefined;
|
|
4795
|
-
grant_max_uses?: undefined;
|
|
4796
|
-
enabled?: undefined;
|
|
4797
|
-
scheme_version?: undefined;
|
|
4798
|
-
steps?: undefined;
|
|
4799
|
-
fallback?: undefined;
|
|
4800
|
-
notPrimed?: undefined;
|
|
4801
|
-
body?: undefined;
|
|
4802
|
-
layout?: undefined;
|
|
4803
|
-
};
|
|
4804
|
-
required: string[];
|
|
4805
|
-
};
|
|
4806
|
-
} | {
|
|
4807
|
-
name: string;
|
|
4808
|
-
description: string;
|
|
4809
|
-
read_safe: boolean;
|
|
4810
|
-
inputSchema: {
|
|
4811
|
-
type: string;
|
|
4812
|
-
properties: {
|
|
4813
|
-
workflow_type: {
|
|
4814
|
-
type: string;
|
|
4815
|
-
};
|
|
4816
|
-
invocable: {
|
|
4817
|
-
type: string;
|
|
4818
|
-
};
|
|
4819
|
-
task_queue: {
|
|
4820
|
-
type: string;
|
|
4821
|
-
};
|
|
4822
|
-
default_role: {
|
|
4823
|
-
type: string;
|
|
4824
|
-
};
|
|
4825
|
-
description: {
|
|
4826
|
-
type: string;
|
|
4827
|
-
};
|
|
4828
|
-
execute_as: {
|
|
4829
|
-
type: string;
|
|
4830
|
-
};
|
|
4831
|
-
roles: {
|
|
4832
|
-
type: string;
|
|
4833
|
-
items: {
|
|
4834
|
-
type: string;
|
|
4835
|
-
properties?: undefined;
|
|
4836
|
-
required?: undefined;
|
|
4837
|
-
};
|
|
4838
|
-
};
|
|
4839
|
-
invocation_roles: {
|
|
4840
|
-
type: string;
|
|
4841
|
-
items: {
|
|
4842
|
-
type: string;
|
|
4843
|
-
};
|
|
4844
|
-
};
|
|
4845
|
-
consumes: {
|
|
4846
|
-
type: string;
|
|
4847
|
-
items: {
|
|
4848
|
-
type: string;
|
|
4849
|
-
};
|
|
4850
|
-
};
|
|
4851
|
-
tool_tags: {
|
|
4852
|
-
type: string;
|
|
4853
|
-
items: {
|
|
4854
|
-
type: string;
|
|
4855
|
-
};
|
|
4856
|
-
};
|
|
4857
|
-
cron_schedule: {
|
|
5435
|
+
actingToken?: undefined;
|
|
5436
|
+
previousActingToken?: undefined;
|
|
5437
|
+
schemeVersion?: undefined;
|
|
5438
|
+
stepIndex?: undefined;
|
|
5439
|
+
choiceIndex?: undefined;
|
|
5440
|
+
escalationId?: undefined;
|
|
5441
|
+
target_facet?: undefined;
|
|
5442
|
+
encoding?: undefined;
|
|
5443
|
+
delimiter?: undefined;
|
|
5444
|
+
target_length?: undefined;
|
|
5445
|
+
kind?: undefined;
|
|
5446
|
+
grant_ttl_seconds?: undefined;
|
|
5447
|
+
grant_max_uses?: undefined;
|
|
5448
|
+
enabled?: undefined;
|
|
5449
|
+
scheme_version?: undefined;
|
|
5450
|
+
steps?: undefined;
|
|
5451
|
+
fallback?: undefined;
|
|
5452
|
+
notPrimed?: undefined;
|
|
5453
|
+
body?: undefined;
|
|
5454
|
+
layout?: undefined;
|
|
5455
|
+
};
|
|
5456
|
+
required: string[];
|
|
5457
|
+
};
|
|
5458
|
+
} | {
|
|
5459
|
+
name: string;
|
|
5460
|
+
description: string;
|
|
5461
|
+
read_safe: boolean;
|
|
5462
|
+
inputSchema: {
|
|
5463
|
+
type: string;
|
|
5464
|
+
properties: {
|
|
5465
|
+
workflow_type: {
|
|
4858
5466
|
type: string;
|
|
4859
5467
|
};
|
|
4860
5468
|
status?: undefined;
|
|
@@ -4875,10 +5483,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4875
5483
|
duration_minutes?: undefined;
|
|
4876
5484
|
resolverPayload?: undefined;
|
|
4877
5485
|
signalKey?: undefined;
|
|
5486
|
+
itemKey?: undefined;
|
|
5487
|
+
payload?: undefined;
|
|
5488
|
+
metadata?: undefined;
|
|
5489
|
+
reciprocal?: undefined;
|
|
4878
5490
|
targetRole?: undefined;
|
|
4879
5491
|
ids?: undefined;
|
|
4880
5492
|
hint?: undefined;
|
|
4881
|
-
metadata?: undefined;
|
|
4882
5493
|
available?: undefined;
|
|
4883
5494
|
facets?: undefined;
|
|
4884
5495
|
orderBy?: undefined;
|
|
@@ -4900,6 +5511,21 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4900
5511
|
provisionIfAbsent?: undefined;
|
|
4901
5512
|
targetUserId?: undefined;
|
|
4902
5513
|
reassign?: undefined;
|
|
5514
|
+
invocable?: undefined;
|
|
5515
|
+
task_queue?: undefined;
|
|
5516
|
+
default_role?: undefined;
|
|
5517
|
+
description?: undefined;
|
|
5518
|
+
execute_as?: undefined;
|
|
5519
|
+
roles?: undefined;
|
|
5520
|
+
invocation_roles?: undefined;
|
|
5521
|
+
consumes?: undefined;
|
|
5522
|
+
tool_tags?: undefined;
|
|
5523
|
+
cron_schedule?: undefined;
|
|
5524
|
+
envelope_schema?: undefined;
|
|
5525
|
+
input_schema?: undefined;
|
|
5526
|
+
input_lookups?: undefined;
|
|
5527
|
+
icon?: undefined;
|
|
5528
|
+
read_safe?: undefined;
|
|
4903
5529
|
include_system?: undefined;
|
|
4904
5530
|
data?: undefined;
|
|
4905
5531
|
options?: undefined;
|
|
@@ -4938,6 +5564,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
4938
5564
|
upstream_roles?: undefined;
|
|
4939
5565
|
list_schema?: undefined;
|
|
4940
5566
|
default_pins?: undefined;
|
|
5567
|
+
portals?: undefined;
|
|
4941
5568
|
change_summary?: undefined;
|
|
4942
5569
|
version?: undefined;
|
|
4943
5570
|
relationship?: undefined;
|
|
@@ -5025,6 +5652,83 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5025
5652
|
workflow_type: {
|
|
5026
5653
|
type: string;
|
|
5027
5654
|
};
|
|
5655
|
+
invocable: {
|
|
5656
|
+
type: string;
|
|
5657
|
+
};
|
|
5658
|
+
task_queue: {
|
|
5659
|
+
type: string;
|
|
5660
|
+
};
|
|
5661
|
+
default_role: {
|
|
5662
|
+
type: string;
|
|
5663
|
+
};
|
|
5664
|
+
description: {
|
|
5665
|
+
type: string;
|
|
5666
|
+
};
|
|
5667
|
+
execute_as: {
|
|
5668
|
+
type: string;
|
|
5669
|
+
};
|
|
5670
|
+
roles: {
|
|
5671
|
+
type: string;
|
|
5672
|
+
items: {
|
|
5673
|
+
type: string;
|
|
5674
|
+
properties?: undefined;
|
|
5675
|
+
required?: undefined;
|
|
5676
|
+
};
|
|
5677
|
+
};
|
|
5678
|
+
invocation_roles: {
|
|
5679
|
+
type: string;
|
|
5680
|
+
items: {
|
|
5681
|
+
type: string;
|
|
5682
|
+
};
|
|
5683
|
+
};
|
|
5684
|
+
consumes: {
|
|
5685
|
+
type: string;
|
|
5686
|
+
items: {
|
|
5687
|
+
type: string;
|
|
5688
|
+
};
|
|
5689
|
+
};
|
|
5690
|
+
tool_tags: {
|
|
5691
|
+
type: string;
|
|
5692
|
+
items: {
|
|
5693
|
+
type: string;
|
|
5694
|
+
};
|
|
5695
|
+
};
|
|
5696
|
+
cron_schedule: {
|
|
5697
|
+
type: string;
|
|
5698
|
+
};
|
|
5699
|
+
envelope_schema: {
|
|
5700
|
+
type: string;
|
|
5701
|
+
};
|
|
5702
|
+
input_schema: {
|
|
5703
|
+
type: string;
|
|
5704
|
+
};
|
|
5705
|
+
input_lookups: {
|
|
5706
|
+
type: string;
|
|
5707
|
+
items: {
|
|
5708
|
+
type: string;
|
|
5709
|
+
properties: {
|
|
5710
|
+
domain: {
|
|
5711
|
+
type: string;
|
|
5712
|
+
};
|
|
5713
|
+
key: {
|
|
5714
|
+
type: string;
|
|
5715
|
+
};
|
|
5716
|
+
version: {
|
|
5717
|
+
type: string;
|
|
5718
|
+
};
|
|
5719
|
+
as: {
|
|
5720
|
+
type: string;
|
|
5721
|
+
};
|
|
5722
|
+
};
|
|
5723
|
+
required: string[];
|
|
5724
|
+
};
|
|
5725
|
+
};
|
|
5726
|
+
icon: {
|
|
5727
|
+
type: string;
|
|
5728
|
+
};
|
|
5729
|
+
read_safe: {
|
|
5730
|
+
type: string;
|
|
5731
|
+
};
|
|
5028
5732
|
status?: undefined;
|
|
5029
5733
|
workflow_id?: undefined;
|
|
5030
5734
|
origin_id?: undefined;
|
|
@@ -5043,10 +5747,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5043
5747
|
duration_minutes?: undefined;
|
|
5044
5748
|
resolverPayload?: undefined;
|
|
5045
5749
|
signalKey?: undefined;
|
|
5750
|
+
itemKey?: undefined;
|
|
5751
|
+
payload?: undefined;
|
|
5752
|
+
metadata?: undefined;
|
|
5753
|
+
reciprocal?: undefined;
|
|
5046
5754
|
targetRole?: undefined;
|
|
5047
5755
|
ids?: undefined;
|
|
5048
5756
|
hint?: undefined;
|
|
5049
|
-
metadata?: undefined;
|
|
5050
5757
|
available?: undefined;
|
|
5051
5758
|
facets?: undefined;
|
|
5052
5759
|
orderBy?: undefined;
|
|
@@ -5068,16 +5775,6 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5068
5775
|
provisionIfAbsent?: undefined;
|
|
5069
5776
|
targetUserId?: undefined;
|
|
5070
5777
|
reassign?: undefined;
|
|
5071
|
-
invocable?: undefined;
|
|
5072
|
-
task_queue?: undefined;
|
|
5073
|
-
default_role?: undefined;
|
|
5074
|
-
description?: undefined;
|
|
5075
|
-
execute_as?: undefined;
|
|
5076
|
-
roles?: undefined;
|
|
5077
|
-
invocation_roles?: undefined;
|
|
5078
|
-
consumes?: undefined;
|
|
5079
|
-
tool_tags?: undefined;
|
|
5080
|
-
cron_schedule?: undefined;
|
|
5081
5778
|
include_system?: undefined;
|
|
5082
5779
|
data?: undefined;
|
|
5083
5780
|
options?: undefined;
|
|
@@ -5116,6 +5813,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5116
5813
|
upstream_roles?: undefined;
|
|
5117
5814
|
list_schema?: undefined;
|
|
5118
5815
|
default_pins?: undefined;
|
|
5816
|
+
portals?: undefined;
|
|
5119
5817
|
change_summary?: undefined;
|
|
5120
5818
|
version?: undefined;
|
|
5121
5819
|
relationship?: undefined;
|
|
@@ -5222,10 +5920,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5222
5920
|
duration_minutes?: undefined;
|
|
5223
5921
|
resolverPayload?: undefined;
|
|
5224
5922
|
signalKey?: undefined;
|
|
5923
|
+
itemKey?: undefined;
|
|
5924
|
+
payload?: undefined;
|
|
5925
|
+
metadata?: undefined;
|
|
5926
|
+
reciprocal?: undefined;
|
|
5225
5927
|
targetRole?: undefined;
|
|
5226
5928
|
ids?: undefined;
|
|
5227
5929
|
hint?: undefined;
|
|
5228
|
-
metadata?: undefined;
|
|
5229
5930
|
available?: undefined;
|
|
5230
5931
|
facets?: undefined;
|
|
5231
5932
|
orderBy?: undefined;
|
|
@@ -5257,6 +5958,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5257
5958
|
consumes?: undefined;
|
|
5258
5959
|
tool_tags?: undefined;
|
|
5259
5960
|
cron_schedule?: undefined;
|
|
5961
|
+
envelope_schema?: undefined;
|
|
5962
|
+
input_schema?: undefined;
|
|
5963
|
+
input_lookups?: undefined;
|
|
5964
|
+
icon?: undefined;
|
|
5965
|
+
read_safe?: undefined;
|
|
5260
5966
|
data?: undefined;
|
|
5261
5967
|
options?: undefined;
|
|
5262
5968
|
app_id?: undefined;
|
|
@@ -5294,6 +6000,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5294
6000
|
upstream_roles?: undefined;
|
|
5295
6001
|
list_schema?: undefined;
|
|
5296
6002
|
default_pins?: undefined;
|
|
6003
|
+
portals?: undefined;
|
|
5297
6004
|
change_summary?: undefined;
|
|
5298
6005
|
version?: undefined;
|
|
5299
6006
|
relationship?: undefined;
|
|
@@ -5411,6 +6118,9 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5411
6118
|
duration_minutes?: undefined;
|
|
5412
6119
|
resolverPayload?: undefined;
|
|
5413
6120
|
signalKey?: undefined;
|
|
6121
|
+
itemKey?: undefined;
|
|
6122
|
+
payload?: undefined;
|
|
6123
|
+
reciprocal?: undefined;
|
|
5414
6124
|
targetRole?: undefined;
|
|
5415
6125
|
ids?: undefined;
|
|
5416
6126
|
hint?: undefined;
|
|
@@ -5444,6 +6154,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5444
6154
|
consumes?: undefined;
|
|
5445
6155
|
tool_tags?: undefined;
|
|
5446
6156
|
cron_schedule?: undefined;
|
|
6157
|
+
envelope_schema?: undefined;
|
|
6158
|
+
input_schema?: undefined;
|
|
6159
|
+
input_lookups?: undefined;
|
|
6160
|
+
icon?: undefined;
|
|
6161
|
+
read_safe?: undefined;
|
|
5447
6162
|
include_system?: undefined;
|
|
5448
6163
|
app_id?: undefined;
|
|
5449
6164
|
tags?: undefined;
|
|
@@ -5480,6 +6195,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5480
6195
|
upstream_roles?: undefined;
|
|
5481
6196
|
list_schema?: undefined;
|
|
5482
6197
|
default_pins?: undefined;
|
|
6198
|
+
portals?: undefined;
|
|
5483
6199
|
change_summary?: undefined;
|
|
5484
6200
|
version?: undefined;
|
|
5485
6201
|
relationship?: undefined;
|
|
@@ -5588,10 +6304,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5588
6304
|
duration_minutes?: undefined;
|
|
5589
6305
|
resolverPayload?: undefined;
|
|
5590
6306
|
signalKey?: undefined;
|
|
6307
|
+
itemKey?: undefined;
|
|
6308
|
+
payload?: undefined;
|
|
6309
|
+
metadata?: undefined;
|
|
6310
|
+
reciprocal?: undefined;
|
|
5591
6311
|
targetRole?: undefined;
|
|
5592
6312
|
ids?: undefined;
|
|
5593
6313
|
hint?: undefined;
|
|
5594
|
-
metadata?: undefined;
|
|
5595
6314
|
available?: undefined;
|
|
5596
6315
|
facets?: undefined;
|
|
5597
6316
|
orderBy?: undefined;
|
|
@@ -5623,6 +6342,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5623
6342
|
consumes?: undefined;
|
|
5624
6343
|
tool_tags?: undefined;
|
|
5625
6344
|
cron_schedule?: undefined;
|
|
6345
|
+
envelope_schema?: undefined;
|
|
6346
|
+
input_schema?: undefined;
|
|
6347
|
+
input_lookups?: undefined;
|
|
6348
|
+
icon?: undefined;
|
|
6349
|
+
read_safe?: undefined;
|
|
5626
6350
|
include_system?: undefined;
|
|
5627
6351
|
data?: undefined;
|
|
5628
6352
|
options?: undefined;
|
|
@@ -5660,6 +6384,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5660
6384
|
upstream_roles?: undefined;
|
|
5661
6385
|
list_schema?: undefined;
|
|
5662
6386
|
default_pins?: undefined;
|
|
6387
|
+
portals?: undefined;
|
|
5663
6388
|
change_summary?: undefined;
|
|
5664
6389
|
version?: undefined;
|
|
5665
6390
|
relationship?: undefined;
|
|
@@ -5776,10 +6501,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5776
6501
|
duration_minutes?: undefined;
|
|
5777
6502
|
resolverPayload?: undefined;
|
|
5778
6503
|
signalKey?: undefined;
|
|
6504
|
+
itemKey?: undefined;
|
|
6505
|
+
payload?: undefined;
|
|
6506
|
+
metadata?: undefined;
|
|
6507
|
+
reciprocal?: undefined;
|
|
5779
6508
|
targetRole?: undefined;
|
|
5780
6509
|
ids?: undefined;
|
|
5781
6510
|
hint?: undefined;
|
|
5782
|
-
metadata?: undefined;
|
|
5783
6511
|
available?: undefined;
|
|
5784
6512
|
facets?: undefined;
|
|
5785
6513
|
orderBy?: undefined;
|
|
@@ -5811,6 +6539,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5811
6539
|
consumes?: undefined;
|
|
5812
6540
|
tool_tags?: undefined;
|
|
5813
6541
|
cron_schedule?: undefined;
|
|
6542
|
+
envelope_schema?: undefined;
|
|
6543
|
+
input_schema?: undefined;
|
|
6544
|
+
input_lookups?: undefined;
|
|
6545
|
+
icon?: undefined;
|
|
6546
|
+
read_safe?: undefined;
|
|
5814
6547
|
include_system?: undefined;
|
|
5815
6548
|
data?: undefined;
|
|
5816
6549
|
options?: undefined;
|
|
@@ -5848,6 +6581,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5848
6581
|
upstream_roles?: undefined;
|
|
5849
6582
|
list_schema?: undefined;
|
|
5850
6583
|
default_pins?: undefined;
|
|
6584
|
+
portals?: undefined;
|
|
5851
6585
|
change_summary?: undefined;
|
|
5852
6586
|
version?: undefined;
|
|
5853
6587
|
relationship?: undefined;
|
|
@@ -5968,10 +6702,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
5968
6702
|
duration_minutes?: undefined;
|
|
5969
6703
|
resolverPayload?: undefined;
|
|
5970
6704
|
signalKey?: undefined;
|
|
6705
|
+
itemKey?: undefined;
|
|
6706
|
+
payload?: undefined;
|
|
6707
|
+
metadata?: undefined;
|
|
6708
|
+
reciprocal?: undefined;
|
|
5971
6709
|
targetRole?: undefined;
|
|
5972
6710
|
ids?: undefined;
|
|
5973
6711
|
hint?: undefined;
|
|
5974
|
-
metadata?: undefined;
|
|
5975
6712
|
available?: undefined;
|
|
5976
6713
|
facets?: undefined;
|
|
5977
6714
|
orderBy?: undefined;
|
|
@@ -6002,6 +6739,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6002
6739
|
consumes?: undefined;
|
|
6003
6740
|
tool_tags?: undefined;
|
|
6004
6741
|
cron_schedule?: undefined;
|
|
6742
|
+
envelope_schema?: undefined;
|
|
6743
|
+
input_schema?: undefined;
|
|
6744
|
+
input_lookups?: undefined;
|
|
6745
|
+
icon?: undefined;
|
|
6746
|
+
read_safe?: undefined;
|
|
6005
6747
|
include_system?: undefined;
|
|
6006
6748
|
data?: undefined;
|
|
6007
6749
|
options?: undefined;
|
|
@@ -6037,6 +6779,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6037
6779
|
upstream_roles?: undefined;
|
|
6038
6780
|
list_schema?: undefined;
|
|
6039
6781
|
default_pins?: undefined;
|
|
6782
|
+
portals?: undefined;
|
|
6040
6783
|
change_summary?: undefined;
|
|
6041
6784
|
version?: undefined;
|
|
6042
6785
|
relationship?: undefined;
|
|
@@ -6155,10 +6898,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6155
6898
|
duration_minutes?: undefined;
|
|
6156
6899
|
resolverPayload?: undefined;
|
|
6157
6900
|
signalKey?: undefined;
|
|
6901
|
+
itemKey?: undefined;
|
|
6902
|
+
payload?: undefined;
|
|
6903
|
+
metadata?: undefined;
|
|
6904
|
+
reciprocal?: undefined;
|
|
6158
6905
|
targetRole?: undefined;
|
|
6159
6906
|
ids?: undefined;
|
|
6160
6907
|
hint?: undefined;
|
|
6161
|
-
metadata?: undefined;
|
|
6162
6908
|
available?: undefined;
|
|
6163
6909
|
facets?: undefined;
|
|
6164
6910
|
orderBy?: undefined;
|
|
@@ -6190,6 +6936,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6190
6936
|
consumes?: undefined;
|
|
6191
6937
|
tool_tags?: undefined;
|
|
6192
6938
|
cron_schedule?: undefined;
|
|
6939
|
+
envelope_schema?: undefined;
|
|
6940
|
+
input_schema?: undefined;
|
|
6941
|
+
input_lookups?: undefined;
|
|
6942
|
+
icon?: undefined;
|
|
6943
|
+
read_safe?: undefined;
|
|
6193
6944
|
include_system?: undefined;
|
|
6194
6945
|
data?: undefined;
|
|
6195
6946
|
options?: undefined;
|
|
@@ -6226,6 +6977,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6226
6977
|
upstream_roles?: undefined;
|
|
6227
6978
|
list_schema?: undefined;
|
|
6228
6979
|
default_pins?: undefined;
|
|
6980
|
+
portals?: undefined;
|
|
6229
6981
|
change_summary?: undefined;
|
|
6230
6982
|
version?: undefined;
|
|
6231
6983
|
relationship?: undefined;
|
|
@@ -6355,10 +7107,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6355
7107
|
duration_minutes?: undefined;
|
|
6356
7108
|
resolverPayload?: undefined;
|
|
6357
7109
|
signalKey?: undefined;
|
|
7110
|
+
itemKey?: undefined;
|
|
7111
|
+
payload?: undefined;
|
|
7112
|
+
metadata?: undefined;
|
|
7113
|
+
reciprocal?: undefined;
|
|
6358
7114
|
targetRole?: undefined;
|
|
6359
7115
|
ids?: undefined;
|
|
6360
7116
|
hint?: undefined;
|
|
6361
|
-
metadata?: undefined;
|
|
6362
7117
|
available?: undefined;
|
|
6363
7118
|
facets?: undefined;
|
|
6364
7119
|
orderBy?: undefined;
|
|
@@ -6388,6 +7143,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6388
7143
|
consumes?: undefined;
|
|
6389
7144
|
tool_tags?: undefined;
|
|
6390
7145
|
cron_schedule?: undefined;
|
|
7146
|
+
envelope_schema?: undefined;
|
|
7147
|
+
input_schema?: undefined;
|
|
7148
|
+
input_lookups?: undefined;
|
|
7149
|
+
icon?: undefined;
|
|
7150
|
+
read_safe?: undefined;
|
|
6391
7151
|
include_system?: undefined;
|
|
6392
7152
|
data?: undefined;
|
|
6393
7153
|
options?: undefined;
|
|
@@ -6421,6 +7181,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6421
7181
|
upstream_roles?: undefined;
|
|
6422
7182
|
list_schema?: undefined;
|
|
6423
7183
|
default_pins?: undefined;
|
|
7184
|
+
portals?: undefined;
|
|
6424
7185
|
change_summary?: undefined;
|
|
6425
7186
|
version?: undefined;
|
|
6426
7187
|
relationship?: undefined;
|
|
@@ -6535,10 +7296,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6535
7296
|
duration_minutes?: undefined;
|
|
6536
7297
|
resolverPayload?: undefined;
|
|
6537
7298
|
signalKey?: undefined;
|
|
7299
|
+
itemKey?: undefined;
|
|
7300
|
+
payload?: undefined;
|
|
7301
|
+
metadata?: undefined;
|
|
7302
|
+
reciprocal?: undefined;
|
|
6538
7303
|
targetRole?: undefined;
|
|
6539
7304
|
ids?: undefined;
|
|
6540
7305
|
hint?: undefined;
|
|
6541
|
-
metadata?: undefined;
|
|
6542
7306
|
available?: undefined;
|
|
6543
7307
|
facets?: undefined;
|
|
6544
7308
|
orderBy?: undefined;
|
|
@@ -6570,6 +7334,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6570
7334
|
consumes?: undefined;
|
|
6571
7335
|
tool_tags?: undefined;
|
|
6572
7336
|
cron_schedule?: undefined;
|
|
7337
|
+
envelope_schema?: undefined;
|
|
7338
|
+
input_schema?: undefined;
|
|
7339
|
+
input_lookups?: undefined;
|
|
7340
|
+
icon?: undefined;
|
|
7341
|
+
read_safe?: undefined;
|
|
6573
7342
|
include_system?: undefined;
|
|
6574
7343
|
options?: undefined;
|
|
6575
7344
|
app_id?: undefined;
|
|
@@ -6605,6 +7374,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6605
7374
|
upstream_roles?: undefined;
|
|
6606
7375
|
list_schema?: undefined;
|
|
6607
7376
|
default_pins?: undefined;
|
|
7377
|
+
portals?: undefined;
|
|
6608
7378
|
change_summary?: undefined;
|
|
6609
7379
|
version?: undefined;
|
|
6610
7380
|
relationship?: undefined;
|
|
@@ -6717,10 +7487,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6717
7487
|
duration_minutes?: undefined;
|
|
6718
7488
|
resolverPayload?: undefined;
|
|
6719
7489
|
signalKey?: undefined;
|
|
7490
|
+
itemKey?: undefined;
|
|
7491
|
+
payload?: undefined;
|
|
7492
|
+
metadata?: undefined;
|
|
7493
|
+
reciprocal?: undefined;
|
|
6720
7494
|
targetRole?: undefined;
|
|
6721
7495
|
ids?: undefined;
|
|
6722
7496
|
hint?: undefined;
|
|
6723
|
-
metadata?: undefined;
|
|
6724
7497
|
available?: undefined;
|
|
6725
7498
|
facets?: undefined;
|
|
6726
7499
|
orderBy?: undefined;
|
|
@@ -6752,6 +7525,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6752
7525
|
consumes?: undefined;
|
|
6753
7526
|
tool_tags?: undefined;
|
|
6754
7527
|
cron_schedule?: undefined;
|
|
7528
|
+
envelope_schema?: undefined;
|
|
7529
|
+
input_schema?: undefined;
|
|
7530
|
+
input_lookups?: undefined;
|
|
7531
|
+
icon?: undefined;
|
|
7532
|
+
read_safe?: undefined;
|
|
6755
7533
|
include_system?: undefined;
|
|
6756
7534
|
data?: undefined;
|
|
6757
7535
|
options?: undefined;
|
|
@@ -6790,6 +7568,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6790
7568
|
upstream_roles?: undefined;
|
|
6791
7569
|
list_schema?: undefined;
|
|
6792
7570
|
default_pins?: undefined;
|
|
7571
|
+
portals?: undefined;
|
|
6793
7572
|
change_summary?: undefined;
|
|
6794
7573
|
version?: undefined;
|
|
6795
7574
|
relationship?: undefined;
|
|
@@ -6918,10 +7697,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6918
7697
|
duration_minutes?: undefined;
|
|
6919
7698
|
resolverPayload?: undefined;
|
|
6920
7699
|
signalKey?: undefined;
|
|
7700
|
+
itemKey?: undefined;
|
|
7701
|
+
payload?: undefined;
|
|
7702
|
+
metadata?: undefined;
|
|
7703
|
+
reciprocal?: undefined;
|
|
6921
7704
|
targetRole?: undefined;
|
|
6922
7705
|
ids?: undefined;
|
|
6923
7706
|
hint?: undefined;
|
|
6924
|
-
metadata?: undefined;
|
|
6925
7707
|
available?: undefined;
|
|
6926
7708
|
facets?: undefined;
|
|
6927
7709
|
orderBy?: undefined;
|
|
@@ -6952,6 +7734,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6952
7734
|
consumes?: undefined;
|
|
6953
7735
|
tool_tags?: undefined;
|
|
6954
7736
|
cron_schedule?: undefined;
|
|
7737
|
+
envelope_schema?: undefined;
|
|
7738
|
+
input_schema?: undefined;
|
|
7739
|
+
input_lookups?: undefined;
|
|
7740
|
+
icon?: undefined;
|
|
7741
|
+
read_safe?: undefined;
|
|
6955
7742
|
include_system?: undefined;
|
|
6956
7743
|
data?: undefined;
|
|
6957
7744
|
options?: undefined;
|
|
@@ -6987,6 +7774,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
6987
7774
|
upstream_roles?: undefined;
|
|
6988
7775
|
list_schema?: undefined;
|
|
6989
7776
|
default_pins?: undefined;
|
|
7777
|
+
portals?: undefined;
|
|
6990
7778
|
change_summary?: undefined;
|
|
6991
7779
|
version?: undefined;
|
|
6992
7780
|
relationship?: undefined;
|
|
@@ -7098,10 +7886,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7098
7886
|
duration_minutes?: undefined;
|
|
7099
7887
|
resolverPayload?: undefined;
|
|
7100
7888
|
signalKey?: undefined;
|
|
7889
|
+
itemKey?: undefined;
|
|
7890
|
+
payload?: undefined;
|
|
7891
|
+
metadata?: undefined;
|
|
7892
|
+
reciprocal?: undefined;
|
|
7101
7893
|
targetRole?: undefined;
|
|
7102
7894
|
ids?: undefined;
|
|
7103
7895
|
hint?: undefined;
|
|
7104
|
-
metadata?: undefined;
|
|
7105
7896
|
available?: undefined;
|
|
7106
7897
|
facets?: undefined;
|
|
7107
7898
|
orderBy?: undefined;
|
|
@@ -7133,6 +7924,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7133
7924
|
consumes?: undefined;
|
|
7134
7925
|
tool_tags?: undefined;
|
|
7135
7926
|
cron_schedule?: undefined;
|
|
7927
|
+
envelope_schema?: undefined;
|
|
7928
|
+
input_schema?: undefined;
|
|
7929
|
+
input_lookups?: undefined;
|
|
7930
|
+
icon?: undefined;
|
|
7931
|
+
read_safe?: undefined;
|
|
7136
7932
|
include_system?: undefined;
|
|
7137
7933
|
data?: undefined;
|
|
7138
7934
|
options?: undefined;
|
|
@@ -7170,6 +7966,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7170
7966
|
upstream_roles?: undefined;
|
|
7171
7967
|
list_schema?: undefined;
|
|
7172
7968
|
default_pins?: undefined;
|
|
7969
|
+
portals?: undefined;
|
|
7173
7970
|
change_summary?: undefined;
|
|
7174
7971
|
version?: undefined;
|
|
7175
7972
|
relationship?: undefined;
|
|
@@ -7278,10 +8075,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7278
8075
|
duration_minutes?: undefined;
|
|
7279
8076
|
resolverPayload?: undefined;
|
|
7280
8077
|
signalKey?: undefined;
|
|
8078
|
+
itemKey?: undefined;
|
|
8079
|
+
payload?: undefined;
|
|
8080
|
+
metadata?: undefined;
|
|
8081
|
+
reciprocal?: undefined;
|
|
7281
8082
|
targetRole?: undefined;
|
|
7282
8083
|
ids?: undefined;
|
|
7283
8084
|
hint?: undefined;
|
|
7284
|
-
metadata?: undefined;
|
|
7285
8085
|
available?: undefined;
|
|
7286
8086
|
facets?: undefined;
|
|
7287
8087
|
orderBy?: undefined;
|
|
@@ -7313,6 +8113,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7313
8113
|
consumes?: undefined;
|
|
7314
8114
|
tool_tags?: undefined;
|
|
7315
8115
|
cron_schedule?: undefined;
|
|
8116
|
+
envelope_schema?: undefined;
|
|
8117
|
+
input_schema?: undefined;
|
|
8118
|
+
input_lookups?: undefined;
|
|
8119
|
+
icon?: undefined;
|
|
8120
|
+
read_safe?: undefined;
|
|
7316
8121
|
include_system?: undefined;
|
|
7317
8122
|
data?: undefined;
|
|
7318
8123
|
options?: undefined;
|
|
@@ -7350,6 +8155,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7350
8155
|
upstream_roles?: undefined;
|
|
7351
8156
|
list_schema?: undefined;
|
|
7352
8157
|
default_pins?: undefined;
|
|
8158
|
+
portals?: undefined;
|
|
7353
8159
|
change_summary?: undefined;
|
|
7354
8160
|
version?: undefined;
|
|
7355
8161
|
relationship?: undefined;
|
|
@@ -7468,10 +8274,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7468
8274
|
duration_minutes?: undefined;
|
|
7469
8275
|
resolverPayload?: undefined;
|
|
7470
8276
|
signalKey?: undefined;
|
|
8277
|
+
itemKey?: undefined;
|
|
8278
|
+
payload?: undefined;
|
|
8279
|
+
metadata?: undefined;
|
|
8280
|
+
reciprocal?: undefined;
|
|
7471
8281
|
targetRole?: undefined;
|
|
7472
8282
|
ids?: undefined;
|
|
7473
8283
|
hint?: undefined;
|
|
7474
|
-
metadata?: undefined;
|
|
7475
8284
|
available?: undefined;
|
|
7476
8285
|
facets?: undefined;
|
|
7477
8286
|
orderBy?: undefined;
|
|
@@ -7503,6 +8312,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7503
8312
|
consumes?: undefined;
|
|
7504
8313
|
tool_tags?: undefined;
|
|
7505
8314
|
cron_schedule?: undefined;
|
|
8315
|
+
envelope_schema?: undefined;
|
|
8316
|
+
input_schema?: undefined;
|
|
8317
|
+
input_lookups?: undefined;
|
|
8318
|
+
icon?: undefined;
|
|
8319
|
+
read_safe?: undefined;
|
|
7506
8320
|
include_system?: undefined;
|
|
7507
8321
|
data?: undefined;
|
|
7508
8322
|
options?: undefined;
|
|
@@ -7537,6 +8351,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7537
8351
|
upstream_roles?: undefined;
|
|
7538
8352
|
list_schema?: undefined;
|
|
7539
8353
|
default_pins?: undefined;
|
|
8354
|
+
portals?: undefined;
|
|
7540
8355
|
change_summary?: undefined;
|
|
7541
8356
|
version?: undefined;
|
|
7542
8357
|
relationship?: undefined;
|
|
@@ -7642,10 +8457,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7642
8457
|
duration_minutes?: undefined;
|
|
7643
8458
|
resolverPayload?: undefined;
|
|
7644
8459
|
signalKey?: undefined;
|
|
8460
|
+
itemKey?: undefined;
|
|
8461
|
+
payload?: undefined;
|
|
8462
|
+
metadata?: undefined;
|
|
8463
|
+
reciprocal?: undefined;
|
|
7645
8464
|
targetRole?: undefined;
|
|
7646
8465
|
ids?: undefined;
|
|
7647
8466
|
hint?: undefined;
|
|
7648
|
-
metadata?: undefined;
|
|
7649
8467
|
available?: undefined;
|
|
7650
8468
|
facets?: undefined;
|
|
7651
8469
|
orderBy?: undefined;
|
|
@@ -7677,6 +8495,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7677
8495
|
consumes?: undefined;
|
|
7678
8496
|
tool_tags?: undefined;
|
|
7679
8497
|
cron_schedule?: undefined;
|
|
8498
|
+
envelope_schema?: undefined;
|
|
8499
|
+
input_schema?: undefined;
|
|
8500
|
+
input_lookups?: undefined;
|
|
8501
|
+
icon?: undefined;
|
|
8502
|
+
read_safe?: undefined;
|
|
7680
8503
|
include_system?: undefined;
|
|
7681
8504
|
data?: undefined;
|
|
7682
8505
|
options?: undefined;
|
|
@@ -7715,6 +8538,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7715
8538
|
upstream_roles?: undefined;
|
|
7716
8539
|
list_schema?: undefined;
|
|
7717
8540
|
default_pins?: undefined;
|
|
8541
|
+
portals?: undefined;
|
|
7718
8542
|
change_summary?: undefined;
|
|
7719
8543
|
version?: undefined;
|
|
7720
8544
|
relationship?: undefined;
|
|
@@ -7824,10 +8648,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7824
8648
|
duration_minutes?: undefined;
|
|
7825
8649
|
resolverPayload?: undefined;
|
|
7826
8650
|
signalKey?: undefined;
|
|
8651
|
+
itemKey?: undefined;
|
|
8652
|
+
payload?: undefined;
|
|
8653
|
+
metadata?: undefined;
|
|
8654
|
+
reciprocal?: undefined;
|
|
7827
8655
|
targetRole?: undefined;
|
|
7828
8656
|
ids?: undefined;
|
|
7829
8657
|
hint?: undefined;
|
|
7830
|
-
metadata?: undefined;
|
|
7831
8658
|
available?: undefined;
|
|
7832
8659
|
facets?: undefined;
|
|
7833
8660
|
orderBy?: undefined;
|
|
@@ -7859,6 +8686,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7859
8686
|
consumes?: undefined;
|
|
7860
8687
|
tool_tags?: undefined;
|
|
7861
8688
|
cron_schedule?: undefined;
|
|
8689
|
+
envelope_schema?: undefined;
|
|
8690
|
+
input_schema?: undefined;
|
|
8691
|
+
input_lookups?: undefined;
|
|
8692
|
+
icon?: undefined;
|
|
8693
|
+
read_safe?: undefined;
|
|
7862
8694
|
include_system?: undefined;
|
|
7863
8695
|
data?: undefined;
|
|
7864
8696
|
options?: undefined;
|
|
@@ -7895,6 +8727,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
7895
8727
|
upstream_roles?: undefined;
|
|
7896
8728
|
list_schema?: undefined;
|
|
7897
8729
|
default_pins?: undefined;
|
|
8730
|
+
portals?: undefined;
|
|
7898
8731
|
change_summary?: undefined;
|
|
7899
8732
|
version?: undefined;
|
|
7900
8733
|
relationship?: undefined;
|
|
@@ -8055,6 +8888,60 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8055
8888
|
required: string[];
|
|
8056
8889
|
};
|
|
8057
8890
|
};
|
|
8891
|
+
portals: {
|
|
8892
|
+
type: string;
|
|
8893
|
+
items: {
|
|
8894
|
+
type: string;
|
|
8895
|
+
properties: {
|
|
8896
|
+
key: {
|
|
8897
|
+
type: string;
|
|
8898
|
+
};
|
|
8899
|
+
label: {
|
|
8900
|
+
type: string;
|
|
8901
|
+
};
|
|
8902
|
+
rows: {
|
|
8903
|
+
type: string;
|
|
8904
|
+
items: {
|
|
8905
|
+
type: string;
|
|
8906
|
+
items: {
|
|
8907
|
+
type: string;
|
|
8908
|
+
properties: {
|
|
8909
|
+
label: {
|
|
8910
|
+
type: string;
|
|
8911
|
+
};
|
|
8912
|
+
url: {
|
|
8913
|
+
type: string;
|
|
8914
|
+
};
|
|
8915
|
+
badge: {
|
|
8916
|
+
type: string;
|
|
8917
|
+
};
|
|
8918
|
+
};
|
|
8919
|
+
required: string[];
|
|
8920
|
+
};
|
|
8921
|
+
};
|
|
8922
|
+
};
|
|
8923
|
+
counts: {
|
|
8924
|
+
type: string;
|
|
8925
|
+
items: {
|
|
8926
|
+
type: string;
|
|
8927
|
+
properties: {
|
|
8928
|
+
label: {
|
|
8929
|
+
type: string;
|
|
8930
|
+
};
|
|
8931
|
+
url: {
|
|
8932
|
+
type: string;
|
|
8933
|
+
};
|
|
8934
|
+
blurb: {
|
|
8935
|
+
type: string;
|
|
8936
|
+
};
|
|
8937
|
+
};
|
|
8938
|
+
required: string[];
|
|
8939
|
+
};
|
|
8940
|
+
};
|
|
8941
|
+
};
|
|
8942
|
+
required: string[];
|
|
8943
|
+
};
|
|
8944
|
+
};
|
|
8058
8945
|
change_summary: {
|
|
8059
8946
|
type: string;
|
|
8060
8947
|
};
|
|
@@ -8076,10 +8963,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8076
8963
|
duration_minutes?: undefined;
|
|
8077
8964
|
resolverPayload?: undefined;
|
|
8078
8965
|
signalKey?: undefined;
|
|
8966
|
+
itemKey?: undefined;
|
|
8967
|
+
payload?: undefined;
|
|
8968
|
+
metadata?: undefined;
|
|
8969
|
+
reciprocal?: undefined;
|
|
8079
8970
|
targetRole?: undefined;
|
|
8080
8971
|
ids?: undefined;
|
|
8081
8972
|
hint?: undefined;
|
|
8082
|
-
metadata?: undefined;
|
|
8083
8973
|
available?: undefined;
|
|
8084
8974
|
facets?: undefined;
|
|
8085
8975
|
orderBy?: undefined;
|
|
@@ -8110,6 +9000,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8110
9000
|
consumes?: undefined;
|
|
8111
9001
|
tool_tags?: undefined;
|
|
8112
9002
|
cron_schedule?: undefined;
|
|
9003
|
+
envelope_schema?: undefined;
|
|
9004
|
+
input_schema?: undefined;
|
|
9005
|
+
input_lookups?: undefined;
|
|
9006
|
+
icon?: undefined;
|
|
9007
|
+
read_safe?: undefined;
|
|
8113
9008
|
include_system?: undefined;
|
|
8114
9009
|
data?: undefined;
|
|
8115
9010
|
options?: undefined;
|
|
@@ -8238,10 +9133,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8238
9133
|
duration_minutes?: undefined;
|
|
8239
9134
|
resolverPayload?: undefined;
|
|
8240
9135
|
signalKey?: undefined;
|
|
9136
|
+
itemKey?: undefined;
|
|
9137
|
+
payload?: undefined;
|
|
9138
|
+
metadata?: undefined;
|
|
9139
|
+
reciprocal?: undefined;
|
|
8241
9140
|
targetRole?: undefined;
|
|
8242
9141
|
ids?: undefined;
|
|
8243
9142
|
hint?: undefined;
|
|
8244
|
-
metadata?: undefined;
|
|
8245
9143
|
available?: undefined;
|
|
8246
9144
|
facets?: undefined;
|
|
8247
9145
|
orderBy?: undefined;
|
|
@@ -8273,6 +9171,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8273
9171
|
consumes?: undefined;
|
|
8274
9172
|
tool_tags?: undefined;
|
|
8275
9173
|
cron_schedule?: undefined;
|
|
9174
|
+
envelope_schema?: undefined;
|
|
9175
|
+
input_schema?: undefined;
|
|
9176
|
+
input_lookups?: undefined;
|
|
9177
|
+
icon?: undefined;
|
|
9178
|
+
read_safe?: undefined;
|
|
8276
9179
|
include_system?: undefined;
|
|
8277
9180
|
data?: undefined;
|
|
8278
9181
|
options?: undefined;
|
|
@@ -8311,6 +9214,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8311
9214
|
upstream_roles?: undefined;
|
|
8312
9215
|
list_schema?: undefined;
|
|
8313
9216
|
default_pins?: undefined;
|
|
9217
|
+
portals?: undefined;
|
|
8314
9218
|
change_summary?: undefined;
|
|
8315
9219
|
relationship?: undefined;
|
|
8316
9220
|
max_events?: undefined;
|
|
@@ -8416,10 +9320,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8416
9320
|
duration_minutes?: undefined;
|
|
8417
9321
|
resolverPayload?: undefined;
|
|
8418
9322
|
signalKey?: undefined;
|
|
9323
|
+
itemKey?: undefined;
|
|
9324
|
+
payload?: undefined;
|
|
9325
|
+
metadata?: undefined;
|
|
9326
|
+
reciprocal?: undefined;
|
|
8419
9327
|
targetRole?: undefined;
|
|
8420
9328
|
ids?: undefined;
|
|
8421
9329
|
hint?: undefined;
|
|
8422
|
-
metadata?: undefined;
|
|
8423
9330
|
available?: undefined;
|
|
8424
9331
|
facets?: undefined;
|
|
8425
9332
|
orderBy?: undefined;
|
|
@@ -8450,6 +9357,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8450
9357
|
consumes?: undefined;
|
|
8451
9358
|
tool_tags?: undefined;
|
|
8452
9359
|
cron_schedule?: undefined;
|
|
9360
|
+
envelope_schema?: undefined;
|
|
9361
|
+
input_schema?: undefined;
|
|
9362
|
+
input_lookups?: undefined;
|
|
9363
|
+
icon?: undefined;
|
|
9364
|
+
read_safe?: undefined;
|
|
8453
9365
|
include_system?: undefined;
|
|
8454
9366
|
data?: undefined;
|
|
8455
9367
|
options?: undefined;
|
|
@@ -8488,6 +9400,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8488
9400
|
upstream_roles?: undefined;
|
|
8489
9401
|
list_schema?: undefined;
|
|
8490
9402
|
default_pins?: undefined;
|
|
9403
|
+
portals?: undefined;
|
|
8491
9404
|
change_summary?: undefined;
|
|
8492
9405
|
version?: undefined;
|
|
8493
9406
|
relationship?: undefined;
|
|
@@ -8600,10 +9513,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8600
9513
|
duration_minutes?: undefined;
|
|
8601
9514
|
resolverPayload?: undefined;
|
|
8602
9515
|
signalKey?: undefined;
|
|
9516
|
+
itemKey?: undefined;
|
|
9517
|
+
payload?: undefined;
|
|
9518
|
+
metadata?: undefined;
|
|
9519
|
+
reciprocal?: undefined;
|
|
8603
9520
|
targetRole?: undefined;
|
|
8604
9521
|
ids?: undefined;
|
|
8605
9522
|
hint?: undefined;
|
|
8606
|
-
metadata?: undefined;
|
|
8607
9523
|
available?: undefined;
|
|
8608
9524
|
facets?: undefined;
|
|
8609
9525
|
orderBy?: undefined;
|
|
@@ -8633,6 +9549,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8633
9549
|
consumes?: undefined;
|
|
8634
9550
|
tool_tags?: undefined;
|
|
8635
9551
|
cron_schedule?: undefined;
|
|
9552
|
+
envelope_schema?: undefined;
|
|
9553
|
+
input_schema?: undefined;
|
|
9554
|
+
input_lookups?: undefined;
|
|
9555
|
+
icon?: undefined;
|
|
9556
|
+
read_safe?: undefined;
|
|
8636
9557
|
include_system?: undefined;
|
|
8637
9558
|
data?: undefined;
|
|
8638
9559
|
options?: undefined;
|
|
@@ -8670,6 +9591,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8670
9591
|
upstream_roles?: undefined;
|
|
8671
9592
|
list_schema?: undefined;
|
|
8672
9593
|
default_pins?: undefined;
|
|
9594
|
+
portals?: undefined;
|
|
8673
9595
|
change_summary?: undefined;
|
|
8674
9596
|
version?: undefined;
|
|
8675
9597
|
relationship?: undefined;
|
|
@@ -8782,10 +9704,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8782
9704
|
duration_minutes?: undefined;
|
|
8783
9705
|
resolverPayload?: undefined;
|
|
8784
9706
|
signalKey?: undefined;
|
|
9707
|
+
itemKey?: undefined;
|
|
9708
|
+
payload?: undefined;
|
|
9709
|
+
metadata?: undefined;
|
|
9710
|
+
reciprocal?: undefined;
|
|
8785
9711
|
targetRole?: undefined;
|
|
8786
9712
|
ids?: undefined;
|
|
8787
9713
|
hint?: undefined;
|
|
8788
|
-
metadata?: undefined;
|
|
8789
9714
|
available?: undefined;
|
|
8790
9715
|
facets?: undefined;
|
|
8791
9716
|
orderBy?: undefined;
|
|
@@ -8816,6 +9741,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8816
9741
|
consumes?: undefined;
|
|
8817
9742
|
tool_tags?: undefined;
|
|
8818
9743
|
cron_schedule?: undefined;
|
|
9744
|
+
envelope_schema?: undefined;
|
|
9745
|
+
input_schema?: undefined;
|
|
9746
|
+
input_lookups?: undefined;
|
|
9747
|
+
icon?: undefined;
|
|
9748
|
+
read_safe?: undefined;
|
|
8819
9749
|
include_system?: undefined;
|
|
8820
9750
|
data?: undefined;
|
|
8821
9751
|
options?: undefined;
|
|
@@ -8854,6 +9784,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8854
9784
|
upstream_roles?: undefined;
|
|
8855
9785
|
list_schema?: undefined;
|
|
8856
9786
|
default_pins?: undefined;
|
|
9787
|
+
portals?: undefined;
|
|
8857
9788
|
change_summary?: undefined;
|
|
8858
9789
|
version?: undefined;
|
|
8859
9790
|
max_events?: undefined;
|
|
@@ -8961,10 +9892,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8961
9892
|
duration_minutes?: undefined;
|
|
8962
9893
|
resolverPayload?: undefined;
|
|
8963
9894
|
signalKey?: undefined;
|
|
9895
|
+
itemKey?: undefined;
|
|
9896
|
+
payload?: undefined;
|
|
9897
|
+
metadata?: undefined;
|
|
9898
|
+
reciprocal?: undefined;
|
|
8964
9899
|
targetRole?: undefined;
|
|
8965
9900
|
ids?: undefined;
|
|
8966
9901
|
hint?: undefined;
|
|
8967
|
-
metadata?: undefined;
|
|
8968
9902
|
available?: undefined;
|
|
8969
9903
|
facets?: undefined;
|
|
8970
9904
|
orderBy?: undefined;
|
|
@@ -8995,6 +9929,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
8995
9929
|
consumes?: undefined;
|
|
8996
9930
|
tool_tags?: undefined;
|
|
8997
9931
|
cron_schedule?: undefined;
|
|
9932
|
+
envelope_schema?: undefined;
|
|
9933
|
+
input_schema?: undefined;
|
|
9934
|
+
input_lookups?: undefined;
|
|
9935
|
+
icon?: undefined;
|
|
9936
|
+
read_safe?: undefined;
|
|
8998
9937
|
include_system?: undefined;
|
|
8999
9938
|
data?: undefined;
|
|
9000
9939
|
options?: undefined;
|
|
@@ -9033,6 +9972,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9033
9972
|
upstream_roles?: undefined;
|
|
9034
9973
|
list_schema?: undefined;
|
|
9035
9974
|
default_pins?: undefined;
|
|
9975
|
+
portals?: undefined;
|
|
9036
9976
|
change_summary?: undefined;
|
|
9037
9977
|
version?: undefined;
|
|
9038
9978
|
relationship?: undefined;
|
|
@@ -9142,10 +10082,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9142
10082
|
duration_minutes?: undefined;
|
|
9143
10083
|
resolverPayload?: undefined;
|
|
9144
10084
|
signalKey?: undefined;
|
|
10085
|
+
itemKey?: undefined;
|
|
10086
|
+
payload?: undefined;
|
|
10087
|
+
metadata?: undefined;
|
|
10088
|
+
reciprocal?: undefined;
|
|
9145
10089
|
targetRole?: undefined;
|
|
9146
10090
|
ids?: undefined;
|
|
9147
10091
|
hint?: undefined;
|
|
9148
|
-
metadata?: undefined;
|
|
9149
10092
|
available?: undefined;
|
|
9150
10093
|
facets?: undefined;
|
|
9151
10094
|
orderBy?: undefined;
|
|
@@ -9176,6 +10119,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9176
10119
|
consumes?: undefined;
|
|
9177
10120
|
tool_tags?: undefined;
|
|
9178
10121
|
cron_schedule?: undefined;
|
|
10122
|
+
envelope_schema?: undefined;
|
|
10123
|
+
input_schema?: undefined;
|
|
10124
|
+
input_lookups?: undefined;
|
|
10125
|
+
icon?: undefined;
|
|
10126
|
+
read_safe?: undefined;
|
|
9179
10127
|
include_system?: undefined;
|
|
9180
10128
|
data?: undefined;
|
|
9181
10129
|
options?: undefined;
|
|
@@ -9213,6 +10161,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9213
10161
|
upstream_roles?: undefined;
|
|
9214
10162
|
list_schema?: undefined;
|
|
9215
10163
|
default_pins?: undefined;
|
|
10164
|
+
portals?: undefined;
|
|
9216
10165
|
change_summary?: undefined;
|
|
9217
10166
|
version?: undefined;
|
|
9218
10167
|
relationship?: undefined;
|
|
@@ -9319,10 +10268,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9319
10268
|
duration_minutes?: undefined;
|
|
9320
10269
|
resolverPayload?: undefined;
|
|
9321
10270
|
signalKey?: undefined;
|
|
10271
|
+
itemKey?: undefined;
|
|
10272
|
+
payload?: undefined;
|
|
10273
|
+
metadata?: undefined;
|
|
10274
|
+
reciprocal?: undefined;
|
|
9322
10275
|
targetRole?: undefined;
|
|
9323
10276
|
ids?: undefined;
|
|
9324
10277
|
hint?: undefined;
|
|
9325
|
-
metadata?: undefined;
|
|
9326
10278
|
available?: undefined;
|
|
9327
10279
|
facets?: undefined;
|
|
9328
10280
|
orderBy?: undefined;
|
|
@@ -9354,6 +10306,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9354
10306
|
consumes?: undefined;
|
|
9355
10307
|
tool_tags?: undefined;
|
|
9356
10308
|
cron_schedule?: undefined;
|
|
10309
|
+
envelope_schema?: undefined;
|
|
10310
|
+
input_schema?: undefined;
|
|
10311
|
+
input_lookups?: undefined;
|
|
10312
|
+
icon?: undefined;
|
|
10313
|
+
read_safe?: undefined;
|
|
9357
10314
|
include_system?: undefined;
|
|
9358
10315
|
data?: undefined;
|
|
9359
10316
|
options?: undefined;
|
|
@@ -9391,6 +10348,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9391
10348
|
upstream_roles?: undefined;
|
|
9392
10349
|
list_schema?: undefined;
|
|
9393
10350
|
default_pins?: undefined;
|
|
10351
|
+
portals?: undefined;
|
|
9394
10352
|
change_summary?: undefined;
|
|
9395
10353
|
version?: undefined;
|
|
9396
10354
|
relationship?: undefined;
|
|
@@ -9513,10 +10471,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9513
10471
|
duration_minutes?: undefined;
|
|
9514
10472
|
resolverPayload?: undefined;
|
|
9515
10473
|
signalKey?: undefined;
|
|
10474
|
+
itemKey?: undefined;
|
|
10475
|
+
payload?: undefined;
|
|
10476
|
+
metadata?: undefined;
|
|
10477
|
+
reciprocal?: undefined;
|
|
9516
10478
|
targetRole?: undefined;
|
|
9517
10479
|
ids?: undefined;
|
|
9518
10480
|
hint?: undefined;
|
|
9519
|
-
metadata?: undefined;
|
|
9520
10481
|
available?: undefined;
|
|
9521
10482
|
facets?: undefined;
|
|
9522
10483
|
orderBy?: undefined;
|
|
@@ -9548,6 +10509,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9548
10509
|
consumes?: undefined;
|
|
9549
10510
|
tool_tags?: undefined;
|
|
9550
10511
|
cron_schedule?: undefined;
|
|
10512
|
+
envelope_schema?: undefined;
|
|
10513
|
+
input_schema?: undefined;
|
|
10514
|
+
input_lookups?: undefined;
|
|
10515
|
+
icon?: undefined;
|
|
10516
|
+
read_safe?: undefined;
|
|
9551
10517
|
include_system?: undefined;
|
|
9552
10518
|
data?: undefined;
|
|
9553
10519
|
options?: undefined;
|
|
@@ -9585,6 +10551,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9585
10551
|
upstream_roles?: undefined;
|
|
9586
10552
|
list_schema?: undefined;
|
|
9587
10553
|
default_pins?: undefined;
|
|
10554
|
+
portals?: undefined;
|
|
9588
10555
|
change_summary?: undefined;
|
|
9589
10556
|
version?: undefined;
|
|
9590
10557
|
relationship?: undefined;
|
|
@@ -9695,10 +10662,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9695
10662
|
duration_minutes?: undefined;
|
|
9696
10663
|
resolverPayload?: undefined;
|
|
9697
10664
|
signalKey?: undefined;
|
|
10665
|
+
itemKey?: undefined;
|
|
10666
|
+
payload?: undefined;
|
|
10667
|
+
metadata?: undefined;
|
|
10668
|
+
reciprocal?: undefined;
|
|
9698
10669
|
targetRole?: undefined;
|
|
9699
10670
|
ids?: undefined;
|
|
9700
10671
|
hint?: undefined;
|
|
9701
|
-
metadata?: undefined;
|
|
9702
10672
|
available?: undefined;
|
|
9703
10673
|
facets?: undefined;
|
|
9704
10674
|
orderBy?: undefined;
|
|
@@ -9730,6 +10700,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9730
10700
|
consumes?: undefined;
|
|
9731
10701
|
tool_tags?: undefined;
|
|
9732
10702
|
cron_schedule?: undefined;
|
|
10703
|
+
envelope_schema?: undefined;
|
|
10704
|
+
input_schema?: undefined;
|
|
10705
|
+
input_lookups?: undefined;
|
|
10706
|
+
icon?: undefined;
|
|
10707
|
+
read_safe?: undefined;
|
|
9733
10708
|
include_system?: undefined;
|
|
9734
10709
|
data?: undefined;
|
|
9735
10710
|
options?: undefined;
|
|
@@ -9767,6 +10742,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9767
10742
|
upstream_roles?: undefined;
|
|
9768
10743
|
list_schema?: undefined;
|
|
9769
10744
|
default_pins?: undefined;
|
|
10745
|
+
portals?: undefined;
|
|
9770
10746
|
change_summary?: undefined;
|
|
9771
10747
|
version?: undefined;
|
|
9772
10748
|
relationship?: undefined;
|
|
@@ -9877,10 +10853,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9877
10853
|
duration_minutes?: undefined;
|
|
9878
10854
|
resolverPayload?: undefined;
|
|
9879
10855
|
signalKey?: undefined;
|
|
10856
|
+
itemKey?: undefined;
|
|
10857
|
+
payload?: undefined;
|
|
10858
|
+
metadata?: undefined;
|
|
10859
|
+
reciprocal?: undefined;
|
|
9880
10860
|
targetRole?: undefined;
|
|
9881
10861
|
ids?: undefined;
|
|
9882
10862
|
hint?: undefined;
|
|
9883
|
-
metadata?: undefined;
|
|
9884
10863
|
available?: undefined;
|
|
9885
10864
|
facets?: undefined;
|
|
9886
10865
|
orderBy?: undefined;
|
|
@@ -9912,6 +10891,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9912
10891
|
consumes?: undefined;
|
|
9913
10892
|
tool_tags?: undefined;
|
|
9914
10893
|
cron_schedule?: undefined;
|
|
10894
|
+
envelope_schema?: undefined;
|
|
10895
|
+
input_schema?: undefined;
|
|
10896
|
+
input_lookups?: undefined;
|
|
10897
|
+
icon?: undefined;
|
|
10898
|
+
read_safe?: undefined;
|
|
9915
10899
|
include_system?: undefined;
|
|
9916
10900
|
data?: undefined;
|
|
9917
10901
|
options?: undefined;
|
|
@@ -9949,6 +10933,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
9949
10933
|
upstream_roles?: undefined;
|
|
9950
10934
|
list_schema?: undefined;
|
|
9951
10935
|
default_pins?: undefined;
|
|
10936
|
+
portals?: undefined;
|
|
9952
10937
|
change_summary?: undefined;
|
|
9953
10938
|
version?: undefined;
|
|
9954
10939
|
relationship?: undefined;
|
|
@@ -10069,10 +11054,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10069
11054
|
duration_minutes?: undefined;
|
|
10070
11055
|
resolverPayload?: undefined;
|
|
10071
11056
|
signalKey?: undefined;
|
|
11057
|
+
itemKey?: undefined;
|
|
11058
|
+
payload?: undefined;
|
|
11059
|
+
metadata?: undefined;
|
|
11060
|
+
reciprocal?: undefined;
|
|
10072
11061
|
targetRole?: undefined;
|
|
10073
11062
|
ids?: undefined;
|
|
10074
11063
|
hint?: undefined;
|
|
10075
|
-
metadata?: undefined;
|
|
10076
11064
|
available?: undefined;
|
|
10077
11065
|
facets?: undefined;
|
|
10078
11066
|
orderBy?: undefined;
|
|
@@ -10104,6 +11092,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10104
11092
|
consumes?: undefined;
|
|
10105
11093
|
tool_tags?: undefined;
|
|
10106
11094
|
cron_schedule?: undefined;
|
|
11095
|
+
envelope_schema?: undefined;
|
|
11096
|
+
input_schema?: undefined;
|
|
11097
|
+
input_lookups?: undefined;
|
|
11098
|
+
icon?: undefined;
|
|
11099
|
+
read_safe?: undefined;
|
|
10107
11100
|
include_system?: undefined;
|
|
10108
11101
|
data?: undefined;
|
|
10109
11102
|
options?: undefined;
|
|
@@ -10142,6 +11135,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10142
11135
|
upstream_roles?: undefined;
|
|
10143
11136
|
list_schema?: undefined;
|
|
10144
11137
|
default_pins?: undefined;
|
|
11138
|
+
portals?: undefined;
|
|
10145
11139
|
change_summary?: undefined;
|
|
10146
11140
|
version?: undefined;
|
|
10147
11141
|
relationship?: undefined;
|
|
@@ -10250,10 +11244,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10250
11244
|
duration_minutes?: undefined;
|
|
10251
11245
|
resolverPayload?: undefined;
|
|
10252
11246
|
signalKey?: undefined;
|
|
11247
|
+
itemKey?: undefined;
|
|
11248
|
+
payload?: undefined;
|
|
11249
|
+
metadata?: undefined;
|
|
11250
|
+
reciprocal?: undefined;
|
|
10253
11251
|
targetRole?: undefined;
|
|
10254
11252
|
ids?: undefined;
|
|
10255
11253
|
hint?: undefined;
|
|
10256
|
-
metadata?: undefined;
|
|
10257
11254
|
available?: undefined;
|
|
10258
11255
|
facets?: undefined;
|
|
10259
11256
|
orderBy?: undefined;
|
|
@@ -10285,6 +11282,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10285
11282
|
consumes?: undefined;
|
|
10286
11283
|
tool_tags?: undefined;
|
|
10287
11284
|
cron_schedule?: undefined;
|
|
11285
|
+
envelope_schema?: undefined;
|
|
11286
|
+
input_schema?: undefined;
|
|
11287
|
+
input_lookups?: undefined;
|
|
11288
|
+
icon?: undefined;
|
|
11289
|
+
read_safe?: undefined;
|
|
10288
11290
|
include_system?: undefined;
|
|
10289
11291
|
data?: undefined;
|
|
10290
11292
|
options?: undefined;
|
|
@@ -10323,6 +11325,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10323
11325
|
upstream_roles?: undefined;
|
|
10324
11326
|
list_schema?: undefined;
|
|
10325
11327
|
default_pins?: undefined;
|
|
11328
|
+
portals?: undefined;
|
|
10326
11329
|
change_summary?: undefined;
|
|
10327
11330
|
version?: undefined;
|
|
10328
11331
|
relationship?: undefined;
|
|
@@ -10454,10 +11457,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10454
11457
|
duration_minutes?: undefined;
|
|
10455
11458
|
resolverPayload?: undefined;
|
|
10456
11459
|
signalKey?: undefined;
|
|
11460
|
+
itemKey?: undefined;
|
|
11461
|
+
payload?: undefined;
|
|
11462
|
+
metadata?: undefined;
|
|
11463
|
+
reciprocal?: undefined;
|
|
10457
11464
|
targetRole?: undefined;
|
|
10458
11465
|
ids?: undefined;
|
|
10459
11466
|
hint?: undefined;
|
|
10460
|
-
metadata?: undefined;
|
|
10461
11467
|
available?: undefined;
|
|
10462
11468
|
facets?: undefined;
|
|
10463
11469
|
orderBy?: undefined;
|
|
@@ -10488,6 +11494,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10488
11494
|
consumes?: undefined;
|
|
10489
11495
|
tool_tags?: undefined;
|
|
10490
11496
|
cron_schedule?: undefined;
|
|
11497
|
+
envelope_schema?: undefined;
|
|
11498
|
+
input_schema?: undefined;
|
|
11499
|
+
input_lookups?: undefined;
|
|
11500
|
+
icon?: undefined;
|
|
11501
|
+
read_safe?: undefined;
|
|
10491
11502
|
include_system?: undefined;
|
|
10492
11503
|
data?: undefined;
|
|
10493
11504
|
options?: undefined;
|
|
@@ -10526,6 +11537,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10526
11537
|
upstream_roles?: undefined;
|
|
10527
11538
|
list_schema?: undefined;
|
|
10528
11539
|
default_pins?: undefined;
|
|
11540
|
+
portals?: undefined;
|
|
10529
11541
|
change_summary?: undefined;
|
|
10530
11542
|
version?: undefined;
|
|
10531
11543
|
relationship?: undefined;
|
|
@@ -10647,10 +11659,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10647
11659
|
duration_minutes?: undefined;
|
|
10648
11660
|
resolverPayload?: undefined;
|
|
10649
11661
|
signalKey?: undefined;
|
|
11662
|
+
itemKey?: undefined;
|
|
11663
|
+
payload?: undefined;
|
|
11664
|
+
metadata?: undefined;
|
|
11665
|
+
reciprocal?: undefined;
|
|
10650
11666
|
targetRole?: undefined;
|
|
10651
11667
|
ids?: undefined;
|
|
10652
11668
|
hint?: undefined;
|
|
10653
|
-
metadata?: undefined;
|
|
10654
11669
|
available?: undefined;
|
|
10655
11670
|
facets?: undefined;
|
|
10656
11671
|
orderBy?: undefined;
|
|
@@ -10681,6 +11696,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10681
11696
|
consumes?: undefined;
|
|
10682
11697
|
tool_tags?: undefined;
|
|
10683
11698
|
cron_schedule?: undefined;
|
|
11699
|
+
envelope_schema?: undefined;
|
|
11700
|
+
input_schema?: undefined;
|
|
11701
|
+
input_lookups?: undefined;
|
|
11702
|
+
icon?: undefined;
|
|
11703
|
+
read_safe?: undefined;
|
|
10684
11704
|
include_system?: undefined;
|
|
10685
11705
|
data?: undefined;
|
|
10686
11706
|
options?: undefined;
|
|
@@ -10719,6 +11739,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10719
11739
|
upstream_roles?: undefined;
|
|
10720
11740
|
list_schema?: undefined;
|
|
10721
11741
|
default_pins?: undefined;
|
|
11742
|
+
portals?: undefined;
|
|
10722
11743
|
change_summary?: undefined;
|
|
10723
11744
|
version?: undefined;
|
|
10724
11745
|
relationship?: undefined;
|
|
@@ -10822,10 +11843,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10822
11843
|
duration_minutes?: undefined;
|
|
10823
11844
|
resolverPayload?: undefined;
|
|
10824
11845
|
signalKey?: undefined;
|
|
11846
|
+
itemKey?: undefined;
|
|
11847
|
+
payload?: undefined;
|
|
11848
|
+
metadata?: undefined;
|
|
11849
|
+
reciprocal?: undefined;
|
|
10825
11850
|
targetRole?: undefined;
|
|
10826
11851
|
ids?: undefined;
|
|
10827
11852
|
hint?: undefined;
|
|
10828
|
-
metadata?: undefined;
|
|
10829
11853
|
available?: undefined;
|
|
10830
11854
|
facets?: undefined;
|
|
10831
11855
|
orderBy?: undefined;
|
|
@@ -10857,6 +11881,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10857
11881
|
consumes?: undefined;
|
|
10858
11882
|
tool_tags?: undefined;
|
|
10859
11883
|
cron_schedule?: undefined;
|
|
11884
|
+
envelope_schema?: undefined;
|
|
11885
|
+
input_schema?: undefined;
|
|
11886
|
+
input_lookups?: undefined;
|
|
11887
|
+
icon?: undefined;
|
|
11888
|
+
read_safe?: undefined;
|
|
10860
11889
|
include_system?: undefined;
|
|
10861
11890
|
data?: undefined;
|
|
10862
11891
|
options?: undefined;
|
|
@@ -10895,6 +11924,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
10895
11924
|
upstream_roles?: undefined;
|
|
10896
11925
|
list_schema?: undefined;
|
|
10897
11926
|
default_pins?: undefined;
|
|
11927
|
+
portals?: undefined;
|
|
10898
11928
|
change_summary?: undefined;
|
|
10899
11929
|
version?: undefined;
|
|
10900
11930
|
relationship?: undefined;
|
|
@@ -11024,10 +12054,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11024
12054
|
duration_minutes?: undefined;
|
|
11025
12055
|
resolverPayload?: undefined;
|
|
11026
12056
|
signalKey?: undefined;
|
|
12057
|
+
itemKey?: undefined;
|
|
12058
|
+
payload?: undefined;
|
|
12059
|
+
metadata?: undefined;
|
|
12060
|
+
reciprocal?: undefined;
|
|
11027
12061
|
targetRole?: undefined;
|
|
11028
12062
|
ids?: undefined;
|
|
11029
12063
|
hint?: undefined;
|
|
11030
|
-
metadata?: undefined;
|
|
11031
12064
|
available?: undefined;
|
|
11032
12065
|
facets?: undefined;
|
|
11033
12066
|
orderBy?: undefined;
|
|
@@ -11058,6 +12091,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11058
12091
|
consumes?: undefined;
|
|
11059
12092
|
tool_tags?: undefined;
|
|
11060
12093
|
cron_schedule?: undefined;
|
|
12094
|
+
envelope_schema?: undefined;
|
|
12095
|
+
input_schema?: undefined;
|
|
12096
|
+
input_lookups?: undefined;
|
|
12097
|
+
icon?: undefined;
|
|
12098
|
+
read_safe?: undefined;
|
|
11061
12099
|
include_system?: undefined;
|
|
11062
12100
|
data?: undefined;
|
|
11063
12101
|
options?: undefined;
|
|
@@ -11096,6 +12134,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11096
12134
|
upstream_roles?: undefined;
|
|
11097
12135
|
list_schema?: undefined;
|
|
11098
12136
|
default_pins?: undefined;
|
|
12137
|
+
portals?: undefined;
|
|
11099
12138
|
change_summary?: undefined;
|
|
11100
12139
|
version?: undefined;
|
|
11101
12140
|
relationship?: undefined;
|
|
@@ -11196,10 +12235,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11196
12235
|
duration_minutes?: undefined;
|
|
11197
12236
|
resolverPayload?: undefined;
|
|
11198
12237
|
signalKey?: undefined;
|
|
12238
|
+
itemKey?: undefined;
|
|
12239
|
+
payload?: undefined;
|
|
12240
|
+
metadata?: undefined;
|
|
12241
|
+
reciprocal?: undefined;
|
|
11199
12242
|
targetRole?: undefined;
|
|
11200
12243
|
ids?: undefined;
|
|
11201
12244
|
hint?: undefined;
|
|
11202
|
-
metadata?: undefined;
|
|
11203
12245
|
available?: undefined;
|
|
11204
12246
|
facets?: undefined;
|
|
11205
12247
|
orderBy?: undefined;
|
|
@@ -11231,6 +12273,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11231
12273
|
consumes?: undefined;
|
|
11232
12274
|
tool_tags?: undefined;
|
|
11233
12275
|
cron_schedule?: undefined;
|
|
12276
|
+
envelope_schema?: undefined;
|
|
12277
|
+
input_schema?: undefined;
|
|
12278
|
+
input_lookups?: undefined;
|
|
12279
|
+
icon?: undefined;
|
|
12280
|
+
read_safe?: undefined;
|
|
11234
12281
|
include_system?: undefined;
|
|
11235
12282
|
data?: undefined;
|
|
11236
12283
|
options?: undefined;
|
|
@@ -11269,6 +12316,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11269
12316
|
upstream_roles?: undefined;
|
|
11270
12317
|
list_schema?: undefined;
|
|
11271
12318
|
default_pins?: undefined;
|
|
12319
|
+
portals?: undefined;
|
|
11272
12320
|
change_summary?: undefined;
|
|
11273
12321
|
version?: undefined;
|
|
11274
12322
|
relationship?: undefined;
|
|
@@ -11397,10 +12445,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11397
12445
|
duration_minutes?: undefined;
|
|
11398
12446
|
resolverPayload?: undefined;
|
|
11399
12447
|
signalKey?: undefined;
|
|
12448
|
+
itemKey?: undefined;
|
|
12449
|
+
payload?: undefined;
|
|
12450
|
+
metadata?: undefined;
|
|
12451
|
+
reciprocal?: undefined;
|
|
11400
12452
|
targetRole?: undefined;
|
|
11401
12453
|
ids?: undefined;
|
|
11402
12454
|
hint?: undefined;
|
|
11403
|
-
metadata?: undefined;
|
|
11404
12455
|
available?: undefined;
|
|
11405
12456
|
facets?: undefined;
|
|
11406
12457
|
orderBy?: undefined;
|
|
@@ -11430,6 +12481,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11430
12481
|
consumes?: undefined;
|
|
11431
12482
|
tool_tags?: undefined;
|
|
11432
12483
|
cron_schedule?: undefined;
|
|
12484
|
+
envelope_schema?: undefined;
|
|
12485
|
+
input_schema?: undefined;
|
|
12486
|
+
input_lookups?: undefined;
|
|
12487
|
+
icon?: undefined;
|
|
12488
|
+
read_safe?: undefined;
|
|
11433
12489
|
include_system?: undefined;
|
|
11434
12490
|
data?: undefined;
|
|
11435
12491
|
options?: undefined;
|
|
@@ -11466,6 +12522,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11466
12522
|
upstream_roles?: undefined;
|
|
11467
12523
|
list_schema?: undefined;
|
|
11468
12524
|
default_pins?: undefined;
|
|
12525
|
+
portals?: undefined;
|
|
11469
12526
|
change_summary?: undefined;
|
|
11470
12527
|
version?: undefined;
|
|
11471
12528
|
relationship?: undefined;
|
|
@@ -11580,10 +12637,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11580
12637
|
duration_minutes?: undefined;
|
|
11581
12638
|
resolverPayload?: undefined;
|
|
11582
12639
|
signalKey?: undefined;
|
|
12640
|
+
itemKey?: undefined;
|
|
12641
|
+
payload?: undefined;
|
|
12642
|
+
metadata?: undefined;
|
|
12643
|
+
reciprocal?: undefined;
|
|
11583
12644
|
targetRole?: undefined;
|
|
11584
12645
|
ids?: undefined;
|
|
11585
12646
|
hint?: undefined;
|
|
11586
|
-
metadata?: undefined;
|
|
11587
12647
|
available?: undefined;
|
|
11588
12648
|
facets?: undefined;
|
|
11589
12649
|
orderBy?: undefined;
|
|
@@ -11614,6 +12674,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11614
12674
|
consumes?: undefined;
|
|
11615
12675
|
tool_tags?: undefined;
|
|
11616
12676
|
cron_schedule?: undefined;
|
|
12677
|
+
envelope_schema?: undefined;
|
|
12678
|
+
input_schema?: undefined;
|
|
12679
|
+
input_lookups?: undefined;
|
|
12680
|
+
icon?: undefined;
|
|
12681
|
+
read_safe?: undefined;
|
|
11617
12682
|
include_system?: undefined;
|
|
11618
12683
|
data?: undefined;
|
|
11619
12684
|
options?: undefined;
|
|
@@ -11651,6 +12716,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11651
12716
|
upstream_roles?: undefined;
|
|
11652
12717
|
list_schema?: undefined;
|
|
11653
12718
|
default_pins?: undefined;
|
|
12719
|
+
portals?: undefined;
|
|
11654
12720
|
change_summary?: undefined;
|
|
11655
12721
|
version?: undefined;
|
|
11656
12722
|
relationship?: undefined;
|
|
@@ -11768,10 +12834,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11768
12834
|
duration_minutes?: undefined;
|
|
11769
12835
|
resolverPayload?: undefined;
|
|
11770
12836
|
signalKey?: undefined;
|
|
12837
|
+
itemKey?: undefined;
|
|
12838
|
+
payload?: undefined;
|
|
12839
|
+
metadata?: undefined;
|
|
12840
|
+
reciprocal?: undefined;
|
|
11771
12841
|
targetRole?: undefined;
|
|
11772
12842
|
ids?: undefined;
|
|
11773
12843
|
hint?: undefined;
|
|
11774
|
-
metadata?: undefined;
|
|
11775
12844
|
available?: undefined;
|
|
11776
12845
|
facets?: undefined;
|
|
11777
12846
|
orderBy?: undefined;
|
|
@@ -11803,6 +12872,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11803
12872
|
consumes?: undefined;
|
|
11804
12873
|
tool_tags?: undefined;
|
|
11805
12874
|
cron_schedule?: undefined;
|
|
12875
|
+
envelope_schema?: undefined;
|
|
12876
|
+
input_schema?: undefined;
|
|
12877
|
+
input_lookups?: undefined;
|
|
12878
|
+
icon?: undefined;
|
|
12879
|
+
read_safe?: undefined;
|
|
11806
12880
|
include_system?: undefined;
|
|
11807
12881
|
data?: undefined;
|
|
11808
12882
|
options?: undefined;
|
|
@@ -11840,6 +12914,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11840
12914
|
upstream_roles?: undefined;
|
|
11841
12915
|
list_schema?: undefined;
|
|
11842
12916
|
default_pins?: undefined;
|
|
12917
|
+
portals?: undefined;
|
|
11843
12918
|
change_summary?: undefined;
|
|
11844
12919
|
version?: undefined;
|
|
11845
12920
|
relationship?: undefined;
|
|
@@ -11944,10 +13019,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11944
13019
|
duration_minutes?: undefined;
|
|
11945
13020
|
resolverPayload?: undefined;
|
|
11946
13021
|
signalKey?: undefined;
|
|
13022
|
+
itemKey?: undefined;
|
|
13023
|
+
payload?: undefined;
|
|
13024
|
+
metadata?: undefined;
|
|
13025
|
+
reciprocal?: undefined;
|
|
11947
13026
|
targetRole?: undefined;
|
|
11948
13027
|
ids?: undefined;
|
|
11949
13028
|
hint?: undefined;
|
|
11950
|
-
metadata?: undefined;
|
|
11951
13029
|
available?: undefined;
|
|
11952
13030
|
facets?: undefined;
|
|
11953
13031
|
orderBy?: undefined;
|
|
@@ -11979,6 +13057,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
11979
13057
|
consumes?: undefined;
|
|
11980
13058
|
tool_tags?: undefined;
|
|
11981
13059
|
cron_schedule?: undefined;
|
|
13060
|
+
envelope_schema?: undefined;
|
|
13061
|
+
input_schema?: undefined;
|
|
13062
|
+
input_lookups?: undefined;
|
|
13063
|
+
icon?: undefined;
|
|
13064
|
+
read_safe?: undefined;
|
|
11982
13065
|
include_system?: undefined;
|
|
11983
13066
|
data?: undefined;
|
|
11984
13067
|
options?: undefined;
|
|
@@ -12017,6 +13100,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12017
13100
|
upstream_roles?: undefined;
|
|
12018
13101
|
list_schema?: undefined;
|
|
12019
13102
|
default_pins?: undefined;
|
|
13103
|
+
portals?: undefined;
|
|
12020
13104
|
change_summary?: undefined;
|
|
12021
13105
|
version?: undefined;
|
|
12022
13106
|
relationship?: undefined;
|
|
@@ -12125,10 +13209,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12125
13209
|
duration_minutes?: undefined;
|
|
12126
13210
|
resolverPayload?: undefined;
|
|
12127
13211
|
signalKey?: undefined;
|
|
13212
|
+
itemKey?: undefined;
|
|
13213
|
+
payload?: undefined;
|
|
13214
|
+
metadata?: undefined;
|
|
13215
|
+
reciprocal?: undefined;
|
|
12128
13216
|
targetRole?: undefined;
|
|
12129
13217
|
ids?: undefined;
|
|
12130
13218
|
hint?: undefined;
|
|
12131
|
-
metadata?: undefined;
|
|
12132
13219
|
available?: undefined;
|
|
12133
13220
|
facets?: undefined;
|
|
12134
13221
|
orderBy?: undefined;
|
|
@@ -12160,6 +13247,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12160
13247
|
consumes?: undefined;
|
|
12161
13248
|
tool_tags?: undefined;
|
|
12162
13249
|
cron_schedule?: undefined;
|
|
13250
|
+
envelope_schema?: undefined;
|
|
13251
|
+
input_schema?: undefined;
|
|
13252
|
+
input_lookups?: undefined;
|
|
13253
|
+
icon?: undefined;
|
|
13254
|
+
read_safe?: undefined;
|
|
12163
13255
|
include_system?: undefined;
|
|
12164
13256
|
data?: undefined;
|
|
12165
13257
|
options?: undefined;
|
|
@@ -12197,6 +13289,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12197
13289
|
upstream_roles?: undefined;
|
|
12198
13290
|
list_schema?: undefined;
|
|
12199
13291
|
default_pins?: undefined;
|
|
13292
|
+
portals?: undefined;
|
|
12200
13293
|
change_summary?: undefined;
|
|
12201
13294
|
version?: undefined;
|
|
12202
13295
|
relationship?: undefined;
|
|
@@ -12315,10 +13408,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12315
13408
|
duration_minutes?: undefined;
|
|
12316
13409
|
resolverPayload?: undefined;
|
|
12317
13410
|
signalKey?: undefined;
|
|
13411
|
+
itemKey?: undefined;
|
|
13412
|
+
payload?: undefined;
|
|
13413
|
+
metadata?: undefined;
|
|
13414
|
+
reciprocal?: undefined;
|
|
12318
13415
|
targetRole?: undefined;
|
|
12319
13416
|
ids?: undefined;
|
|
12320
13417
|
hint?: undefined;
|
|
12321
|
-
metadata?: undefined;
|
|
12322
13418
|
available?: undefined;
|
|
12323
13419
|
facets?: undefined;
|
|
12324
13420
|
orderBy?: undefined;
|
|
@@ -12350,6 +13446,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12350
13446
|
consumes?: undefined;
|
|
12351
13447
|
tool_tags?: undefined;
|
|
12352
13448
|
cron_schedule?: undefined;
|
|
13449
|
+
envelope_schema?: undefined;
|
|
13450
|
+
input_schema?: undefined;
|
|
13451
|
+
input_lookups?: undefined;
|
|
13452
|
+
icon?: undefined;
|
|
13453
|
+
read_safe?: undefined;
|
|
12353
13454
|
include_system?: undefined;
|
|
12354
13455
|
data?: undefined;
|
|
12355
13456
|
options?: undefined;
|
|
@@ -12388,6 +13489,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12388
13489
|
upstream_roles?: undefined;
|
|
12389
13490
|
list_schema?: undefined;
|
|
12390
13491
|
default_pins?: undefined;
|
|
13492
|
+
portals?: undefined;
|
|
12391
13493
|
change_summary?: undefined;
|
|
12392
13494
|
version?: undefined;
|
|
12393
13495
|
relationship?: undefined;
|
|
@@ -12495,10 +13597,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12495
13597
|
duration_minutes?: undefined;
|
|
12496
13598
|
resolverPayload?: undefined;
|
|
12497
13599
|
signalKey?: undefined;
|
|
13600
|
+
itemKey?: undefined;
|
|
13601
|
+
payload?: undefined;
|
|
13602
|
+
metadata?: undefined;
|
|
13603
|
+
reciprocal?: undefined;
|
|
12498
13604
|
targetRole?: undefined;
|
|
12499
13605
|
ids?: undefined;
|
|
12500
13606
|
hint?: undefined;
|
|
12501
|
-
metadata?: undefined;
|
|
12502
13607
|
available?: undefined;
|
|
12503
13608
|
facets?: undefined;
|
|
12504
13609
|
orderBy?: undefined;
|
|
@@ -12530,6 +13635,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12530
13635
|
consumes?: undefined;
|
|
12531
13636
|
tool_tags?: undefined;
|
|
12532
13637
|
cron_schedule?: undefined;
|
|
13638
|
+
envelope_schema?: undefined;
|
|
13639
|
+
input_schema?: undefined;
|
|
13640
|
+
input_lookups?: undefined;
|
|
13641
|
+
icon?: undefined;
|
|
13642
|
+
read_safe?: undefined;
|
|
12533
13643
|
include_system?: undefined;
|
|
12534
13644
|
data?: undefined;
|
|
12535
13645
|
options?: undefined;
|
|
@@ -12567,6 +13677,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12567
13677
|
upstream_roles?: undefined;
|
|
12568
13678
|
list_schema?: undefined;
|
|
12569
13679
|
default_pins?: undefined;
|
|
13680
|
+
portals?: undefined;
|
|
12570
13681
|
change_summary?: undefined;
|
|
12571
13682
|
version?: undefined;
|
|
12572
13683
|
relationship?: undefined;
|
|
@@ -12706,10 +13817,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12706
13817
|
duration_minutes?: undefined;
|
|
12707
13818
|
resolverPayload?: undefined;
|
|
12708
13819
|
signalKey?: undefined;
|
|
13820
|
+
itemKey?: undefined;
|
|
13821
|
+
payload?: undefined;
|
|
13822
|
+
metadata?: undefined;
|
|
13823
|
+
reciprocal?: undefined;
|
|
12709
13824
|
targetRole?: undefined;
|
|
12710
13825
|
ids?: undefined;
|
|
12711
13826
|
hint?: undefined;
|
|
12712
|
-
metadata?: undefined;
|
|
12713
13827
|
available?: undefined;
|
|
12714
13828
|
facets?: undefined;
|
|
12715
13829
|
orderBy?: undefined;
|
|
@@ -12741,6 +13855,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12741
13855
|
consumes?: undefined;
|
|
12742
13856
|
tool_tags?: undefined;
|
|
12743
13857
|
cron_schedule?: undefined;
|
|
13858
|
+
envelope_schema?: undefined;
|
|
13859
|
+
input_schema?: undefined;
|
|
13860
|
+
input_lookups?: undefined;
|
|
13861
|
+
icon?: undefined;
|
|
13862
|
+
read_safe?: undefined;
|
|
12744
13863
|
include_system?: undefined;
|
|
12745
13864
|
data?: undefined;
|
|
12746
13865
|
options?: undefined;
|
|
@@ -12778,6 +13897,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12778
13897
|
upstream_roles?: undefined;
|
|
12779
13898
|
list_schema?: undefined;
|
|
12780
13899
|
default_pins?: undefined;
|
|
13900
|
+
portals?: undefined;
|
|
12781
13901
|
change_summary?: undefined;
|
|
12782
13902
|
version?: undefined;
|
|
12783
13903
|
relationship?: undefined;
|
|
@@ -12877,10 +13997,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12877
13997
|
duration_minutes?: undefined;
|
|
12878
13998
|
resolverPayload?: undefined;
|
|
12879
13999
|
signalKey?: undefined;
|
|
14000
|
+
itemKey?: undefined;
|
|
14001
|
+
payload?: undefined;
|
|
14002
|
+
metadata?: undefined;
|
|
14003
|
+
reciprocal?: undefined;
|
|
12880
14004
|
targetRole?: undefined;
|
|
12881
14005
|
ids?: undefined;
|
|
12882
14006
|
hint?: undefined;
|
|
12883
|
-
metadata?: undefined;
|
|
12884
14007
|
available?: undefined;
|
|
12885
14008
|
facets?: undefined;
|
|
12886
14009
|
orderBy?: undefined;
|
|
@@ -12912,6 +14035,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12912
14035
|
consumes?: undefined;
|
|
12913
14036
|
tool_tags?: undefined;
|
|
12914
14037
|
cron_schedule?: undefined;
|
|
14038
|
+
envelope_schema?: undefined;
|
|
14039
|
+
input_schema?: undefined;
|
|
14040
|
+
input_lookups?: undefined;
|
|
14041
|
+
icon?: undefined;
|
|
14042
|
+
read_safe?: undefined;
|
|
12915
14043
|
include_system?: undefined;
|
|
12916
14044
|
data?: undefined;
|
|
12917
14045
|
options?: undefined;
|
|
@@ -12949,6 +14077,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
12949
14077
|
upstream_roles?: undefined;
|
|
12950
14078
|
list_schema?: undefined;
|
|
12951
14079
|
default_pins?: undefined;
|
|
14080
|
+
portals?: undefined;
|
|
12952
14081
|
change_summary?: undefined;
|
|
12953
14082
|
version?: undefined;
|
|
12954
14083
|
relationship?: undefined;
|
|
@@ -13073,10 +14202,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13073
14202
|
duration_minutes?: undefined;
|
|
13074
14203
|
resolverPayload?: undefined;
|
|
13075
14204
|
signalKey?: undefined;
|
|
14205
|
+
itemKey?: undefined;
|
|
14206
|
+
payload?: undefined;
|
|
14207
|
+
metadata?: undefined;
|
|
14208
|
+
reciprocal?: undefined;
|
|
13076
14209
|
targetRole?: undefined;
|
|
13077
14210
|
ids?: undefined;
|
|
13078
14211
|
hint?: undefined;
|
|
13079
|
-
metadata?: undefined;
|
|
13080
14212
|
available?: undefined;
|
|
13081
14213
|
facets?: undefined;
|
|
13082
14214
|
orderBy?: undefined;
|
|
@@ -13108,6 +14240,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13108
14240
|
consumes?: undefined;
|
|
13109
14241
|
tool_tags?: undefined;
|
|
13110
14242
|
cron_schedule?: undefined;
|
|
14243
|
+
envelope_schema?: undefined;
|
|
14244
|
+
input_schema?: undefined;
|
|
14245
|
+
input_lookups?: undefined;
|
|
14246
|
+
icon?: undefined;
|
|
14247
|
+
read_safe?: undefined;
|
|
13111
14248
|
include_system?: undefined;
|
|
13112
14249
|
data?: undefined;
|
|
13113
14250
|
options?: undefined;
|
|
@@ -13145,6 +14282,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13145
14282
|
upstream_roles?: undefined;
|
|
13146
14283
|
list_schema?: undefined;
|
|
13147
14284
|
default_pins?: undefined;
|
|
14285
|
+
portals?: undefined;
|
|
13148
14286
|
change_summary?: undefined;
|
|
13149
14287
|
version?: undefined;
|
|
13150
14288
|
relationship?: undefined;
|
|
@@ -13259,10 +14397,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13259
14397
|
duration_minutes?: undefined;
|
|
13260
14398
|
resolverPayload?: undefined;
|
|
13261
14399
|
signalKey?: undefined;
|
|
14400
|
+
itemKey?: undefined;
|
|
14401
|
+
payload?: undefined;
|
|
14402
|
+
metadata?: undefined;
|
|
14403
|
+
reciprocal?: undefined;
|
|
13262
14404
|
targetRole?: undefined;
|
|
13263
14405
|
ids?: undefined;
|
|
13264
14406
|
hint?: undefined;
|
|
13265
|
-
metadata?: undefined;
|
|
13266
14407
|
available?: undefined;
|
|
13267
14408
|
facets?: undefined;
|
|
13268
14409
|
orderBy?: undefined;
|
|
@@ -13293,6 +14434,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13293
14434
|
consumes?: undefined;
|
|
13294
14435
|
tool_tags?: undefined;
|
|
13295
14436
|
cron_schedule?: undefined;
|
|
14437
|
+
envelope_schema?: undefined;
|
|
14438
|
+
input_schema?: undefined;
|
|
14439
|
+
input_lookups?: undefined;
|
|
14440
|
+
icon?: undefined;
|
|
14441
|
+
read_safe?: undefined;
|
|
13296
14442
|
include_system?: undefined;
|
|
13297
14443
|
data?: undefined;
|
|
13298
14444
|
options?: undefined;
|
|
@@ -13330,6 +14476,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13330
14476
|
upstream_roles?: undefined;
|
|
13331
14477
|
list_schema?: undefined;
|
|
13332
14478
|
default_pins?: undefined;
|
|
14479
|
+
portals?: undefined;
|
|
13333
14480
|
change_summary?: undefined;
|
|
13334
14481
|
version?: undefined;
|
|
13335
14482
|
relationship?: undefined;
|
|
@@ -13442,10 +14589,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13442
14589
|
duration_minutes?: undefined;
|
|
13443
14590
|
resolverPayload?: undefined;
|
|
13444
14591
|
signalKey?: undefined;
|
|
14592
|
+
itemKey?: undefined;
|
|
14593
|
+
payload?: undefined;
|
|
14594
|
+
metadata?: undefined;
|
|
14595
|
+
reciprocal?: undefined;
|
|
13445
14596
|
targetRole?: undefined;
|
|
13446
14597
|
ids?: undefined;
|
|
13447
14598
|
hint?: undefined;
|
|
13448
|
-
metadata?: undefined;
|
|
13449
14599
|
available?: undefined;
|
|
13450
14600
|
facets?: undefined;
|
|
13451
14601
|
orderBy?: undefined;
|
|
@@ -13477,6 +14627,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13477
14627
|
consumes?: undefined;
|
|
13478
14628
|
tool_tags?: undefined;
|
|
13479
14629
|
cron_schedule?: undefined;
|
|
14630
|
+
envelope_schema?: undefined;
|
|
14631
|
+
input_schema?: undefined;
|
|
14632
|
+
input_lookups?: undefined;
|
|
14633
|
+
icon?: undefined;
|
|
14634
|
+
read_safe?: undefined;
|
|
13480
14635
|
include_system?: undefined;
|
|
13481
14636
|
data?: undefined;
|
|
13482
14637
|
options?: undefined;
|
|
@@ -13514,6 +14669,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13514
14669
|
upstream_roles?: undefined;
|
|
13515
14670
|
list_schema?: undefined;
|
|
13516
14671
|
default_pins?: undefined;
|
|
14672
|
+
portals?: undefined;
|
|
13517
14673
|
change_summary?: undefined;
|
|
13518
14674
|
version?: undefined;
|
|
13519
14675
|
relationship?: undefined;
|
|
@@ -13624,10 +14780,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13624
14780
|
duration_minutes?: undefined;
|
|
13625
14781
|
resolverPayload?: undefined;
|
|
13626
14782
|
signalKey?: undefined;
|
|
14783
|
+
itemKey?: undefined;
|
|
14784
|
+
payload?: undefined;
|
|
14785
|
+
metadata?: undefined;
|
|
14786
|
+
reciprocal?: undefined;
|
|
13627
14787
|
targetRole?: undefined;
|
|
13628
14788
|
ids?: undefined;
|
|
13629
14789
|
hint?: undefined;
|
|
13630
|
-
metadata?: undefined;
|
|
13631
14790
|
available?: undefined;
|
|
13632
14791
|
facets?: undefined;
|
|
13633
14792
|
orderBy?: undefined;
|
|
@@ -13659,6 +14818,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13659
14818
|
consumes?: undefined;
|
|
13660
14819
|
tool_tags?: undefined;
|
|
13661
14820
|
cron_schedule?: undefined;
|
|
14821
|
+
envelope_schema?: undefined;
|
|
14822
|
+
input_schema?: undefined;
|
|
14823
|
+
input_lookups?: undefined;
|
|
14824
|
+
icon?: undefined;
|
|
14825
|
+
read_safe?: undefined;
|
|
13662
14826
|
include_system?: undefined;
|
|
13663
14827
|
data?: undefined;
|
|
13664
14828
|
options?: undefined;
|
|
@@ -13697,6 +14861,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13697
14861
|
upstream_roles?: undefined;
|
|
13698
14862
|
list_schema?: undefined;
|
|
13699
14863
|
default_pins?: undefined;
|
|
14864
|
+
portals?: undefined;
|
|
13700
14865
|
change_summary?: undefined;
|
|
13701
14866
|
version?: undefined;
|
|
13702
14867
|
relationship?: undefined;
|
|
@@ -13803,10 +14968,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13803
14968
|
duration_minutes?: undefined;
|
|
13804
14969
|
resolverPayload?: undefined;
|
|
13805
14970
|
signalKey?: undefined;
|
|
14971
|
+
itemKey?: undefined;
|
|
14972
|
+
payload?: undefined;
|
|
14973
|
+
metadata?: undefined;
|
|
14974
|
+
reciprocal?: undefined;
|
|
13806
14975
|
targetRole?: undefined;
|
|
13807
14976
|
ids?: undefined;
|
|
13808
14977
|
hint?: undefined;
|
|
13809
|
-
metadata?: undefined;
|
|
13810
14978
|
available?: undefined;
|
|
13811
14979
|
facets?: undefined;
|
|
13812
14980
|
orderBy?: undefined;
|
|
@@ -13838,6 +15006,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13838
15006
|
consumes?: undefined;
|
|
13839
15007
|
tool_tags?: undefined;
|
|
13840
15008
|
cron_schedule?: undefined;
|
|
15009
|
+
envelope_schema?: undefined;
|
|
15010
|
+
input_schema?: undefined;
|
|
15011
|
+
input_lookups?: undefined;
|
|
15012
|
+
icon?: undefined;
|
|
15013
|
+
read_safe?: undefined;
|
|
13841
15014
|
include_system?: undefined;
|
|
13842
15015
|
data?: undefined;
|
|
13843
15016
|
options?: undefined;
|
|
@@ -13876,6 +15049,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
13876
15049
|
upstream_roles?: undefined;
|
|
13877
15050
|
list_schema?: undefined;
|
|
13878
15051
|
default_pins?: undefined;
|
|
15052
|
+
portals?: undefined;
|
|
13879
15053
|
change_summary?: undefined;
|
|
13880
15054
|
version?: undefined;
|
|
13881
15055
|
relationship?: undefined;
|
|
@@ -14000,10 +15174,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14000
15174
|
duration_minutes?: undefined;
|
|
14001
15175
|
resolverPayload?: undefined;
|
|
14002
15176
|
signalKey?: undefined;
|
|
15177
|
+
itemKey?: undefined;
|
|
15178
|
+
payload?: undefined;
|
|
15179
|
+
metadata?: undefined;
|
|
15180
|
+
reciprocal?: undefined;
|
|
14003
15181
|
targetRole?: undefined;
|
|
14004
15182
|
ids?: undefined;
|
|
14005
15183
|
hint?: undefined;
|
|
14006
|
-
metadata?: undefined;
|
|
14007
15184
|
available?: undefined;
|
|
14008
15185
|
facets?: undefined;
|
|
14009
15186
|
orderBy?: undefined;
|
|
@@ -14034,6 +15211,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14034
15211
|
consumes?: undefined;
|
|
14035
15212
|
tool_tags?: undefined;
|
|
14036
15213
|
cron_schedule?: undefined;
|
|
15214
|
+
envelope_schema?: undefined;
|
|
15215
|
+
input_schema?: undefined;
|
|
15216
|
+
input_lookups?: undefined;
|
|
15217
|
+
icon?: undefined;
|
|
15218
|
+
read_safe?: undefined;
|
|
14037
15219
|
include_system?: undefined;
|
|
14038
15220
|
data?: undefined;
|
|
14039
15221
|
options?: undefined;
|
|
@@ -14071,6 +15253,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14071
15253
|
upstream_roles?: undefined;
|
|
14072
15254
|
list_schema?: undefined;
|
|
14073
15255
|
default_pins?: undefined;
|
|
15256
|
+
portals?: undefined;
|
|
14074
15257
|
change_summary?: undefined;
|
|
14075
15258
|
version?: undefined;
|
|
14076
15259
|
relationship?: undefined;
|
|
@@ -14188,10 +15371,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14188
15371
|
duration_minutes?: undefined;
|
|
14189
15372
|
resolverPayload?: undefined;
|
|
14190
15373
|
signalKey?: undefined;
|
|
15374
|
+
itemKey?: undefined;
|
|
15375
|
+
payload?: undefined;
|
|
15376
|
+
metadata?: undefined;
|
|
15377
|
+
reciprocal?: undefined;
|
|
14191
15378
|
targetRole?: undefined;
|
|
14192
15379
|
ids?: undefined;
|
|
14193
15380
|
hint?: undefined;
|
|
14194
|
-
metadata?: undefined;
|
|
14195
15381
|
available?: undefined;
|
|
14196
15382
|
facets?: undefined;
|
|
14197
15383
|
orderBy?: undefined;
|
|
@@ -14223,6 +15409,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14223
15409
|
consumes?: undefined;
|
|
14224
15410
|
tool_tags?: undefined;
|
|
14225
15411
|
cron_schedule?: undefined;
|
|
15412
|
+
envelope_schema?: undefined;
|
|
15413
|
+
input_schema?: undefined;
|
|
15414
|
+
input_lookups?: undefined;
|
|
15415
|
+
icon?: undefined;
|
|
15416
|
+
read_safe?: undefined;
|
|
14226
15417
|
include_system?: undefined;
|
|
14227
15418
|
data?: undefined;
|
|
14228
15419
|
options?: undefined;
|
|
@@ -14261,6 +15452,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14261
15452
|
upstream_roles?: undefined;
|
|
14262
15453
|
list_schema?: undefined;
|
|
14263
15454
|
default_pins?: undefined;
|
|
15455
|
+
portals?: undefined;
|
|
14264
15456
|
change_summary?: undefined;
|
|
14265
15457
|
version?: undefined;
|
|
14266
15458
|
relationship?: undefined;
|
|
@@ -14386,10 +15578,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14386
15578
|
duration_minutes?: undefined;
|
|
14387
15579
|
resolverPayload?: undefined;
|
|
14388
15580
|
signalKey?: undefined;
|
|
15581
|
+
itemKey?: undefined;
|
|
15582
|
+
payload?: undefined;
|
|
15583
|
+
metadata?: undefined;
|
|
15584
|
+
reciprocal?: undefined;
|
|
14389
15585
|
targetRole?: undefined;
|
|
14390
15586
|
ids?: undefined;
|
|
14391
15587
|
hint?: undefined;
|
|
14392
|
-
metadata?: undefined;
|
|
14393
15588
|
available?: undefined;
|
|
14394
15589
|
facets?: undefined;
|
|
14395
15590
|
orderBy?: undefined;
|
|
@@ -14420,6 +15615,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14420
15615
|
consumes?: undefined;
|
|
14421
15616
|
tool_tags?: undefined;
|
|
14422
15617
|
cron_schedule?: undefined;
|
|
15618
|
+
envelope_schema?: undefined;
|
|
15619
|
+
input_schema?: undefined;
|
|
15620
|
+
input_lookups?: undefined;
|
|
15621
|
+
icon?: undefined;
|
|
15622
|
+
read_safe?: undefined;
|
|
14423
15623
|
include_system?: undefined;
|
|
14424
15624
|
data?: undefined;
|
|
14425
15625
|
options?: undefined;
|
|
@@ -14458,6 +15658,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14458
15658
|
upstream_roles?: undefined;
|
|
14459
15659
|
list_schema?: undefined;
|
|
14460
15660
|
default_pins?: undefined;
|
|
15661
|
+
portals?: undefined;
|
|
14461
15662
|
change_summary?: undefined;
|
|
14462
15663
|
version?: undefined;
|
|
14463
15664
|
relationship?: undefined;
|
|
@@ -14578,10 +15779,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14578
15779
|
duration_minutes?: undefined;
|
|
14579
15780
|
resolverPayload?: undefined;
|
|
14580
15781
|
signalKey?: undefined;
|
|
15782
|
+
itemKey?: undefined;
|
|
15783
|
+
payload?: undefined;
|
|
15784
|
+
metadata?: undefined;
|
|
15785
|
+
reciprocal?: undefined;
|
|
14581
15786
|
targetRole?: undefined;
|
|
14582
15787
|
ids?: undefined;
|
|
14583
15788
|
hint?: undefined;
|
|
14584
|
-
metadata?: undefined;
|
|
14585
15789
|
available?: undefined;
|
|
14586
15790
|
facets?: undefined;
|
|
14587
15791
|
orderBy?: undefined;
|
|
@@ -14612,6 +15816,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14612
15816
|
consumes?: undefined;
|
|
14613
15817
|
tool_tags?: undefined;
|
|
14614
15818
|
cron_schedule?: undefined;
|
|
15819
|
+
envelope_schema?: undefined;
|
|
15820
|
+
input_schema?: undefined;
|
|
15821
|
+
input_lookups?: undefined;
|
|
15822
|
+
icon?: undefined;
|
|
15823
|
+
read_safe?: undefined;
|
|
14615
15824
|
include_system?: undefined;
|
|
14616
15825
|
data?: undefined;
|
|
14617
15826
|
options?: undefined;
|
|
@@ -14650,6 +15859,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14650
15859
|
upstream_roles?: undefined;
|
|
14651
15860
|
list_schema?: undefined;
|
|
14652
15861
|
default_pins?: undefined;
|
|
15862
|
+
portals?: undefined;
|
|
14653
15863
|
change_summary?: undefined;
|
|
14654
15864
|
version?: undefined;
|
|
14655
15865
|
relationship?: undefined;
|
|
@@ -14753,10 +15963,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14753
15963
|
duration_minutes?: undefined;
|
|
14754
15964
|
resolverPayload?: undefined;
|
|
14755
15965
|
signalKey?: undefined;
|
|
15966
|
+
itemKey?: undefined;
|
|
15967
|
+
payload?: undefined;
|
|
15968
|
+
metadata?: undefined;
|
|
15969
|
+
reciprocal?: undefined;
|
|
14756
15970
|
targetRole?: undefined;
|
|
14757
15971
|
ids?: undefined;
|
|
14758
15972
|
hint?: undefined;
|
|
14759
|
-
metadata?: undefined;
|
|
14760
15973
|
available?: undefined;
|
|
14761
15974
|
facets?: undefined;
|
|
14762
15975
|
orderBy?: undefined;
|
|
@@ -14788,6 +16001,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14788
16001
|
consumes?: undefined;
|
|
14789
16002
|
tool_tags?: undefined;
|
|
14790
16003
|
cron_schedule?: undefined;
|
|
16004
|
+
envelope_schema?: undefined;
|
|
16005
|
+
input_schema?: undefined;
|
|
16006
|
+
input_lookups?: undefined;
|
|
16007
|
+
icon?: undefined;
|
|
16008
|
+
read_safe?: undefined;
|
|
14791
16009
|
include_system?: undefined;
|
|
14792
16010
|
data?: undefined;
|
|
14793
16011
|
options?: undefined;
|
|
@@ -14826,6 +16044,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14826
16044
|
upstream_roles?: undefined;
|
|
14827
16045
|
list_schema?: undefined;
|
|
14828
16046
|
default_pins?: undefined;
|
|
16047
|
+
portals?: undefined;
|
|
14829
16048
|
change_summary?: undefined;
|
|
14830
16049
|
version?: undefined;
|
|
14831
16050
|
relationship?: undefined;
|
|
@@ -14936,10 +16155,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14936
16155
|
duration_minutes?: undefined;
|
|
14937
16156
|
resolverPayload?: undefined;
|
|
14938
16157
|
signalKey?: undefined;
|
|
16158
|
+
itemKey?: undefined;
|
|
16159
|
+
payload?: undefined;
|
|
16160
|
+
metadata?: undefined;
|
|
16161
|
+
reciprocal?: undefined;
|
|
14939
16162
|
targetRole?: undefined;
|
|
14940
16163
|
ids?: undefined;
|
|
14941
16164
|
hint?: undefined;
|
|
14942
|
-
metadata?: undefined;
|
|
14943
16165
|
available?: undefined;
|
|
14944
16166
|
facets?: undefined;
|
|
14945
16167
|
orderBy?: undefined;
|
|
@@ -14971,6 +16193,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
14971
16193
|
consumes?: undefined;
|
|
14972
16194
|
tool_tags?: undefined;
|
|
14973
16195
|
cron_schedule?: undefined;
|
|
16196
|
+
envelope_schema?: undefined;
|
|
16197
|
+
input_schema?: undefined;
|
|
16198
|
+
input_lookups?: undefined;
|
|
16199
|
+
icon?: undefined;
|
|
16200
|
+
read_safe?: undefined;
|
|
14974
16201
|
include_system?: undefined;
|
|
14975
16202
|
data?: undefined;
|
|
14976
16203
|
options?: undefined;
|
|
@@ -15008,6 +16235,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15008
16235
|
upstream_roles?: undefined;
|
|
15009
16236
|
list_schema?: undefined;
|
|
15010
16237
|
default_pins?: undefined;
|
|
16238
|
+
portals?: undefined;
|
|
15011
16239
|
change_summary?: undefined;
|
|
15012
16240
|
version?: undefined;
|
|
15013
16241
|
relationship?: undefined;
|
|
@@ -15119,10 +16347,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15119
16347
|
duration_minutes?: undefined;
|
|
15120
16348
|
resolverPayload?: undefined;
|
|
15121
16349
|
signalKey?: undefined;
|
|
16350
|
+
itemKey?: undefined;
|
|
16351
|
+
payload?: undefined;
|
|
16352
|
+
metadata?: undefined;
|
|
16353
|
+
reciprocal?: undefined;
|
|
15122
16354
|
targetRole?: undefined;
|
|
15123
16355
|
ids?: undefined;
|
|
15124
16356
|
hint?: undefined;
|
|
15125
|
-
metadata?: undefined;
|
|
15126
16357
|
available?: undefined;
|
|
15127
16358
|
facets?: undefined;
|
|
15128
16359
|
orderBy?: undefined;
|
|
@@ -15154,6 +16385,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15154
16385
|
consumes?: undefined;
|
|
15155
16386
|
tool_tags?: undefined;
|
|
15156
16387
|
cron_schedule?: undefined;
|
|
16388
|
+
envelope_schema?: undefined;
|
|
16389
|
+
input_schema?: undefined;
|
|
16390
|
+
input_lookups?: undefined;
|
|
16391
|
+
icon?: undefined;
|
|
16392
|
+
read_safe?: undefined;
|
|
15157
16393
|
include_system?: undefined;
|
|
15158
16394
|
data?: undefined;
|
|
15159
16395
|
options?: undefined;
|
|
@@ -15192,6 +16428,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15192
16428
|
upstream_roles?: undefined;
|
|
15193
16429
|
list_schema?: undefined;
|
|
15194
16430
|
default_pins?: undefined;
|
|
16431
|
+
portals?: undefined;
|
|
15195
16432
|
change_summary?: undefined;
|
|
15196
16433
|
version?: undefined;
|
|
15197
16434
|
relationship?: undefined;
|
|
@@ -15310,10 +16547,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15310
16547
|
duration_minutes?: undefined;
|
|
15311
16548
|
resolverPayload?: undefined;
|
|
15312
16549
|
signalKey?: undefined;
|
|
16550
|
+
itemKey?: undefined;
|
|
16551
|
+
payload?: undefined;
|
|
16552
|
+
metadata?: undefined;
|
|
16553
|
+
reciprocal?: undefined;
|
|
15313
16554
|
targetRole?: undefined;
|
|
15314
16555
|
ids?: undefined;
|
|
15315
16556
|
hint?: undefined;
|
|
15316
|
-
metadata?: undefined;
|
|
15317
16557
|
available?: undefined;
|
|
15318
16558
|
facets?: undefined;
|
|
15319
16559
|
orderBy?: undefined;
|
|
@@ -15345,6 +16585,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15345
16585
|
consumes?: undefined;
|
|
15346
16586
|
tool_tags?: undefined;
|
|
15347
16587
|
cron_schedule?: undefined;
|
|
16588
|
+
envelope_schema?: undefined;
|
|
16589
|
+
input_schema?: undefined;
|
|
16590
|
+
input_lookups?: undefined;
|
|
16591
|
+
icon?: undefined;
|
|
16592
|
+
read_safe?: undefined;
|
|
15348
16593
|
include_system?: undefined;
|
|
15349
16594
|
data?: undefined;
|
|
15350
16595
|
options?: undefined;
|
|
@@ -15383,6 +16628,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15383
16628
|
upstream_roles?: undefined;
|
|
15384
16629
|
list_schema?: undefined;
|
|
15385
16630
|
default_pins?: undefined;
|
|
16631
|
+
portals?: undefined;
|
|
15386
16632
|
change_summary?: undefined;
|
|
15387
16633
|
version?: undefined;
|
|
15388
16634
|
relationship?: undefined;
|
|
@@ -15512,10 +16758,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15512
16758
|
duration_minutes?: undefined;
|
|
15513
16759
|
resolverPayload?: undefined;
|
|
15514
16760
|
signalKey?: undefined;
|
|
16761
|
+
itemKey?: undefined;
|
|
16762
|
+
payload?: undefined;
|
|
16763
|
+
metadata?: undefined;
|
|
16764
|
+
reciprocal?: undefined;
|
|
15515
16765
|
targetRole?: undefined;
|
|
15516
16766
|
ids?: undefined;
|
|
15517
16767
|
hint?: undefined;
|
|
15518
|
-
metadata?: undefined;
|
|
15519
16768
|
available?: undefined;
|
|
15520
16769
|
facets?: undefined;
|
|
15521
16770
|
orderBy?: undefined;
|
|
@@ -15547,6 +16796,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15547
16796
|
consumes?: undefined;
|
|
15548
16797
|
tool_tags?: undefined;
|
|
15549
16798
|
cron_schedule?: undefined;
|
|
16799
|
+
envelope_schema?: undefined;
|
|
16800
|
+
input_schema?: undefined;
|
|
16801
|
+
input_lookups?: undefined;
|
|
16802
|
+
icon?: undefined;
|
|
16803
|
+
read_safe?: undefined;
|
|
15550
16804
|
include_system?: undefined;
|
|
15551
16805
|
data?: undefined;
|
|
15552
16806
|
options?: undefined;
|
|
@@ -15584,6 +16838,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15584
16838
|
upstream_roles?: undefined;
|
|
15585
16839
|
list_schema?: undefined;
|
|
15586
16840
|
default_pins?: undefined;
|
|
16841
|
+
portals?: undefined;
|
|
15587
16842
|
change_summary?: undefined;
|
|
15588
16843
|
relationship?: undefined;
|
|
15589
16844
|
max_events?: undefined;
|
|
@@ -15702,10 +16957,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15702
16957
|
duration_minutes?: undefined;
|
|
15703
16958
|
resolverPayload?: undefined;
|
|
15704
16959
|
signalKey?: undefined;
|
|
16960
|
+
itemKey?: undefined;
|
|
16961
|
+
payload?: undefined;
|
|
16962
|
+
metadata?: undefined;
|
|
16963
|
+
reciprocal?: undefined;
|
|
15705
16964
|
targetRole?: undefined;
|
|
15706
16965
|
ids?: undefined;
|
|
15707
16966
|
hint?: undefined;
|
|
15708
|
-
metadata?: undefined;
|
|
15709
16967
|
available?: undefined;
|
|
15710
16968
|
facets?: undefined;
|
|
15711
16969
|
orderBy?: undefined;
|
|
@@ -15737,6 +16995,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15737
16995
|
consumes?: undefined;
|
|
15738
16996
|
tool_tags?: undefined;
|
|
15739
16997
|
cron_schedule?: undefined;
|
|
16998
|
+
envelope_schema?: undefined;
|
|
16999
|
+
input_schema?: undefined;
|
|
17000
|
+
input_lookups?: undefined;
|
|
17001
|
+
icon?: undefined;
|
|
17002
|
+
read_safe?: undefined;
|
|
15740
17003
|
include_system?: undefined;
|
|
15741
17004
|
data?: undefined;
|
|
15742
17005
|
options?: undefined;
|
|
@@ -15774,6 +17037,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15774
17037
|
upstream_roles?: undefined;
|
|
15775
17038
|
list_schema?: undefined;
|
|
15776
17039
|
default_pins?: undefined;
|
|
17040
|
+
portals?: undefined;
|
|
15777
17041
|
change_summary?: undefined;
|
|
15778
17042
|
version?: undefined;
|
|
15779
17043
|
relationship?: undefined;
|
|
@@ -15877,10 +17141,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15877
17141
|
duration_minutes?: undefined;
|
|
15878
17142
|
resolverPayload?: undefined;
|
|
15879
17143
|
signalKey?: undefined;
|
|
17144
|
+
itemKey?: undefined;
|
|
17145
|
+
payload?: undefined;
|
|
17146
|
+
metadata?: undefined;
|
|
17147
|
+
reciprocal?: undefined;
|
|
15880
17148
|
targetRole?: undefined;
|
|
15881
17149
|
ids?: undefined;
|
|
15882
17150
|
hint?: undefined;
|
|
15883
|
-
metadata?: undefined;
|
|
15884
17151
|
available?: undefined;
|
|
15885
17152
|
facets?: undefined;
|
|
15886
17153
|
orderBy?: undefined;
|
|
@@ -15912,6 +17179,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15912
17179
|
consumes?: undefined;
|
|
15913
17180
|
tool_tags?: undefined;
|
|
15914
17181
|
cron_schedule?: undefined;
|
|
17182
|
+
envelope_schema?: undefined;
|
|
17183
|
+
input_schema?: undefined;
|
|
17184
|
+
input_lookups?: undefined;
|
|
17185
|
+
icon?: undefined;
|
|
17186
|
+
read_safe?: undefined;
|
|
15915
17187
|
include_system?: undefined;
|
|
15916
17188
|
data?: undefined;
|
|
15917
17189
|
options?: undefined;
|
|
@@ -15950,6 +17222,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
15950
17222
|
upstream_roles?: undefined;
|
|
15951
17223
|
list_schema?: undefined;
|
|
15952
17224
|
default_pins?: undefined;
|
|
17225
|
+
portals?: undefined;
|
|
15953
17226
|
change_summary?: undefined;
|
|
15954
17227
|
version?: undefined;
|
|
15955
17228
|
relationship?: undefined;
|
|
@@ -16071,10 +17344,13 @@ export declare const ADMIN_TOOLS: ({
|
|
|
16071
17344
|
duration_minutes?: undefined;
|
|
16072
17345
|
resolverPayload?: undefined;
|
|
16073
17346
|
signalKey?: undefined;
|
|
17347
|
+
itemKey?: undefined;
|
|
17348
|
+
payload?: undefined;
|
|
17349
|
+
metadata?: undefined;
|
|
17350
|
+
reciprocal?: undefined;
|
|
16074
17351
|
targetRole?: undefined;
|
|
16075
17352
|
ids?: undefined;
|
|
16076
17353
|
hint?: undefined;
|
|
16077
|
-
metadata?: undefined;
|
|
16078
17354
|
available?: undefined;
|
|
16079
17355
|
facets?: undefined;
|
|
16080
17356
|
orderBy?: undefined;
|
|
@@ -16105,6 +17381,11 @@ export declare const ADMIN_TOOLS: ({
|
|
|
16105
17381
|
consumes?: undefined;
|
|
16106
17382
|
tool_tags?: undefined;
|
|
16107
17383
|
cron_schedule?: undefined;
|
|
17384
|
+
envelope_schema?: undefined;
|
|
17385
|
+
input_schema?: undefined;
|
|
17386
|
+
input_lookups?: undefined;
|
|
17387
|
+
icon?: undefined;
|
|
17388
|
+
read_safe?: undefined;
|
|
16108
17389
|
include_system?: undefined;
|
|
16109
17390
|
data?: undefined;
|
|
16110
17391
|
options?: undefined;
|
|
@@ -16142,6 +17423,7 @@ export declare const ADMIN_TOOLS: ({
|
|
|
16142
17423
|
upstream_roles?: undefined;
|
|
16143
17424
|
list_schema?: undefined;
|
|
16144
17425
|
default_pins?: undefined;
|
|
17426
|
+
portals?: undefined;
|
|
16145
17427
|
change_summary?: undefined;
|
|
16146
17428
|
version?: undefined;
|
|
16147
17429
|
relationship?: undefined;
|