@tangle-network/agent-runtime 0.14.1 → 0.15.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.
@@ -242,8 +242,17 @@ type RuntimeStreamEvent = {
242
242
  name?: string;
243
243
  mimeType?: string;
244
244
  uri?: string;
245
+ content?: string;
245
246
  metadata?: Record<string, unknown>;
246
247
  timestamp?: string;
248
+ } | {
249
+ type: 'proposal_created';
250
+ task?: AgentTaskSpec;
251
+ session?: RuntimeSession;
252
+ proposalId: string;
253
+ title: string;
254
+ status?: 'pending' | 'approved' | 'rejected';
255
+ timestamp?: string;
247
256
  } | {
248
257
  type: 'backend_error';
249
258
  task: AgentTaskSpec;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tangle-network/agent-runtime",
3
- "version": "0.14.1",
3
+ "version": "0.15.0",
4
4
  "description": "Reusable runtime lifecycle for domain-specific agents.",
5
5
  "homepage": "https://github.com/tangle-network/agent-runtime#readme",
6
6
  "repository": {