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