@mastra/client-js 0.0.0-message-file-url-handling-fix-20250904234524 → 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.
- package/CHANGELOG.md +541 -3
- package/README.md +6 -10
- package/dist/client.d.ts +37 -39
- package/dist/client.d.ts.map +1 -1
- package/dist/index.cjs +671 -588
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +670 -589
- package/dist/index.js.map +1 -1
- package/dist/resources/agent-builder.d.ts +5 -6
- package/dist/resources/agent-builder.d.ts.map +1 -1
- package/dist/resources/agent.d.ts +71 -42
- package/dist/resources/agent.d.ts.map +1 -1
- package/dist/resources/index.d.ts +0 -2
- package/dist/resources/index.d.ts.map +1 -1
- package/dist/resources/mcp-tool.d.ts +2 -1
- package/dist/resources/mcp-tool.d.ts.map +1 -1
- package/dist/resources/observability.d.ts +17 -1
- package/dist/resources/observability.d.ts.map +1 -1
- package/dist/resources/tool.d.ts +2 -1
- package/dist/resources/tool.d.ts.map +1 -1
- package/dist/resources/vector.d.ts +5 -2
- package/dist/resources/vector.d.ts.map +1 -1
- package/dist/resources/workflow.d.ts +128 -13
- package/dist/resources/workflow.d.ts.map +1 -1
- package/dist/tools.d.ts +22 -0
- package/dist/tools.d.ts.map +1 -0
- package/dist/types.d.ts +65 -47
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/index.d.ts +2 -0
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/process-mastra-stream.d.ts +5 -1
- package/dist/utils/process-mastra-stream.d.ts.map +1 -1
- package/package.json +5 -6
- package/dist/resources/legacy-workflow.d.ts +0 -87
- package/dist/resources/legacy-workflow.d.ts.map +0 -1
- package/dist/resources/network.d.ts +0 -30
- package/dist/resources/network.d.ts.map +0 -1
- package/dist/resources/vNextNetwork.d.ts +0 -42
- package/dist/resources/vNextNetwork.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -53,10 +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
|
-
|
|
57
|
-
- `agent.
|
|
58
|
-
- `agent.stream(params)`: Stream a response
|
|
59
|
-
- `agent.
|
|
56
|
+
- `agent.generate(params)`: Generate a response
|
|
57
|
+
- `agent.generateLegacy(params)`: Legacy API for generating a response (V1 models)
|
|
58
|
+
- `agent.stream(params)`: Stream a response
|
|
59
|
+
- `agent.streamLegacy(params)`: Legacy API for streaming a response (V1 models)
|
|
60
60
|
- `agent.getTool(toolId)`: Get agent tool details
|
|
61
61
|
- `agent.evals()`: Get agent evaluations
|
|
62
62
|
- `agent.liveEvals()`: Get live evaluations
|
|
@@ -81,8 +81,8 @@ const client = new MastraClient({
|
|
|
81
81
|
- `getWorkflows()`: Get all workflows
|
|
82
82
|
- `getWorkflow(workflowId)`: Get a workflow instance
|
|
83
83
|
- `workflow.details()`: Get workflow details
|
|
84
|
-
- `workflow.
|
|
85
|
-
- `workflow.
|
|
84
|
+
- `workflow.createRunAsync()`: Create workflow run
|
|
85
|
+
- `workflow.createRun()`: Deprecated - use createRunAsync() instead
|
|
86
86
|
- `workflow.startAsync(params)`: Execute the workflow and wait for execution results
|
|
87
87
|
- `workflow.resumeAsync(params)`: Resume suspended workflow step async
|
|
88
88
|
- `workflow.watch({runId},(record)=>{})`: Watch the step transitions of the workflow run
|
|
@@ -125,7 +125,3 @@ The client uses the native `fetch` API internally for making HTTP requests. All
|
|
|
125
125
|
- Retry logic with exponential backoff
|
|
126
126
|
- Custom header management
|
|
127
127
|
- Error handling
|
|
128
|
-
|
|
129
|
-
## License
|
|
130
|
-
|
|
131
|
-
MIT
|
package/dist/client.d.ts
CHANGED
|
@@ -1,17 +1,18 @@
|
|
|
1
1
|
import type { AITraceRecord, AITracesPaginatedArg, WorkflowInfo } from '@mastra/core';
|
|
2
2
|
import type { ServerDetailInfo } from '@mastra/core/mcp';
|
|
3
|
-
import {
|
|
3
|
+
import type { RuntimeContext } from '@mastra/core/runtime-context';
|
|
4
|
+
import { Agent, MemoryThread, Tool, Workflow, Vector, BaseResource, A2A, MCPTool, AgentBuilder } from './resources/index.js';
|
|
4
5
|
import { NetworkMemoryThread } from './resources/network-memory-thread.js';
|
|
5
|
-
import {
|
|
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';
|
|
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
7
|
export declare class MastraClient extends BaseResource {
|
|
8
8
|
private observability;
|
|
9
9
|
constructor(options: ClientOptions);
|
|
10
10
|
/**
|
|
11
11
|
* Retrieves all available agents
|
|
12
|
+
* @param runtimeContext - Optional runtime context to pass as query parameter
|
|
12
13
|
* @returns Promise containing map of agent IDs to agent details
|
|
13
14
|
*/
|
|
14
|
-
getAgents(): Promise<Record<string, GetAgentResponse>>;
|
|
15
|
+
getAgents(runtimeContext?: RuntimeContext | Record<string, any>): Promise<Record<string, GetAgentResponse>>;
|
|
15
16
|
/**
|
|
16
17
|
* Gets an agent instance by ID
|
|
17
18
|
* @param agentId - ID of the agent to retrieve
|
|
@@ -24,6 +25,12 @@ export declare class MastraClient extends BaseResource {
|
|
|
24
25
|
* @returns Promise containing array of memory threads
|
|
25
26
|
*/
|
|
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>;
|
|
27
34
|
/**
|
|
28
35
|
* Creates a new memory thread
|
|
29
36
|
* @param params - Parameters for creating the memory thread
|
|
@@ -36,6 +43,17 @@ export declare class MastraClient extends BaseResource {
|
|
|
36
43
|
* @returns MemoryThread instance
|
|
37
44
|
*/
|
|
38
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
|
+
}>;
|
|
39
57
|
/**
|
|
40
58
|
* Saves messages to memory
|
|
41
59
|
* @param params - Parameters containing messages to save
|
|
@@ -82,31 +100,22 @@ export declare class MastraClient extends BaseResource {
|
|
|
82
100
|
}>;
|
|
83
101
|
/**
|
|
84
102
|
* Retrieves all available tools
|
|
103
|
+
* @param runtimeContext - Optional runtime context to pass as query parameter
|
|
85
104
|
* @returns Promise containing map of tool IDs to tool details
|
|
86
105
|
*/
|
|
87
|
-
getTools(): Promise<Record<string, GetToolResponse>>;
|
|
106
|
+
getTools(runtimeContext?: RuntimeContext | Record<string, any>): Promise<Record<string, GetToolResponse>>;
|
|
88
107
|
/**
|
|
89
108
|
* Gets a tool instance by ID
|
|
90
109
|
* @param toolId - ID of the tool to retrieve
|
|
91
110
|
* @returns Tool instance
|
|
92
111
|
*/
|
|
93
112
|
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
113
|
/**
|
|
106
114
|
* Retrieves all available workflows
|
|
115
|
+
* @param runtimeContext - Optional runtime context to pass as query parameter
|
|
107
116
|
* @returns Promise containing map of workflow IDs to workflow details
|
|
108
117
|
*/
|
|
109
|
-
getWorkflows(): Promise<Record<string, GetWorkflowResponse>>;
|
|
118
|
+
getWorkflows(runtimeContext?: RuntimeContext | Record<string, any>): Promise<Record<string, GetWorkflowResponse>>;
|
|
110
119
|
/**
|
|
111
120
|
* Gets a workflow instance by ID
|
|
112
121
|
* @param workflowId - ID of the workflow to retrieve
|
|
@@ -154,28 +163,6 @@ export declare class MastraClient extends BaseResource {
|
|
|
154
163
|
* @returns Promise containing telemetry data
|
|
155
164
|
*/
|
|
156
165
|
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
166
|
/**
|
|
180
167
|
* Retrieves a list of available MCP servers.
|
|
181
168
|
* @param params - Optional parameters for pagination (limit, offset).
|
|
@@ -276,5 +263,16 @@ export declare class MastraClient extends BaseResource {
|
|
|
276
263
|
getModelProviders(): Promise<string[]>;
|
|
277
264
|
getAITrace(traceId: string): Promise<AITraceRecord>;
|
|
278
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
|
+
}>;
|
|
279
277
|
}
|
|
280
278
|
//# sourceMappingURL=client.d.ts.map
|
package/dist/client.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,oBAAoB,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;AACtF,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EACL,KAAK,EACL,YAAY,EACZ,IAAI,EACJ,QAAQ,EACR,MAAM,EACN,YAAY,EACZ,
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
|