@mastra/client-js 0.0.0-message-list-update-20250715150321 → 0.0.0-model-router-unknown-provider-20251017212006

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 (77) hide show
  1. package/CHANGELOG.md +1333 -3
  2. package/README.md +6 -7
  3. package/dist/client.d.ts +278 -0
  4. package/dist/client.d.ts.map +1 -0
  5. package/dist/example.d.ts +2 -0
  6. package/dist/example.d.ts.map +1 -0
  7. package/dist/index.cjs +2187 -1178
  8. package/dist/index.cjs.map +1 -0
  9. package/dist/index.d.ts +5 -1194
  10. package/dist/index.d.ts.map +1 -0
  11. package/dist/index.js +2187 -1180
  12. package/dist/index.js.map +1 -0
  13. package/dist/resources/a2a.d.ts +41 -0
  14. package/dist/resources/a2a.d.ts.map +1 -0
  15. package/dist/resources/agent-builder.d.ts +160 -0
  16. package/dist/resources/agent-builder.d.ts.map +1 -0
  17. package/dist/resources/agent.d.ts +184 -0
  18. package/dist/resources/agent.d.ts.map +1 -0
  19. package/dist/resources/base.d.ts +13 -0
  20. package/dist/resources/base.d.ts.map +1 -0
  21. package/dist/resources/index.d.ts +11 -0
  22. package/dist/resources/index.d.ts.map +1 -0
  23. package/dist/resources/mcp-tool.d.ts +28 -0
  24. package/dist/resources/mcp-tool.d.ts.map +1 -0
  25. package/dist/resources/memory-thread.d.ts +53 -0
  26. package/dist/resources/memory-thread.d.ts.map +1 -0
  27. package/dist/resources/network-memory-thread.d.ts +47 -0
  28. package/dist/resources/network-memory-thread.d.ts.map +1 -0
  29. package/dist/resources/observability.d.ts +35 -0
  30. package/dist/resources/observability.d.ts.map +1 -0
  31. package/dist/resources/tool.d.ts +24 -0
  32. package/dist/resources/tool.d.ts.map +1 -0
  33. package/dist/resources/vector.d.ts +51 -0
  34. package/dist/resources/vector.d.ts.map +1 -0
  35. package/dist/resources/workflow.d.ts +269 -0
  36. package/dist/resources/workflow.d.ts.map +1 -0
  37. package/dist/tools.d.ts +22 -0
  38. package/dist/tools.d.ts.map +1 -0
  39. package/dist/types.d.ts +479 -0
  40. package/dist/types.d.ts.map +1 -0
  41. package/dist/utils/index.d.ts +5 -0
  42. package/dist/utils/index.d.ts.map +1 -0
  43. package/dist/utils/process-client-tools.d.ts +3 -0
  44. package/dist/utils/process-client-tools.d.ts.map +1 -0
  45. package/dist/utils/process-mastra-stream.d.ts +11 -0
  46. package/dist/utils/process-mastra-stream.d.ts.map +1 -0
  47. package/dist/utils/zod-to-json-schema.d.ts +3 -0
  48. package/dist/utils/zod-to-json-schema.d.ts.map +1 -0
  49. package/package.json +25 -14
  50. package/.turbo/turbo-build.log +0 -19
  51. package/dist/index.d.cts +0 -1194
  52. package/eslint.config.js +0 -6
  53. package/src/adapters/agui.test.ts +0 -180
  54. package/src/adapters/agui.ts +0 -239
  55. package/src/client.ts +0 -526
  56. package/src/example.ts +0 -95
  57. package/src/index.test.ts +0 -830
  58. package/src/index.ts +0 -2
  59. package/src/resources/a2a.ts +0 -88
  60. package/src/resources/agent.ts +0 -800
  61. package/src/resources/base.ts +0 -72
  62. package/src/resources/index.ts +0 -10
  63. package/src/resources/legacy-workflow.ts +0 -242
  64. package/src/resources/mcp-tool.ts +0 -48
  65. package/src/resources/memory-thread.ts +0 -63
  66. package/src/resources/network-memory-thread.ts +0 -63
  67. package/src/resources/network.ts +0 -85
  68. package/src/resources/tool.ts +0 -45
  69. package/src/resources/vNextNetwork.ts +0 -194
  70. package/src/resources/vector.ts +0 -83
  71. package/src/resources/workflow.ts +0 -396
  72. package/src/types.ts +0 -428
  73. package/src/utils/index.ts +0 -11
  74. package/src/utils/process-client-tools.ts +0 -32
  75. package/src/utils/zod-to-json-schema.ts +0 -10
  76. package/tsconfig.json +0 -5
  77. package/vitest.config.js +0 -8
