@meistrari/agent-sdk 0.5.1 → 0.6.0

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/README.md CHANGED
@@ -91,7 +91,7 @@ Multi-turn lifecycle rules:
91
91
  - Continue only after the stream reaches a `result` event with `status: 'waiting_messages'`.
92
92
  - Continuations while the session is `pending` or `running` fail with `409`.
93
93
  - Treat `completed`, `failed`, and `cancelled` as non-normal follow-up states in SDK consumers.
94
- - The SDK v4 path does not use the legacy `/v3/sessions/{sessionId}/continue` endpoint.
94
+ - Continue by calling `executeAgent()` again with `sessionId`; consume the updated run through `streamSession()`.
95
95
 
96
96
  ### Cancel a running session
97
97
 
@@ -204,24 +204,11 @@ console.log(timeline.status, timeline.metrics, timeline.spans)
204
204
  `prompt`, and `spans`. It does not return per-event detail. Consumers that need timeline
205
205
  events should consume `streamSession` and merge stream-derived timeline events locally.
206
206
 
207
- ### Fetch captured session files
207
+ ### Fetch artifacts
208
208
 
209
- ```ts
210
- const files = await client.listSessionFiles(sessionId, { signal })
211
-
212
- for (const file of files.tree) {
213
- console.log(file.path, file.size)
214
- }
215
-
216
- const report = await client.fetchSessionFile(sessionId, 'output/report.md', { signal })
217
-
218
- if (report.encoding === 'raw')
219
- console.log(report.content)
220
- ```
221
-
222
- `listSessionFiles` returns the file tree captured from the source sandbox after execution.
223
- `fetchSessionFile` returns a single captured file. Text-like files are returned as
224
- `encoding: 'raw'`; binary files are returned as base64.
209
+ Artifact payloads are exposed as `vault://` references in `streamSession()` events.
210
+ Read the session stream, pick the reference you need from a step or result event, then
211
+ call `resolveReference()` to download the bytes, stream, or JSON payload.
225
212
 
226
213
  ### Resolve Vault references
227
214
 
@@ -247,6 +234,6 @@ This package mirrors `@meistrari/vault-sdk` and is published as `UNLICENSED`.
247
234
 
248
235
  Focused on sandbox execution and the public v4 consumer paths: `executeAgent` (including
249
236
  session webhook registration), `streamSession`, `cancelSession`, `updateAgentModel`,
250
- `fetchTimeline`, `listSessionFiles`, `fetchSessionFile`, `resolveReference`, and webhook
251
- signature verification via `verifyWebhookSignature`. Agent CRUD, legacy polling, and the
252
- internal sandbox timeline callback are intentionally out of scope.
237
+ `fetchTimeline`, `resolveReference`, and webhook signature verification via
238
+ `verifyWebhookSignature`. Agent CRUD, legacy polling, and the internal sandbox timeline
239
+ callback are intentionally out of scope.
package/dist/index.cjs CHANGED
@@ -231,25 +231,14 @@ function agentClient(config) {
231
231
  });
232
232
  return schemas.sessionTimelineResponseSchema.parse(await response.json());
233
233
  }
