@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/dist/client/raw.d.ts +3 -4
- package/dist/client/raw.d.ts.map +1 -1
- package/dist/generated/openapi.d.ts +465 -474
- package/dist/generated/openapi.d.ts.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/modules/runs.d.ts.map +1 -1
- package/package.json +2 -2
- package/src/client/raw.ts +3 -4
- package/src/generated/openapi.ts +465 -474
- package/src/generated/swagger.json +708 -701
- package/src/index.ts +2 -2
- package/src/modules/agents.ts +1 -1
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
|
|
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,
|
|
171
|
+
CheckpointListResponse, CreateAgentRequest,
|
|
172
172
|
// Credential types
|
|
173
173
|
CreateCredentialRequest,
|
|
174
174
|
// Cron types
|
package/src/modules/agents.ts
CHANGED
|
@@ -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"]["
|
|
14
|
+
type AgentSchema = components["schemas"]["AgentExportAgent"];
|
|
15
15
|
// Response types
|
|
16
16
|
export interface Agent {
|
|
17
17
|
id: string;
|