@kazzle/app 0.1.952 → 0.1.954

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.
@@ -23,7 +23,6 @@ export interface AgentRow extends AgentWrite {
23
23
  enabled: boolean;
24
24
  createdAt: number;
25
25
  updatedAt: number;
26
- mainThreadId?: string;
27
26
  }
28
27
  export declare class AgentsApi {
29
28
  private readonly http;
@@ -19,7 +19,6 @@ function fromApi(row) {
19
19
  enabled: row.enabled,
20
20
  createdAt: row.created_at,
21
21
  updatedAt: row.updated_at,
22
- ...(row.main_thread_id ? { mainThreadId: row.main_thread_id } : {}),
23
22
  };
24
23
  }
25
24
  export class AgentsApi {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kazzle/app",
3
- "version": "0.1.952",
3
+ "version": "0.1.954",
4
4
  "description": "Contracts, tool helpers, Vite helper, and templates for building Kazzle apps.",
5
5
  "license": "UNLICENSED",
6
6
  "repository": {