@mastra/client-js 0.0.0-cloud-deployer-for-core-0.19.1-20251001164939 → 0.0.0-cloud-storage-adapter-20251106204059
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 +855 -4
- package/README.md +12 -14
- package/dist/client.d.ts +54 -90
- package/dist/client.d.ts.map +1 -1
- package/dist/index.cjs +630 -832
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +630 -832
- package/dist/index.js.map +1 -1
- package/dist/resources/agent-builder.d.ts +51 -36
- package/dist/resources/agent-builder.d.ts.map +1 -1
- package/dist/resources/agent.d.ts +50 -60
- package/dist/resources/agent.d.ts.map +1 -1
- package/dist/resources/mcp-tool.d.ts +5 -5
- package/dist/resources/memory-thread.d.ts +14 -14
- package/dist/resources/memory-thread.d.ts.map +1 -1
- package/dist/resources/observability.d.ts +8 -8
- package/dist/resources/observability.d.ts.map +1 -1
- package/dist/resources/tool.d.ts +4 -4
- package/dist/resources/vector.d.ts +5 -5
- package/dist/resources/workflow.d.ts +47 -109
- package/dist/resources/workflow.d.ts.map +1 -1
- package/dist/types.d.ts +104 -131
- package/dist/types.d.ts.map +1 -1
- package/dist/utils/index.d.ts +10 -4
- package/dist/utils/index.d.ts.map +1 -1
- package/dist/utils/process-mastra-stream.d.ts.map +1 -1
- package/package.json +9 -5
- package/dist/resources/network-memory-thread.d.ts +0 -47
- package/dist/resources/network-memory-thread.d.ts.map +0 -1
- package/dist/resources/vNextNetwork.d.ts +0 -43
- package/dist/resources/vNextNetwork.d.ts.map +0 -1
|
@@ -1,45 +1,37 @@
|
|
|
1
|
-
import type { TracingOptions } from '@mastra/core/
|
|
2
|
-
import type {
|
|
3
|
-
import type { ClientOptions, GetWorkflowResponse,
|
|
1
|
+
import type { TracingOptions } from '@mastra/core/observability';
|
|
2
|
+
import type { RequestContext } from '@mastra/core/request-context';
|
|
3
|
+
import type { ClientOptions, GetWorkflowResponse, ListWorkflowRunsResponse, ListWorkflowRunsParams, WorkflowRunResult, GetWorkflowRunByIdResponse, GetWorkflowRunExecutionResultResponse, StreamVNextChunkType } from '../types.js';
|
|
4
4
|
import { BaseResource } from './base.js';
|
|
5
5
|
export declare class Workflow extends BaseResource {
|
|
6
6
|
private workflowId;
|
|
7
7
|
constructor(options: ClientOptions, workflowId: string);
|
|
8
|
-
/**
|
|
9
|
-
* Creates an async generator that processes a readable stream and yields workflow records
|
|
10
|
-
* separated by the Record Separator character (\x1E)
|
|
11
|
-
*
|
|
12
|
-
* @param stream - The readable stream to process
|
|
13
|
-
* @returns An async generator that yields parsed records
|
|
14
|
-
*/
|
|
15
|
-
private streamProcessor;
|
|
16
8
|
/**
|
|
17
9
|
* Retrieves details about the workflow
|
|
18
|
-
* @param
|
|
10
|
+
* @param requestContext - Optional request context to pass as query parameter
|
|
19
11
|
* @returns Promise containing workflow details including steps and graphs
|
|
20
12
|
*/
|
|
21
|
-
details(
|
|
13
|
+
details(requestContext?: RequestContext | Record<string, any>): Promise<GetWorkflowResponse>;
|
|
22
14
|
/**
|
|
23
15
|
* Retrieves all runs for a workflow
|
|
24
16
|
* @param params - Parameters for filtering runs
|
|
25
|
-
* @param
|
|
17
|
+
* @param requestContext - Optional request context to pass as query parameter
|
|
26
18
|
* @returns Promise containing workflow runs array
|
|
27
19
|
*/
|
|
28
|
-
runs(params?:
|
|
20
|
+
runs(params?: ListWorkflowRunsParams, requestContext?: RequestContext | Record<string, any>): Promise<ListWorkflowRunsResponse>;
|
|
29
21
|
/**
|
|
30
22
|
* Retrieves a specific workflow run by its ID
|
|
31
23
|
* @param runId - The ID of the workflow run to retrieve
|
|
32
|
-
* @param
|
|
24
|
+
* @param requestContext - Optional request context to pass as query parameter
|
|
33
25
|
* @returns Promise containing the workflow run details
|
|
34
26
|
*/
|
|
35
|
-
runById(runId: string,
|
|
27
|
+
runById(runId: string, requestContext?: RequestContext | Record<string, any>): Promise<GetWorkflowRunByIdResponse>;
|
|
36
28
|
/**
|
|
37
29
|
* Retrieves the execution result for a specific workflow run by its ID
|
|
38
30
|
* @param runId - The ID of the workflow run to retrieve the execution result for
|
|
39
|
-
* @param
|
|
31
|
+
* @param requestContext - Optional request context to pass as query parameter
|
|
40
32
|
* @returns Promise containing the workflow run execution result
|
|
41
33
|
*/
|
|
42
|
-
runExecutionResult(runId: string,
|
|
34
|
+
runExecutionResult(runId: string, requestContext?: RequestContext | Record<string, any>): Promise<GetWorkflowRunExecutionResultResponse>;
|
|
43
35
|
/**
|
|
44
36
|
* Cancels a specific workflow run by its ID
|
|
45
37
|
* @param runId - The ID of the workflow run to cancel
|
|
@@ -48,147 +40,98 @@ export declare class Workflow extends BaseResource {
|
|
|
48
40
|
cancelRun(runId: string): Promise<{
|
|
49
41
|
message: string;
|
|
50
42
|
}>;
|
|
51
|
-
/**
|
|
52
|
-
* Sends an event to a specific workflow run by its ID
|
|
53
|
-
* @param params - Object containing the runId, event and data
|
|
54
|
-
* @returns Promise containing a success message
|
|
55
|
-
*/
|
|
56
|
-
sendRunEvent(params: {
|
|
57
|
-
runId: string;
|
|
58
|
-
event: string;
|
|
59
|
-
data: unknown;
|
|
60
|
-
}): Promise<{
|
|
61
|
-
message: string;
|
|
62
|
-
}>;
|
|
63
|
-
/**
|
|
64
|
-
* @deprecated Use createRunAsync() instead.
|
|
65
|
-
* @throws {Error} Always throws an error directing users to use createRunAsync()
|
|
66
|
-
*/
|
|
67
|
-
createRun(_params?: {
|
|
68
|
-
runId?: string;
|
|
69
|
-
}): Promise<{
|
|
70
|
-
runId: string;
|
|
71
|
-
start: (params: {
|
|
72
|
-
inputData: Record<string, any>;
|
|
73
|
-
runtimeContext?: RuntimeContext | Record<string, any>;
|
|
74
|
-
}) => Promise<{
|
|
75
|
-
message: string;
|
|
76
|
-
}>;
|
|
77
|
-
watch: (onRecord: (record: WorkflowWatchResult) => void) => Promise<void>;
|
|
78
|
-
resume: (params: {
|
|
79
|
-
step: string | string[];
|
|
80
|
-
resumeData?: Record<string, any>;
|
|
81
|
-
runtimeContext?: RuntimeContext | Record<string, any>;
|
|
82
|
-
}) => Promise<{
|
|
83
|
-
message: string;
|
|
84
|
-
}>;
|
|
85
|
-
stream: (params: {
|
|
86
|
-
inputData: Record<string, any>;
|
|
87
|
-
runtimeContext?: RuntimeContext | Record<string, any>;
|
|
88
|
-
}) => Promise<ReadableStream>;
|
|
89
|
-
startAsync: (params: {
|
|
90
|
-
inputData: Record<string, any>;
|
|
91
|
-
runtimeContext?: RuntimeContext | Record<string, any>;
|
|
92
|
-
}) => Promise<WorkflowRunResult>;
|
|
93
|
-
resumeAsync: (params: {
|
|
94
|
-
step: string | string[];
|
|
95
|
-
resumeData?: Record<string, any>;
|
|
96
|
-
runtimeContext?: RuntimeContext | Record<string, any>;
|
|
97
|
-
}) => Promise<WorkflowRunResult>;
|
|
98
|
-
}>;
|
|
99
43
|
/**
|
|
100
44
|
* Creates a new workflow run
|
|
101
45
|
* @param params - Optional object containing the optional runId
|
|
102
46
|
* @returns Promise containing the runId of the created run with methods to control execution
|
|
103
47
|
*/
|
|
104
|
-
|
|
48
|
+
createRun(params?: {
|
|
105
49
|
runId?: string;
|
|
106
50
|
}): Promise<{
|
|
107
51
|
runId: string;
|
|
108
52
|
start: (params: {
|
|
109
53
|
inputData: Record<string, any>;
|
|
110
|
-
|
|
54
|
+
requestContext?: RequestContext | Record<string, any>;
|
|
111
55
|
tracingOptions?: TracingOptions;
|
|
112
56
|
}) => Promise<{
|
|
113
57
|
message: string;
|
|
114
58
|
}>;
|
|
115
|
-
watch: (onRecord: (record: WorkflowWatchResult) => void) => Promise<void>;
|
|
116
59
|
resume: (params: {
|
|
117
|
-
step
|
|
60
|
+
step?: string | string[];
|
|
118
61
|
resumeData?: Record<string, any>;
|
|
119
|
-
|
|
62
|
+
requestContext?: RequestContext | Record<string, any>;
|
|
120
63
|
tracingOptions?: TracingOptions;
|
|
121
64
|
}) => Promise<{
|
|
122
65
|
message: string;
|
|
123
66
|
}>;
|
|
124
67
|
stream: (params: {
|
|
125
68
|
inputData: Record<string, any>;
|
|
126
|
-
|
|
69
|
+
requestContext?: RequestContext | Record<string, any>;
|
|
127
70
|
}) => Promise<ReadableStream>;
|
|
128
71
|
startAsync: (params: {
|
|
129
72
|
inputData: Record<string, any>;
|
|
130
|
-
|
|
73
|
+
requestContext?: RequestContext | Record<string, any>;
|
|
131
74
|
tracingOptions?: TracingOptions;
|
|
132
75
|
}) => Promise<WorkflowRunResult>;
|
|
133
76
|
resumeAsync: (params: {
|
|
134
|
-
step
|
|
77
|
+
step?: string | string[];
|
|
135
78
|
resumeData?: Record<string, any>;
|
|
136
|
-
|
|
79
|
+
requestContext?: RequestContext | Record<string, any>;
|
|
137
80
|
tracingOptions?: TracingOptions;
|
|
138
81
|
}) => Promise<WorkflowRunResult>;
|
|
139
82
|
resumeStreamVNext: (params: {
|
|
140
|
-
step
|
|
83
|
+
step?: string | string[];
|
|
141
84
|
resumeData?: Record<string, any>;
|
|
142
|
-
|
|
85
|
+
requestContext?: RequestContext | Record<string, any>;
|
|
143
86
|
}) => Promise<ReadableStream>;
|
|
144
87
|
}>;
|
|
145
88
|
/**
|
|
146
89
|
* Starts a workflow run synchronously without waiting for the workflow to complete
|
|
147
|
-
* @param params - Object containing the runId, inputData and
|
|
90
|
+
* @param params - Object containing the runId, inputData and requestContext
|
|
148
91
|
* @returns Promise containing success message
|
|
149
92
|
*/
|
|
150
93
|
start(params: {
|
|
151
94
|
runId: string;
|
|
152
95
|
inputData: Record<string, any>;
|
|
153
|
-
|
|
96
|
+
requestContext?: RequestContext | Record<string, any>;
|
|
154
97
|
tracingOptions?: TracingOptions;
|
|
155
98
|
}): Promise<{
|
|
156
99
|
message: string;
|
|
157
100
|
}>;
|
|
158
101
|
/**
|
|
159
102
|
* Resumes a suspended workflow step synchronously without waiting for the workflow to complete
|
|
160
|
-
* @param params - Object containing the runId, step, resumeData and
|
|
103
|
+
* @param params - Object containing the runId, step, resumeData and requestContext
|
|
161
104
|
* @returns Promise containing success message
|
|
162
105
|
*/
|
|
163
106
|
resume({ step, runId, resumeData, tracingOptions, ...rest }: {
|
|
164
|
-
step
|
|
107
|
+
step?: string | string[];
|
|
165
108
|
runId: string;
|
|
166
109
|
resumeData?: Record<string, any>;
|
|
167
|
-
|
|
110
|
+
requestContext?: RequestContext | Record<string, any>;
|
|
168
111
|
tracingOptions?: TracingOptions;
|
|
169
112
|
}): Promise<{
|
|
170
113
|
message: string;
|
|
171
114
|
}>;
|
|
172
115
|
/**
|
|
173
116
|
* Starts a workflow run asynchronously and returns a promise that resolves when the workflow is complete
|
|
174
|
-
* @param params - Object containing the optional runId, inputData and
|
|
117
|
+
* @param params - Object containing the optional runId, inputData and requestContext
|
|
175
118
|
* @returns Promise containing the workflow execution results
|
|
176
119
|
*/
|
|
177
120
|
startAsync(params: {
|
|
178
121
|
runId?: string;
|
|
179
122
|
inputData: Record<string, any>;
|
|
180
|
-
|
|
123
|
+
requestContext?: RequestContext | Record<string, any>;
|
|
181
124
|
tracingOptions?: TracingOptions;
|
|
182
125
|
}): Promise<WorkflowRunResult>;
|
|
183
126
|
/**
|
|
184
127
|
* Starts a workflow run and returns a stream
|
|
185
|
-
* @param params - Object containing the optional runId, inputData and
|
|
128
|
+
* @param params - Object containing the optional runId, inputData and requestContext
|
|
186
129
|
* @returns Promise containing the workflow execution results
|
|
187
130
|
*/
|
|
188
131
|
stream(params: {
|
|
189
132
|
runId?: string;
|
|
190
133
|
inputData: Record<string, any>;
|
|
191
|
-
|
|
134
|
+
requestContext?: RequestContext | Record<string, any>;
|
|
192
135
|
tracingOptions?: TracingOptions;
|
|
193
136
|
}): Promise<import("stream/web").ReadableStream<{
|
|
194
137
|
type: string;
|
|
@@ -207,53 +150,48 @@ export declare class Workflow extends BaseResource {
|
|
|
207
150
|
}>>;
|
|
208
151
|
/**
|
|
209
152
|
* Starts a workflow run and returns a stream
|
|
210
|
-
* @param params - Object containing the optional runId, inputData and
|
|
153
|
+
* @param params - Object containing the optional runId, inputData and requestContext
|
|
211
154
|
* @returns Promise containing the workflow execution results
|
|
212
155
|
*/
|
|
213
156
|
streamVNext(params: {
|
|
214
157
|
runId?: string;
|
|
215
|
-
inputData
|
|
216
|
-
|
|
158
|
+
inputData?: Record<string, any>;
|
|
159
|
+
requestContext?: RequestContext;
|
|
217
160
|
closeOnSuspend?: boolean;
|
|
218
161
|
tracingOptions?: TracingOptions;
|
|
219
|
-
}): Promise<import("stream/web").ReadableStream<
|
|
220
|
-
|
|
221
|
-
|
|
162
|
+
}): Promise<import("stream/web").ReadableStream<StreamVNextChunkType>>;
|
|
163
|
+
/**
|
|
164
|
+
* Observes workflow vNext stream for a workflow run
|
|
165
|
+
* @param params - Object containing the runId
|
|
166
|
+
* @returns Promise containing the workflow execution results
|
|
167
|
+
*/
|
|
168
|
+
observeStreamVNext(params: {
|
|
222
169
|
runId: string;
|
|
223
|
-
|
|
224
|
-
}>>;
|
|
170
|
+
}): Promise<import("stream/web").ReadableStream<StreamVNextChunkType>>;
|
|
225
171
|
/**
|
|
226
172
|
* Resumes a suspended workflow step asynchronously and returns a promise that resolves when the workflow is complete
|
|
227
|
-
* @param params - Object containing the runId, step, resumeData and
|
|
173
|
+
* @param params - Object containing the runId, step, resumeData and requestContext
|
|
228
174
|
* @returns Promise containing the workflow resume results
|
|
229
175
|
*/
|
|
230
176
|
resumeAsync(params: {
|
|
231
177
|
runId: string;
|
|
232
|
-
step
|
|
178
|
+
step?: string | string[];
|
|
233
179
|
resumeData?: Record<string, any>;
|
|
234
|
-
|
|
180
|
+
requestContext?: RequestContext | Record<string, any>;
|
|
235
181
|
tracingOptions?: TracingOptions;
|
|
236
182
|
}): Promise<WorkflowRunResult>;
|
|
237
183
|
/**
|
|
238
184
|
* Resumes a suspended workflow step that uses streamVNext asynchronously and returns a promise that resolves when the workflow is complete
|
|
239
|
-
* @param params - Object containing the runId, step, resumeData and
|
|
185
|
+
* @param params - Object containing the runId, step, resumeData and requestContext
|
|
240
186
|
* @returns Promise containing the workflow resume results
|
|
241
187
|
*/
|
|
242
188
|
resumeStreamVNext(params: {
|
|
243
189
|
runId: string;
|
|
244
|
-
step
|
|
190
|
+
step?: string | string[];
|
|
245
191
|
resumeData?: Record<string, any>;
|
|
246
|
-
|
|
192
|
+
requestContext?: RequestContext | Record<string, any>;
|
|
247
193
|
tracingOptions?: TracingOptions;
|
|
248
194
|
}): Promise<ReadableStream>;
|
|
249
|
-
/**
|
|
250
|
-
* Watches workflow transitions in real-time
|
|
251
|
-
* @param runId - Optional run ID to filter the watch stream
|
|
252
|
-
* @returns AsyncGenerator that yields parsed records from the workflow watch stream
|
|
253
|
-
*/
|
|
254
|
-
watch({ runId }: {
|
|
255
|
-
runId?: string;
|
|
256
|
-
}, onRecord: (record: WorkflowWatchResult) => void): Promise<void>;
|
|
257
195
|
/**
|
|
258
196
|
* Creates a new ReadableStream from an iterable or async iterable of objects,
|
|
259
197
|
* serializing each as JSON and separating them with the record separator (\x1E).
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"workflow.d.ts","sourceRoot":"","sources":["../../src/resources/workflow.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,
|
|
1
|
+
{"version":3,"file":"workflow.d.ts","sourceRoot":"","sources":["../../src/resources/workflow.ts"],"names":[],"mappings":"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"}
|