@mastra/client-js 0.0.0-vector-sources-20250516175436 → 0.0.0-vector-extension-schema-20250922130418

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 +1743 -2
  2. package/LICENSE.md +11 -42
  3. package/README.md +8 -9
  4. package/dist/client.d.ts +290 -0
  5. package/dist/client.d.ts.map +1 -0
  6. package/dist/example.d.ts +2 -0
  7. package/dist/example.d.ts.map +1 -0
  8. package/dist/index.cjs +2622 -504
  9. package/dist/index.cjs.map +1 -0
  10. package/dist/index.d.ts +5 -883
  11. package/dist/index.d.ts.map +1 -0
  12. package/dist/index.js +2623 -507
  13. package/dist/index.js.map +1 -0
  14. package/dist/resources/a2a.d.ts +41 -0
  15. package/dist/resources/a2a.d.ts.map +1 -0
  16. package/dist/resources/agent-builder.d.ts +160 -0
  17. package/dist/resources/agent-builder.d.ts.map +1 -0
  18. package/dist/resources/agent.d.ts +175 -0
  19. package/dist/resources/agent.d.ts.map +1 -0
  20. package/dist/resources/base.d.ts +13 -0
  21. package/dist/resources/base.d.ts.map +1 -0
  22. package/dist/resources/index.d.ts +12 -0
  23. package/dist/resources/index.d.ts.map +1 -0
  24. package/dist/resources/legacy-workflow.d.ts +90 -0
  25. package/dist/resources/legacy-workflow.d.ts.map +1 -0
  26. package/dist/resources/mcp-tool.d.ts +28 -0
  27. package/dist/resources/mcp-tool.d.ts.map +1 -0
  28. package/dist/resources/memory-thread.d.ts +53 -0
  29. package/dist/resources/memory-thread.d.ts.map +1 -0
  30. package/dist/resources/network-memory-thread.d.ts +47 -0
  31. package/dist/resources/network-memory-thread.d.ts.map +1 -0
  32. package/dist/resources/observability.d.ts +19 -0
  33. package/dist/resources/observability.d.ts.map +1 -0
  34. package/dist/resources/tool.d.ts +24 -0
  35. package/dist/resources/tool.d.ts.map +1 -0
  36. package/dist/resources/vNextNetwork.d.ts +43 -0
  37. package/dist/resources/vNextNetwork.d.ts.map +1 -0
  38. package/dist/resources/vector.d.ts +51 -0
  39. package/dist/resources/vector.d.ts.map +1 -0
  40. package/dist/resources/workflow.d.ts +254 -0
  41. package/dist/resources/workflow.d.ts.map +1 -0
  42. package/dist/tools.d.ts +22 -0
  43. package/dist/tools.d.ts.map +1 -0
  44. package/dist/types.d.ts +464 -0
  45. package/dist/types.d.ts.map +1 -0
  46. package/dist/utils/index.d.ts +5 -0
  47. package/dist/utils/index.d.ts.map +1 -0
  48. package/dist/utils/process-client-tools.d.ts +3 -0
  49. package/dist/utils/process-client-tools.d.ts.map +1 -0
  50. package/dist/utils/process-mastra-stream.d.ts +11 -0
  51. package/dist/utils/process-mastra-stream.d.ts.map +1 -0
  52. package/dist/utils/zod-to-json-schema.d.ts +3 -0
  53. package/dist/utils/zod-to-json-schema.d.ts.map +1 -0
  54. package/package.json +37 -20
  55. package/dist/index.d.cts +0 -883
  56. package/eslint.config.js +0 -6
  57. package/src/adapters/agui.test.ts +0 -180
  58. package/src/adapters/agui.ts +0 -239
  59. package/src/client.ts +0 -335
  60. package/src/example.ts +0 -64
  61. package/src/index.test.ts +0 -830
  62. package/src/index.ts +0 -2
  63. package/src/resources/a2a.ts +0 -88
  64. package/src/resources/agent.ts +0 -196
  65. package/src/resources/base.ts +0 -70
  66. package/src/resources/index.ts +0 -10
  67. package/src/resources/mcp-tool.ts +0 -48
  68. package/src/resources/memory-thread.ts +0 -63
  69. package/src/resources/network.ts +0 -86
  70. package/src/resources/tool.ts +0 -44
  71. package/src/resources/vector.ts +0 -83
  72. package/src/resources/vnext-workflow.ts +0 -261
  73. package/src/resources/workflow.ts +0 -251
  74. package/src/types.ts +0 -308
  75. package/src/utils/zod-to-json-schema.ts +0 -10
  76. package/tsconfig.json +0 -5
  77. package/vitest.config.js +0 -8
