fix(cycles): split reply payload and option contracts

This commit is contained in:
Vincent Koc
2026-04-11 22:24:55 +01:00
parent 25665dd335
commit a88fbf0f64
48 changed files with 256 additions and 240 deletions

View File

@@ -1,7 +1,7 @@
import crypto from "node:crypto";
import fs from "node:fs";
import path from "node:path";
import type { ReplyPayload } from "../auto-reply/types.js";
import type { ReplyPayload } from "../auto-reply/reply-payload.js";
import {
createConversationBindingRecord,
resolveConversationBindingRecord,

View File

@@ -1,4 +1,4 @@
import type { ReplyPayload } from "../auto-reply/types.js";
import type { ReplyPayload } from "../auto-reply/reply-payload.js";
export type PluginConversationBindingRequestParams = {
summary?: string;

View File

@@ -1,10 +1,10 @@
import type { AgentMessage } from "@mariozechner/pi-agent-core";
import type { ReplyPayload } from "../auto-reply/reply-payload.js";
import type {
ReplyDispatchKind,
ReplyDispatcher,
} from "../auto-reply/reply/reply-dispatcher.types.js";
import type { FinalizedMsgContext } from "../auto-reply/templating.js";
import type { ReplyPayload } from "../auto-reply/types.js";
import type { OpenClawConfig } from "../config/types.openclaw.js";
import type { TtsAutoMode } from "../config/types.tts.js";
import {

View File

@@ -17,8 +17,8 @@ import type { ModelProviderRequestTransportOverrides } from "../agents/provider-
import type { ProviderSystemPromptContribution } from "../agents/system-prompt-contribution.js";
import type { PromptMode } from "../agents/system-prompt.types.js";
import type { AnyAgentTool } from "../agents/tools/common.js";
import type { ReplyPayload } from "../auto-reply/reply-payload.js";
import type { ThinkLevel } from "../auto-reply/thinking.shared.js";
import type { ReplyPayload } from "../auto-reply/types.js";
import type { ChannelPlugin } from "../channels/plugins/types.plugin.js";
import type { ChannelId } from "../channels/plugins/types.public.js";
import type { ModelProviderConfig } from "../config/types.js";