package/README.md CHANGED
@@ -53,8 +53,10 @@ const client = new MastraClient({
53
53
  - `getAgents()`: Get all available agents
54
54
  - `getAgent(agentId)`: Get a specific agent instance
55
55
  - `agent.details()`: Get agent details
56
- - `agent.generate(params)`: Generate a response
56
+ - `agent.generate(params)`: Generate a response
57
+ - `agent.generateLegacy(params)`: Legacy API for generating a response (V1 models)
57
58
  - `agent.stream(params)`: Stream a response
59
+ - `agent.streamLegacy(params)`: Legacy API for streaming a response (V1 models)
58
60
  - `agent.getTool(toolId)`: Get agent tool details
59
61
  - `agent.evals()`: Get agent evaluations
60
62
  - `agent.liveEvals()`: Get live evaluations
@@ -79,9 +81,10 @@ const client = new MastraClient({
79
81
  - `getWorkflows()`: Get all workflows
80
82
  - `getWorkflow(workflowId)`: Get a workflow instance
81
83
  - `workflow.details()`: Get workflow details
82
- - `workflow.createRun()`: Create workflow run
84
+ - `workflow.createRunAsync()`: Create workflow run
85
+ - `workflow.createRun()`: Deprecated - use createRunAsync() instead
83
86
  - `workflow.startAsync(params)`: Execute the workflow and wait for execution results
84
- - `workflow.resumeAsync(parmas)`: Resume suspended workflow step async
87
+ - `workflow.resumeAsync(params)`: Resume suspended workflow step async
85
88
  - `workflow.watch({runId},(record)=>{})`: Watch the step transitions of the workflow run
86
89
  - `workflow.start({runId, triggerData})`: Start a workflow run sync
87
90
  - `workflow.resume(params)`: Resume the workflow run sync
@@ -122,7 +125,3 @@ The client uses the native `fetch` API internally for making HTTP requests. All
122
125
  - Retry logic with exponential backoff
123
126
  - Custom header management
124
127
  - Error handling
125
-
126
- ## License
127
-
128
- MIT
@@ -0,0 +1,278 @@
1
+ import type { AITraceRecord, AITracesPaginatedArg, WorkflowInfo } from '@mastra/core';
2
+ import type { ServerDetailInfo } from '@mastra/core/mcp';
3
+ import type { RuntimeContext } from '@mastra/core/runtime-context';
4
+ import { Agent, MemoryThread, Tool, Workflow, Vector, BaseResource, A2A, MCPTool, AgentBuilder } from './resources/index.js';
5
+ import { NetworkMemoryThread } from './resources/network-memory-thread.js';
6
+ import type { ClientOptions, CreateMemoryThreadParams, CreateMemoryThreadResponse, GetAgentResponse, GetLogParams, GetLogsParams, GetLogsResponse, GetMemoryThreadParams, GetMemoryThreadResponse, GetTelemetryParams, GetTelemetryResponse, GetToolResponse, GetWorkflowResponse, SaveMessageToMemoryParams, SaveMessageToMemoryResponse, McpServerListResponse, McpServerToolListResponse, GetNetworkMemoryThreadParams, CreateNetworkMemoryThreadParams, SaveNetworkMessageToMemoryParams, GetScorerResponse, GetScoresByScorerIdParams, GetScoresResponse, GetScoresByRunIdParams, GetScoresByEntityIdParams, GetScoresBySpanParams, SaveScoreParams, SaveScoreResponse, GetAITracesResponse, GetMemoryConfigParams, GetMemoryConfigResponse, GetMemoryThreadMessagesResponse } from './types.js';
7
+ export declare class MastraClient extends BaseResource {
8
+ private observability;
9
+ constructor(options: ClientOptions);
10
+ /**
11
+ * Retrieves all available agents
12
+ * @param runtimeContext - Optional runtime context to pass as query parameter
13
+ * @returns Promise containing map of agent IDs to agent details
14
+ */
15
+ getAgents(runtimeContext?: RuntimeContext | Record<string, any>): Promise<Record<string, GetAgentResponse>>;
16
+ /**
17
+ * Gets an agent instance by ID
18
+ * @param agentId - ID of the agent to retrieve
19
+ * @returns Agent instance
20
+ */
21
+ getAgent(agentId: string): Agent;
22
+ /**
23
+ * Retrieves memory threads for a resource
24
+ * @param params - Parameters containing the resource ID
25
+ * @returns Promise containing array of memory threads
26
+ */
27
+ getMemoryThreads(params: GetMemoryThreadParams): Promise<GetMemoryThreadResponse>;
28
+ /**
29
+ * Retrieves memory config for a resource
30
+ * @param params - Parameters containing the resource ID
31
+ * @returns Promise containing array of memory threads
32
+ */
33
+ getMemoryConfig(params: GetMemoryConfigParams): Promise<GetMemoryConfigResponse>;
34
+ /**
35
+ * Creates a new memory thread
36
+ * @param params - Parameters for creating the memory thread
37
+ * @returns Promise containing the created memory thread
38
+ */
39
+ createMemoryThread(params: CreateMemoryThreadParams): Promise<CreateMemoryThreadResponse>;
40
+ /**
41
+ * Gets a memory thread instance by ID
42
+ * @param threadId - ID of the memory thread to retrieve
43
+ * @returns MemoryThread instance
44
+ */
45
+ getMemoryThread(threadId: string, agentId: string): MemoryThread;
46
+ getThreadMessages(threadId: string, opts?: {
47
+ agentId?: string;
48
+ networkId?: string;
49
+ }): Promise<GetMemoryThreadMessagesResponse>;
50
+ deleteThread(threadId: string, opts?: {
51
+ agentId?: string;
52
+ networkId?: string;
53
+ }): Promise<{
54
+ success: boolean;
55
+ message: string;
56
+ }>;
57
+ /**
58
+ * Saves messages to memory
59
+ * @param params - Parameters containing messages to save
60
+ * @returns Promise containing the saved messages
61
+ */
62
+ saveMessageToMemory(params: SaveMessageToMemoryParams): Promise<SaveMessageToMemoryResponse>;
63
+ /**
64
+ * Gets the status of the memory system
65
+ * @returns Promise containing memory system status
66
+ */
67
+ getMemoryStatus(agentId: string): Promise<{
68
+ result: boolean;
69
+ }>;
70
+ /**
71
+ * Retrieves memory threads for a resource
72
+ * @param params - Parameters containing the resource ID
73
+ * @returns Promise containing array of memory threads
74
+ */
75
+ getNetworkMemoryThreads(params: GetNetworkMemoryThreadParams): Promise<GetMemoryThreadResponse>;
76
+ /**
77
+ * Creates a new memory thread
78
+ * @param params - Parameters for creating the memory thread
79
+ * @returns Promise containing the created memory thread
80
+ */
81
+ createNetworkMemoryThread(params: CreateNetworkMemoryThreadParams): Promise<CreateMemoryThreadResponse>;
82
+ /**
83
+ * Gets a memory thread instance by ID
84
+ * @param threadId - ID of the memory thread to retrieve
85
+ * @returns MemoryThread instance
86
+ */
87
+ getNetworkMemoryThread(threadId: string, networkId: string): NetworkMemoryThread;
88
+ /**
89
+ * Saves messages to memory
90
+ * @param params - Parameters containing messages to save
91
+ * @returns Promise containing the saved messages
92
+ */
93
+ saveNetworkMessageToMemory(params: SaveNetworkMessageToMemoryParams): Promise<SaveMessageToMemoryResponse>;
94
+ /**
95
+ * Gets the status of the memory system
96
+ * @returns Promise containing memory system status
97
+ */
98
+ getNetworkMemoryStatus(networkId: string): Promise<{
99
+ result: boolean;
100
+ }>;
101
+ /**
102
+ * Retrieves all available tools
103
+ * @param runtimeContext - Optional runtime context to pass as query parameter
104
+ * @returns Promise containing map of tool IDs to tool details
105
+ */
106
+ getTools(runtimeContext?: RuntimeContext | Record<string, any>): Promise<Record<string, GetToolResponse>>;
107
+ /**
108
+ * Gets a tool instance by ID
109
+ * @param toolId - ID of the tool to retrieve
110
+ * @returns Tool instance
111
+ */
112
+ getTool(toolId: string): Tool;
113
+ /**
114
+ * Retrieves all available workflows
115
+ * @param runtimeContext - Optional runtime context to pass as query parameter
116
+ * @returns Promise containing map of workflow IDs to workflow details
117
+ */
118
+ getWorkflows(runtimeContext?: RuntimeContext | Record<string, any>): Promise<Record<string, GetWorkflowResponse>>;
119
+ /**
120
+ * Gets a workflow instance by ID
121
+ * @param workflowId - ID of the workflow to retrieve
122
+ * @returns Workflow instance
123
+ */
124
+ getWorkflow(workflowId: string): Workflow;
125
+ /**
126
+ * Gets all available agent builder actions
127
+ * @returns Promise containing map of action IDs to action details
128
+ */
129
+ getAgentBuilderActions(): Promise<Record<string, WorkflowInfo>>;
130
+ /**
131
+ * Gets an agent builder instance for executing agent-builder workflows
132
+ * @returns AgentBuilder instance
133
+ */
134
+ getAgentBuilderAction(actionId: string): AgentBuilder;
135
+ /**
136
+ * Gets a vector instance by name
137
+ * @param vectorName - Name of the vector to retrieve
138
+ * @returns Vector instance
139
+ */
140
+ getVector(vectorName: string): Vector;
141
+ /**
142
+ * Retrieves logs
143
+ * @param params - Parameters for filtering logs
144
+ * @returns Promise containing array of log messages
145
+ */
146
+ getLogs(params: GetLogsParams): Promise<GetLogsResponse>;
147
+ /**
148
+ * Gets logs for a specific run
149
+ * @param params - Parameters containing run ID to retrieve
150
+ * @returns Promise containing array of log messages
151
+ */
152
+ getLogForRun(params: GetLogParams): Promise<GetLogsResponse>;
153
+ /**
154
+ * List of all log transports
155
+ * @returns Promise containing list of log transports
156
+ */
157
+ getLogTransports(): Promise<{
158
+ transports: string[];
159
+ }>;
160
+ /**
161
+ * List of all traces (paged)
162
+ * @param params - Parameters for filtering traces
163
+ * @returns Promise containing telemetry data
164
+ */
165
+ getTelemetry(params?: GetTelemetryParams): Promise<GetTelemetryResponse>;
166
+ /**
167
+ * Retrieves a list of available MCP servers.
168
+ * @param params - Optional parameters for pagination (limit, offset).
169
+ * @returns Promise containing the list of MCP servers and pagination info.
170
+ */
171
+ getMcpServers(params?: {
172
+ limit?: number;
173
+ offset?: number;
174
+ }): Promise<McpServerListResponse>;
175
+ /**
176
+ * Retrieves detailed information for a specific MCP server.
177
+ * @param serverId - The ID of the MCP server to retrieve.
178
+ * @param params - Optional parameters, e.g., specific version.
179
+ * @returns Promise containing the detailed MCP server information.
180
+ */
181
+ getMcpServerDetails(serverId: string, params?: {
182
+ version?: string;
183
+ }): Promise<ServerDetailInfo>;
184
+ /**
185
+ * Retrieves a list of tools for a specific MCP server.
186
+ * @param serverId - The ID of the MCP server.
187
+ * @returns Promise containing the list of tools.
188
+ */
189
+ getMcpServerTools(serverId: string): Promise<McpServerToolListResponse>;
190
+ /**
191
+ * Gets an MCPTool resource instance for a specific tool on an MCP server.
192
+ * This instance can then be used to fetch details or execute the tool.
193
+ * @param serverId - The ID of the MCP server.
194
+ * @param toolId - The ID of the tool.
195
+ * @returns MCPTool instance.
196
+ */
197
+ getMcpServerTool(serverId: string, toolId: string): MCPTool;
198
+ /**
199
+ * Gets an A2A client for interacting with an agent via the A2A protocol
200
+ * @param agentId - ID of the agent to interact with
201
+ * @returns A2A client instance
202
+ */
203
+ getA2A(agentId: string): A2A;
204
+ /**
205
+ * Retrieves the working memory for a specific thread (optionally resource-scoped).
206
+ * @param agentId - ID of the agent.
207
+ * @param threadId - ID of the thread.
208
+ * @param resourceId - Optional ID of the resource.
209
+ * @returns Working memory for the specified thread or resource.
210
+ */
211
+ getWorkingMemory({ agentId, threadId, resourceId, }: {
212
+ agentId: string;
213
+ threadId: string;
214
+ resourceId?: string;
215
+ }): Promise<unknown>;
216
+ /**
217
+ * Updates the working memory for a specific thread (optionally resource-scoped).
218
+ * @param agentId - ID of the agent.
219
+ * @param threadId - ID of the thread.
220
+ * @param workingMemory - The new working memory content.
221
+ * @param resourceId - Optional ID of the resource.
222
+ */
223
+ updateWorkingMemory({ agentId, threadId, workingMemory, resourceId, }: {
224
+ agentId: string;
225
+ threadId: string;
226
+ workingMemory: string;
227
+ resourceId?: string;
228
+ }): Promise<unknown>;
229
+ /**
230
+ * Retrieves all available scorers
231
+ * @returns Promise containing list of available scorers
232
+ */
233
+ getScorers(): Promise<Record<string, GetScorerResponse>>;
234
+ /**
235
+ * Retrieves a scorer by ID
236
+ * @param scorerId - ID of the scorer to retrieve
237
+ * @returns Promise containing the scorer
238
+ */
239
+ getScorer(scorerId: string): Promise<GetScorerResponse>;
240
+ getScoresByScorerId(params: GetScoresByScorerIdParams): Promise<GetScoresResponse>;
241
+ /**
242
+ * Retrieves scores by run ID
243
+ * @param params - Parameters containing run ID and pagination options
244
+ * @returns Promise containing scores and pagination info
245
+ */
246
+ getScoresByRunId(params: GetScoresByRunIdParams): Promise<GetScoresResponse>;
247
+ /**
248
+ * Retrieves scores by entity ID and type
249
+ * @param params - Parameters containing entity ID, type, and pagination options
250
+ * @returns Promise containing scores and pagination info
251
+ */
252
+ getScoresByEntityId(params: GetScoresByEntityIdParams): Promise<GetScoresResponse>;
253
+ /**
254
+ * Saves a score
255
+ * @param params - Parameters containing the score data to save
256
+ * @returns Promise containing the saved score
257
+ */
258
+ saveScore(params: SaveScoreParams): Promise<SaveScoreResponse>;
259
+ /**
260
+ * Retrieves model providers with available keys
261
+ * @returns Promise containing model providers with available keys
262
+ */
263
+ getModelProviders(): Promise<string[]>;
264
+ getAITrace(traceId: string): Promise<AITraceRecord>;
265
+ getAITraces(params: AITracesPaginatedArg): Promise<GetAITracesResponse>;
266
+ getScoresBySpan(params: GetScoresBySpanParams): Promise<GetScoresResponse>;
267
+ score(params: {
268
+ scorerName: string;
269
+ targets: Array<{
270
+ traceId: string;
271
+ spanId?: string;
272
+ }>;
273
+ }): Promise<{
274
+ status: string;
275
+ message: string;
276
+ }>;
277
+ }
278
+ //# sourceMappingURL=client.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=example.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"example.d.ts","sourceRoot":"","sources":["../src/example.ts"],"names":[],"mappings":""}