@archastro/sdk 0.5.3 → 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.
Files changed (53) hide show
  1. package/dist/channels/api_chat_channel.d.ts +4 -0
  2. package/dist/channels/api_chat_channel.d.ts.map +1 -1
  3. package/dist/channels/api_chat_channel.js +9 -1
  4. package/dist/channels/api_chat_channel.js.map +1 -1
  5. package/dist/runtime/http-client.d.ts +17 -0
  6. package/dist/runtime/http-client.d.ts.map +1 -1
  7. package/dist/runtime/http-client.js +116 -0
  8. package/dist/runtime/http-client.js.map +1 -1
  9. package/dist/types/ai.d.ts +271 -2
  10. package/dist/types/ai.d.ts.map +1 -1
  11. package/dist/types/ai.js +51 -1
  12. package/dist/types/ai.js.map +1 -1
  13. package/dist/types/chat.d.ts +142 -0
  14. package/dist/types/chat.d.ts.map +1 -1
  15. package/dist/types/common.d.ts +88 -27
  16. package/dist/types/common.d.ts.map +1 -1
  17. package/dist/types/common.js +12 -6
  18. package/dist/types/common.js.map +1 -1
  19. package/dist/types/config.d.ts +6 -6
  20. package/dist/types/teams.d.ts +12 -0
  21. package/dist/types/teams.d.ts.map +1 -1
  22. package/dist/types/threads.d.ts +10 -0
  23. package/dist/types/threads.d.ts.map +1 -1
  24. package/dist/v1/resources/activity_feed.d.ts +1 -0
  25. package/dist/v1/resources/activity_feed.d.ts.map +1 -1
  26. package/dist/v1/resources/activity_feed.js +1 -1
  27. package/dist/v1/resources/agents.d.ts +3 -1
  28. package/dist/v1/resources/agents.d.ts.map +1 -1
  29. package/dist/v1/resources/agents.js +3 -2
  30. package/dist/v1/resources/agents.js.map +1 -1
  31. package/dist/v1/resources/ai.d.ts +81 -3
  32. package/dist/v1/resources/ai.d.ts.map +1 -1
  33. package/dist/v1/resources/ai.js +26 -3
  34. package/dist/v1/resources/ai.js.map +1 -1
  35. package/dist/v1/resources/config.d.ts +8 -0
  36. package/dist/v1/resources/config.d.ts.map +1 -1
  37. package/dist/v1/resources/config.js +5 -1
  38. package/dist/v1/resources/config.js.map +1 -1
  39. package/dist/v1/resources/solutions.d.ts +11 -7
  40. package/dist/v1/resources/solutions.d.ts.map +1 -1
  41. package/dist/v1/resources/solutions.js +12 -8
  42. package/dist/v1/resources/solutions.js.map +1 -1
  43. package/dist/v1/resources/teams.d.ts +3 -0
  44. package/dist/v1/resources/teams.d.ts.map +1 -1
  45. package/dist/v1/resources/teams.js +1 -1
  46. package/dist/v1/resources/threads.d.ts +24 -4
  47. package/dist/v1/resources/threads.d.ts.map +1 -1
  48. package/dist/v1/resources/threads.js +37 -5
  49. package/dist/v1/resources/threads.js.map +1 -1
  50. package/dist/v1/resources/users.d.ts +2 -0
  51. package/dist/v1/resources/users.d.ts.map +1 -1
  52. package/dist/v1/resources/users.js +1 -1
  53. package/package.json +2 -2
package/dist/types/ai.js CHANGED
@@ -1,7 +1,23 @@
1
1
  // Copyright (c) 2026 ArchAstro Inc. All Rights Reserved.
2
2
  // This file is auto-generated by @archastro/sdk-generator. Do not edit.
3
- // Content hash: c6432ec19ed4
3
+ // Content hash: a9120b7e4fcc
4
4
  import { z } from "zod";
5
+ /** Runtime validator for {@link AIChatStreamDone}. */
6
+ export const aIChatStreamDoneSchema = z.object({
7
+ /** The overall finish reason for the completion. */
8
+ finish_reason: z.string().optional().describe("The overall finish reason for the completion."),
9
+ /** Number of model runs executed, including continuations triggered by tool calls. */
10
+ run_count: z.number().int().optional().describe("Number of model runs executed, including continuations triggered by tool calls."),
11
+ /** Aggregate token usage across every run in the completion (including tool-call continuations), keyed by model ID. */
12
+ total_usage: z.record(z.unknown()).optional().describe("Aggregate token usage across every run in the completion (including tool-call continuations), keyed by model ID."),
13
+ /** Token usage for the final run, keyed by model ID. */
14
+ usage: z.record(z.unknown()).optional().describe("Token usage for the final run, keyed by model ID."),
15
+ }).describe("Terminal event marking the end of a streaming chat completion (SSE `done` event).");
16
+ /** Runtime validator for {@link AIChatStreamError}. */
17
+ export const aIChatStreamErrorSchema = z.object({
18
+ /** Human-readable description of the error that terminated the stream. */
19
+ message: z.string().describe("Human-readable description of the error that terminated the stream."),
20
+ }).describe("Terminal error event for a streaming chat completion (SSE `error` event).");
5
21
  /** Runtime validator for {@link AIToolCall}. */
