@mastra/client-js 0.0.0-fix-message-list-args-missing-20250807205055 → 0.0.0-fix-zod-to-json-schema-ref-strategy-20250910193441

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 (76) hide show
  1. package/CHANGELOG.md +512 -3
  2. package/README.md +5 -3
  3. package/dist/client.d.ts +21 -6
  4. package/dist/client.d.ts.map +1 -1
  5. package/dist/index.cjs +1235 -376
  6. package/dist/index.cjs.map +1 -1
  7. package/dist/index.js +1237 -378
  8. package/dist/index.js.map +1 -1
  9. package/dist/resources/a2a.d.ts +13 -16
  10. package/dist/resources/a2a.d.ts.map +1 -1
  11. package/dist/resources/agent-builder.d.ts +161 -0
  12. package/dist/resources/agent-builder.d.ts.map +1 -0
  13. package/dist/resources/agent.d.ts +50 -7
  14. package/dist/resources/agent.d.ts.map +1 -1
  15. package/dist/resources/base.d.ts.map +1 -1
  16. package/dist/resources/index.d.ts +2 -0
  17. package/dist/resources/index.d.ts.map +1 -1
  18. package/dist/resources/memory-thread.d.ts +1 -1
  19. package/dist/resources/memory-thread.d.ts.map +1 -1
  20. package/dist/resources/network-memory-thread.d.ts +1 -1
  21. package/dist/resources/network-memory-thread.d.ts.map +1 -1
  22. package/dist/resources/network.d.ts +1 -1
  23. package/dist/resources/network.d.ts.map +1 -1
  24. package/dist/resources/observability.d.ts +19 -0
  25. package/dist/resources/observability.d.ts.map +1 -0
  26. package/dist/resources/tool.d.ts.map +1 -1
  27. package/dist/resources/vNextNetwork.d.ts +1 -1
  28. package/dist/resources/vNextNetwork.d.ts.map +1 -1
  29. package/dist/resources/workflow.d.ts +15 -0
  30. package/dist/resources/workflow.d.ts.map +1 -1
  31. package/dist/types.d.ts +42 -2
  32. package/dist/types.d.ts.map +1 -1
  33. package/dist/utils/process-client-tools.d.ts.map +1 -1
  34. package/dist/utils/process-mastra-stream.d.ts +7 -0
  35. package/dist/utils/process-mastra-stream.d.ts.map +1 -0
  36. package/dist/utils/zod-to-json-schema.d.ts +2 -104
  37. package/dist/utils/zod-to-json-schema.d.ts.map +1 -1
  38. package/package.json +22 -15
  39. package/.turbo/turbo-build.log +0 -18
  40. package/dist/adapters/agui.d.ts +0 -23
  41. package/dist/adapters/agui.d.ts.map +0 -1
  42. package/eslint.config.js +0 -6
  43. package/integration-tests/agui-adapter.test.ts +0 -122
  44. package/integration-tests/package.json +0 -18
  45. package/integration-tests/src/mastra/index.ts +0 -35
  46. package/integration-tests/vitest.config.ts +0 -9
  47. package/src/adapters/agui.test.ts +0 -322
  48. package/src/adapters/agui.ts +0 -257
  49. package/src/client.ts +0 -623
  50. package/src/example.ts +0 -95
  51. package/src/index.test.ts +0 -1226
  52. package/src/index.ts +0 -3
  53. package/src/resources/a2a.ts +0 -88
  54. package/src/resources/agent.ts +0 -785
  55. package/src/resources/base.ts +0 -76
  56. package/src/resources/index.ts +0 -10
  57. package/src/resources/legacy-workflow.ts +0 -242
  58. package/src/resources/mcp-tool.ts +0 -48
  59. package/src/resources/memory-thread.test.ts +0 -285
  60. package/src/resources/memory-thread.ts +0 -99
  61. package/src/resources/network-memory-thread.test.ts +0 -269
  62. package/src/resources/network-memory-thread.ts +0 -81
  63. package/src/resources/network.ts +0 -86
  64. package/src/resources/tool.ts +0 -45
  65. package/src/resources/vNextNetwork.ts +0 -194
  66. package/src/resources/vector.ts +0 -83
  67. package/src/resources/workflow.ts +0 -410
  68. package/src/types.ts +0 -502
  69. package/src/utils/index.ts +0 -11
  70. package/src/utils/process-client-tools.ts +0 -32
  71. package/src/utils/zod-to-json-schema.ts +0 -10
  72. package/src/v2-messages.test.ts +0 -180
  73. package/tsconfig.build.json +0 -9
  74. package/tsconfig.json +0 -5
  75. package/tsup.config.ts +0 -17
  76. package/vitest.config.js +0 -8
