mirror of
https://github.com/openclaw/openclaw.git
synced 2026-04-25 08:02:04 +00:00
refactor(plugin-sdk): add task domain runtime surfaces (#59805)
* refactor(plugin-sdk): add task domain runtime views * chore(plugin-sdk): refresh api baseline * fix(plugin-sdk): preserve task runtime owner isolation
This commit is contained in:
@@ -108,6 +108,21 @@ export type {
|
||||
export type { ChannelMessageActionContext } from "../channels/plugins/types.js";
|
||||
export type { ChannelConfigUiHint, ChannelPlugin } from "../channels/plugins/types.plugin.js";
|
||||
export type { PluginRuntime } from "../plugins/runtime/types.js";
|
||||
export type {
|
||||
BoundTaskFlowsRuntime,
|
||||
BoundTaskRunsRuntime,
|
||||
PluginRuntimeTaskFlows,
|
||||
PluginRuntimeTaskRuns,
|
||||
PluginRuntimeTasks,
|
||||
} from "../plugins/runtime/runtime-tasks.js";
|
||||
export type {
|
||||
TaskFlowDetail,
|
||||
TaskFlowView,
|
||||
TaskRunAggregateSummary,
|
||||
TaskRunCancelResult,
|
||||
TaskRunDetail,
|
||||
TaskRunView,
|
||||
} from "../plugins/runtime/task-domain-types.js";
|
||||
|
||||
export { definePluginEntry } from "./plugin-entry.js";
|
||||
export { buildPluginConfigSchema, emptyPluginConfigSchema } from "../plugins/config-schema.js";
|
||||
|
||||
@@ -59,6 +59,21 @@ export type {
|
||||
SubagentRunParams,
|
||||
SubagentRunResult,
|
||||
} from "../plugins/runtime/types.js";
|
||||
export type {
|
||||
BoundTaskFlowsRuntime,
|
||||
BoundTaskRunsRuntime,
|
||||
PluginRuntimeTaskFlows,
|
||||
PluginRuntimeTaskRuns,
|
||||
PluginRuntimeTasks,
|
||||
} from "../plugins/runtime/runtime-tasks.js";
|
||||
export type {
|
||||
TaskFlowDetail,
|
||||
TaskFlowView,
|
||||
TaskRunAggregateSummary,
|
||||
TaskRunCancelResult,
|
||||
TaskRunDetail,
|
||||
TaskRunView,
|
||||
} from "../plugins/runtime/task-domain-types.js";
|
||||
export type { OpenClawConfig } from "../config/config.js";
|
||||
/** @deprecated Use OpenClawConfig instead */
|
||||
export type { OpenClawConfig as ClawdbotConfig } from "../config/config.js";
|
||||
|
||||
Reference in New Issue
Block a user