@@ -0,0 +1,47 @@
1
+ import type { StorageThreadType } from '@mastra/core/memory';
2
+ import type { GetMemoryThreadMessagesResponse, ClientOptions, UpdateMemoryThreadParams, GetMemoryThreadMessagesParams } from '../types.js';
3
+ import { BaseResource } from './base.js';
4
+ export declare class NetworkMemoryThread extends BaseResource {
5
+ private threadId;
6
+ private networkId;
7
+ constructor(options: ClientOptions, threadId: string, networkId: string);
8
+ /**
9
+ * Retrieves the memory thread details
10
+ * @returns Promise containing thread details including title and metadata
11
+ */
12
+ get(): Promise<StorageThreadType>;
13
+ /**
14
+ * Updates the memory thread properties
15
+ * @param params - Update parameters including title and metadata
16
+ * @returns Promise containing updated thread details
17
+ */
18
+ update(params: UpdateMemoryThreadParams): Promise<StorageThreadType>;
19
+ /**
20
+ * Deletes the memory thread
21
+ * @returns Promise containing deletion result
22
+ */
23
+ delete(): Promise<{
24
+ result: string;
25
+ }>;
26
+ /**
27
+ * Retrieves messages associated with the thread
28
+ * @param params - Optional parameters including limit for number of messages to retrieve
29
+ * @returns Promise containing thread messages and UI messages
30
+ */
31
+ getMessages(params?: GetMemoryThreadMessagesParams): Promise<GetMemoryThreadMessagesResponse>;
32
+ /**
33
+ * Deletes one or more messages from the thread
34
+ * @param messageIds - Can be a single message ID (string), array of message IDs,
35
+ * message object with id property, or array of message objects
36
+ * @returns Promise containing deletion result
37
+ */
38
+ deleteMessages(messageIds: string | string[] | {
39
+ id: string;
40
+ } | {
41
+ id: string;
42
+ }[]): Promise<{
43
+ success: boolean;
44
+ message: string;
45
+ }>;
46
+ }
47
+ //# sourceMappingURL=network-memory-thread.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"network-memory-thread.d.ts","sourceRoot":"","sources":["../../src/resources/network-memory-thread.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,iBAAiB,EAAE,MAAM,qBAAqB,CAAC;AAE7D,OAAO,KAAK,EACV,+BAA+B,EAC/B,aAAa,EACb,wBAAwB,EACxB,6BAA6B,EAC9B,MAAM,UAAU,CAAC;AAElB,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,qBAAa,mBAAoB,SAAQ,YAAY;IAGjD,OAAO,CAAC,QAAQ;IAChB,OAAO,CAAC,SAAS;gBAFjB,OAAO,EAAE,aAAa,EACd,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM;IAK3B;;;OAGG;IACH,GAAG,IAAI,OAAO,CAAC,iBAAiB,CAAC;IAIjC;;;;OAIG;IACH,MAAM,CAAC,MAAM,EAAE,wBAAwB,GAAG,OAAO,CAAC,iBAAiB,CAAC;IAOpE;;;OAGG;IACH,MAAM,IAAI,OAAO,CAAC;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,CAAC;IAMrC;;;;OAIG;IACH,WAAW,CAAC,MAAM,CAAC,EAAE,6BAA6B,GAAG,OAAO,CAAC,+BAA+B,CAAC;IAQ7F;;;;;OAKG;IACH,cAAc,CACZ,UAAU,EAAE,MAAM,GAAG,MAAM,EAAE,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,GAAG;QAAE,EAAE,EAAE,MAAM,CAAA;KAAE,EAAE,GAChE,OAAO,CAAC;QAAE,OAAO,EAAE,OAAO,CAAC;QAAC,OAAO,EAAE,MAAM,CAAA;KAAE,CAAC;CASlD"}
@@ -0,0 +1,19 @@
1
+ import type { AITraceRecord, AITracesPaginatedArg } from '@mastra/core/storage';
2
+ import type { ClientOptions, GetAITracesResponse } from '../types.js';
3
+ import { BaseResource } from './base.js';
4
+ export declare class Observability extends BaseResource {
5
+ constructor(options: ClientOptions);
6
+ /**
7
+ * Retrieves a specific AI trace by ID
8
+ * @param traceId - ID of the trace to retrieve
9
+ * @returns Promise containing the AI trace with all its spans
10
+ */
11
+ getTrace(traceId: string): Promise<AITraceRecord>;
12
+ /**
13
+ * Retrieves paginated list of AI traces with optional filtering
14
+ * @param params - Parameters for pagination and filtering
15
+ * @returns Promise containing paginated traces and pagination info
16
+ */
17
+ getTraces(params: AITracesPaginatedArg): Promise<GetAITracesResponse>;
18
+ }
19
+ //# sourceMappingURL=observability.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"observability.d.ts","sourceRoot":"","sources":["../../src/resources/observability.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,aAAa,EAAE,oBAAoB,EAAE,MAAM,sBAAsB,CAAC;AAChF,OAAO,KAAK,EAAE,aAAa,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AACnE,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,qBAAa,aAAc,SAAQ,YAAY;gBACjC,OAAO,EAAE,aAAa;IAIlC;;;;OAIG;IACH,QAAQ,CAAC,OAAO,EAAE,MAAM,GAAG,OAAO,CAAC,aAAa,CAAC;IAIjD;;;;OAIG;IACH,SAAS,CAAC,MAAM,EAAE,oBAAoB,GAAG,OAAO,CAAC,mBAAmB,CAAC;CAkCtE"}
@@ -0,0 +1,24 @@
1
+ import type { RuntimeContext } from '@mastra/core/runtime-context';
2
+ import type { GetToolResponse, ClientOptions } from '../types.js';
3
+ import { BaseResource } from './base.js';
4
+ export declare class Tool extends BaseResource {
5
+ private toolId;
6
+ constructor(options: ClientOptions, toolId: string);
7
+ /**
8
+ * Retrieves details about the tool
9
+ * @param runtimeContext - Optional runtime context to pass as query parameter
10
+ * @returns Promise containing tool details including description and schemas
11
+ */
12
+ details(runtimeContext?: RuntimeContext | Record<string, any>): Promise<GetToolResponse>;
13
+ /**
14
+ * Executes the tool with the provided parameters
15
+ * @param params - Parameters required for tool execution
16
+ * @returns Promise containing the tool execution results
17
+ */
18
+ execute(params: {
19
+ data: any;
20
+ runId?: string;
21
+ runtimeContext?: RuntimeContext | Record<string, any>;
22
+ }): Promise<any>;
23
+ }
24
+ //# sourceMappingURL=tool.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tool.d.ts","sourceRoot":"","sources":["../../src/resources/tool.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,KAAK,EAAE,eAAe,EAAE,aAAa,EAAE,MAAM,UAAU,CAAC;AAG/D,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,qBAAa,IAAK,SAAQ,YAAY;IAGlC,OAAO,CAAC,MAAM;gBADd,OAAO,EAAE,aAAa,EACd,MAAM,EAAE,MAAM;IAKxB;;;;OAIG;IACH,OAAO,CAAC,cAAc,CAAC,EAAE,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,OAAO,CAAC,eAAe,CAAC;IAIxF;;;;OAIG;IACH,OAAO,CAAC,MAAM,EAAE;QAAE,IAAI,EAAE,GAAG,CAAC;QAAC,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,cAAc,CAAC,EAAE,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;KAAE,GAAG,OAAO,CAAC,GAAG,CAAC;CAiBpH"}
@@ -0,0 +1,43 @@
1
+ import type { RuntimeContext } from '@mastra/core/runtime-context';
2
+ import type { WatchEvent } from '@mastra/core/workflows';
3
+ import type { ClientOptions, GetVNextNetworkResponse, GenerateVNextNetworkResponse, LoopVNextNetworkResponse, GenerateOrStreamVNextNetworkParams, LoopStreamVNextNetworkParams } from '../types.js';
4
+ import { BaseResource } from './base.js';
5
+ export declare class VNextNetwork extends BaseResource {
6
+ private networkId;
7
+ constructor(options: ClientOptions, networkId: string);
8
+ /**
9
+ * Retrieves details about the network
10
+ * @param runtimeContext - Optional runtime context to pass as query parameter
11
+ * @returns Promise containing vNext network details
12
+ */
13
+ details(runtimeContext?: RuntimeContext | Record<string, any>): Promise<GetVNextNetworkResponse>;
14
+ /**
15
+ * Generates a response from the v-next network
16
+ * @param params - Generation parameters including message
17
+ * @returns Promise containing the generated response
18
+ */
19
+ generate(params: GenerateOrStreamVNextNetworkParams): Promise<GenerateVNextNetworkResponse>;
20
+ /**
21
+ * Generates a response from the v-next network using multiple primitives
22
+ * @param params - Generation parameters including message
23
+ * @returns Promise containing the generated response
24
+ */
25
+ loop(params: {
26
+ message: string;
27
+ runtimeContext?: RuntimeContext | Record<string, any>;
28
+ }): Promise<LoopVNextNetworkResponse>;
29
+ private streamProcessor;
30
+ /**
31
+ * Streams a response from the v-next network
32
+ * @param params - Stream parameters including message
33
+ * @returns Promise containing the results
34
+ */
35
+ stream(params: GenerateOrStreamVNextNetworkParams, onRecord: (record: WatchEvent) => void): Promise<void>;
36
+ /**
37
+ * Streams a response from the v-next network loop
38
+ * @param params - Stream parameters including message
39
+ * @returns Promise containing the results
40
+ */
41
+ loopStream(params: LoopStreamVNextNetworkParams, onRecord: (record: WatchEvent) => void): Promise<void>;
42
+ }
43
+ //# sourceMappingURL=vNextNetwork.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vNextNetwork.d.ts","sourceRoot":"","sources":["../../src/resources/vNextNetwork.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,wBAAwB,CAAC;AAEzD,OAAO,KAAK,EACV,aAAa,EACb,uBAAuB,EACvB,4BAA4B,EAC5B,wBAAwB,EACxB,kCAAkC,EAClC,4BAA4B,EAC7B,MAAM,UAAU,CAAC;AAGlB,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAItC,qBAAa,YAAa,SAAQ,YAAY;IAG1C,OAAO,CAAC,SAAS;gBADjB,OAAO,EAAE,aAAa,EACd,SAAS,EAAE,MAAM;IAK3B;;;;OAIG;IACH,OAAO,CAAC,cAAc,CAAC,EAAE,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,OAAO,CAAC,uBAAuB,CAAC;IAIhG;;;;OAIG;IACH,QAAQ,CAAC,MAAM,EAAE,kCAAkC,GAAG,OAAO,CAAC,4BAA4B,CAAC;IAU3F;;;;OAIG;IACH,IAAI,CAAC,MAAM,EAAE;QACX,OAAO,EAAE,MAAM,CAAC;QAChB,cAAc,CAAC,EAAE,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;KACvD,GAAG,OAAO,CAAC,wBAAwB,CAAC;YAUtB,eAAe;IAgE9B;;;;OAIG;IACG,MAAM,CAAC,MAAM,EAAE,kCAAkC,EAAE,QAAQ,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI;IA2B/F;;;;OAIG;IACG,UAAU,CAAC,MAAM,EAAE,4BAA4B,EAAE,QAAQ,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI;CA0B9F"}
@@ -0,0 +1,51 @@
1
+ import type { RuntimeContext } from '@mastra/core/runtime-context';
2
+ import type { CreateIndexParams, GetVectorIndexResponse, QueryVectorParams, QueryVectorResponse, ClientOptions, UpsertVectorParams } from '../types.js';
3
+ import { BaseResource } from './base.js';
4
+ export declare class Vector extends BaseResource {
5
+ private vectorName;
6
+ constructor(options: ClientOptions, vectorName: string);
7
+ /**
8
+ * Retrieves details about a specific vector index
9
+ * @param indexName - Name of the index to get details for
10
+ * @param runtimeContext - Optional runtime context to pass as query parameter
11
+ * @returns Promise containing vector index details
12
+ */
13
+ details(indexName: string, runtimeContext?: RuntimeContext | Record<string, any>): Promise<GetVectorIndexResponse>;
14
+ /**
15
+ * Deletes a vector index
16
+ * @param indexName - Name of the index to delete
17
+ * @returns Promise indicating deletion success
18
+ */
19
+ delete(indexName: string): Promise<{
20
+ success: boolean;
21
+ }>;
22
+ /**
23
+ * Retrieves a list of all available indexes
24
+ * @param runtimeContext - Optional runtime context to pass as query parameter
25
+ * @returns Promise containing array of index names
26
+ */
27
+ getIndexes(runtimeContext?: RuntimeContext | Record<string, any>): Promise<{
28
+ indexes: string[];
29
+ }>;
30
+ /**
31
+ * Creates a new vector index
32
+ * @param params - Parameters for index creation including dimension and metric
33
+ * @returns Promise indicating creation success
34
+ */
35
+ createIndex(params: CreateIndexParams): Promise<{
36
+ success: boolean;
37
+ }>;
38
+ /**
39
+ * Upserts vectors into an index
40
+ * @param params - Parameters containing vectors, metadata, and optional IDs
41
+ * @returns Promise containing array of vector IDs
42
+ */
43
+ upsert(params: UpsertVectorParams): Promise<string[]>;
44
+ /**
45
+ * Queries vectors in an index
46
+ * @param params - Query parameters including query vector and search options
47
+ * @returns Promise containing query results
48
+ */
49
+ query(params: QueryVectorParams): Promise<QueryVectorResponse>;
50
+ }
51
+ //# sourceMappingURL=vector.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"vector.d.ts","sourceRoot":"","sources":["../../src/resources/vector.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,KAAK,EACV,iBAAiB,EACjB,sBAAsB,EACtB,iBAAiB,EACjB,mBAAmB,EACnB,aAAa,EACb,kBAAkB,EACnB,MAAM,UAAU,CAAC;AAGlB,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,qBAAa,MAAO,SAAQ,YAAY;IAGpC,OAAO,CAAC,UAAU;gBADlB,OAAO,EAAE,aAAa,EACd,UAAU,EAAE,MAAM;IAK5B;;;;;OAKG;IACH,OAAO,CAAC,SAAS,EAAE,MAAM,EAAE,cAAc,CAAC,EAAE,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,OAAO,CAAC,sBAAsB,CAAC;IAMlH;;;;OAIG;IACH,MAAM,CAAC,SAAS,EAAE,MAAM,GAAG,OAAO,CAAC;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE,CAAC;IAMxD;;;;OAIG;IACH,UAAU,CAAC,cAAc,CAAC,EAAE,cAAc,GAAG,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,GAAG,OAAO,CAAC;QAAE,OAAO,EAAE,MAAM,EAAE,CAAA;KAAE,CAAC;IAIjG;;;;OAIG;IACH,WAAW,CAAC,MAAM,EAAE,iBAAiB,GAAG,OAAO,CAAC;QAAE,OAAO,EAAE,OAAO,CAAA;KAAE,CAAC;IAOrE;;;;OAIG;IACH,MAAM,CAAC,MAAM,EAAE,kBAAkB,GAAG,OAAO,CAAC,MAAM,EAAE,CAAC;IAOrD;;;;OAIG;IACH,KAAK,CAAC,MAAM,EAAE,iBAAiB,GAAG,OAAO,CAAC,mBAAmB,CAAC;CAM/D"}
@@ -0,0 +1,254 @@
1
+ import type { RuntimeContext } from '@mastra/core/runtime-context';
2
+ import type { ClientOptions, GetWorkflowResponse, GetWorkflowRunsResponse, GetWorkflowRunsParams, WorkflowRunResult, WorkflowWatchResult, GetWorkflowRunByIdResponse, GetWorkflowRunExecutionResultResponse } from '../types.js';
3
+ import { BaseResource } from './base.js';
4
+ export declare class Workflow extends BaseResource {
5
+ private workflowId;
6
+ constructor(options: ClientOptions, workflowId: string);
7
+ /**
8
+ * Creates an async generator that processes a readable stream and yields workflow records
9
+ * separated by the Record Separator character (\x1E)
10
+ *
11
+ * @param stream - The readable stream to process
12
+ * @returns An async generator that yields parsed records
13
+ */
14
+ private streamProcessor;
15
+ /**
16
+ * Retrieves details about the workflow
17
+ * @param runtimeContext - Optional runtime context to pass as query parameter
18
+ * @returns Promise containing workflow details including steps and graphs
19
+ */
20
+ details(runtimeContext?: RuntimeContext | Record<string, any>): Promise<GetWorkflowResponse>;
21
+ /**
22
+ * Retrieves all runs for a workflow
23
+ * @param params - Parameters for filtering runs
24
+ * @param runtimeContext - Optional runtime context to pass as query parameter
25
+ * @returns Promise containing workflow runs array
26
+ */
27
+ runs(params?: GetWorkflowRunsParams, runtimeContext?: RuntimeContext | Record<string, any>): Promise<GetWorkflowRunsResponse>;
28
+ /**
29
+ * Retrieves a specific workflow run by its ID
30
+ * @param runId - The ID of the workflow run to retrieve
31
+ * @param runtimeContext - Optional runtime context to pass as query parameter
32
+ * @returns Promise containing the workflow run details
33
+ */
34
+ runById(runId: string, runtimeContext?: RuntimeContext | Record<string, any>): Promise<GetWorkflowRunByIdResponse>;
35
+ /**
36
+ * Retrieves the execution result for a specific workflow run by its ID
37
+ * @param runId - The ID of the workflow run to retrieve the execution result for
38
+ * @param runtimeContext - Optional runtime context to pass as query parameter
39
+ * @returns Promise containing the workflow run execution result
40
+ */
41
+ runExecutionResult(runId: string, runtimeContext?: RuntimeContext | Record<string, any>): Promise<GetWorkflowRunExecutionResultResponse>;
42
+ /**
43
+ * Cancels a specific workflow run by its ID
44
+ * @param runId - The ID of the workflow run to cancel
45
+ * @returns Promise containing a success message
46
+ */
47
+ cancelRun(runId: string): Promise<{
48
+ message: string;
49
+ }>;
50
+ /**
51
+ * Sends an event to a specific workflow run by its ID
52
+ * @param params - Object containing the runId, event and data
53
+ * @returns Promise containing a success message
54
+ */
55
+ sendRunEvent(params: {
56
+ runId: string;
57
+ event: string;
58
+ data: unknown;
59
+ }): Promise<{
60
+ message: string;
61
+ }>;
62
+ /**
63
+ * @deprecated Use createRunAsync() instead.
64
+ * @throws {Error} Always throws an error directing users to use createRunAsync()
65
+ */
66
+ createRun(_params?: {
67
+ runId?: string;
68
+ }): Promise<{
69
+ runId: string;
70
+ start: (params: {
71
+ inputData: Record<string, any>;
72
+ runtimeContext?: RuntimeContext | Record<string, any>;
73
+ }) => Promise<{
74
+ message: string;
75
+ }>;
76
+ watch: (onRecord: (record: WorkflowWatchResult) => void) => Promise<void>;
77
+ resume: (params: {
78
+ step: string | string[];
79
+ resumeData?: Record<string, any>;
80
+ runtimeContext?: RuntimeContext | Record<string, any>;
81
+ }) => Promise<{
82
+ message: string;
83
+ }>;
84
+ stream: (params: {
85
+ inputData: Record<string, any>;
86
+ runtimeContext?: RuntimeContext | Record<string, any>;
87
+ }) => Promise<ReadableStream>;
88
+ startAsync: (params: {
89
+ inputData: Record<string, any>;
90
+ runtimeContext?: RuntimeContext | Record<string, any>;
91
+ }) => Promise<WorkflowRunResult>;
92
+ resumeAsync: (params: {
93
+ step: string | string[];
94
+ resumeData?: Record<string, any>;
95
+ runtimeContext?: RuntimeContext | Record<string, any>;
96
+ }) => Promise<WorkflowRunResult>;
97
+ }>;
98
+ /**
99
+ * Creates a new workflow run
100
+ * @param params - Optional object containing the optional runId
101
+ * @returns Promise containing the runId of the created run with methods to control execution
102
+ */
103
+ createRunAsync(params?: {
104
+ runId?: string;
105
+ }): Promise<{
106
+ runId: string;
107
+ start: (params: {
108
+ inputData: Record<string, any>;
109
+ runtimeContext?: RuntimeContext | Record<string, any>;
110
+ }) => Promise<{
111
+ message: string;
112
+ }>;
113
+ watch: (onRecord: (record: WorkflowWatchResult) => void) => Promise<void>;
114
+ resume: (params: {
115
+ step: string | string[];
116
+ resumeData?: Record<string, any>;
117
+ runtimeContext?: RuntimeContext | Record<string, any>;
118
+ }) => Promise<{
119
+ message: string;
120
+ }>;
121
+ stream: (params: {
122
+ inputData: Record<string, any>;
123
+ runtimeContext?: RuntimeContext | Record<string, any>;
124
+ }) => Promise<ReadableStream>;
125
+ startAsync: (params: {
126
+ inputData: Record<string, any>;
127
+ runtimeContext?: RuntimeContext | Record<string, any>;
128
+ }) => Promise<WorkflowRunResult>;
129
+ resumeAsync: (params: {
130
+ step: string | string[];
131
+ resumeData?: Record<string, any>;
132
+ runtimeContext?: RuntimeContext | Record<string, any>;
133
+ }) => Promise<WorkflowRunResult>;
134
+ resumeStreamVNext: (params: {
135
+ step: string | string[];
136
+ resumeData?: Record<string, any>;
137
+ runtimeContext?: RuntimeContext | Record<string, any>;
138
+ }) => Promise<ReadableStream>;
139
+ }>;
140
+ /**
141
+ * Starts a workflow run synchronously without waiting for the workflow to complete
142
+ * @param params - Object containing the runId, inputData and runtimeContext
143
+ * @returns Promise containing success message
144
+ */
145
+ start(params: {
146
+ runId: string;
147
+ inputData: Record<string, any>;
148
+ runtimeContext?: RuntimeContext | Record<string, any>;
149
+ }): Promise<{
150
+ message: string;
151
+ }>;
152
+ /**
153
+ * Resumes a suspended workflow step synchronously without waiting for the workflow to complete
154
+ * @param params - Object containing the runId, step, resumeData and runtimeContext
155
+ * @returns Promise containing success message
156
+ */
157
+ resume({ step, runId, resumeData, ...rest }: {
158
+ step: string | string[];
159
+ runId: string;
160
+ resumeData?: Record<string, any>;
161
+ runtimeContext?: RuntimeContext | Record<string, any>;
162
+ }): Promise<{
163
+ message: string;
164
+ }>;
165
+ /**
166
+ * Starts a workflow run asynchronously and returns a promise that resolves when the workflow is complete
167
+ * @param params - Object containing the optional runId, inputData and runtimeContext
168
+ * @returns Promise containing the workflow execution results
169
+ */
170
+ startAsync(params: {
171
+ runId?: string;
172
+ inputData: Record<string, any>;
173
+ runtimeContext?: RuntimeContext | Record<string, any>;
174
+ }): Promise<WorkflowRunResult>;
175
+ /**
176
+ * Starts a workflow run and returns a stream
177
+ * @param params - Object containing the optional runId, inputData and runtimeContext
178
+ * @returns Promise containing the workflow execution results
179
+ */
180
+ stream(params: {
181
+ runId?: string;
182
+ inputData: Record<string, any>;
183
+ runtimeContext?: RuntimeContext | Record<string, any>;
184
+ }): Promise<import("stream/web").ReadableStream<{
185
+ type: string;
186
+ payload: any;
187
+ }>>;
188
+ /**
189
+ * Observes workflow stream for a workflow run
190
+ * @param params - Object containing the runId
191
+ * @returns Promise containing the workflow execution results
192
+ */
193
+ observeStream(params: {
194
+ runId: string;
195
+ }): Promise<import("stream/web").ReadableStream<{
196
+ type: string;
197
+ payload: any;
198
+ }>>;
199
+ /**
200
+ * Starts a workflow run and returns a stream
201
+ * @param params - Object containing the optional runId, inputData and runtimeContext
202
+ * @returns Promise containing the workflow execution results
203
+ */
204
+ streamVNext(params: {
205
+ runId?: string;
206
+ inputData: Record<string, any>;
207
+ runtimeContext?: RuntimeContext;
208
+ closeOnSuspend?: boolean;
209
+ }): Promise<import("stream/web").ReadableStream<{
210
+ type: string;
211
+ payload: any;
212
+ runId: string;
213
+ from: "AGENT" | "WORKFLOW";
214
+ }>>;
215
+ /**
216
+ * Resumes a suspended workflow step asynchronously and returns a promise that resolves when the workflow is complete
217
+ * @param params - Object containing the runId, step, resumeData and runtimeContext
218
+ * @returns Promise containing the workflow resume results
219
+ */
220
+ resumeAsync(params: {
221
+ runId: string;
222
+ step: string | string[];
223
+ resumeData?: Record<string, any>;
224
+ runtimeContext?: RuntimeContext | Record<string, any>;
225
+ }): Promise<WorkflowRunResult>;
226
+ /**
227
+ * Resumes a suspended workflow step that uses streamVNext asynchronously and returns a promise that resolves when the workflow is complete
228
+ * @param params - Object containing the runId, step, resumeData and runtimeContext
229
+ * @returns Promise containing the workflow resume results
230
+ */
231
+ resumeStreamVNext(params: {
232
+ runId: string;
233
+ step: string | string[];
234
+ resumeData?: Record<string, any>;
235
+ runtimeContext?: RuntimeContext | Record<string, any>;
236
+ }): Promise<ReadableStream>;
237
+ /**
238
+ * Watches workflow transitions in real-time
239
+ * @param runId - Optional run ID to filter the watch stream
240
+ * @returns AsyncGenerator that yields parsed records from the workflow watch stream
241
+ */
242
+ watch({ runId }: {
243
+ runId?: string;
244
+ }, onRecord: (record: WorkflowWatchResult) => void): Promise<void>;
245
+ /**
246
+ * Creates a new ReadableStream from an iterable or async iterable of objects,
247
+ * serializing each as JSON and separating them with the record separator (\x1E).
248
+ *
249
+ * @param records - An iterable or async iterable of objects to stream
250
+ * @returns A ReadableStream emitting the records as JSON strings separated by the record separator
251
+ */
252
+ static createRecordStream(records: Iterable<any> | AsyncIterable<any>): ReadableStream;
253
+ }
254
+ //# sourceMappingURL=workflow.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"workflow.d.ts","sourceRoot":"","sources":["../../src/resources/workflow.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,22 @@
1
+ import type { ToolExecutionOptions } from 'ai';
2
+ import type { z } from 'zod';
3
+ export interface ClientToolExecutionContext<TSchemaIn extends z.ZodSchema | undefined = undefined> {
4
+ context: TSchemaIn extends z.ZodSchema ? z.infer<TSchemaIn> : unknown;
5
+ }
6
+ export interface ClientToolAction<TSchemaIn extends z.ZodSchema | undefined = undefined, TSchemaOut extends z.ZodSchema | undefined = undefined> {
7
+ id: string;
8
+ description: string;
9
+ inputSchema?: TSchemaIn;
10
+ outputSchema?: TSchemaOut;
11
+ execute?: (context: ClientToolExecutionContext<TSchemaIn>, options?: ToolExecutionOptions) => Promise<TSchemaOut extends z.ZodSchema ? z.infer<TSchemaOut> : unknown>;
12
+ }
13
+ export declare class ClientTool<TSchemaIn extends z.ZodSchema | undefined = undefined, TSchemaOut extends z.ZodSchema | undefined = undefined> implements ClientToolAction<TSchemaIn, TSchemaOut> {
14
+ id: string;
15
+ description: string;
16
+ inputSchema?: TSchemaIn;
17
+ outputSchema?: TSchemaOut;
18
+ execute?: ClientToolAction<TSchemaIn, TSchemaOut>['execute'];
19
+ constructor(opts: ClientToolAction<TSchemaIn, TSchemaOut>);
20
+ }
21
+ export declare function createTool<TSchemaIn extends z.ZodSchema | undefined = undefined, TSchemaOut extends z.ZodSchema | undefined = undefined>(opts: ClientToolAction<TSchemaIn, TSchemaOut>): ClientTool<TSchemaIn, TSchemaOut>;
22
+ //# sourceMappingURL=tools.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"tools.d.ts","sourceRoot":"","sources":["../src/tools.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,IAAI,CAAC;AAC/C,OAAO,KAAK,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAG7B,MAAM,WAAW,0BAA0B,CAAC,SAAS,SAAS,CAAC,CAAC,SAAS,GAAG,SAAS,GAAG,SAAS;IAC/F,OAAO,EAAE,SAAS,SAAS,CAAC,CAAC,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,SAAS,CAAC,GAAG,OAAO,CAAC;CACvE;AAGD,MAAM,WAAW,gBAAgB,CAC/B,SAAS,SAAS,CAAC,CAAC,SAAS,GAAG,SAAS,GAAG,SAAS,EACrD,UAAU,SAAS,CAAC,CAAC,SAAS,GAAG,SAAS,GAAG,SAAS;IAEtD,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,YAAY,CAAC,EAAE,UAAU,CAAC;IAC1B,OAAO,CAAC,EAAE,CACR,OAAO,EAAE,0BAA0B,CAAC,SAAS,CAAC,EAC9C,OAAO,CAAC,EAAE,oBAAoB,KAC3B,OAAO,CAAC,UAAU,SAAS,CAAC,CAAC,SAAS,GAAG,CAAC,CAAC,KAAK,CAAC,UAAU,CAAC,GAAG,OAAO,CAAC,CAAC;CAC9E;AAGD,qBAAa,UAAU,CACrB,SAAS,SAAS,CAAC,CAAC,SAAS,GAAG,SAAS,GAAG,SAAS,EACrD,UAAU,SAAS,CAAC,CAAC,SAAS,GAAG,SAAS,GAAG,SAAS,CACtD,YAAW,gBAAgB,CAAC,SAAS,EAAE,UAAU,CAAC;IAElD,EAAE,EAAE,MAAM,CAAC;IACX,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,SAAS,CAAC;IACxB,YAAY,CAAC,EAAE,UAAU,CAAC;IAC1B,OAAO,CAAC,EAAE,gBAAgB,CAAC,SAAS,EAAE,UAAU,CAAC,CAAC,SAAS,CAAC,CAAC;gBAEjD,IAAI,EAAE,gBAAgB,CAAC,SAAS,EAAE,UAAU,CAAC;CAO1D;AAGD,wBAAgB,UAAU,CACxB,SAAS,SAAS,CAAC,CAAC,SAAS,GAAG,SAAS,GAAG,SAAS,EACrD,UAAU,SAAS,CAAC,CAAC,SAAS,GAAG,SAAS,GAAG,SAAS,EACtD,IAAI,EAAE,gBAAgB,CAAC,SAAS,EAAE,UAAU,CAAC,GAAG,UAAU,CAAC,SAAS,EAAE,UAAU,CAAC,CAElF"}