@mastra/client-js 0.0.0-generate-message-id-20250512171942 → 0.0.0-gl-test-20250917080133

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 (78) hide show
  1. package/CHANGELOG.md +1708 -4
  2. package/LICENSE.md +11 -42
  3. package/README.md +8 -9
  4. package/dist/client.d.ts +284 -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 +2790 -608
  9. package/dist/index.cjs.map +1 -0
  10. package/dist/index.d.ts +5 -790
  11. package/dist/index.d.ts.map +1 -0
  12. package/dist/index.js +2791 -611
  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 +13 -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/network.d.ts +32 -0
  33. package/dist/resources/network.d.ts.map +1 -0
  34. package/dist/resources/observability.d.ts +19 -0
  35. package/dist/resources/observability.d.ts.map +1 -0
  36. package/dist/resources/tool.d.ts +24 -0
  37. package/dist/resources/tool.d.ts.map +1 -0
  38. package/dist/resources/vNextNetwork.d.ts +43 -0
  39. package/dist/resources/vNextNetwork.d.ts.map +1 -0
  40. package/dist/resources/vector.d.ts +51 -0
  41. package/dist/resources/vector.d.ts.map +1 -0
  42. package/dist/resources/workflow.d.ts +226 -0
  43. package/dist/resources/workflow.d.ts.map +1 -0
  44. package/dist/tools.d.ts +22 -0
  45. package/dist/tools.d.ts.map +1 -0
  46. package/dist/types.d.ts +469 -0
  47. package/dist/types.d.ts.map +1 -0
  48. package/dist/utils/index.d.ts +5 -0
  49. package/dist/utils/index.d.ts.map +1 -0
  50. package/dist/utils/process-client-tools.d.ts +3 -0
  51. package/dist/utils/process-client-tools.d.ts.map +1 -0
  52. package/dist/utils/process-mastra-stream.d.ts +11 -0
  53. package/dist/utils/process-mastra-stream.d.ts.map +1 -0
  54. package/dist/utils/zod-to-json-schema.d.ts +3 -0
  55. package/dist/utils/zod-to-json-schema.d.ts.map +1 -0
  56. package/package.json +37 -20
  57. package/dist/index.d.cts +0 -790
  58. package/eslint.config.js +0 -6
  59. package/src/adapters/agui.test.ts +0 -180
  60. package/src/adapters/agui.ts +0 -239
  61. package/src/client.ts +0 -268
  62. package/src/example.ts +0 -65
  63. package/src/index.test.ts +0 -710
  64. package/src/index.ts +0 -2
  65. package/src/resources/a2a.ts +0 -88
  66. package/src/resources/agent.ts +0 -196
  67. package/src/resources/base.ts +0 -70
  68. package/src/resources/index.ts +0 -9
  69. package/src/resources/memory-thread.ts +0 -53
  70. package/src/resources/network.ts +0 -86
  71. package/src/resources/tool.ts +0 -44
  72. package/src/resources/vector.ts +0 -83
  73. package/src/resources/vnext-workflow.ts +0 -261
  74. package/src/resources/workflow.ts +0 -251
  75. package/src/types.ts +0 -262
  76. package/src/utils/zod-to-json-schema.ts +0 -10
  77. package/tsconfig.json +0 -5
  78. 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,32 @@
