@kaiban/sdk 0.1.4 → 0.1.5

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.
@@ -6,8 +6,8 @@ export declare const AgentType: {
6
6
  readonly A2A: "a2a";
7
7
  };
8
8
  export declare const AgentStatus: {
9
- readonly ACTIVE: "active";
10
9
  readonly DRAFT: "draft";
10
+ readonly ACTIVE: "active";
11
11
  readonly INACTIVE: "inactive";
12
12
  };
13
13
  export interface Agent {
@@ -17,7 +17,12 @@ export interface Agent {
17
17
  team_id: string;
18
18
  status: (typeof AgentStatus)[keyof typeof AgentStatus];
19
19
  type: (typeof AgentType)[keyof typeof AgentType];
20
- created_at?: ISODate;
20
+ roles: string[];
21
+ owner_id: string;
22
+ created_by: string;
23
+ monthly_budget: number;
24
+ config?: Record<string, unknown>;
25
+ created_at: ISODate;
21
26
  updated_at?: ISODate;
22
27
  }
23
28
  export declare const AgentFeedbackStatus: {
@@ -5,8 +5,8 @@ export const AgentType = {
5
5
  A2A: 'a2a',
6
6
  };
7
7
  export const AgentStatus = {
8
- ACTIVE: 'active',
9
8
  DRAFT: 'draft',
9
+ ACTIVE: 'active',
10
10
  INACTIVE: 'inactive',
11
11
  };
12
12
  export const AgentFeedbackStatus = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kaiban/sdk",
3
- "version": "0.1.4",
3
+ "version": "0.1.5",
4
4
  "description": "Official TypeScript SDK for the Kaiban API",
5
5
  "keywords": [
6
6
  "kaiban",