234
- async function listSessionFiles(sessionId, options) {
234
+ async function fetchThread(sessionId, options) {
235
235
  const parsedSessionId = schemas.sessionTimelineIdSchema.parse(sessionId);
236
236
  const response = await request({
237
237
  method: "GET",
238
- path: `/v3/sessions/${encodeURIComponent(parsedSessionId)}/files`,
238
+ path: `/v4/sessions/${encodeURIComponent(parsedSessionId)}/thread`,
239
239
  signal: options?.signal
240
240
  });
241
- return schemas.sessionFilesTreeResponseSchema.parse(await response.json());
242
- }
243
- async function fetchSessionFile(sessionId, filePath, options) {
244
- const parsedSessionId = schemas.sessionTimelineIdSchema.parse(sessionId);
245
- if (!filePath)
246
- throw new Error("filePath is required");
247
- const response = await request({
248
- method: "GET",
249
- path: `/v3/sessions/${encodeURIComponent(parsedSessionId)}/files/${encodeURIComponent(filePath)}`,
250
- signal: options?.signal
251
- });
252
- return schemas.sessionFileContentResponseSchema.parse(await response.json());
241
+ return schemas.sessionThreadResponseSchema.parse(await response.json());
253
242
  }
254
243
  async function cancelSession(sessionId) {
255
244
  const parsedSessionId = schemas.sessionTimelineIdSchema.parse(sessionId);
@@ -299,8 +288,7 @@ function agentClient(config) {
299
288
  executeAgent,
300
289
  updateAgentModel,
301
290
  fetchTimeline,
302
- listSessionFiles,
303
- fetchSessionFile,
291
+ fetchThread,
304
292
  cancelSession,
305
293
  streamSession,
306
294
  resolveReference
package/dist/index.d.cts CHANGED
@@ -1,5 +1,5 @@
1
- import { E as ExecuteAgentRequest, a as ExecuteAgentResponse, U as UpdateAgentModelRequest, b as UpdateAgentModelResponse, S as SessionTimelineResponse, c as SessionFilesTreeResponse, d as SessionFileContentResponse, C as CancelSessionResponse, e as SessionStreamEvent } from './shared/agent-sdk.c05c2d23.cjs';
2
- export { A as AgentInput, f as SessionStatus, g as SessionWebhookConfig, h as SessionWebhookEventPayload, i as SessionWebhookEventType, j as SessionWebhookSubagent, k as SessionWebhookUsage, T as TimelineEvent, l as TimelineMetrics, m as TimelinePrompt, n as TimelineRunTurnMetrics, o as TimelineSpan, p as TimelineToolResult } from './shared/agent-sdk.c05c2d23.cjs';
1
+ import { E as ExecuteAgentRequest, a as ExecuteAgentResponse, U as UpdateAgentModelRequest, b as UpdateAgentModelResponse, S as SessionTimelineResponse, c as SessionThreadResponse, C as CancelSessionResponse, d as SessionStreamEvent } from './shared/agent-sdk.d26e6678.cjs';
2
+ export { A as AgentInput, e as SessionStatus, f as SessionWebhookConfig, g as SessionWebhookEventPayload, h as SessionWebhookEventType, i as SessionWebhookSubagent, j as SessionWebhookUsage, T as TimelineEvent, k as TimelineMetrics, l as TimelinePrompt, m as TimelineRunTurnMetrics, n as TimelineSpan, o as TimelineToolResult } from './shared/agent-sdk.d26e6678.cjs';
3
3
  import 'zod';
4
4
 
5
5
  interface AuthStrategy {
@@ -38,12 +38,7 @@ declare function agentClient(config: AgentClientConfig): {
38
38
  executeAgent: (input: ExecuteAgentRequest) => Promise<ExecuteAgentResponse>;
39
39
  updateAgentModel: (input: UpdateAgentModelRequest) => Promise<UpdateAgentModelResponse>;
40
40
  fetchTimeline: (sessionId: string, options?: FetchTimelineOptions) => Promise<SessionTimelineResponse>;
41
- listSessionFiles: (sessionId: string, options?: {
42
- signal?: AbortSignal;
43
- }) => Promise<SessionFilesTreeResponse>;
44
- fetchSessionFile: (sessionId: string, filePath: string, options?: {
45
- signal?: AbortSignal;
46
- }) => Promise<SessionFileContentResponse>;
41
+ fetchThread: (sessionId: string, options?: FetchTimelineOptions) => Promise<SessionThreadResponse>;
47
42
  cancelSession: (sessionId: string) => Promise<CancelSessionResponse>;
48
43
  streamSession: (sessionId: string, options?: StreamSessionOptions) => Promise<AsyncIterable<SessionStreamEvent>>;
49
44
  resolveReference: {
@@ -87,5 +82,5 @@ declare function parseSessionStream(stream: ReadableStream<Uint8Array>): AsyncIt
87
82
 
88
83
  declare function verifyWebhookSignature(rawBody: string | Uint8Array, signatureHeader: string | null | undefined, secret: string): Promise<boolean>;
89
84
 
90
- export { APIKeyAuthStrategy, CancelSessionResponse, DataTokenAuthStrategy, ExecuteAgentRequest, ExecuteAgentResponse, FetchError, NetworkError, SessionFileContentResponse, SessionFilesTreeResponse, SessionStreamEvent, SessionTimelineResponse, UpdateAgentModelRequest, UpdateAgentModelResponse, agentClient, isFetchError, isNetworkError, parseSessionStream, verifyWebhookSignature };
85
+ export { APIKeyAuthStrategy, CancelSessionResponse, DataTokenAuthStrategy, ExecuteAgentRequest, ExecuteAgentResponse, FetchError, NetworkError, SessionStreamEvent, SessionTimelineResponse, UpdateAgentModelRequest, UpdateAgentModelResponse, agentClient, isFetchError, isNetworkError, parseSessionStream, verifyWebhookSignature };
91
86
  export type { AgentClient, AgentClientConfig, AgentRequestError, AuthStrategy, FetchTimelineOptions, ResolveReferenceAs, ResolveReferenceOptions, StreamSessionOptions };
package/dist/index.d.mts CHANGED
@@ -1,5 +1,5 @@
1
- import { E as ExecuteAgentRequest, a as ExecuteAgentResponse, U as UpdateAgentModelRequest, b as UpdateAgentModelResponse, S as SessionTimelineResponse, c as SessionFilesTreeResponse, d as SessionFileContentResponse, C as CancelSessionResponse, e as SessionStreamEvent } from './shared/agent-sdk.c05c2d23.mjs';
2
- export { A as AgentInput, f as SessionStatus, g as SessionWebhookConfig, h as SessionWebhookEventPayload, i as SessionWebhookEventType, j as SessionWebhookSubagent, k as SessionWebhookUsage, T as TimelineEvent, l as TimelineMetrics, m as TimelinePrompt, n as TimelineRunTurnMetrics, o as TimelineSpan, p as TimelineToolResult } from './shared/agent-sdk.c05c2d23.mjs';
1
+ import { E as ExecuteAgentRequest, a as ExecuteAgentResponse, U as UpdateAgentModelRequest, b as UpdateAgentModelResponse, S as SessionTimelineResponse, c as SessionThreadResponse, C as CancelSessionResponse, d as SessionStreamEvent } from './shared/agent-sdk.d26e6678.mjs';
2
+ export { A as AgentInput, e as SessionStatus, f as SessionWebhookConfig, g as SessionWebhookEventPayload, h as SessionWebhookEventType, i as SessionWebhookSubagent, j as SessionWebhookUsage, T as TimelineEvent, k as TimelineMetrics, l as TimelinePrompt, m as TimelineRunTurnMetrics, n as TimelineSpan, o as TimelineToolResult } from './shared/agent-sdk.d26e6678.mjs';
3
3
  import 'zod';
4
4
 
5
5
  interface AuthStrategy {
@@ -38,12 +38,7 @@ declare function agentClient(config: AgentClientConfig): {
38
38
  executeAgent: (input: ExecuteAgentRequest) => Promise<ExecuteAgentResponse>;
39
39
  updateAgentModel: (input: UpdateAgentModelRequest) => Promise<UpdateAgentModelResponse>;
40
40
  fetchTimeline: (sessionId: string, options?: FetchTimelineOptions) => Promise<SessionTimelineResponse>;
41
- listSessionFiles: (sessionId: string, options?: {
42
- signal?: AbortSignal;
43
- }) => Promise<SessionFilesTreeResponse>;
44
- fetchSessionFile: (sessionId: string, filePath: string, options?: {
45
- signal?: AbortSignal;
46
- }) => Promise<SessionFileContentResponse>;
41
+ fetchThread: (sessionId: string, options?: FetchTimelineOptions) => Promise<SessionThreadResponse>;
47
42
  cancelSession: (sessionId: string) => Promise<CancelSessionResponse>;
48
43
  streamSession: (sessionId: string, options?: StreamSessionOptions) => Promise<AsyncIterable<SessionStreamEvent>>;
49
44
  resolveReference: {
@@ -87,5 +82,5 @@ declare function parseSessionStream(stream: ReadableStream<Uint8Array>): AsyncIt
87
82
 
88
83
  declare function verifyWebhookSignature(rawBody: string | Uint8Array, signatureHeader: string | null | undefined, secret: string): Promise<boolean>;
89
84
 
90
- export { APIKeyAuthStrategy, CancelSessionResponse, DataTokenAuthStrategy, ExecuteAgentRequest, ExecuteAgentResponse, FetchError, NetworkError, SessionFileContentResponse, SessionFilesTreeResponse, SessionStreamEvent, SessionTimelineResponse, UpdateAgentModelRequest, UpdateAgentModelResponse, agentClient, isFetchError, isNetworkError, parseSessionStream, verifyWebhookSignature };
85
+ export { APIKeyAuthStrategy, CancelSessionResponse, DataTokenAuthStrategy, ExecuteAgentRequest, ExecuteAgentResponse, FetchError, NetworkError, SessionStreamEvent, SessionTimelineResponse, UpdateAgentModelRequest, UpdateAgentModelResponse, agentClient, isFetchError, isNetworkError, parseSessionStream, verifyWebhookSignature };
91
86
  export type { AgentClient, AgentClientConfig, AgentRequestError, AuthStrategy, FetchTimelineOptions, ResolveReferenceAs, ResolveReferenceOptions, StreamSessionOptions };
package/dist/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
- import { E as ExecuteAgentRequest, a as ExecuteAgentResponse, U as UpdateAgentModelRequest, b as UpdateAgentModelResponse, S as SessionTimelineResponse, c as SessionFilesTreeResponse, d as SessionFileContentResponse, C as CancelSessionResponse, e as SessionStreamEvent } from './shared/agent-sdk.c05c2d23.js';
2
- export { A as AgentInput, f as SessionStatus, g as SessionWebhookConfig, h as SessionWebhookEventPayload, i as SessionWebhookEventType, j as SessionWebhookSubagent, k as SessionWebhookUsage, T as TimelineEvent, l as TimelineMetrics, m as TimelinePrompt, n as TimelineRunTurnMetrics, o as TimelineSpan, p as TimelineToolResult } from './shared/agent-sdk.c05c2d23.js';
1
+ import { E as ExecuteAgentRequest, a as ExecuteAgentResponse, U as UpdateAgentModelRequest, b as UpdateAgentModelResponse, S as SessionTimelineResponse, c as SessionThreadResponse, C as CancelSessionResponse, d as SessionStreamEvent } from './shared/agent-sdk.d26e6678.js';
2
+ export { A as AgentInput, e as SessionStatus, f as SessionWebhookConfig, g as SessionWebhookEventPayload, h as SessionWebhookEventType, i as SessionWebhookSubagent, j as SessionWebhookUsage, T as TimelineEvent, k as TimelineMetrics, l as TimelinePrompt, m as TimelineRunTurnMetrics, n as TimelineSpan, o as TimelineToolResult } from './shared/agent-sdk.d26e6678.js';
3
3
  import 'zod';
4
4
 
5
5
  interface AuthStrategy {
@@ -38,12 +38,7 @@ declare function agentClient(config: AgentClientConfig): {
38
38
  executeAgent: (input: ExecuteAgentRequest) => Promise<ExecuteAgentResponse>;
39
39
  updateAgentModel: (input: UpdateAgentModelRequest) => Promise<UpdateAgentModelResponse>;
40
40
  fetchTimeline: (sessionId: string, options?: FetchTimelineOptions) => Promise<SessionTimelineResponse>;
41
- listSessionFiles: (sessionId: string, options?: {
42
- signal?: AbortSignal;
43
- }) => Promise<SessionFilesTreeResponse>;
44
- fetchSessionFile: (sessionId: string, filePath: string, options?: {
45
- signal?: AbortSignal;
46
- }) => Promise<SessionFileContentResponse>;
41
+ fetchThread: (sessionId: string, options?: FetchTimelineOptions) => Promise<SessionThreadResponse>;
47
42
  cancelSession: (sessionId: string) => Promise<CancelSessionResponse>;
48
43
  streamSession: (sessionId: string, options?: StreamSessionOptions) => Promise<AsyncIterable<SessionStreamEvent>>;
49
44
  resolveReference: {
@@ -87,5 +82,5 @@ declare function parseSessionStream(stream: ReadableStream<Uint8Array>): AsyncIt
87
82
 
88
83
  declare function verifyWebhookSignature(rawBody: string | Uint8Array, signatureHeader: string | null | undefined, secret: string): Promise<boolean>;
89
84
 
90
- export { APIKeyAuthStrategy, CancelSessionResponse, DataTokenAuthStrategy, ExecuteAgentRequest, ExecuteAgentResponse, FetchError, NetworkError, SessionFileContentResponse, SessionFilesTreeResponse, SessionStreamEvent, SessionTimelineResponse, UpdateAgentModelRequest, UpdateAgentModelResponse, agentClient, isFetchError, isNetworkError, parseSessionStream, verifyWebhookSignature };
85
+ export { APIKeyAuthStrategy, CancelSessionResponse, DataTokenAuthStrategy, ExecuteAgentRequest, ExecuteAgentResponse, FetchError, NetworkError, SessionStreamEvent, SessionTimelineResponse, UpdateAgentModelRequest, UpdateAgentModelResponse, agentClient, isFetchError, isNetworkError, parseSessionStream, verifyWebhookSignature };
91
86
  export type { AgentClient, AgentClientConfig, AgentRequestError, AuthStrategy, FetchTimelineOptions, ResolveReferenceAs, ResolveReferenceOptions, StreamSessionOptions };
package/dist/index.mjs CHANGED
@@ -1,5 +1,5 @@
1
1
  import { VaultFile } from '@meistrari/vault-sdk';
2
- import { SESSION_STREAM_EVENT_KINDS, sessionStreamEventSchema, executeAgentRequestSchema, executeAgentResponseSchema, updateAgentModelRequestSchema, updateAgentModelResponseSchema, sessionTimelineIdSchema, sessionTimelineResponseSchema, sessionFilesTreeResponseSchema, sessionFileContentResponseSchema, cancelSessionResponseSchema } from './schemas.mjs';
2
+ import { SESSION_STREAM_EVENT_KINDS, sessionStreamEventSchema, executeAgentRequestSchema, executeAgentResponseSchema, updateAgentModelRequestSchema, updateAgentModelResponseSchema, sessionTimelineIdSchema, sessionTimelineResponseSchema, sessionThreadResponseSchema, cancelSessionResponseSchema } from './schemas.mjs';
3
3
  import 'zod';
4
4
 
5
5
  var __defProp$1 = Object.defineProperty;
@@ -229,25 +229,14 @@ function agentClient(config) {
229
229
  });
230
230
  return sessionTimelineResponseSchema.parse(await response.json());
231
231
  }
232
- async function listSessionFiles(sessionId, options) {
232
+ async function fetchThread(sessionId, options) {
233
233
  const parsedSessionId = sessionTimelineIdSchema.parse(sessionId);
234
234
  const response = await request({
235
235
  method: "GET",
236
- path: `/v3/sessions/${encodeURIComponent(parsedSessionId)}/files`,
236
+ path: `/v4/sessions/${encodeURIComponent(parsedSessionId)}/thread`,
237
237
  signal: options?.signal
238
238
  });
239
- return sessionFilesTreeResponseSchema.parse(await response.json());
240
- }
241
- async function fetchSessionFile(sessionId, filePath, options) {
242
- const parsedSessionId = sessionTimelineIdSchema.parse(sessionId);
243
- if (!filePath)
244
- throw new Error("filePath is required");
245
- const response = await request({
246
- method: "GET",
247
- path: `/v3/sessions/${encodeURIComponent(parsedSessionId)}/files/${encodeURIComponent(filePath)}`,
248
- signal: options?.signal
249
- });
250
- return sessionFileContentResponseSchema.parse(await response.json());
239
+ return sessionThreadResponseSchema.parse(await response.json());
251
240
  }
252
241
  async function cancelSession(sessionId) {
253
242
  const parsedSessionId = sessionTimelineIdSchema.parse(sessionId);
@@ -297,8 +286,7 @@ function agentClient(config) {
297
286
  executeAgent,
298
287
  updateAgentModel,
299
288
  fetchTimeline,
300
- listSessionFiles,
301
- fetchSessionFile,
289
+ fetchThread,
302
290
  cancelSession,
303
291
  streamSession,
304
292
  resolveReference
package/dist/schemas.cjs CHANGED
@@ -709,6 +709,34 @@ const sessionTimelineResponseSchema = zod.z.object({
709
709
  prompt: timelinePromptSchema,
710
710
  spans: zod.z.array(timelineSpanSchema)
711
711
  });
712
+ const sessionThreadUserMessageSchema = zod.z.object({
713
+ text: zod.z.string().nullable(),
714
+ attachments: zod.z.unknown().nullable().optional()
715
+ });
716
+ const sessionThreadAssistantMessageSchema = zod.z.object({
717
+ status: zod.z.string().nullable(),
718
+ text: zod.z.string().nullable(),
719
+ structuredContent: zod.z.unknown().nullable().optional(),
720
+ events: zod.z.array(timelineEventSchema).nullable().optional(),
721
+ attachments: zod.z.unknown().nullable().optional(),
722
+ usage: zod.z.unknown().nullable().optional()
723
+ });
724
+ const sessionThreadTurnSchema = zod.z.object({
725
+ runId: zod.z.string(),
726
+ index: zod.z.number().int().nonnegative(),
727
+ isContinuation: zod.z.boolean(),
728
+ status: zod.z.string().nullable(),
729
+ createdAt: zod.z.number().nullable(),
730
+ finishedAt: zod.z.number().nullable(),
731
+ user: sessionThreadUserMessageSchema.nullable(),
732
+ assistant: sessionThreadAssistantMessageSchema.nullable()
733
+ });
734
+ const sessionThreadResponseSchema = zod.z.object({
735
+ sessionId: zod.z.string(),
736
+ status: zod.z.string(),
737
+ turnCount: zod.z.number().int().nonnegative(),
738
+ turns: zod.z.array(sessionThreadTurnSchema)
739
+ });
712
740
  const sessionFilesTreeResponseSchema = zod.z.object({
713
741
  sessionId: zod.z.string(),
714
742
  tree: zod.z.array(zod.z.object({
@@ -800,6 +828,10 @@ exports.sessionFileContentResponseSchema = sessionFileContentResponseSchema;
800
828
  exports.sessionFilesTreeResponseSchema = sessionFilesTreeResponseSchema;
801
829
  exports.sessionStatusSchema = sessionStatusSchema;
802
830
  exports.sessionStreamEventSchema = sessionStreamEventSchema;
831
+ exports.sessionThreadAssistantMessageSchema = sessionThreadAssistantMessageSchema;
832
+ exports.sessionThreadResponseSchema = sessionThreadResponseSchema;
833
+ exports.sessionThreadTurnSchema = sessionThreadTurnSchema;
834
+ exports.sessionThreadUserMessageSchema = sessionThreadUserMessageSchema;
803
835
  exports.sessionTimelineIdSchema = sessionTimelineIdSchema;
804
836
  exports.sessionTimelineResponseSchema = sessionTimelineResponseSchema;
805
837
  exports.sessionWebhookConfigSchema = sessionWebhookConfigSchema;
@@ -1,4 +1,4 @@
1
- export { A as AgentInput, C as CancelSessionResponse, E as ExecuteAgentRequest, a as ExecuteAgentResponse, O as SESSION_STREAM_EVENT_KINDS, R as SESSION_WEBHOOK_DEFAULT_EVENTS, a3 as SessionAgentEvent, d as SessionFileContentResponse, c as SessionFilesTreeResponse, f as SessionStatus, e as SessionStreamEvent, S as SessionTimelineResponse, g as SessionWebhookConfig, h as SessionWebhookEventPayload, i as SessionWebhookEventType, $ as SessionWebhookResult, j as SessionWebhookSubagent, k as SessionWebhookUsage, T as TimelineEvent, l as TimelineMetrics, m as TimelinePrompt, n as TimelineRunTurnMetrics, o as TimelineSpan, p as TimelineToolResult, U as UpdateAgentModelRequest, b as UpdateAgentModelResponse, q as agentInputSchema, P as cancelSessionResponseSchema, t as executeAgentErrorResponseSchema, r as executeAgentRequestSchema, u as executeAgentResponseSchema, s as executeAgentSuccessResponseSchema, V as isBlockedWebhookHostname, a2 as sessionAgentEventSchema, a4 as sessionAgentEventsSchema, M as sessionFileContentResponseSchema, L as sessionFilesTreeResponseSchema, z as sessionStatusSchema, N as sessionStreamEventSchema, B as sessionTimelineIdSchema, K as sessionTimelineResponseSchema, X as sessionWebhookConfigSchema, a1 as sessionWebhookEventPayloadSchema, Q as sessionWebhookEventTypeSchema, _ as sessionWebhookResultSchema, a0 as sessionWebhookSubagentSchema, Z as sessionWebhookUsageSchema, Y as sessionWebhooksSchema, I as timelineEventSchema, D as timelineMetricsSchema, F as timelinePromptSchema, H as timelineRunTurnMetricsSchema, J as timelineSpanSchema, G as timelineToolResultSchema, x as updateAgentModelErrorResponseSchema, v as updateAgentModelRequestSchema, y as updateAgentModelResponseSchema, w as updateAgentModelSuccessResponseSchema, W as validateWebhookUrl } from './shared/agent-sdk.c05c2d23.cjs';
1
+ export { A as AgentInput, C as CancelSessionResponse, E as ExecuteAgentRequest, a as ExecuteAgentResponse, X as SESSION_STREAM_EVENT_KINDS, _ as SESSION_WEBHOOK_DEFAULT_EVENTS, a9 as SessionAgentEvent, V as SessionFileContentResponse, Q as SessionFilesTreeResponse, e as SessionStatus, d as SessionStreamEvent, c as SessionThreadResponse, N as SessionThreadTurn, S as SessionTimelineResponse, f as SessionWebhookConfig, g as SessionWebhookEventPayload, h as SessionWebhookEventType, a5 as SessionWebhookResult, i as SessionWebhookSubagent, j as SessionWebhookUsage, T as TimelineEvent, k as TimelineMetrics, l as TimelinePrompt, m as TimelineRunTurnMetrics, n as TimelineSpan, o as TimelineToolResult, U as UpdateAgentModelRequest, b as UpdateAgentModelResponse, p as agentInputSchema, Y as cancelSessionResponseSchema, s as executeAgentErrorResponseSchema, q as executeAgentRequestSchema, t as executeAgentResponseSchema, r as executeAgentSuccessResponseSchema, $ as isBlockedWebhookHostname, a8 as sessionAgentEventSchema, aa as sessionAgentEventsSchema, R as sessionFileContentResponseSchema, P as sessionFilesTreeResponseSchema, y as sessionStatusSchema, W as sessionStreamEventSchema, L as sessionThreadAssistantMessageSchema, O as sessionThreadResponseSchema, M as sessionThreadTurnSchema, K as sessionThreadUserMessageSchema, z as sessionTimelineIdSchema, J as sessionTimelineResponseSchema, a1 as sessionWebhookConfigSchema, a7 as sessionWebhookEventPayloadSchema, Z as sessionWebhookEventTypeSchema, a4 as sessionWebhookResultSchema, a6 as sessionWebhookSubagentSchema, a3 as sessionWebhookUsageSchema, a2 as sessionWebhooksSchema, H as timelineEventSchema, B as timelineMetricsSchema, D as timelinePromptSchema, G as timelineRunTurnMetricsSchema, I as timelineSpanSchema, F as timelineToolResultSchema, w as updateAgentModelErrorResponseSchema, u as updateAgentModelRequestSchema, x as updateAgentModelResponseSchema, v as updateAgentModelSuccessResponseSchema, a0 as validateWebhookUrl } from './shared/agent-sdk.d26e6678.cjs';
2
2
  import { z } from 'zod';
3
3
 
4
4
  declare const nativeAnthropicModelIds: readonly ["claude-sonnet-4-5", "claude-sonnet-4-6", "claude-sonnet-5", "claude-haiku-4-5", "claude-fable-5", "claude-opus-4-6", "claude-opus-4-7", "claude-opus-4-8"];
@@ -1,4 +1,4 @@
1
- export { A as AgentInput, C as CancelSessionResponse, E as ExecuteAgentRequest, a as ExecuteAgentResponse, O as SESSION_STREAM_EVENT_KINDS, R as SESSION_WEBHOOK_DEFAULT_EVENTS, a3 as SessionAgentEvent, d as SessionFileContentResponse, c as SessionFilesTreeResponse, f as SessionStatus, e as SessionStreamEvent, S as SessionTimelineResponse, g as SessionWebhookConfig, h as SessionWebhookEventPayload, i as SessionWebhookEventType, $ as SessionWebhookResult, j as SessionWebhookSubagent, k as SessionWebhookUsage, T as TimelineEvent, l as TimelineMetrics, m as TimelinePrompt, n as TimelineRunTurnMetrics, o as TimelineSpan, p as TimelineToolResult, U as UpdateAgentModelRequest, b as UpdateAgentModelResponse, q as agentInputSchema, P as cancelSessionResponseSchema, t as executeAgentErrorResponseSchema, r as executeAgentRequestSchema, u as executeAgentResponseSchema, s as executeAgentSuccessResponseSchema, V as isBlockedWebhookHostname, a2 as sessionAgentEventSchema, a4 as sessionAgentEventsSchema, M as sessionFileContentResponseSchema, L as sessionFilesTreeResponseSchema, z as sessionStatusSchema, N as sessionStreamEventSchema, B as sessionTimelineIdSchema, K as sessionTimelineResponseSchema, X as sessionWebhookConfigSchema, a1 as sessionWebhookEventPayloadSchema, Q as sessionWebhookEventTypeSchema, _ as sessionWebhookResultSchema, a0 as sessionWebhookSubagentSchema, Z as sessionWebhookUsageSchema, Y as sessionWebhooksSchema, I as timelineEventSchema, D as timelineMetricsSchema, F as timelinePromptSchema, H as timelineRunTurnMetricsSchema, J as timelineSpanSchema, G as timelineToolResultSchema, x as updateAgentModelErrorResponseSchema, v as updateAgentModelRequestSchema, y as updateAgentModelResponseSchema, w as updateAgentModelSuccessResponseSchema, W as validateWebhookUrl } from './shared/agent-sdk.c05c2d23.mjs';
1
+ export { A as AgentInput, C as CancelSessionResponse, E as ExecuteAgentRequest, a as ExecuteAgentResponse, X as SESSION_STREAM_EVENT_KINDS, _ as SESSION_WEBHOOK_DEFAULT_EVENTS, a9 as SessionAgentEvent, V as SessionFileContentResponse, Q as SessionFilesTreeResponse, e as SessionStatus, d as SessionStreamEvent, c as SessionThreadResponse, N as SessionThreadTurn, S as SessionTimelineResponse, f as SessionWebhookConfig, g as SessionWebhookEventPayload, h as SessionWebhookEventType, a5 as SessionWebhookResult, i as SessionWebhookSubagent, j as SessionWebhookUsage, T as TimelineEvent, k as TimelineMetrics, l as TimelinePrompt, m as TimelineRunTurnMetrics, n as TimelineSpan, o as TimelineToolResult, U as UpdateAgentModelRequest, b as UpdateAgentModelResponse, p as agentInputSchema, Y as cancelSessionResponseSchema, s as executeAgentErrorResponseSchema, q as executeAgentRequestSchema, t as executeAgentResponseSchema, r as executeAgentSuccessResponseSchema, $ as isBlockedWebhookHostname, a8 as sessionAgentEventSchema, aa as sessionAgentEventsSchema, R as sessionFileContentResponseSchema, P as sessionFilesTreeResponseSchema, y as sessionStatusSchema, W as sessionStreamEventSchema, L as sessionThreadAssistantMessageSchema, O as sessionThreadResponseSchema, M as sessionThreadTurnSchema, K as sessionThreadUserMessageSchema, z as sessionTimelineIdSchema, J as sessionTimelineResponseSchema, a1 as sessionWebhookConfigSchema, a7 as sessionWebhookEventPayloadSchema, Z as sessionWebhookEventTypeSchema, a4 as sessionWebhookResultSchema, a6 as sessionWebhookSubagentSchema, a3 as sessionWebhookUsageSchema, a2 as sessionWebhooksSchema, H as timelineEventSchema, B as timelineMetricsSchema, D as timelinePromptSchema, G as timelineRunTurnMetricsSchema, I as timelineSpanSchema, F as timelineToolResultSchema, w as updateAgentModelErrorResponseSchema, u as updateAgentModelRequestSchema, x as updateAgentModelResponseSchema, v as updateAgentModelSuccessResponseSchema, a0 as validateWebhookUrl } from './shared/agent-sdk.d26e6678.mjs';
2
2
  import { z } from 'zod';
3
3
 
4
4
  declare const nativeAnthropicModelIds: readonly ["claude-sonnet-4-5", "claude-sonnet-4-6", "claude-sonnet-5", "claude-haiku-4-5", "claude-fable-5", "claude-opus-4-6", "claude-opus-4-7", "claude-opus-4-8"];
package/dist/schemas.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- export { A as AgentInput, C as CancelSessionResponse, E as ExecuteAgentRequest, a as ExecuteAgentResponse, O as SESSION_STREAM_EVENT_KINDS, R as SESSION_WEBHOOK_DEFAULT_EVENTS, a3 as SessionAgentEvent, d as SessionFileContentResponse, c as SessionFilesTreeResponse, f as SessionStatus, e as SessionStreamEvent, S as SessionTimelineResponse, g as SessionWebhookConfig, h as SessionWebhookEventPayload, i as SessionWebhookEventType, $ as SessionWebhookResult, j as SessionWebhookSubagent, k as SessionWebhookUsage, T as TimelineEvent, l as TimelineMetrics, m as TimelinePrompt, n as TimelineRunTurnMetrics, o as TimelineSpan, p as TimelineToolResult, U as UpdateAgentModelRequest, b as UpdateAgentModelResponse, q as agentInputSchema, P as cancelSessionResponseSchema, t as executeAgentErrorResponseSchema, r as executeAgentRequestSchema, u as executeAgentResponseSchema, s as executeAgentSuccessResponseSchema, V as isBlockedWebhookHostname, a2 as sessionAgentEventSchema, a4 as sessionAgentEventsSchema, M as sessionFileContentResponseSchema, L as sessionFilesTreeResponseSchema, z as sessionStatusSchema, N as sessionStreamEventSchema, B as sessionTimelineIdSchema, K as sessionTimelineResponseSchema, X as sessionWebhookConfigSchema, a1 as sessionWebhookEventPayloadSchema, Q as sessionWebhookEventTypeSchema, _ as sessionWebhookResultSchema, a0 as sessionWebhookSubagentSchema, Z as sessionWebhookUsageSchema, Y as sessionWebhooksSchema, I as timelineEventSchema, D as timelineMetricsSchema, F as timelinePromptSchema, H as timelineRunTurnMetricsSchema, J as timelineSpanSchema, G as timelineToolResultSchema, x as updateAgentModelErrorResponseSchema, v as updateAgentModelRequestSchema, y as updateAgentModelResponseSchema, w as updateAgentModelSuccessResponseSchema, W as validateWebhookUrl } from './shared/agent-sdk.c05c2d23.js';
1
+ export { A as AgentInput, C as CancelSessionResponse, E as ExecuteAgentRequest, a as ExecuteAgentResponse, X as SESSION_STREAM_EVENT_KINDS, _ as SESSION_WEBHOOK_DEFAULT_EVENTS, a9 as SessionAgentEvent, V as SessionFileContentResponse, Q as SessionFilesTreeResponse, e as SessionStatus, d as SessionStreamEvent, c as SessionThreadResponse, N as SessionThreadTurn, S as SessionTimelineResponse, f as SessionWebhookConfig, g as SessionWebhookEventPayload, h as SessionWebhookEventType, a5 as SessionWebhookResult, i as SessionWebhookSubagent, j as SessionWebhookUsage, T as TimelineEvent, k as TimelineMetrics, l as TimelinePrompt, m as TimelineRunTurnMetrics, n as TimelineSpan, o as TimelineToolResult, U as UpdateAgentModelRequest, b as UpdateAgentModelResponse, p as agentInputSchema, Y as cancelSessionResponseSchema, s as executeAgentErrorResponseSchema, q as executeAgentRequestSchema, t as executeAgentResponseSchema, r as executeAgentSuccessResponseSchema, $ as isBlockedWebhookHostname, a8 as sessionAgentEventSchema, aa as sessionAgentEventsSchema, R as sessionFileContentResponseSchema, P as sessionFilesTreeResponseSchema, y as sessionStatusSchema, W as sessionStreamEventSchema, L as sessionThreadAssistantMessageSchema, O as sessionThreadResponseSchema, M as sessionThreadTurnSchema, K as sessionThreadUserMessageSchema, z as sessionTimelineIdSchema, J as sessionTimelineResponseSchema, a1 as sessionWebhookConfigSchema, a7 as sessionWebhookEventPayloadSchema, Z as sessionWebhookEventTypeSchema, a4 as sessionWebhookResultSchema, a6 as sessionWebhookSubagentSchema, a3 as sessionWebhookUsageSchema, a2 as sessionWebhooksSchema, H as timelineEventSchema, B as timelineMetricsSchema, D as timelinePromptSchema, G as timelineRunTurnMetricsSchema, I as timelineSpanSchema, F as timelineToolResultSchema, w as updateAgentModelErrorResponseSchema, u as updateAgentModelRequestSchema, x as updateAgentModelResponseSchema, v as updateAgentModelSuccessResponseSchema, a0 as validateWebhookUrl } from './shared/agent-sdk.d26e6678.js';
2
2
  import { z } from 'zod';
3
3
 
4
4
  declare const nativeAnthropicModelIds: readonly ["claude-sonnet-4-5", "claude-sonnet-4-6", "claude-sonnet-5", "claude-haiku-4-5", "claude-fable-5", "claude-opus-4-6", "claude-opus-4-7", "claude-opus-4-8"];
package/dist/schemas.mjs CHANGED
@@ -707,6 +707,34 @@ const sessionTimelineResponseSchema = z.object({
707
707
  prompt: timelinePromptSchema,
708
708
  spans: z.array(timelineSpanSchema)
709
709
  });
710
+ const sessionThreadUserMessageSchema = z.object({
711
+ text: z.string().nullable(),
712
+ attachments: z.unknown().nullable().optional()
713
+ });
714
+ const sessionThreadAssistantMessageSchema = z.object({
715
+ status: z.string().nullable(),
716
+ text: z.string().nullable(),
717
+ structuredContent: z.unknown().nullable().optional(),
718
+ events: z.array(timelineEventSchema).nullable().optional(),
719
+ attachments: z.unknown().nullable().optional(),
720
+ usage: z.unknown().nullable().optional()
721
+ });
722
+ const sessionThreadTurnSchema = z.object({
723
+ runId: z.string(),
724
+ index: z.number().int().nonnegative(),
725
+ isContinuation: z.boolean(),
726
+ status: z.string().nullable(),
727
+ createdAt: z.number().nullable(),
728
+ finishedAt: z.number().nullable(),
729
+ user: sessionThreadUserMessageSchema.nullable(),
730
+ assistant: sessionThreadAssistantMessageSchema.nullable()
731
+ });
732
+ const sessionThreadResponseSchema = z.object({
733
+ sessionId: z.string(),
734
+ status: z.string(),
735
+ turnCount: z.number().int().nonnegative(),
736
+ turns: z.array(sessionThreadTurnSchema)
737
+ });
710
738
  const sessionFilesTreeResponseSchema = z.object({
711
739
  sessionId: z.string(),
712
740
  tree: z.array(z.object({
@@ -778,4 +806,4 @@ const cancelSessionResponseSchema = z.discriminatedUnion("success", [
778
806
  z.object({ success: z.literal(false), error: z.string() })
779
807
  ]);
780
808
 
781
- export { SESSION_STREAM_EVENT_KINDS, SESSION_WEBHOOK_DEFAULT_EVENTS, agentInputSchema, cancelSessionResponseSchema, executeAgentErrorResponseSchema, executeAgentRequestSchema, executeAgentResponseSchema, executeAgentSuccessResponseSchema, isBlockedWebhookHostname, modelSchema, nativeAnthropicModelIds, nativeModelSchema, openrouterModelCatalog, openrouterModelIds, sessionAgentEventSchema, sessionAgentEventsSchema, sessionFileContentResponseSchema, sessionFilesTreeResponseSchema, sessionStatusSchema, sessionStreamEventSchema, sessionTimelineIdSchema, sessionTimelineResponseSchema, sessionWebhookConfigSchema, sessionWebhookEventPayloadSchema, sessionWebhookEventTypeSchema, sessionWebhookResultSchema, sessionWebhookSubagentSchema, sessionWebhookUsageSchema, sessionWebhooksSchema, timelineEventSchema, timelineMetricsSchema, timelinePromptSchema, timelineRunTurnMetricsSchema, timelineSpanSchema, timelineToolResultSchema, updateAgentModelErrorResponseSchema, updateAgentModelRequestSchema, updateAgentModelResponseSchema, updateAgentModelSuccessResponseSchema, validateWebhookUrl };
809
+ export { SESSION_STREAM_EVENT_KINDS, SESSION_WEBHOOK_DEFAULT_EVENTS, agentInputSchema, cancelSessionResponseSchema, executeAgentErrorResponseSchema, executeAgentRequestSchema, executeAgentResponseSchema, executeAgentSuccessResponseSchema, isBlockedWebhookHostname, modelSchema, nativeAnthropicModelIds, nativeModelSchema, openrouterModelCatalog, openrouterModelIds, sessionAgentEventSchema, sessionAgentEventsSchema, sessionFileContentResponseSchema, sessionFilesTreeResponseSchema, sessionStatusSchema, sessionStreamEventSchema, sessionThreadAssistantMessageSchema, sessionThreadResponseSchema, sessionThreadTurnSchema, sessionThreadUserMessageSchema, sessionTimelineIdSchema, sessionTimelineResponseSchema, sessionWebhookConfigSchema, sessionWebhookEventPayloadSchema, sessionWebhookEventTypeSchema, sessionWebhookResultSchema, sessionWebhookSubagentSchema, sessionWebhookUsageSchema, sessionWebhooksSchema, timelineEventSchema, timelineMetricsSchema, timelinePromptSchema, timelineRunTurnMetricsSchema, timelineSpanSchema, timelineToolResultSchema, updateAgentModelErrorResponseSchema, updateAgentModelRequestSchema, updateAgentModelResponseSchema, updateAgentModelSuccessResponseSchema, validateWebhookUrl };
@@ -163,9 +163,9 @@ declare const timelineEventSchema: z.ZodObject<{
163
163
  other: "other";
164
164
  }>>;
165
165
  status: z.ZodOptional<z.ZodEnum<{
166
- success: "success";
167
166
  failed: "failed";
168
167
  cancelled: "cancelled";
168
+ success: "success";
169
169
  timeout: "timeout";
170
170
  }>>;
171
171
  result: z.ZodOptional<z.ZodObject<{
@@ -242,6 +242,185 @@ declare const sessionTimelineResponseSchema: z.ZodObject<{
242
242
  }, z.core.$strip>>;
243
243
  }, z.core.$strip>;
244
244
  type SessionTimelineResponse = z.infer<typeof sessionTimelineResponseSchema>;
245
+ declare const sessionThreadUserMessageSchema: z.ZodObject<{
246
+ text: z.ZodNullable<z.ZodString>;
247
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
248
+ }, z.core.$strip>;
249
+ declare const sessionThreadAssistantMessageSchema: z.ZodObject<{
250
+ status: z.ZodNullable<z.ZodString>;
251
+ text: z.ZodNullable<z.ZodString>;
252
+ structuredContent: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
253
+ events: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
254
+ type: z.ZodEnum<{
255
+ text: "text";
256
+ api_response: "api_response";
257
+ tool_call: "tool_call";
258
+ thinking: "thinking";
259
+ tool_result: "tool_result";
260
+ }>;
261
+ relativeTimeMs: z.ZodNumber;
262
+ timestamp: z.ZodNumber;
263
+ sequenceIndex: z.ZodNumber;
264
+ runTurnId: z.ZodNullable<z.ZodString>;
265
+ toolName: z.ZodOptional<z.ZodString>;
266
+ callId: z.ZodOptional<z.ZodString>;
267
+ arguments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
268
+ displaySummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
269
+ category: z.ZodOptional<z.ZodEnum<{
270
+ file: "file";
271
+ shell: "shell";
272
+ search: "search";
273
+ edit: "edit";
274
+ web: "web";
275
+ other: "other";
276
+ }>>;
277
+ status: z.ZodOptional<z.ZodEnum<{
278
+ failed: "failed";
279
+ cancelled: "cancelled";
280
+ success: "success";
281
+ timeout: "timeout";
282
+ }>>;
283
+ result: z.ZodOptional<z.ZodObject<{
284
+ output: z.ZodString;
285
+ isError: z.ZodBoolean;
286
+ durationMs: z.ZodNumber;
287
+ }, z.core.$strip>>;
288
+ text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
289
+ tokensIn: z.ZodOptional<z.ZodNumber>;
290
+ tokensOut: z.ZodOptional<z.ZodNumber>;
291
+ cachedTokens: z.ZodOptional<z.ZodNumber>;
292
+ costUsd: z.ZodOptional<z.ZodNumber>;
293
+ }, z.core.$strip>>>>;
294
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
295
+ usage: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
296
+ }, z.core.$strip>;
297
+ declare const sessionThreadTurnSchema: z.ZodObject<{
298
+ runId: z.ZodString;
299
+ index: z.ZodNumber;
300
+ isContinuation: z.ZodBoolean;
301
+ status: z.ZodNullable<z.ZodString>;
302
+ createdAt: z.ZodNullable<z.ZodNumber>;
303
+ finishedAt: z.ZodNullable<z.ZodNumber>;
304
+ user: z.ZodNullable<z.ZodObject<{
305
+ text: z.ZodNullable<z.ZodString>;
306
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
307
+ }, z.core.$strip>>;
308
+ assistant: z.ZodNullable<z.ZodObject<{
309
+ status: z.ZodNullable<z.ZodString>;
310
+ text: z.ZodNullable<z.ZodString>;
311
+ structuredContent: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
312
+ events: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
313
+ type: z.ZodEnum<{
314
+ text: "text";
315
+ api_response: "api_response";
316
+ tool_call: "tool_call";
317
+ thinking: "thinking";
318
+ tool_result: "tool_result";
319
+ }>;
320
+ relativeTimeMs: z.ZodNumber;
321
+ timestamp: z.ZodNumber;
322
+ sequenceIndex: z.ZodNumber;
323
+ runTurnId: z.ZodNullable<z.ZodString>;
324
+ toolName: z.ZodOptional<z.ZodString>;
325
+ callId: z.ZodOptional<z.ZodString>;
326
+ arguments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
327
+ displaySummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
328
+ category: z.ZodOptional<z.ZodEnum<{
329
+ file: "file";
330
+ shell: "shell";
331
+ search: "search";
332
+ edit: "edit";
333
+ web: "web";
334
+ other: "other";
335
+ }>>;
336
+ status: z.ZodOptional<z.ZodEnum<{
337
+ failed: "failed";
338
+ cancelled: "cancelled";
339
+ success: "success";
340
+ timeout: "timeout";
341
+ }>>;
342
+ result: z.ZodOptional<z.ZodObject<{
343
+ output: z.ZodString;
344
+ isError: z.ZodBoolean;
345
+ durationMs: z.ZodNumber;
346
+ }, z.core.$strip>>;
347
+ text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
348
+ tokensIn: z.ZodOptional<z.ZodNumber>;
349
+ tokensOut: z.ZodOptional<z.ZodNumber>;
350
+ cachedTokens: z.ZodOptional<z.ZodNumber>;
351
+ costUsd: z.ZodOptional<z.ZodNumber>;
352
+ }, z.core.$strip>>>>;
353
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
354
+ usage: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
355
+ }, z.core.$strip>>;
356
+ }, z.core.$strip>;
357
+ type SessionThreadTurn = z.infer<typeof sessionThreadTurnSchema>;
358
+ declare const sessionThreadResponseSchema: z.ZodObject<{
359
+ sessionId: z.ZodString;
360
+ status: z.ZodString;
361
+ turnCount: z.ZodNumber;
362
+ turns: z.ZodArray<z.ZodObject<{
363
+ runId: z.ZodString;
364
+ index: z.ZodNumber;
365
+ isContinuation: z.ZodBoolean;
366
+ status: z.ZodNullable<z.ZodString>;
367
+ createdAt: z.ZodNullable<z.ZodNumber>;
368
+ finishedAt: z.ZodNullable<z.ZodNumber>;
369
+ user: z.ZodNullable<z.ZodObject<{
370
+ text: z.ZodNullable<z.ZodString>;
371
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
372
+ }, z.core.$strip>>;
373
+ assistant: z.ZodNullable<z.ZodObject<{
374
+ status: z.ZodNullable<z.ZodString>;
375
+ text: z.ZodNullable<z.ZodString>;
376
+ structuredContent: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
377
+ events: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
378
+ type: z.ZodEnum<{
379
+ text: "text";
380
+ api_response: "api_response";
381
+ tool_call: "tool_call";
382
+ thinking: "thinking";
383
+ tool_result: "tool_result";
384
+ }>;
385
+ relativeTimeMs: z.ZodNumber;
386
+ timestamp: z.ZodNumber;
387
+ sequenceIndex: z.ZodNumber;
388
+ runTurnId: z.ZodNullable<z.ZodString>;
389
+ toolName: z.ZodOptional<z.ZodString>;
390
+ callId: z.ZodOptional<z.ZodString>;
391
+ arguments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
392
+ displaySummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
393
+ category: z.ZodOptional<z.ZodEnum<{
394
+ file: "file";
395
+ shell: "shell";
396
+ search: "search";
397
+ edit: "edit";
398
+ web: "web";
399
+ other: "other";
400
+ }>>;
401
+ status: z.ZodOptional<z.ZodEnum<{
402
+ failed: "failed";
403
+ cancelled: "cancelled";
404
+ success: "success";
405
+ timeout: "timeout";
406
+ }>>;
407
+ result: z.ZodOptional<z.ZodObject<{
408
+ output: z.ZodString;
409
+ isError: z.ZodBoolean;
410
+ durationMs: z.ZodNumber;
411
+ }, z.core.$strip>>;
412
+ text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
413
+ tokensIn: z.ZodOptional<z.ZodNumber>;
414
+ tokensOut: z.ZodOptional<z.ZodNumber>;
415
+ cachedTokens: z.ZodOptional<z.ZodNumber>;
416
+ costUsd: z.ZodOptional<z.ZodNumber>;
417
+ }, z.core.$strip>>>>;
418
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
419
+ usage: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
420
+ }, z.core.$strip>>;
421
+ }, z.core.$strip>>;
422
+ }, z.core.$strip>;
423
+ type SessionThreadResponse = z.infer<typeof sessionThreadResponseSchema>;
245
424
  declare const sessionFilesTreeResponseSchema: z.ZodObject<{
246
425
  sessionId: z.ZodString;
247
426
  tree: z.ZodArray<z.ZodObject<{
@@ -374,9 +553,9 @@ declare const sessionStreamEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
374
553
  other: "other";
375
554
  }>>;
376
555
  status: z.ZodOptional<z.ZodEnum<{
377
- success: "success";
378
556
  failed: "failed";
379
557
  cancelled: "cancelled";
558
+ success: "success";
380
559
  timeout: "timeout";
381
560
  }>>;
382
561
  result: z.ZodOptional<z.ZodObject<{
@@ -465,8 +644,8 @@ declare const sessionWebhookSubagentSchema: z.ZodObject<{
465
644
  callId: z.ZodString;
466
645
  subagentType: z.ZodOptional<z.ZodString>;
467
646
  status: z.ZodOptional<z.ZodEnum<{
468
- success: "success";
469
647
  failed: "failed";
648
+ success: "success";
470
649
  }>>;
471
650
  durationMs: z.ZodOptional<z.ZodNumber>;
472
651
  }, z.core.$strict>;
@@ -502,8 +681,8 @@ declare const sessionWebhookEventPayloadSchema: z.ZodObject<{
502
681
  callId: z.ZodString;
503
682
  subagentType: z.ZodOptional<z.ZodString>;
504
683
  status: z.ZodOptional<z.ZodEnum<{
505
- success: "success";
506
684
  failed: "failed";
685
+ success: "success";
507
686
  }>>;
508
687
  durationMs: z.ZodOptional<z.ZodNumber>;
509
688
  }, z.core.$strict>>;
@@ -520,8 +699,8 @@ declare const sessionAgentEventSchema: z.ZodObject<{
520
699
  callId: z.ZodString;
521
700
  subagentType: z.ZodOptional<z.ZodString>;
522
701
  status: z.ZodOptional<z.ZodEnum<{
523
- success: "success";
524
702
  failed: "failed";
703
+ success: "success";
525
704
  }>>;
526
705
  durationMs: z.ZodOptional<z.ZodNumber>;
527
706
  timestamp: z.ZodNumber;
@@ -535,12 +714,12 @@ declare const sessionAgentEventsSchema: z.ZodArray<z.ZodObject<{
535
714
  callId: z.ZodString;
536
715
  subagentType: z.ZodOptional<z.ZodString>;
537
716
  status: z.ZodOptional<z.ZodEnum<{
538
- success: "success";
539
717
  failed: "failed";
718
+ success: "success";
540
719
  }>>;
541
720
  durationMs: z.ZodOptional<z.ZodNumber>;
542
721
  timestamp: z.ZodNumber;
543
722
  }, z.core.$strict>>;
544
723
 
545
- export { sessionTimelineIdSchema as B, timelineMetricsSchema as D, timelinePromptSchema as F, timelineToolResultSchema as G, timelineRunTurnMetricsSchema as H, timelineEventSchema as I, timelineSpanSchema as J, sessionTimelineResponseSchema as K, sessionFilesTreeResponseSchema as L, sessionFileContentResponseSchema as M, sessionStreamEventSchema as N, SESSION_STREAM_EVENT_KINDS as O, cancelSessionResponseSchema as P, sessionWebhookEventTypeSchema as Q, SESSION_WEBHOOK_DEFAULT_EVENTS as R, isBlockedWebhookHostname as V, validateWebhookUrl as W, sessionWebhookConfigSchema as X, sessionWebhooksSchema as Y, sessionWebhookUsageSchema as Z, sessionWebhookResultSchema as _, sessionWebhookSubagentSchema as a0, sessionWebhookEventPayloadSchema as a1, sessionAgentEventSchema as a2, sessionAgentEventsSchema as a4, agentInputSchema as q, executeAgentRequestSchema as r, executeAgentSuccessResponseSchema as s, executeAgentErrorResponseSchema as t, executeAgentResponseSchema as u, updateAgentModelRequestSchema as v, updateAgentModelSuccessResponseSchema as w, updateAgentModelErrorResponseSchema as x, updateAgentModelResponseSchema as y, sessionStatusSchema as z };
546
- export type { SessionWebhookResult as $, AgentInput as A, CancelSessionResponse as C, ExecuteAgentRequest as E, SessionTimelineResponse as S, TimelineEvent as T, UpdateAgentModelRequest as U, ExecuteAgentResponse as a, SessionAgentEvent as a3, UpdateAgentModelResponse as b, SessionFilesTreeResponse as c, SessionFileContentResponse as d, SessionStreamEvent as e, SessionStatus as f, SessionWebhookConfig as g, SessionWebhookEventPayload as h, SessionWebhookEventType as i, SessionWebhookSubagent as j, SessionWebhookUsage as k, TimelineMetrics as l, TimelinePrompt as m, TimelineRunTurnMetrics as n, TimelineSpan as o, TimelineToolResult as p };
724
+ export { isBlockedWebhookHostname as $, timelineMetricsSchema as B, timelinePromptSchema as D, timelineToolResultSchema as F, timelineRunTurnMetricsSchema as G, timelineEventSchema as H, timelineSpanSchema as I, sessionTimelineResponseSchema as J, sessionThreadUserMessageSchema as K, sessionThreadAssistantMessageSchema as L, sessionThreadTurnSchema as M, sessionThreadResponseSchema as O, sessionFilesTreeResponseSchema as P, sessionFileContentResponseSchema as R, sessionStreamEventSchema as W, SESSION_STREAM_EVENT_KINDS as X, cancelSessionResponseSchema as Y, sessionWebhookEventTypeSchema as Z, SESSION_WEBHOOK_DEFAULT_EVENTS as _, validateWebhookUrl as a0, sessionWebhookConfigSchema as a1, sessionWebhooksSchema as a2, sessionWebhookUsageSchema as a3, sessionWebhookResultSchema as a4, sessionWebhookSubagentSchema as a6, sessionWebhookEventPayloadSchema as a7, sessionAgentEventSchema as a8, sessionAgentEventsSchema as aa, agentInputSchema as p, executeAgentRequestSchema as q, executeAgentSuccessResponseSchema as r, executeAgentErrorResponseSchema as s, executeAgentResponseSchema as t, updateAgentModelRequestSchema as u, updateAgentModelSuccessResponseSchema as v, updateAgentModelErrorResponseSchema as w, updateAgentModelResponseSchema as x, sessionStatusSchema as y, sessionTimelineIdSchema as z };
725
+ export type { AgentInput as A, CancelSessionResponse as C, ExecuteAgentRequest as E, SessionThreadTurn as N, SessionFilesTreeResponse as Q, SessionTimelineResponse as S, TimelineEvent as T, UpdateAgentModelRequest as U, SessionFileContentResponse as V, ExecuteAgentResponse as a, SessionWebhookResult as a5, SessionAgentEvent as a9, UpdateAgentModelResponse as b, SessionThreadResponse as c, SessionStreamEvent as d, SessionStatus as e, SessionWebhookConfig as f, SessionWebhookEventPayload as g, SessionWebhookEventType as h, SessionWebhookSubagent as i, SessionWebhookUsage as j, TimelineMetrics as k, TimelinePrompt as l, TimelineRunTurnMetrics as m, TimelineSpan as n, TimelineToolResult as o };
@@ -163,9 +163,9 @@ declare const timelineEventSchema: z.ZodObject<{
163
163
  other: "other";
164
164
  }>>;
165
165
  status: z.ZodOptional<z.ZodEnum<{
166
- success: "success";
167
166
  failed: "failed";
168
167
  cancelled: "cancelled";
168
+ success: "success";
169
169
  timeout: "timeout";
170
170
  }>>;
171
171
  result: z.ZodOptional<z.ZodObject<{
@@ -242,6 +242,185 @@ declare const sessionTimelineResponseSchema: z.ZodObject<{
242
242
  }, z.core.$strip>>;
243
243
  }, z.core.$strip>;
244
244
  type SessionTimelineResponse = z.infer<typeof sessionTimelineResponseSchema>;
245
+ declare const sessionThreadUserMessageSchema: z.ZodObject<{
246
+ text: z.ZodNullable<z.ZodString>;
247
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
248
+ }, z.core.$strip>;
249
+ declare const sessionThreadAssistantMessageSchema: z.ZodObject<{
250
+ status: z.ZodNullable<z.ZodString>;
251
+ text: z.ZodNullable<z.ZodString>;
252
+ structuredContent: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
253
+ events: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
254
+ type: z.ZodEnum<{
255
+ text: "text";
256
+ api_response: "api_response";
257
+ tool_call: "tool_call";
258
+ thinking: "thinking";
259
+ tool_result: "tool_result";
260
+ }>;
261
+ relativeTimeMs: z.ZodNumber;
262
+ timestamp: z.ZodNumber;
263
+ sequenceIndex: z.ZodNumber;
264
+ runTurnId: z.ZodNullable<z.ZodString>;
265
+ toolName: z.ZodOptional<z.ZodString>;
266
+ callId: z.ZodOptional<z.ZodString>;
267
+ arguments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
268
+ displaySummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
269
+ category: z.ZodOptional<z.ZodEnum<{
270
+ file: "file";
271
+ shell: "shell";
272
+ search: "search";
273
+ edit: "edit";
274
+ web: "web";
275
+ other: "other";
276
+ }>>;
277
+ status: z.ZodOptional<z.ZodEnum<{
278
+ failed: "failed";
279
+ cancelled: "cancelled";
280
+ success: "success";
281
+ timeout: "timeout";
282
+ }>>;
283
+ result: z.ZodOptional<z.ZodObject<{
284
+ output: z.ZodString;
285
+ isError: z.ZodBoolean;
286
+ durationMs: z.ZodNumber;
287
+ }, z.core.$strip>>;
288
+ text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
289
+ tokensIn: z.ZodOptional<z.ZodNumber>;
290
+ tokensOut: z.ZodOptional<z.ZodNumber>;
291
+ cachedTokens: z.ZodOptional<z.ZodNumber>;
292
+ costUsd: z.ZodOptional<z.ZodNumber>;
293
+ }, z.core.$strip>>>>;
294
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
295
+ usage: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
296
+ }, z.core.$strip>;
297
+ declare const sessionThreadTurnSchema: z.ZodObject<{
298
+ runId: z.ZodString;
299
+ index: z.ZodNumber;
300
+ isContinuation: z.ZodBoolean;
301
+ status: z.ZodNullable<z.ZodString>;
302
+ createdAt: z.ZodNullable<z.ZodNumber>;
303
+ finishedAt: z.ZodNullable<z.ZodNumber>;
304
+ user: z.ZodNullable<z.ZodObject<{
305
+ text: z.ZodNullable<z.ZodString>;
306
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
307
+ }, z.core.$strip>>;
308
+ assistant: z.ZodNullable<z.ZodObject<{
309
+ status: z.ZodNullable<z.ZodString>;
310
+ text: z.ZodNullable<z.ZodString>;
311
+ structuredContent: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
312
+ events: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
313
+ type: z.ZodEnum<{
314
+ text: "text";
315
+ api_response: "api_response";
316
+ tool_call: "tool_call";
317
+ thinking: "thinking";
318
+ tool_result: "tool_result";
319
+ }>;
320
+ relativeTimeMs: z.ZodNumber;
321
+ timestamp: z.ZodNumber;
322
+ sequenceIndex: z.ZodNumber;
323
+ runTurnId: z.ZodNullable<z.ZodString>;
324
+ toolName: z.ZodOptional<z.ZodString>;
325
+ callId: z.ZodOptional<z.ZodString>;
326
+ arguments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
327
+ displaySummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
328
+ category: z.ZodOptional<z.ZodEnum<{
329
+ file: "file";
330
+ shell: "shell";
331
+ search: "search";
332
+ edit: "edit";
333
+ web: "web";
334
+ other: "other";
335
+ }>>;
336
+ status: z.ZodOptional<z.ZodEnum<{
337
+ failed: "failed";
338
+ cancelled: "cancelled";
339
+ success: "success";
340
+ timeout: "timeout";
341
+ }>>;
342
+ result: z.ZodOptional<z.ZodObject<{
343
+ output: z.ZodString;
344
+ isError: z.ZodBoolean;
345
+ durationMs: z.ZodNumber;
346
+ }, z.core.$strip>>;
347
+ text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
348
+ tokensIn: z.ZodOptional<z.ZodNumber>;
349
+ tokensOut: z.ZodOptional<z.ZodNumber>;
350
+ cachedTokens: z.ZodOptional<z.ZodNumber>;
351
+ costUsd: z.ZodOptional<z.ZodNumber>;
352
+ }, z.core.$strip>>>>;
353
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
354
+ usage: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
355
+ }, z.core.$strip>>;
356
+ }, z.core.$strip>;
357
+ type SessionThreadTurn = z.infer<typeof sessionThreadTurnSchema>;
358
+ declare const sessionThreadResponseSchema: z.ZodObject<{
359
+ sessionId: z.ZodString;
360
+ status: z.ZodString;
361
+ turnCount: z.ZodNumber;
362
+ turns: z.ZodArray<z.ZodObject<{
363
+ runId: z.ZodString;
364
+ index: z.ZodNumber;
365
+ isContinuation: z.ZodBoolean;
366
+ status: z.ZodNullable<z.ZodString>;
367
+ createdAt: z.ZodNullable<z.ZodNumber>;
368
+ finishedAt: z.ZodNullable<z.ZodNumber>;
369
+ user: z.ZodNullable<z.ZodObject<{
370
+ text: z.ZodNullable<z.ZodString>;
371
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
372
+ }, z.core.$strip>>;
373
+ assistant: z.ZodNullable<z.ZodObject<{
374
+ status: z.ZodNullable<z.ZodString>;
375
+ text: z.ZodNullable<z.ZodString>;
376
+ structuredContent: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
377
+ events: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
378
+ type: z.ZodEnum<{
379
+ text: "text";
380
+ api_response: "api_response";
381
+ tool_call: "tool_call";
382
+ thinking: "thinking";
383
+ tool_result: "tool_result";
384
+ }>;
385
+ relativeTimeMs: z.ZodNumber;
386
+ timestamp: z.ZodNumber;
387
+ sequenceIndex: z.ZodNumber;
388
+ runTurnId: z.ZodNullable<z.ZodString>;
389
+ toolName: z.ZodOptional<z.ZodString>;
390
+ callId: z.ZodOptional<z.ZodString>;
391
+ arguments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
392
+ displaySummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
393
+ category: z.ZodOptional<z.ZodEnum<{
394
+ file: "file";
395
+ shell: "shell";
396
+ search: "search";
397
+ edit: "edit";
398
+ web: "web";
399
+ other: "other";
400
+ }>>;
401
+ status: z.ZodOptional<z.ZodEnum<{
402
+ failed: "failed";
403
+ cancelled: "cancelled";
404
+ success: "success";
405
+ timeout: "timeout";
406
+ }>>;
407
+ result: z.ZodOptional<z.ZodObject<{
408
+ output: z.ZodString;
409
+ isError: z.ZodBoolean;
410
+ durationMs: z.ZodNumber;
411
+ }, z.core.$strip>>;
412
+ text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
413
+ tokensIn: z.ZodOptional<z.ZodNumber>;
414
+ tokensOut: z.ZodOptional<z.ZodNumber>;
415
+ cachedTokens: z.ZodOptional<z.ZodNumber>;
416
+ costUsd: z.ZodOptional<z.ZodNumber>;
417
+ }, z.core.$strip>>>>;
418
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
419
+ usage: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
420
+ }, z.core.$strip>>;
421
+ }, z.core.$strip>>;
422
+ }, z.core.$strip>;
423
+ type SessionThreadResponse = z.infer<typeof sessionThreadResponseSchema>;
245
424
  declare const sessionFilesTreeResponseSchema: z.ZodObject<{
246
425
  sessionId: z.ZodString;
247
426
  tree: z.ZodArray<z.ZodObject<{
@@ -374,9 +553,9 @@ declare const sessionStreamEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
374
553
  other: "other";
375
554
  }>>;
376
555
  status: z.ZodOptional<z.ZodEnum<{
377
- success: "success";
378
556
  failed: "failed";
379
557
  cancelled: "cancelled";
558
+ success: "success";
380
559
  timeout: "timeout";
381
560
  }>>;
382
561
  result: z.ZodOptional<z.ZodObject<{
@@ -465,8 +644,8 @@ declare const sessionWebhookSubagentSchema: z.ZodObject<{
465
644
  callId: z.ZodString;
466
645
  subagentType: z.ZodOptional<z.ZodString>;
467
646
  status: z.ZodOptional<z.ZodEnum<{
468
- success: "success";
469
647
  failed: "failed";
648
+ success: "success";
470
649
  }>>;
471
650
  durationMs: z.ZodOptional<z.ZodNumber>;
472
651
  }, z.core.$strict>;
@@ -502,8 +681,8 @@ declare const sessionWebhookEventPayloadSchema: z.ZodObject<{
502
681
  callId: z.ZodString;
503
682
  subagentType: z.ZodOptional<z.ZodString>;
504
683
  status: z.ZodOptional<z.ZodEnum<{
505
- success: "success";
506
684
  failed: "failed";
685
+ success: "success";
507
686
  }>>;
508
687
  durationMs: z.ZodOptional<z.ZodNumber>;
509
688
  }, z.core.$strict>>;
@@ -520,8 +699,8 @@ declare const sessionAgentEventSchema: z.ZodObject<{
520
699
  callId: z.ZodString;
521
700
  subagentType: z.ZodOptional<z.ZodString>;
522
701
  status: z.ZodOptional<z.ZodEnum<{
523
- success: "success";
524
702
  failed: "failed";
703
+ success: "success";
525
704
  }>>;
526
705
  durationMs: z.ZodOptional<z.ZodNumber>;
527
706
  timestamp: z.ZodNumber;
@@ -535,12 +714,12 @@ declare const sessionAgentEventsSchema: z.ZodArray<z.ZodObject<{
535
714
  callId: z.ZodString;
536
715
  subagentType: z.ZodOptional<z.ZodString>;
537
716
  status: z.ZodOptional<z.ZodEnum<{
538
- success: "success";
539
717
  failed: "failed";
718
+ success: "success";
540
719
  }>>;
541
720
  durationMs: z.ZodOptional<z.ZodNumber>;
542
721
  timestamp: z.ZodNumber;
543
722
  }, z.core.$strict>>;
544
723
 
545
- export { sessionTimelineIdSchema as B, timelineMetricsSchema as D, timelinePromptSchema as F, timelineToolResultSchema as G, timelineRunTurnMetricsSchema as H, timelineEventSchema as I, timelineSpanSchema as J, sessionTimelineResponseSchema as K, sessionFilesTreeResponseSchema as L, sessionFileContentResponseSchema as M, sessionStreamEventSchema as N, SESSION_STREAM_EVENT_KINDS as O, cancelSessionResponseSchema as P, sessionWebhookEventTypeSchema as Q, SESSION_WEBHOOK_DEFAULT_EVENTS as R, isBlockedWebhookHostname as V, validateWebhookUrl as W, sessionWebhookConfigSchema as X, sessionWebhooksSchema as Y, sessionWebhookUsageSchema as Z, sessionWebhookResultSchema as _, sessionWebhookSubagentSchema as a0, sessionWebhookEventPayloadSchema as a1, sessionAgentEventSchema as a2, sessionAgentEventsSchema as a4, agentInputSchema as q, executeAgentRequestSchema as r, executeAgentSuccessResponseSchema as s, executeAgentErrorResponseSchema as t, executeAgentResponseSchema as u, updateAgentModelRequestSchema as v, updateAgentModelSuccessResponseSchema as w, updateAgentModelErrorResponseSchema as x, updateAgentModelResponseSchema as y, sessionStatusSchema as z };
546
- export type { SessionWebhookResult as $, AgentInput as A, CancelSessionResponse as C, ExecuteAgentRequest as E, SessionTimelineResponse as S, TimelineEvent as T, UpdateAgentModelRequest as U, ExecuteAgentResponse as a, SessionAgentEvent as a3, UpdateAgentModelResponse as b, SessionFilesTreeResponse as c, SessionFileContentResponse as d, SessionStreamEvent as e, SessionStatus as f, SessionWebhookConfig as g, SessionWebhookEventPayload as h, SessionWebhookEventType as i, SessionWebhookSubagent as j, SessionWebhookUsage as k, TimelineMetrics as l, TimelinePrompt as m, TimelineRunTurnMetrics as n, TimelineSpan as o, TimelineToolResult as p };
724
+ export { isBlockedWebhookHostname as $, timelineMetricsSchema as B, timelinePromptSchema as D, timelineToolResultSchema as F, timelineRunTurnMetricsSchema as G, timelineEventSchema as H, timelineSpanSchema as I, sessionTimelineResponseSchema as J, sessionThreadUserMessageSchema as K, sessionThreadAssistantMessageSchema as L, sessionThreadTurnSchema as M, sessionThreadResponseSchema as O, sessionFilesTreeResponseSchema as P, sessionFileContentResponseSchema as R, sessionStreamEventSchema as W, SESSION_STREAM_EVENT_KINDS as X, cancelSessionResponseSchema as Y, sessionWebhookEventTypeSchema as Z, SESSION_WEBHOOK_DEFAULT_EVENTS as _, validateWebhookUrl as a0, sessionWebhookConfigSchema as a1, sessionWebhooksSchema as a2, sessionWebhookUsageSchema as a3, sessionWebhookResultSchema as a4, sessionWebhookSubagentSchema as a6, sessionWebhookEventPayloadSchema as a7, sessionAgentEventSchema as a8, sessionAgentEventsSchema as aa, agentInputSchema as p, executeAgentRequestSchema as q, executeAgentSuccessResponseSchema as r, executeAgentErrorResponseSchema as s, executeAgentResponseSchema as t, updateAgentModelRequestSchema as u, updateAgentModelSuccessResponseSchema as v, updateAgentModelErrorResponseSchema as w, updateAgentModelResponseSchema as x, sessionStatusSchema as y, sessionTimelineIdSchema as z };
725
+ export type { AgentInput as A, CancelSessionResponse as C, ExecuteAgentRequest as E, SessionThreadTurn as N, SessionFilesTreeResponse as Q, SessionTimelineResponse as S, TimelineEvent as T, UpdateAgentModelRequest as U, SessionFileContentResponse as V, ExecuteAgentResponse as a, SessionWebhookResult as a5, SessionAgentEvent as a9, UpdateAgentModelResponse as b, SessionThreadResponse as c, SessionStreamEvent as d, SessionStatus as e, SessionWebhookConfig as f, SessionWebhookEventPayload as g, SessionWebhookEventType as h, SessionWebhookSubagent as i, SessionWebhookUsage as j, TimelineMetrics as k, TimelinePrompt as l, TimelineRunTurnMetrics as m, TimelineSpan as n, TimelineToolResult as o };
@@ -163,9 +163,9 @@ declare const timelineEventSchema: z.ZodObject<{
163
163
  other: "other";
164
164
  }>>;
165
165
  status: z.ZodOptional<z.ZodEnum<{
166
- success: "success";
167
166
  failed: "failed";
168
167
  cancelled: "cancelled";
168
+ success: "success";
169
169
  timeout: "timeout";
170
170
  }>>;
171
171
  result: z.ZodOptional<z.ZodObject<{
@@ -242,6 +242,185 @@ declare const sessionTimelineResponseSchema: z.ZodObject<{
242
242
  }, z.core.$strip>>;
243
243
  }, z.core.$strip>;
244
244
  type SessionTimelineResponse = z.infer<typeof sessionTimelineResponseSchema>;
245
+ declare const sessionThreadUserMessageSchema: z.ZodObject<{
246
+ text: z.ZodNullable<z.ZodString>;
247
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
248
+ }, z.core.$strip>;
249
+ declare const sessionThreadAssistantMessageSchema: z.ZodObject<{
250
+ status: z.ZodNullable<z.ZodString>;
251
+ text: z.ZodNullable<z.ZodString>;
252
+ structuredContent: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
253
+ events: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
254
+ type: z.ZodEnum<{
255
+ text: "text";
256
+ api_response: "api_response";
257
+ tool_call: "tool_call";
258
+ thinking: "thinking";
259
+ tool_result: "tool_result";
260
+ }>;
261
+ relativeTimeMs: z.ZodNumber;
262
+ timestamp: z.ZodNumber;
263
+ sequenceIndex: z.ZodNumber;
264
+ runTurnId: z.ZodNullable<z.ZodString>;
265
+ toolName: z.ZodOptional<z.ZodString>;
266
+ callId: z.ZodOptional<z.ZodString>;
267
+ arguments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
268
+ displaySummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
269
+ category: z.ZodOptional<z.ZodEnum<{
270
+ file: "file";
271
+ shell: "shell";
272
+ search: "search";
273
+ edit: "edit";
274
+ web: "web";
275
+ other: "other";
276
+ }>>;
277
+ status: z.ZodOptional<z.ZodEnum<{
278
+ failed: "failed";
279
+ cancelled: "cancelled";
280
+ success: "success";
281
+ timeout: "timeout";
282
+ }>>;
283
+ result: z.ZodOptional<z.ZodObject<{
284
+ output: z.ZodString;
285
+ isError: z.ZodBoolean;
286
+ durationMs: z.ZodNumber;
287
+ }, z.core.$strip>>;
288
+ text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
289
+ tokensIn: z.ZodOptional<z.ZodNumber>;
290
+ tokensOut: z.ZodOptional<z.ZodNumber>;
291
+ cachedTokens: z.ZodOptional<z.ZodNumber>;
292
+ costUsd: z.ZodOptional<z.ZodNumber>;
293
+ }, z.core.$strip>>>>;
294
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
295
+ usage: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
296
+ }, z.core.$strip>;
297
+ declare const sessionThreadTurnSchema: z.ZodObject<{
298
+ runId: z.ZodString;
299
+ index: z.ZodNumber;
300
+ isContinuation: z.ZodBoolean;
301
+ status: z.ZodNullable<z.ZodString>;
302
+ createdAt: z.ZodNullable<z.ZodNumber>;
303
+ finishedAt: z.ZodNullable<z.ZodNumber>;
304
+ user: z.ZodNullable<z.ZodObject<{
305
+ text: z.ZodNullable<z.ZodString>;
306
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
307
+ }, z.core.$strip>>;
308
+ assistant: z.ZodNullable<z.ZodObject<{
309
+ status: z.ZodNullable<z.ZodString>;
310
+ text: z.ZodNullable<z.ZodString>;
311
+ structuredContent: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
312
+ events: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
313
+ type: z.ZodEnum<{
314
+ text: "text";
315
+ api_response: "api_response";
316
+ tool_call: "tool_call";
317
+ thinking: "thinking";
318
+ tool_result: "tool_result";
319
+ }>;
320
+ relativeTimeMs: z.ZodNumber;
321
+ timestamp: z.ZodNumber;
322
+ sequenceIndex: z.ZodNumber;
323
+ runTurnId: z.ZodNullable<z.ZodString>;
324
+ toolName: z.ZodOptional<z.ZodString>;
325
+ callId: z.ZodOptional<z.ZodString>;
326
+ arguments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
327
+ displaySummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
328
+ category: z.ZodOptional<z.ZodEnum<{
329
+ file: "file";
330
+ shell: "shell";
331
+ search: "search";
332
+ edit: "edit";
333
+ web: "web";
334
+ other: "other";
335
+ }>>;
336
+ status: z.ZodOptional<z.ZodEnum<{
337
+ failed: "failed";
338
+ cancelled: "cancelled";
339
+ success: "success";
340
+ timeout: "timeout";
341
+ }>>;
342
+ result: z.ZodOptional<z.ZodObject<{
343
+ output: z.ZodString;
344
+ isError: z.ZodBoolean;
345
+ durationMs: z.ZodNumber;
346
+ }, z.core.$strip>>;
347
+ text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
348
+ tokensIn: z.ZodOptional<z.ZodNumber>;
349
+ tokensOut: z.ZodOptional<z.ZodNumber>;
350
+ cachedTokens: z.ZodOptional<z.ZodNumber>;
351
+ costUsd: z.ZodOptional<z.ZodNumber>;
352
+ }, z.core.$strip>>>>;
353
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
354
+ usage: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
355
+ }, z.core.$strip>>;
356
+ }, z.core.$strip>;
357
+ type SessionThreadTurn = z.infer<typeof sessionThreadTurnSchema>;
358
+ declare const sessionThreadResponseSchema: z.ZodObject<{
359
+ sessionId: z.ZodString;
360
+ status: z.ZodString;
361
+ turnCount: z.ZodNumber;
362
+ turns: z.ZodArray<z.ZodObject<{
363
+ runId: z.ZodString;
364
+ index: z.ZodNumber;
365
+ isContinuation: z.ZodBoolean;
366
+ status: z.ZodNullable<z.ZodString>;
367
+ createdAt: z.ZodNullable<z.ZodNumber>;
368
+ finishedAt: z.ZodNullable<z.ZodNumber>;
369
+ user: z.ZodNullable<z.ZodObject<{
370
+ text: z.ZodNullable<z.ZodString>;
371
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
372
+ }, z.core.$strip>>;
373
+ assistant: z.ZodNullable<z.ZodObject<{
374
+ status: z.ZodNullable<z.ZodString>;
375
+ text: z.ZodNullable<z.ZodString>;
376
+ structuredContent: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
377
+ events: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
378
+ type: z.ZodEnum<{
379
+ text: "text";
380
+ api_response: "api_response";
381
+ tool_call: "tool_call";
382
+ thinking: "thinking";
383
+ tool_result: "tool_result";
384
+ }>;
385
+ relativeTimeMs: z.ZodNumber;
386
+ timestamp: z.ZodNumber;
387
+ sequenceIndex: z.ZodNumber;
388
+ runTurnId: z.ZodNullable<z.ZodString>;
389
+ toolName: z.ZodOptional<z.ZodString>;
390
+ callId: z.ZodOptional<z.ZodString>;
391
+ arguments: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
392
+ displaySummary: z.ZodOptional<z.ZodNullable<z.ZodString>>;
393
+ category: z.ZodOptional<z.ZodEnum<{
394
+ file: "file";
395
+ shell: "shell";
396
+ search: "search";
397
+ edit: "edit";
398
+ web: "web";
399
+ other: "other";
400
+ }>>;
401
+ status: z.ZodOptional<z.ZodEnum<{
402
+ failed: "failed";
403
+ cancelled: "cancelled";
404
+ success: "success";
405
+ timeout: "timeout";
406
+ }>>;
407
+ result: z.ZodOptional<z.ZodObject<{
408
+ output: z.ZodString;
409
+ isError: z.ZodBoolean;
410
+ durationMs: z.ZodNumber;
411
+ }, z.core.$strip>>;
412
+ text: z.ZodOptional<z.ZodNullable<z.ZodString>>;
413
+ tokensIn: z.ZodOptional<z.ZodNumber>;
414
+ tokensOut: z.ZodOptional<z.ZodNumber>;
415
+ cachedTokens: z.ZodOptional<z.ZodNumber>;
416
+ costUsd: z.ZodOptional<z.ZodNumber>;
417
+ }, z.core.$strip>>>>;
418
+ attachments: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
419
+ usage: z.ZodOptional<z.ZodNullable<z.ZodUnknown>>;
420
+ }, z.core.$strip>>;
421
+ }, z.core.$strip>>;
422
+ }, z.core.$strip>;
423
+ type SessionThreadResponse = z.infer<typeof sessionThreadResponseSchema>;
245
424
  declare const sessionFilesTreeResponseSchema: z.ZodObject<{
246
425
  sessionId: z.ZodString;
247
426
  tree: z.ZodArray<z.ZodObject<{
@@ -374,9 +553,9 @@ declare const sessionStreamEventSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
374
553
  other: "other";
375
554
  }>>;
376
555
  status: z.ZodOptional<z.ZodEnum<{
377
- success: "success";
378
556
  failed: "failed";
379
557
  cancelled: "cancelled";
558
+ success: "success";
380
559
  timeout: "timeout";
381
560
  }>>;
382
561
  result: z.ZodOptional<z.ZodObject<{
@@ -465,8 +644,8 @@ declare const sessionWebhookSubagentSchema: z.ZodObject<{
465
644
  callId: z.ZodString;
466
645
  subagentType: z.ZodOptional<z.ZodString>;
467
646
  status: z.ZodOptional<z.ZodEnum<{
468
- success: "success";
469
647
  failed: "failed";
648
+ success: "success";
470
649
  }>>;
471
650
  durationMs: z.ZodOptional<z.ZodNumber>;
472
651
  }, z.core.$strict>;
@@ -502,8 +681,8 @@ declare const sessionWebhookEventPayloadSchema: z.ZodObject<{
502
681
  callId: z.ZodString;
503
682
  subagentType: z.ZodOptional<z.ZodString>;
504
683
  status: z.ZodOptional<z.ZodEnum<{
505
- success: "success";
506
684
  failed: "failed";
685
+ success: "success";
507
686
  }>>;
508
687
  durationMs: z.ZodOptional<z.ZodNumber>;
509
688
  }, z.core.$strict>>;
@@ -520,8 +699,8 @@ declare const sessionAgentEventSchema: z.ZodObject<{
520
699
  callId: z.ZodString;
521
700
  subagentType: z.ZodOptional<z.ZodString>;
522
701
  status: z.ZodOptional<z.ZodEnum<{
523
- success: "success";
524
702
  failed: "failed";
703
+ success: "success";
525
704
  }>>;
526
705
  durationMs: z.ZodOptional<z.ZodNumber>;
527
706
  timestamp: z.ZodNumber;
@@ -535,12 +714,12 @@ declare const sessionAgentEventsSchema: z.ZodArray<z.ZodObject<{
535
714
  callId: z.ZodString;
536
715
  subagentType: z.ZodOptional<z.ZodString>;
537
716
  status: z.ZodOptional<z.ZodEnum<{
538
- success: "success";
539
717
  failed: "failed";
718
+ success: "success";
540
719
  }>>;
541
720
  durationMs: z.ZodOptional<z.ZodNumber>;
542
721
  timestamp: z.ZodNumber;
543
722
  }, z.core.$strict>>;
544
723
 
545
- export { sessionTimelineIdSchema as B, timelineMetricsSchema as D, timelinePromptSchema as F, timelineToolResultSchema as G, timelineRunTurnMetricsSchema as H, timelineEventSchema as I, timelineSpanSchema as J, sessionTimelineResponseSchema as K, sessionFilesTreeResponseSchema as L, sessionFileContentResponseSchema as M, sessionStreamEventSchema as N, SESSION_STREAM_EVENT_KINDS as O, cancelSessionResponseSchema as P, sessionWebhookEventTypeSchema as Q, SESSION_WEBHOOK_DEFAULT_EVENTS as R, isBlockedWebhookHostname as V, validateWebhookUrl as W, sessionWebhookConfigSchema as X, sessionWebhooksSchema as Y, sessionWebhookUsageSchema as Z, sessionWebhookResultSchema as _, sessionWebhookSubagentSchema as a0, sessionWebhookEventPayloadSchema as a1, sessionAgentEventSchema as a2, sessionAgentEventsSchema as a4, agentInputSchema as q, executeAgentRequestSchema as r, executeAgentSuccessResponseSchema as s, executeAgentErrorResponseSchema as t, executeAgentResponseSchema as u, updateAgentModelRequestSchema as v, updateAgentModelSuccessResponseSchema as w, updateAgentModelErrorResponseSchema as x, updateAgentModelResponseSchema as y, sessionStatusSchema as z };
546
- export type { SessionWebhookResult as $, AgentInput as A, CancelSessionResponse as C, ExecuteAgentRequest as E, SessionTimelineResponse as S, TimelineEvent as T, UpdateAgentModelRequest as U, ExecuteAgentResponse as a, SessionAgentEvent as a3, UpdateAgentModelResponse as b, SessionFilesTreeResponse as c, SessionFileContentResponse as d, SessionStreamEvent as e, SessionStatus as f, SessionWebhookConfig as g, SessionWebhookEventPayload as h, SessionWebhookEventType as i, SessionWebhookSubagent as j, SessionWebhookUsage as k, TimelineMetrics as l, TimelinePrompt as m, TimelineRunTurnMetrics as n, TimelineSpan as o, TimelineToolResult as p };
724
+ export { isBlockedWebhookHostname as $, timelineMetricsSchema as B, timelinePromptSchema as D, timelineToolResultSchema as F, timelineRunTurnMetricsSchema as G, timelineEventSchema as H, timelineSpanSchema as I, sessionTimelineResponseSchema as J, sessionThreadUserMessageSchema as K, sessionThreadAssistantMessageSchema as L, sessionThreadTurnSchema as M, sessionThreadResponseSchema as O, sessionFilesTreeResponseSchema as P, sessionFileContentResponseSchema as R, sessionStreamEventSchema as W, SESSION_STREAM_EVENT_KINDS as X, cancelSessionResponseSchema as Y, sessionWebhookEventTypeSchema as Z, SESSION_WEBHOOK_DEFAULT_EVENTS as _, validateWebhookUrl as a0, sessionWebhookConfigSchema as a1, sessionWebhooksSchema as a2, sessionWebhookUsageSchema as a3, sessionWebhookResultSchema as a4, sessionWebhookSubagentSchema as a6, sessionWebhookEventPayloadSchema as a7, sessionAgentEventSchema as a8, sessionAgentEventsSchema as aa, agentInputSchema as p, executeAgentRequestSchema as q, executeAgentSuccessResponseSchema as r, executeAgentErrorResponseSchema as s, executeAgentResponseSchema as t, updateAgentModelRequestSchema as u, updateAgentModelSuccessResponseSchema as v, updateAgentModelErrorResponseSchema as w, updateAgentModelResponseSchema as x, sessionStatusSchema as y, sessionTimelineIdSchema as z };
725
+ export type { AgentInput as A, CancelSessionResponse as C, ExecuteAgentRequest as E, SessionThreadTurn as N, SessionFilesTreeResponse as Q, SessionTimelineResponse as S, TimelineEvent as T, UpdateAgentModelRequest as U, SessionFileContentResponse as V, ExecuteAgentResponse as a, SessionWebhookResult as a5, SessionAgentEvent as a9, UpdateAgentModelResponse as b, SessionThreadResponse as c, SessionStreamEvent as d, SessionStatus as e, SessionWebhookConfig as f, SessionWebhookEventPayload as g, SessionWebhookEventType as h, SessionWebhookSubagent as i, SessionWebhookUsage as j, TimelineMetrics as k, TimelinePrompt as l, TimelineRunTurnMetrics as m, TimelineSpan as n, TimelineToolResult as o };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@meistrari/agent-sdk",
3
3
  "type": "module",
4
- "version": "0.5.1",
4
+ "version": "0.6.0",
5
5
  "license": "UNLICENSED",
6
6
  "repository": {
7
7
  "type": "git",