@@ -1,180 +0,0 @@
1
- import { describe, it, expect, vi, beforeEach } from 'vitest';
2
- import type { MastraMessageV1, MastraMessageV2 } from '@mastra/core';
3
- import { MastraClient } from './client';
4
-
5
- describe('V2 Message Format Support', () => {
6
- let client: MastraClient;
7
- const agentId = 'test-agent';
8
-
9
- beforeEach(() => {
10
- global.fetch = vi.fn();
11
- client = new MastraClient({
12
- baseUrl: 'http://localhost:3000',
13
- });
14
- });
15
-
16
- it('should send v1 messages successfully', async () => {
17
- const v1Messages: MastraMessageV1[] = [
18
- {
19
- id: 'msg-v1-1',
20
- role: 'user',
21
- content: 'Hello from v1!',
22
- type: 'text',
23
- createdAt: new Date(),
24
- threadId: 'thread-123',
25
- resourceId: 'resource-123',
26
- },
27
- ];
28
-
29
- (global.fetch as any).mockResolvedValueOnce({
30
- ok: true,
31
- json: async () => v1Messages,
32
- });
33
-
34
- const result = await client.saveMessageToMemory({
35
- agentId,
36
- messages: v1Messages,
37
- });
38
-
39
- expect(result).toEqual(v1Messages);
40
- expect(global.fetch).toHaveBeenCalledWith(
41
- expect.stringContaining('/api/memory/save-messages'),
42
- expect.objectContaining({
43
- method: 'POST',
44
- body: JSON.stringify({ agentId, messages: v1Messages }),
45
- }),
46
- );
47
- });
48
-
49
- it('should send v2 messages successfully', async () => {
50
- const v2Messages: MastraMessageV2[] = [
51
- {
52
- id: 'msg-v2-1',
53
- role: 'assistant',
54
- createdAt: new Date(),
55
- threadId: 'thread-123',
56
- resourceId: 'resource-123',
57
- content: {
58
- format: 2,
59
- parts: [{ type: 'text', text: 'Hello from v2!' }],
60
- content: 'Hello from v2!',
61
- },
62
- },
63
- ];
64
-
65
- (global.fetch as any).mockResolvedValueOnce({
66
- ok: true,
67
- json: async () => v2Messages,
68
- });
69
-
70
- const result = await client.saveMessageToMemory({
71
- agentId,
72
- messages: v2Messages,
73
- });
74
-
75
- expect(result).toEqual(v2Messages);
76
- expect(global.fetch).toHaveBeenCalledWith(
77
- expect.stringContaining('/api/memory/save-messages'),
78
- expect.objectContaining({
79
- method: 'POST',
80
- body: JSON.stringify({ agentId, messages: v2Messages }),
81
- }),
82
- );
83
- });
84
-
85
- it('should send mixed v1 and v2 messages successfully', async () => {
86
- const mixedMessages: (MastraMessageV1 | MastraMessageV2)[] = [
87
- {
88
- id: 'msg-v1-1',
89
- role: 'user',
90
- content: 'Question in v1 format',
91
- type: 'text',
92
- createdAt: new Date(),
93
- threadId: 'thread-123',
94
- resourceId: 'resource-123',
95
- },
96
- {
97
- id: 'msg-v2-1',
98
- role: 'assistant',
99
- createdAt: new Date(),
100
- threadId: 'thread-123',
101
- resourceId: 'resource-123',
102
- content: {
103
- format: 2,
104
- parts: [
105
- { type: 'text', text: 'Answer in v2 format' },
106
- {
107
- type: 'tool-invocation',
108
- toolInvocation: {
109
- state: 'result' as const,
110
- toolCallId: 'call-123',
111
- toolName: 'calculator',
112
- args: { a: 1, b: 2 },
113
- result: '3',
114
- },
115
- },
116
- ],
117
- toolInvocations: [
118
- {
119
- state: 'result' as const,
120
- toolCallId: 'call-123',
121
- toolName: 'calculator',
122
- args: { a: 1, b: 2 },
123
- result: '3',
124
- },
125
- ],
126
- },
127
- },
128
- ];
129
-
130
- (global.fetch as any).mockResolvedValueOnce({
131
- ok: true,
132
- json: async () => mixedMessages,
133
- });
134
-
135
- const result = await client.saveMessageToMemory({
136
- agentId,
137
- messages: mixedMessages,
138
- });
139
-
140
- expect(result).toEqual(mixedMessages);
141
- expect(global.fetch).toHaveBeenCalledWith(
142
- expect.stringContaining('/api/memory/save-messages'),
143
- expect.objectContaining({
144
- method: 'POST',
145
- body: JSON.stringify({ agentId, messages: mixedMessages }),
146
- }),
147
- );
148
- });
149
-
150
- it('should handle v2 messages with attachments', async () => {
151
- const v2MessageWithAttachments: MastraMessageV2 = {
152
- id: 'msg-v2-att',
153
- role: 'user',
154
- createdAt: new Date(),
155
- threadId: 'thread-123',
156
- resourceId: 'resource-123',
157
- content: {
158
- format: 2,
159
- parts: [
160
- { type: 'text', text: 'Check out this image:' },
161
- { type: 'file', data: 'data:image/png;base64,iVBORw0...', mimeType: 'image/png' },
162
- ],
163
- experimental_attachments: [{ url: 'data:image/png;base64,iVBORw0...', contentType: 'image/png' }],
164
- },
165
- };
166
-
167
- (global.fetch as any).mockResolvedValueOnce({
168
- ok: true,
169
- json: async () => [v2MessageWithAttachments],
170
- });
171
-
172
- const result = await client.saveMessageToMemory({
173
- agentId,
174
- messages: [v2MessageWithAttachments],
175
- });
176
-
177
- expect(result).toHaveLength(1);
178
- expect(result[0]).toEqual(v2MessageWithAttachments);
179
- });
180
- });
@@ -1,9 +0,0 @@
1
- {
2
- "extends": ["./tsconfig.json", "../../tsconfig.build.json"],
3
- "compilerOptions": {
4
- "outDir": "./dist",
5
- "rootDir": "./src"
6
- },
7
- "include": ["src/**/*"],
8
- "exclude": ["node_modules", "**/*.test.ts", "src/**/*.mock.ts"]
9
- }
package/tsconfig.json DELETED
@@ -1,5 +0,0 @@
1
- {
2
- "extends": "../../tsconfig.node.json",
3
- "include": ["src/**/*", "tsup.config.ts"],
4
- "exclude": ["node_modules", "**/*.test.ts"]
5
- }
package/tsup.config.ts DELETED
@@ -1,17 +0,0 @@
1
- import { defineConfig } from 'tsup';
2
- import { generateTypes } from '@internal/types-builder';
3
-
4
- export default defineConfig({
5
- entry: ['src/index.ts'],
6
- format: ['esm', 'cjs'],
7
- clean: true,
8
- dts: false,
9
- splitting: true,
10
- treeshake: {
11
- preset: 'smallest',
12
- },
13
- sourcemap: true,
14
- onSuccess: async () => {
15
- await generateTypes(process.cwd());
16
- },
17
- });
package/vitest.config.js DELETED
@@ -1,8 +0,0 @@
1
- import { defineConfig } from 'vitest/config';
2
-
3
- export default defineConfig({
4
- test: {
5
- environment: 'node',
6
- include: ['src/**/*.test.ts'],
7
- },
8
- });