@ganglion/xacpx 0.23.0-beta.2 → 0.23.0-beta.3
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/dist/channels/types.d.ts +20 -0
- package/dist/cli.js +1705 -592
- package/dist/control/control-event-bus.d.ts +8 -0
- package/dist/control/control-service.d.ts +63 -1
- package/dist/control/session-turn-runner.d.ts +6 -0
- package/dist/control/turn-queue.d.ts +22 -1
- package/dist/control/turn-support.d.ts +14 -0
- package/dist/orchestration/agent-handle.d.ts +3 -0
- package/dist/orchestration/agent-message-completion.d.ts +8 -0
- package/dist/orchestration/agent-messaging-error.d.ts +1 -1
- package/dist/orchestration/agent-messaging-types.d.ts +22 -0
- package/package.json +1 -1
package/dist/channels/types.d.ts
CHANGED
|
@@ -176,6 +176,26 @@ export interface MessageChannelRuntime {
|
|
|
176
176
|
errorCode?: string;
|
|
177
177
|
deduplicated?: boolean;
|
|
178
178
|
}>;
|
|
179
|
+
/** Relay-capable channels: route an Agent Message completion back to the source node. */
|
|
180
|
+
sendAgentMessageCompletion?(payload: {
|
|
181
|
+
requestMessageId: string;
|
|
182
|
+
source: {
|
|
183
|
+
nodeId: string;
|
|
184
|
+
endpointId: string;
|
|
185
|
+
};
|
|
186
|
+
target: {
|
|
187
|
+
nodeId: string;
|
|
188
|
+
endpointId: string;
|
|
189
|
+
};
|
|
190
|
+
status: "completed" | "failed" | "cancelled";
|
|
191
|
+
result?: string;
|
|
192
|
+
error?: string;
|
|
193
|
+
completedAt: number;
|
|
194
|
+
}): Promise<{
|
|
195
|
+
ok: boolean;
|
|
196
|
+
deduplicated?: boolean;
|
|
197
|
+
error?: string;
|
|
198
|
+
}>;
|
|
179
199
|
/** Relay-capable channels: publish this instance's agent endpoint directory to
|
|
180
200
|
* the hub. The FULL snapshot replaces the previous one (no delta protocol). */
|
|
181
201
|
syncAgentEndpoints?(endpoints: unknown[]): void;
|