6
22
  export const aIToolCallSchema = z.object({
7
23
  /** Arguments the model wants to pass to the tool, as a key-value map. Deserialize and validate these against the tool's input schema before executing. */
@@ -41,6 +57,40 @@ export const aIMessageSchema = z.object({
41
57
  /** Tool execution results provided in a `tool` message. Each entry corresponds to a prior tool call by its `id`. `null` on all other message roles. */
42
58
  tool_results: z.array(aIToolResultSchema).optional().describe("Tool execution results provided in a `tool` message. Each entry corresponds to a prior tool call by its `id`. `null` on all other message roles."),
43
59
  }).describe("A single message in an AI conversation, following the OpenAI-compatible chat format. Used in both request inputs and completion responses.");
60
+ /** Runtime validator for {@link AIChatStreamMessageComplete}. */
61
+ export const aIChatStreamMessageCompleteSchema = z.object({
62
+ /** Why the model stopped generating this message, e.g. `"stop"`, `"length"`, or `"tool_calls"`. */
63
+ finish_reason: z.string().optional().describe("Why the model stopped generating this message, e.g. `\"stop\"`, `\"length\"`, or `\"tool_calls\"`."),
64
+ /** The complete assistant message for this run, assembled from the preceding deltas. */
65
+ message: aIMessageSchema.describe("The complete assistant message for this run, assembled from the preceding deltas."),
66
+ /** Token consumption for this run, keyed by model ID. `null` when usage data is unavailable. */
67
+ usage: z.record(z.unknown()).optional().describe("Token consumption for this run, keyed by model ID. `null` when usage data is unavailable."),
68
+ }).describe("The fully assembled assistant message for one run of a streaming chat completion (SSE `message_complete` event).");
69
+ /** Runtime validator for {@link AIChatStreamMessageDelta}. */
70
+ export const aIChatStreamMessageDeltaSchema = z.object({
71
+ /** The chunk of assistant text produced since the previous `message_delta` event. Concatenate deltas in order to reconstruct the message. */
72
+ delta: z.string().describe("The chunk of assistant text produced since the previous `message_delta` event. Concatenate deltas in order to reconstruct the message."),
73
+ }).describe("Incremental assistant text emitted during a streaming chat completion (SSE `message_delta` event).");
74
+ /** Runtime validator for {@link AIChatStreamToolCallDelta}. */
75
+ export const aIChatStreamToolCallDeltaSchema = z.object({
76
+ /** A chunk of the tool call's serialized arguments. Concatenate deltas to reconstruct the arguments JSON. */
77
+ delta: z.string().optional().describe("A chunk of the tool call's serialized arguments. Concatenate deltas to reconstruct the arguments JSON."),
78
+ /** Identifier of the tool call this delta belongs to, once the model has assigned one. */
79
+ id: z.string().optional().describe("Identifier of the tool call this delta belongs to, once the model has assigned one."),
80
+ /** Name of the tool being called, once known. */
81
+ name: z.string().optional().describe("Name of the tool being called, once known."),
82
+ }).describe("Incremental tool-call data emitted as the model assembles a tool invocation (SSE `tool_call_delta` event).");
83
+ /** Runtime validator for {@link AIChatStreamToolResult}. */
84
+ export const aIChatStreamToolResultSchema = z.object({
85
+ /** The tool's output, serialized as a string. */
86
+ content: z.string().optional().describe("The tool's output, serialized as a string."),
87
+ /** ID of the tool call this result satisfies. */
88
+ id: z.string().optional().describe("ID of the tool call this result satisfies."),
89
+ /** Name of the tool that produced this result. */
90
+ name: z.string().optional().describe("Name of the tool that produced this result."),
91
+ /** How the tool call resolved, e.g. `"ok"` or `"error"`. */
92
+ resolution: z.string().optional().describe("How the tool call resolved, e.g. `\"ok\"` or `\"error\"`."),
93
+ }).describe("The result of a server-executed tool, streamed back into the run (SSE `tool_result` event).");
44
94
  /** Runtime validator for {@link AICompletionResult}. */
45
95
  export const aICompletionResultSchema = z.object({
46
96
  /** The reason the model stopped generating. Common values include `"stop"` (natural end), `"length"` (token limit reached), and `"tool_calls"` (the model invoked a tool). */
@@ -1 +1 @@
1
- {"version":3,"file":"ai.js","sourceRoot":"","sources":["../../src/types/ai.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ai.js","sourceRoot":"","sources":["../../src/types/ai.ts"],"names":[],"mappings":"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"}