@mastra/client-js 0.0.0-share-agent-metadata-with-cloud-20250718110128 → 0.0.0-sidebar-window-undefined-fix-20251029233656

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 +1359 -2
  2. package/README.md +6 -7
  3. package/dist/client.d.ts +287 -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 +2292 -1219
  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 +2292 -1221
  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 +204 -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 +61 -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 +475 -0
  40. package/dist/types.d.ts.map +1 -0
  41. package/dist/utils/index.d.ts +11 -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 +26 -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 -836
  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 -401
  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,287 @@
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, GetToolResponse, GetWorkflowResponse, SaveMessageToMemoryParams, SaveMessageToMemoryResponse, McpServerListResponse, McpServerToolListResponse, GetNetworkMemoryThreadParams, CreateNetworkMemoryThreadParams, SaveNetworkMessageToMemoryParams, GetScorerResponse, GetScoresByScorerIdParams, GetScoresResponse, GetScoresByRunIdParams, GetScoresByEntityIdParams, GetScoresBySpanParams, SaveScoreParams, SaveScoreResponse, GetAITracesResponse, GetMemoryConfigParams, GetMemoryConfigResponse, GetMemoryThreadMessagesResponse, MemorySearchResponse, GetAgentsModelProvidersResponse } 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
+ getAgentsModelProviders(): Promise<GetAgentsModelProvidersResponse>;
17
+ /**
18
+ * Gets an agent instance by ID
19
+ * @param agentId - ID of the agent to retrieve
20
+ * @returns Agent instance
21
+ */
22
+ getAgent(agentId: string): Agent;
23
+ /**
24
+ * Retrieves memory threads for a resource
25
+ * @param params - Parameters containing the resource ID and optional runtime context
26
+ * @returns Promise containing array of memory threads
27
+ */
28
+ getMemoryThreads(params: GetMemoryThreadParams): Promise<GetMemoryThreadResponse>;
29
+ /**
30
+ * Retrieves memory config for a resource
31
+ * @param params - Parameters containing the resource ID and optional runtime context
32
+ * @returns Promise containing memory configuration
33
+ */
34
+ getMemoryConfig(params: GetMemoryConfigParams): Promise<GetMemoryConfigResponse>;
35
+ /**
36
+ * Creates a new memory thread
37
+ * @param params - Parameters for creating the memory thread including optional runtime context
38
+ * @returns Promise containing the created memory thread
39
+ */
40
+ createMemoryThread(params: CreateMemoryThreadParams): Promise<CreateMemoryThreadResponse>;
41
+ /**
42
+ * Gets a memory thread instance by ID
43
+ * @param threadId - ID of the memory thread to retrieve
44
+ * @returns MemoryThread instance
45
+ */
46
+ getMemoryThread(threadId: string, agentId: string): MemoryThread;
47
+ getThreadMessages(threadId: string, opts?: {
48
+ agentId?: string;
49
+ networkId?: string;
50
+ runtimeContext?: RuntimeContext | Record<string, any>;
51
+ }): Promise<GetMemoryThreadMessagesResponse>;
52
+ deleteThread(threadId: string, opts?: {
53
+ agentId?: string;
54
+ networkId?: string;
55
+ runtimeContext?: RuntimeContext | Record<string, any>;
56
+ }): Promise<{
57
+ success: boolean;
58
+ message: string;
59
+ }>;
60
+ /**
61
+ * Saves messages to memory
62
+ * @param params - Parameters containing messages to save and optional runtime context
63
+ * @returns Promise containing the saved messages
64
+ */
65
+ saveMessageToMemory(params: SaveMessageToMemoryParams): Promise<SaveMessageToMemoryResponse>;
66
+ /**
67
+ * Gets the status of the memory system
68
+ * @param agentId - The agent ID
69
+ * @param runtimeContext - Optional runtime context to pass as query parameter
70
+ * @returns Promise containing memory system status
71
+ */
72
+ getMemoryStatus(agentId: string, runtimeContext?: RuntimeContext | Record<string, any>): Promise<{
73
+ result: boolean;
74
+ }>;
75
+ /**
76
+ * Retrieves memory threads for a resource
77
+ * @param params - Parameters containing the resource ID
78
+ * @returns Promise containing array of memory threads
79
+ */
80
+ getNetworkMemoryThreads(params: GetNetworkMemoryThreadParams): Promise<GetMemoryThreadResponse>;
81
+ /**
82
+ * Creates a new memory thread
83
+ * @param params - Parameters for creating the memory thread
84
+ * @returns Promise containing the created memory thread
85
+ */
86
+ createNetworkMemoryThread(params: CreateNetworkMemoryThreadParams): Promise<CreateMemoryThreadResponse>;
87
+ /**
88
+ * Gets a memory thread instance by ID
89
+ * @param threadId - ID of the memory thread to retrieve
90
+ * @returns MemoryThread instance
91
+ */
92
+ getNetworkMemoryThread(threadId: string, networkId: string): NetworkMemoryThread;
93
+ /**
94
+ * Saves messages to memory
95
+ * @param params - Parameters containing messages to save
96
+ * @returns Promise containing the saved messages
97
+ */
98
+ saveNetworkMessageToMemory(params: SaveNetworkMessageToMemoryParams): Promise<SaveMessageToMemoryResponse>;
99
+ /**
100
+ * Gets the status of the memory system
101
+ * @returns Promise containing memory system status
102
+ */
103
+ getNetworkMemoryStatus(networkId: string): Promise<{
104
+ result: boolean;
105
+ }>;
106
+ /**
107
+ * Retrieves all available tools
108
+ * @param runtimeContext - Optional runtime context to pass as query parameter
109
+ * @returns Promise containing map of tool IDs to tool details
110
+ */
111
+ getTools(runtimeContext?: RuntimeContext | Record<string, any>): Promise<Record<string, GetToolResponse>>;
112
+ /**
113
+ * Gets a tool instance by ID
114
+ * @param toolId - ID of the tool to retrieve
115
+ * @returns Tool instance
116
+ */
117
+ getTool(toolId: string): Tool;
118
+ /**
119
+ * Retrieves all available workflows
120
+ * @param runtimeContext - Optional runtime context to pass as query parameter
121
+ * @returns Promise containing map of workflow IDs to workflow details
122
+ */
123
+ getWorkflows(runtimeContext?: RuntimeContext | Record<string, any>): Promise<Record<string, GetWorkflowResponse>>;
124
+ /**
125
+ * Gets a workflow instance by ID
126
+ * @param workflowId - ID of the workflow to retrieve
127
+ * @returns Workflow instance
128
+ */
129
+ getWorkflow(workflowId: string): Workflow;
130
+ /**
131
+ * Gets all available agent builder actions
132
+ * @returns Promise containing map of action IDs to action details
133
+ */
134
+ getAgentBuilderActions(): Promise<Record<string, WorkflowInfo>>;
135
+ /**
136
+ * Gets an agent builder instance for executing agent-builder workflows
137
+ * @returns AgentBuilder instance
138
+ */
139
+ getAgentBuilderAction(actionId: string): AgentBuilder;
140
+ /**
141
+ * Gets a vector instance by name
142
+ * @param vectorName - Name of the vector to retrieve
143
+ * @returns Vector instance
144
+ */
145
+ getVector(vectorName: string): Vector;
146
+ /**
147
+ * Retrieves logs
148
+ * @param params - Parameters for filtering logs
149
+ * @returns Promise containing array of log messages
150
+ */
151
+ getLogs(params: GetLogsParams): Promise<GetLogsResponse>;
152
+ /**
153
+ * Gets logs for a specific run
154
+ * @param params - Parameters containing run ID to retrieve
155
+ * @returns Promise containing array of log messages
156
+ */
157
+ getLogForRun(params: GetLogParams): Promise<GetLogsResponse>;
158
+ /**
159
+ * List of all log transports
160
+ * @returns Promise containing list of log transports
161
+ */
162
+ getLogTransports(): Promise<{
163
+ transports: string[];
164
+ }>;
165
+ /**
166
+ * Retrieves a list of available MCP servers.
167
+ * @param params - Optional parameters for pagination (limit, offset).
168
+ * @returns Promise containing the list of MCP servers and pagination info.
169
+ */
170
+ getMcpServers(params?: {
171
+ limit?: number;
172
+ offset?: number;
173
+ }): Promise<McpServerListResponse>;
174
+ /**
175
+ * Retrieves detailed information for a specific MCP server.
176
+ * @param serverId - The ID of the MCP server to retrieve.
177
+ * @param params - Optional parameters, e.g., specific version.
178
+ * @returns Promise containing the detailed MCP server information.
179
+ */
180
+ getMcpServerDetails(serverId: string, params?: {
181
+ version?: string;
182
+ }): Promise<ServerDetailInfo>;
183
+ /**
184
+ * Retrieves a list of tools for a specific MCP server.
185
+ * @param serverId - The ID of the MCP server.
186
+ * @returns Promise containing the list of tools.
187
+ */
188
+ getMcpServerTools(serverId: string): Promise<McpServerToolListResponse>;
189
+ /**
190
+ * Gets an MCPTool resource instance for a specific tool on an MCP server.
191
+ * This instance can then be used to fetch details or execute the tool.
192
+ * @param serverId - The ID of the MCP server.
193
+ * @param toolId - The ID of the tool.
194
+ * @returns MCPTool instance.
195
+ */
196
+ getMcpServerTool(serverId: string, toolId: string): MCPTool;
197
+ /**
198
+ * Gets an A2A client for interacting with an agent via the A2A protocol
199
+ * @param agentId - ID of the agent to interact with
200
+ * @returns A2A client instance
201
+ */
202
+ getA2A(agentId: string): A2A;
203
+ /**
204
+ * Retrieves the working memory for a specific thread (optionally resource-scoped).
205
+ * @param agentId - ID of the agent.
206
+ * @param threadId - ID of the thread.
207
+ * @param resourceId - Optional ID of the resource.
208
+ * @returns Working memory for the specified thread or resource.
209
+ */
210
+ getWorkingMemory({ agentId, threadId, resourceId, runtimeContext, }: {
211
+ agentId: string;
212
+ threadId: string;
213
+ resourceId?: string;
214
+ runtimeContext?: RuntimeContext | Record<string, any>;
215
+ }): Promise<unknown>;
216
+ searchMemory({ agentId, resourceId, threadId, searchQuery, memoryConfig, runtimeContext, }: {
217
+ agentId: string;
218
+ resourceId: string;
219
+ threadId?: string;
220
+ searchQuery: string;
221
+ memoryConfig?: any;
222
+ runtimeContext?: RuntimeContext | Record<string, any>;
223
+ }): Promise<MemorySearchResponse>;
224
+ /**
225
+ * Updates the working memory for a specific thread (optionally resource-scoped).
226
+ * @param agentId - ID of the agent.
227
+ * @param threadId - ID of the thread.
228
+ * @param workingMemory - The new working memory content.
229
+ * @param resourceId - Optional ID of the resource.
230
+ */
231
+ updateWorkingMemory({ agentId, threadId, workingMemory, resourceId, runtimeContext, }: {
232
+ agentId: string;
233
+ threadId: string;
234
+ workingMemory: string;
235
+ resourceId?: string;
236
+ runtimeContext?: RuntimeContext | Record<string, any>;
237
+ }): Promise<unknown>;
238
+ /**
239
+ * Retrieves all available scorers
240
+ * @returns Promise containing list of available scorers
241
+ */
242
+ getScorers(): Promise<Record<string, GetScorerResponse>>;
243
+ /**
244
+ * Retrieves a scorer by ID
245
+ * @param scorerId - ID of the scorer to retrieve
246
+ * @returns Promise containing the scorer
247
+ */
248
+ getScorer(scorerId: string): Promise<GetScorerResponse>;
249
+ getScoresByScorerId(params: GetScoresByScorerIdParams): Promise<GetScoresResponse>;
250
+ /**
251
+ * Retrieves scores by run ID
252
+ * @param params - Parameters containing run ID and pagination options
253
+ * @returns Promise containing scores and pagination info
254
+ */
255
+ getScoresByRunId(params: GetScoresByRunIdParams): Promise<GetScoresResponse>;
256
+ /**
257
+ * Retrieves scores by entity ID and type
258
+ * @param params - Parameters containing entity ID, type, and pagination options
259
+ * @returns Promise containing scores and pagination info
260
+ */
261
+ getScoresByEntityId(params: GetScoresByEntityIdParams): Promise<GetScoresResponse>;
262
+ /**
263
+ * Saves a score
264
+ * @param params - Parameters containing the score data to save
265
+ * @returns Promise containing the saved score
266
+ */
267
+ saveScore(params: SaveScoreParams): Promise<SaveScoreResponse>;
268
+ /**
269
+ * Retrieves model providers with available keys
270
+ * @returns Promise containing model providers with available keys
271
+ */
272
+ getModelProviders(): Promise<string[]>;
273
+ getAITrace(traceId: string): Promise<AITraceRecord>;
274
+ getAITraces(params: AITracesPaginatedArg): Promise<GetAITracesResponse>;
275
+ getScoresBySpan(params: GetScoresBySpanParams): Promise<GetScoresResponse>;
276
+ score(params: {
277
+ scorerName: string;
278
+ targets: Array<{
279
+ traceId: string;
280
+ spanId?: string;
281
+ }>;
282
+ }): Promise<{
283
+ status: string;
284
+ message: string;
285
+ }>;
286
+ }
287
+ //# 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":""}