@frockbot/client-core 0.3.15 → 0.3.17

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.
Files changed (2) hide show
  1. package/package.json +5 -5
  2. package/src/index.ts +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frockbot/client-core",
3
- "version": "0.3.15",
3
+ "version": "0.3.17",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {
@@ -13,10 +13,10 @@
13
13
  "typecheck": "tsc --noEmit -p tsconfig.json"
14
14
  },
15
15
  "dependencies": {
16
- "@frockbot/configuration-core": "0.3.15",
17
- "@frockbot/connection-core": "0.3.15",
18
- "@frockbot/kernel-contracts": "0.3.15",
19
- "@frockbot/protocol": "0.3.15",
16
+ "@frockbot/configuration-core": "0.3.17",
17
+ "@frockbot/connection-core": "0.3.17",
18
+ "@frockbot/kernel-contracts": "0.3.17",
19
+ "@frockbot/protocol": "0.3.17",
20
20
  "vue": "3.5.41"
21
21
  },
22
22
  "devDependencies": {
package/src/index.ts CHANGED
@@ -44,6 +44,8 @@ import {
44
44
 
45
45
  export interface ClientTurnEvent {
46
46
  type: string;
47
+ /** A standalone event status, such as a projected Computer sync outcome. */
48
+ status?: string;
47
49
  call?: { id: string; name: string; input?: unknown };
48
50
  callId?: string;
49
51
  content?: string;
@@ -159,6 +161,10 @@ export interface ClientRun {
159
161
  */
160
162
  partialText?: string;
161
163
  recovery?: { action: "resume"; message: string };
164
+ /** Source marker for a message admitted on the agent lane. */
165
+ via?:
166
+ | { kind: "bot"; name: string; botId: string }
167
+ | { kind: "voice"; name: "Voice" };
162
168
  }
163
169
 
164
170
  /**