1
+ import { processDataStream } from '@ai-sdk/ui-utils';
2
+ import type { GenerateReturn } from '@mastra/core/llm';
3
+ import type { RuntimeContext } from '@mastra/core/runtime-context';
4
+ import type { JSONSchema7 } from 'json-schema';
5
+ import type { ZodSchema } from 'zod';
6
+ import type { GenerateParams, ClientOptions, StreamParams, GetNetworkResponse } from '../types.js';
7
+ import { BaseResource } from './base.js';
8
+ export declare class Network extends BaseResource {
9
+ private networkId;
10
+ constructor(options: ClientOptions, networkId: string);
11
+ /**
12
+ * Retrieves details about the network
13
+ * @param runtimeContext - Optional runtime context to pass as query parameter
14
+ * @returns Promise containing network details
15
+ */
16
+ details(runtimeContext?: RuntimeContext | Record<string, any>): Promise<GetNetworkResponse>;
17
+ /**
18
+ * Generates a response from the agent
19
+ * @param params - Generation parameters including prompt
20
+ * @returns Promise containing the generated response
21
+ */
22
+ generate<Output extends JSONSchema7 | ZodSchema | undefined = undefined, StructuredOutput extends JSONSchema7 | ZodSchema | undefined = undefined>(params: GenerateParams<Output>): Promise<GenerateReturn<any, Output, StructuredOutput>>;
23
+ /**
24
+ * Streams a response from the agent
25
+ * @param params - Stream parameters including prompt
26
+ * @returns Promise containing the enhanced Response object with processDataStream method
27
+ */
28
+ stream<T extends JSONSchema7 | ZodSchema | undefined = undefined>(params: StreamParams<T>): Promise<Response & {
29
+ processDataStream: (options?: Omit<Parameters<typeof processDataStream>[0], 'stream'>) => Promise<void>;
30
+ }>;
31
+ }
32
+ //# sourceMappingURL=network.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"network.d.ts","sourceRoot":"","sources":["../../src/resources/network.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,iBAAiB,EAAE,MAAM,kBAAkB,CAAC;AACrD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,kBAAkB,CAAC;AACvD,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,8BAA8B,CAAC;AACnE,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,aAAa,CAAC;AAC/C,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,KAAK,CAAC;AACrC,OAAO,KAAK,EAAE,cAAc,EAAE,aAAa,EAAE,YAAY,EAAE,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAIhG,OAAO,EAAE,YAAY,EAAE,MAAM,QAAQ,CAAC;AAEtC,qBAAa,OAAQ,SAAQ,YAAY;IAGrC,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,kBAAkB,CAAC;IAI3F;;;;OAIG;IACH,QAAQ,CACN,MAAM,SAAS,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,EAC9D,gBAAgB,SAAS,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,EACxE,MAAM,EAAE,cAAc,CAAC,MAAM,CAAC,GAAG,OAAO,CAAC,cAAc,CAAC,GAAG,EAAE,MAAM,EAAE,gBAAgB,CAAC,CAAC;IAazF;;;;OAIG;IACG,MAAM,CAAC,CAAC,SAAS,WAAW,GAAG,SAAS,GAAG,SAAS,GAAG,SAAS,EACpE,MAAM,EAAE,YAAY,CAAC,CAAC,CAAC,GACtB,OAAO,CACR,QAAQ,GAAG;QACT,iBAAiB,EAAE,CAAC,OAAO,CAAC,EAAE,IAAI,CAAC,UAAU,CAAC,OAAO,iBAAiB,CAAC,CAAC,CAAC,CAAC,EAAE,QAAQ,CAAC,KAAK,OAAO,CAAC,IAAI,CAAC,CAAC;KACzG,CACF;CA4BF"}
@@ -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,226 @@
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
+ }>;
135
+ /**
136
+ * Starts a workflow run synchronously without waiting for the workflow to complete
137
+ * @param params - Object containing the runId, inputData and runtimeContext
138
+ * @returns Promise containing success message
139
+ */
140
+ start(params: {
141
+ runId: string;
142
+ inputData: Record<string, any>;
143
+ runtimeContext?: RuntimeContext | Record<string, any>;
144
+ }): Promise<{
145
+ message: string;
146
+ }>;
147
+ /**
148
+ * Resumes a suspended workflow step synchronously without waiting for the workflow to complete
149
+ * @param params - Object containing the runId, step, resumeData and runtimeContext
150
+ * @returns Promise containing success message
151
+ */
152
+ resume({ step, runId, resumeData, ...rest }: {
153
+ step: string | string[];
154
+ runId: string;
155
+ resumeData?: Record<string, any>;
156
+ runtimeContext?: RuntimeContext | Record<string, any>;
157
+ }): Promise<{
158
+ message: string;
159
+ }>;
160
+ /**
161
+ * Starts a workflow run asynchronously and returns a promise that resolves when the workflow is complete
162
+ * @param params - Object containing the optional runId, inputData and runtimeContext
163
+ * @returns Promise containing the workflow execution results
164
+ */
165
+ startAsync(params: {
166
+ runId?: string;
167
+ inputData: Record<string, any>;
168
+ runtimeContext?: RuntimeContext | Record<string, any>;
169
+ }): Promise<WorkflowRunResult>;
170
+ /**
171
+ * Starts a workflow run and returns a stream
172
+ * @param params - Object containing the optional runId, inputData and runtimeContext
173
+ * @returns Promise containing the workflow execution results
174
+ */
175
+ stream(params: {
176
+ runId?: string;
177
+ inputData: Record<string, any>;
178
+ runtimeContext?: RuntimeContext | Record<string, any>;
179
+ }): Promise<import("stream/web").ReadableStream<{
180
+ type: string;
181
+ payload: any;
182
+ }>>;
183
+ /**
184
+ * Starts a workflow run and returns a stream
185
+ * @param params - Object containing the optional runId, inputData and runtimeContext
186
+ * @returns Promise containing the workflow execution results
187
+ */
188
+ streamVNext(params: {
189
+ runId?: string;
190
+ inputData: Record<string, any>;
191
+ runtimeContext?: RuntimeContext;
192
+ }): Promise<import("stream/web").ReadableStream<{
193
+ type: string;
194
+ payload: any;
195
+ runId: string;
196
+ from: "AGENT" | "WORKFLOW";
197
+ }>>;
198
+ /**
199
+ * Resumes a suspended workflow step asynchronously and returns a promise that resolves when the workflow is complete
200
+ * @param params - Object containing the runId, step, resumeData and runtimeContext
201
+ * @returns Promise containing the workflow resume results
202
+ */
203
+ resumeAsync(params: {
204
+ runId: string;
205
+ step: string | string[];
206
+ resumeData?: Record<string, any>;
207
+ runtimeContext?: RuntimeContext | Record<string, any>;
208
+ }): Promise<WorkflowRunResult>;
209
+ /**
210
+ * Watches workflow transitions in real-time
211
+ * @param runId - Optional run ID to filter the watch stream
212
+ * @returns AsyncGenerator that yields parsed records from the workflow watch stream
213
+ */
214
+ watch({ runId }: {
215
+ runId?: string;
216
+ }, onRecord: (record: WorkflowWatchResult) => void): Promise<void>;
217
+ /**
218
+ * Creates a new ReadableStream from an iterable or async iterable of objects,
219
+ * serializing each as JSON and separating them with the record separator (\x1E).
220
+ *
221
+ * @param records - An iterable or async iterable of objects to stream
222
+ * @returns A ReadableStream emitting the records as JSON strings separated by the record separator
223
+ */
224
+ static createRecordStream(records: Iterable<any> | AsyncIterable<any>): ReadableStream;
225
+ }
226
+ //# 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"}