@agent-os-sdk/client 0.4.2 → 0.4.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/src/index.ts CHANGED
@@ -114,7 +114,7 @@ export type { components, paths } from "./client/raw.js";
114
114
  // ============================================================================
115
115
 
116
116
  // Core modules
117
- export { AgentsModule, type Agent, type AgentGraphResponse, type AgentListResponse, type AgentVersion } from "./modules/agents.js";
117
+ export { AgentsModule, type Agent, type AgentGraphResponse, type AgentListResponse } from "./modules/agents.js";
118
118
  export { BuilderModule, type BuilderChatRequest, type BuilderChatResponse, type BuilderStreamEvent, type GraphUpdateAction, type HintModel, type HintTargetModel, type HintDataModel } from "./modules/builder.js";
119
119
  export { CredentialsModule, type Credential, type CredentialListResponse, type CredentialType } from "./modules/credentials.js";
120
120
  export { KnowledgeModule, type KnowledgeDataset, type KnowledgeSearchResponse } from "./modules/knowledge.js";
@@ -168,7 +168,7 @@ export type {
168
168
  CancelRunResponse,
169
169
  // Checkpoint types
170
170
  CheckpointDetail,
171
- CheckpointListResponse, CreateAgentRequest, CreateAgentVersionRequest,
171
+ CheckpointListResponse, CreateAgentRequest,
172
172
  // Credential types
173
173
  CreateCredentialRequest,
174
174
  // Cron types
@@ -11,7 +11,7 @@ import type { RawClient, APIResponse, components } from "../client/raw.js";
11
11
  import type { PaginationParams, PaginatedResponse } from "../client/helpers.js";
12
12
 
13
13
  // Type aliases for this module
14
- type AgentSchema = components["schemas"]["AgentBundleAgent"];
14
+ type AgentSchema = components["schemas"]["AgentExportAgent"];
15
15
  // Response types
16
16
  export interface Agent {
17
17
  id: string;