@mastra/client-js 0.0.0-zod-v4-compat-part-2-20250822105954 → 0.0.0-zod-v4-stuff-20250825154219

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 (41) hide show
  1. package/.turbo/turbo-build.log +18 -0
  2. package/CHANGELOG.md +266 -2
  3. package/dist/adapters/agui.d.ts +1 -1
  4. package/dist/adapters/agui.d.ts.map +1 -1
  5. package/dist/client.d.ts +9 -4
  6. package/dist/client.d.ts.map +1 -1
  7. package/dist/index.cjs +566 -31
  8. package/dist/index.cjs.map +1 -1
  9. package/dist/index.d.ts +2 -2
  10. package/dist/index.js +566 -31
  11. package/dist/index.js.map +1 -1
  12. package/dist/resources/a2a.d.ts +15 -18
  13. package/dist/resources/a2a.d.ts.map +1 -1
  14. package/dist/resources/agent.d.ts +21 -2
  15. package/dist/resources/agent.d.ts.map +1 -1
  16. package/dist/resources/base.d.ts +1 -1
  17. package/dist/resources/index.d.ts +10 -10
  18. package/dist/resources/legacy-workflow.d.ts +2 -2
  19. package/dist/resources/mcp-tool.d.ts +2 -2
  20. package/dist/resources/memory-thread.d.ts +2 -2
  21. package/dist/resources/network-memory-thread.d.ts +2 -2
  22. package/dist/resources/network.d.ts +2 -2
  23. package/dist/resources/tool.d.ts +2 -2
  24. package/dist/resources/vNextNetwork.d.ts +2 -2
  25. package/dist/resources/vector.d.ts +2 -2
  26. package/dist/resources/workflow.d.ts +2 -2
  27. package/dist/types.d.ts +14 -2
  28. package/dist/types.d.ts.map +1 -1
  29. package/dist/utils/process-mastra-stream.d.ts +7 -0
  30. package/dist/utils/process-mastra-stream.d.ts.map +1 -0
  31. package/dist/utils/zod-to-json-schema.d.ts.map +1 -1
  32. package/package.json +8 -6
  33. package/src/adapters/agui.ts +29 -11
  34. package/src/client.ts +8 -0
  35. package/src/resources/a2a.ts +35 -25
  36. package/src/resources/agent.ts +660 -2
  37. package/src/types.ts +22 -1
  38. package/src/utils/process-mastra-stream.test.ts +353 -0
  39. package/src/utils/process-mastra-stream.ts +49 -0
  40. package/src/utils/zod-to-json-schema.ts +1 -0
  41. package/tsup.config.ts +2 -7
@@ -0,0 +1,18 @@
1
+
2
+ > @mastra/client-js@0.10.24-alpha.0 build /home/runner/work/mastra/mastra/client-sdks/client-js
3
+ > tsup --config tsup.config.ts
4
+
5
+ CLI Building entry: src/index.ts
6
+ CLI Using tsconfig: tsconfig.json
7
+ CLI tsup v8.5.0
8
+ CLI Using tsup config: /home/runner/work/mastra/mastra/client-sdks/client-js/tsup.config.ts
9
+ CLI Target: es2022
10
+ CLI Cleaning output folder
11
+ ESM Build start
12
+ CJS Build start
13
+ CJS dist/index.cjs 94.18 KB
14
+ CJS dist/index.cjs.map 201.90 KB
15
+ CJS ⚡️ Build success in 3548ms
16
+ ESM dist/index.js 93.84 KB
17
+ ESM dist/index.js.map 201.71 KB
18
+ ESM ⚡️ Build success in 3549ms
package/CHANGELOG.md CHANGED
@@ -1,14 +1,278 @@
1
1
  # @mastra/client-js
2
2
 
3
- ## 0.0.0-zod-v4-compat-part-2-20250822105954
3
+ ## 0.0.0-zod-v4-stuff-20250825154219
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - [#6949](https://github.com/mastra-ai/mastra/pull/6949) [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1) Thanks [@CalebBarnes](https://github.com/CalebBarnes)! - stream/generate vnext: simplify internal output schema handling, improve types and typescript generics, and add jsdoc comments
8
+
9
+ - [#6942](https://github.com/mastra-ai/mastra/pull/6942) [`d51eac2`](https://github.com/mastra-ai/mastra/commit/d51eac24ba0fbb33d3e22dcc310f9c0e7167598d) Thanks [@wardpeet](https://github.com/wardpeet)! - Add zod as peerdeps for all packages
10
+
11
+ - Updated dependencies [[`0778757`](https://github.com/mastra-ai/mastra/commit/07787570e4addbd501522037bd2542c3d9e26822), [`bf504a8`](https://github.com/mastra-ai/mastra/commit/bf504a833051f6f321d832cc7d631f3cb86d657b), [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1), [`d51eac2`](https://github.com/mastra-ai/mastra/commit/d51eac24ba0fbb33d3e22dcc310f9c0e7167598d), [`9613558`](https://github.com/mastra-ai/mastra/commit/9613558e6475f4710e05d1be7553a32ee7bddc20)]:
12
+ - @mastra/core@0.0.0-zod-v4-stuff-20250825154219
13
+
14
+ ## 0.10.24-alpha.0
15
+
16
+ ### Patch Changes
17
+
18
+ - [#6949](https://github.com/mastra-ai/mastra/pull/6949) [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1) Thanks [@CalebBarnes](https://github.com/CalebBarnes)! - stream/generate vnext: simplify internal output schema handling, improve types and typescript generics, and add jsdoc comments
19
+
20
+ - Updated dependencies [[`0778757`](https://github.com/mastra-ai/mastra/commit/07787570e4addbd501522037bd2542c3d9e26822), [`bf504a8`](https://github.com/mastra-ai/mastra/commit/bf504a833051f6f321d832cc7d631f3cb86d657b), [`e6f5046`](https://github.com/mastra-ai/mastra/commit/e6f50467aff317e67e8bd74c485c3fbe2a5a6db1), [`9613558`](https://github.com/mastra-ai/mastra/commit/9613558e6475f4710e05d1be7553a32ee7bddc20)]:
21
+ - @mastra/core@0.14.2-alpha.0
22
+
23
+ ## 0.10.23
24
+
25
+ ### Patch Changes
26
+
27
+ - Updated dependencies [[`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`0f00e17`](https://github.com/mastra-ai/mastra/commit/0f00e172953ccdccadb35ed3d70f5e4d89115869), [`217cd7a`](https://github.com/mastra-ai/mastra/commit/217cd7a4ce171e9a575c41bb8c83300f4db03236), [`a5a23d9`](https://github.com/mastra-ai/mastra/commit/a5a23d981920d458dc6078919992a5338931ef02)]:
28
+ - @mastra/core@0.14.1
29
+
30
+ ## 0.10.23-alpha.1
31
+
32
+ ### Patch Changes
33
+
34
+ - Updated dependencies [[`0f00e17`](https://github.com/mastra-ai/mastra/commit/0f00e172953ccdccadb35ed3d70f5e4d89115869), [`217cd7a`](https://github.com/mastra-ai/mastra/commit/217cd7a4ce171e9a575c41bb8c83300f4db03236)]:
35
+ - @mastra/core@0.14.1-alpha.1
36
+
37
+ ## 0.10.23-alpha.0
38
+
39
+ ### Patch Changes
40
+
41
+ - Updated dependencies [[`6e7e120`](https://github.com/mastra-ai/mastra/commit/6e7e1207d6e8d8b838f9024f90bd10df1181ba27), [`a5a23d9`](https://github.com/mastra-ai/mastra/commit/a5a23d981920d458dc6078919992a5338931ef02)]:
42
+ - @mastra/core@0.14.1-alpha.0
43
+
44
+ ## 0.10.22
45
+
46
+ ### Patch Changes
47
+
48
+ - 0a7f675: Add VNext methods and `processMastraStream`
49
+ - 6313063: Implement model switcher in playground
50
+ - 1d59515: Add options to playground based on modelVersion
51
+ - Updated dependencies [227c7e6]
52
+ - Updated dependencies [12cae67]
53
+ - Updated dependencies [fd3a3eb]
54
+ - Updated dependencies [6faaee5]
55
+ - Updated dependencies [4232b14]
56
+ - Updated dependencies [a89de7e]
57
+ - Updated dependencies [5a37d0c]
58
+ - Updated dependencies [4bde0cb]
59
+ - Updated dependencies [cf4f357]
60
+ - Updated dependencies [ad888a2]
61
+ - Updated dependencies [481751d]
62
+ - Updated dependencies [2454423]
63
+ - Updated dependencies [194e395]
64
+ - Updated dependencies [a722c0b]
65
+ - Updated dependencies [c30bca8]
66
+ - Updated dependencies [3b5fec7]
67
+ - Updated dependencies [a8f129d]
68
+ - @mastra/core@0.14.0
69
+
70
+ ## 0.10.22-alpha.7
71
+
72
+ ### Patch Changes
73
+
74
+ - @mastra/core@0.14.0-alpha.7
75
+
76
+ ## 0.10.22-alpha.6
77
+
78
+ ### Patch Changes
79
+
80
+ - Updated dependencies [ad888a2]
81
+ - Updated dependencies [481751d]
82
+ - Updated dependencies [194e395]
83
+ - @mastra/core@0.14.0-alpha.6
84
+
85
+ ## 0.10.22-alpha.5
86
+
87
+ ### Patch Changes
88
+
89
+ - @mastra/core@0.14.0-alpha.5
90
+
91
+ ## 0.10.22-alpha.4
92
+
93
+ ### Patch Changes
94
+
95
+ - 0a7f675: Client JS vnext methods
96
+ - 1d59515: Add options to playground based on modelVersion
97
+ - 195eabb: Process Mastra Stream
98
+ - Updated dependencies [0a7f675]
99
+ - Updated dependencies [12cae67]
100
+ - Updated dependencies [5a37d0c]
101
+ - Updated dependencies [4bde0cb]
102
+ - Updated dependencies [1a80071]
103
+ - Updated dependencies [36a3be8]
104
+ - Updated dependencies [361757b]
105
+ - Updated dependencies [2bb9955]
106
+ - Updated dependencies [2454423]
107
+ - Updated dependencies [a44d91e]
108
+ - Updated dependencies [dfb91e9]
109
+ - Updated dependencies [a741dde]
110
+ - Updated dependencies [7cb3fc0]
111
+ - Updated dependencies [195eabb]
112
+ - Updated dependencies [b78b95b]
113
+ - @mastra/core@0.14.0-alpha.4
114
+
115
+ ## 0.10.22-alpha.3
116
+
117
+ ### Patch Changes
118
+
119
+ - Updated dependencies [227c7e6]
120
+ - Updated dependencies [fd3a3eb]
121
+ - Updated dependencies [a8f129d]
122
+ - @mastra/core@0.14.0-alpha.3
123
+
124
+ ## 0.10.22-alpha.2
125
+
126
+ ### Patch Changes
127
+
128
+ - @mastra/core@0.14.0-alpha.2
129
+
130
+ ## 0.10.22-alpha.1
131
+
132
+ ### Patch Changes
133
+
134
+ - 6313063: Implement model switcher in playground
135
+ - Updated dependencies [6faaee5]
136
+ - Updated dependencies [4232b14]
137
+ - Updated dependencies [a89de7e]
138
+ - Updated dependencies [cf4f357]
139
+ - Updated dependencies [a722c0b]
140
+ - Updated dependencies [3b5fec7]
141
+ - @mastra/core@0.14.0-alpha.1
142
+
143
+ ## 0.10.22-alpha.0
144
+
145
+ ### Patch Changes
146
+
147
+ - Updated dependencies [c30bca8]
148
+ - @mastra/core@0.13.3-alpha.0
149
+
150
+ ## 0.10.21
151
+
152
+ ### Patch Changes
153
+
154
+ - a239d41: Updated A2A syntax to v0.3.0
155
+ - 96169cc: Create handler that returns providers user has keys for in their env
156
+ - ce04175: Add update agent model handler
157
+ - Updated dependencies [d5330bf]
158
+ - Updated dependencies [2e74797]
159
+ - Updated dependencies [8388649]
160
+ - Updated dependencies [a239d41]
161
+ - Updated dependencies [dd94a26]
162
+ - Updated dependencies [3ba6772]
163
+ - Updated dependencies [b5cf2a3]
164
+ - Updated dependencies [2fff911]
165
+ - Updated dependencies [b32c50d]
166
+ - Updated dependencies [63449d0]
167
+ - Updated dependencies [121a3f8]
168
+ - Updated dependencies [ec510e7]
169
+ - @mastra/core@0.13.2
170
+
171
+ ## 0.10.21-alpha.3
172
+
173
+ ### Patch Changes
174
+
175
+ - Updated dependencies [b5cf2a3]
176
+ - @mastra/core@0.13.2-alpha.3
177
+
178
+ ## 0.10.21-alpha.2
179
+
180
+ ### Patch Changes
181
+
182
+ - a239d41: Updated A2A syntax to v0.3.0
183
+ - 96169cc: Create handler that returns providers user has keys for in their env
184
+ - ce04175: Add update agent model handler
185
+ - Updated dependencies [d5330bf]
186
+ - Updated dependencies [a239d41]
187
+ - Updated dependencies [b32c50d]
188
+ - Updated dependencies [121a3f8]
189
+ - Updated dependencies [ec510e7]
190
+ - @mastra/core@0.13.2-alpha.2
191
+
192
+ ## 0.10.21-alpha.1
193
+
194
+ ### Patch Changes
195
+
196
+ - Updated dependencies [2e74797]
197
+ - Updated dependencies [63449d0]
198
+ - @mastra/core@0.13.2-alpha.1
199
+
200
+ ## 0.10.21-alpha.0
201
+
202
+ ### Patch Changes
203
+
204
+ - Updated dependencies [8388649]
205
+ - Updated dependencies [dd94a26]
206
+ - Updated dependencies [3ba6772]
207
+ - Updated dependencies [2fff911]
208
+ - @mastra/core@0.13.2-alpha.0
209
+
210
+ ## 0.10.20
211
+
212
+ ### Patch Changes
213
+
214
+ - Updated dependencies [cd0042e]
215
+ - @mastra/core@0.13.1
216
+
217
+ ## 0.10.20-alpha.0
218
+
219
+ ### Patch Changes
220
+
221
+ - Updated dependencies [cd0042e]
222
+ - @mastra/core@0.13.1-alpha.0
223
+
224
+ ## 0.10.19
225
+
226
+ ### Patch Changes
227
+
228
+ - 42dfc48: Fix tool messages structure in agui adapter
229
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
230
+ - Updated dependencies [cb36de0]
231
+ - Updated dependencies [d0496e6]
232
+ - Updated dependencies [a82b851]
233
+ - Updated dependencies [ea0c5f2]
234
+ - Updated dependencies [41a0a0e]
235
+ - Updated dependencies [2871020]
7
236
  - Updated dependencies [94f4812]
8
237
  - Updated dependencies [e202b82]
9
238
  - Updated dependencies [e00f6a0]
239
+ - Updated dependencies [4a406ec]
240
+ - Updated dependencies [b0e43c1]
241
+ - Updated dependencies [5d377e5]
242
+ - Updated dependencies [1fb812e]
243
+ - Updated dependencies [35c5798]
244
+ - @mastra/core@0.13.0
245
+
246
+ ## 0.10.19-alpha.3
247
+
248
+ ### Patch Changes
249
+
250
+ - Updated dependencies [d0496e6]
251
+ - @mastra/core@0.13.0-alpha.3
252
+
253
+ ## 0.10.19-alpha.2
254
+
255
+ ### Patch Changes
256
+
257
+ - 42dfc48: Fix tool messages structure in agui adapter
258
+ - 4a406ec: fixes TypeScript declaration file imports to ensure proper ESM compatibility
259
+ - Updated dependencies [cb36de0]
260
+ - Updated dependencies [a82b851]
261
+ - Updated dependencies [41a0a0e]
262
+ - Updated dependencies [2871020]
263
+ - Updated dependencies [4a406ec]
264
+ - Updated dependencies [5d377e5]
265
+ - @mastra/core@0.13.0-alpha.2
266
+
267
+ ## 0.10.19-alpha.1
268
+
269
+ ### Patch Changes
270
+
271
+ - Updated dependencies [ea0c5f2]
272
+ - Updated dependencies [b0e43c1]
273
+ - Updated dependencies [1fb812e]
10
274
  - Updated dependencies [35c5798]
11
- - @mastra/core@0.0.0-zod-v4-compat-part-2-20250822105954
275
+ - @mastra/core@0.13.0-alpha.1
12
276
 
13
277
  ## 0.10.19-alpha.0
14
278
 
@@ -2,7 +2,7 @@ import type { AgentConfig, BaseEvent, Message, RunAgentInput } from '@ag-ui/clie
2
2
  import { AbstractAgent } from '@ag-ui/client';
3
3
  import type { CoreMessage } from '@mastra/core';
4
4
  import { Observable } from 'rxjs';
5
- import type { Agent } from '../resources/agent';
5
+ import type { Agent } from '../resources/agent.js';
6
6
  interface MastraAgentConfig extends AgentConfig {
7
7
  agent: Agent;
8
8
  agentId: string;
@@ -1 +1 @@
1
- {"version":3,"file":"agui.d.ts","sourceRoot":"","sources":["../../src/adapters/agui.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,WAAW,EACX,SAAS,EACT,OAAO,EACP,aAAa,EASd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,aAAa,EAAa,MAAM,eAAe,CAAC;AACzD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAEhD,UAAU,iBAAkB,SAAQ,WAAW;IAC7C,KAAK,EAAE,KAAK,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,qBAAa,WAAY,SAAQ,aAAa;IAC5C,KAAK,EAAE,KAAK,CAAC;IACb,UAAU,CAAC,EAAE,MAAM,CAAC;gBACR,EAAE,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,GAAG,IAAI,EAAE,EAAE,iBAAiB;IAStE,SAAS,CAAC,GAAG,CAAC,KAAK,EAAE,aAAa,GAAG,UAAU,CAAC,SAAS,CAAC;CA+G3D;AAED;;GAEG;AACH,wBAAgB,YAAY,IAAI,MAAM,CAgCrC;AAED,wBAAgB,+BAA+B,CAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,WAAW,EAAE,CAkDlF"}
1
+ {"version":3,"file":"agui.d.ts","sourceRoot":"","sources":["../../src/adapters/agui.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EACV,WAAW,EACX,SAAS,EACT,OAAO,EACP,aAAa,EASd,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,aAAa,EAAa,MAAM,eAAe,CAAC;AACzD,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,cAAc,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,MAAM,CAAC;AAClC,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,oBAAoB,CAAC;AAEhD,UAAU,iBAAkB,SAAQ,WAAW;IAC7C,KAAK,EAAE,KAAK,CAAC;IACb,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,CAAC,EAAE,MAAM,CAAC;CACrB;AAED,qBAAa,WAAY,SAAQ,aAAa;IAC5C,KAAK,EAAE,KAAK,CAAC;IACb,UAAU,CAAC,EAAE,MAAM,CAAC;gBACR,EAAE,KAAK,EAAE,OAAO,EAAE,UAAU,EAAE,GAAG,IAAI,EAAE,EAAE,iBAAiB;IAStE,SAAS,CAAC,GAAG,CAAC,KAAK,EAAE,aAAa,GAAG,UAAU,CAAC,SAAS,CAAC;CA+G3D;AAED;;GAEG;AACH,wBAAgB,YAAY,IAAI,MAAM,CAgCrC;AAED,wBAAgB,+BAA+B,CAAC,QAAQ,EAAE,OAAO,EAAE,GAAG,WAAW,EAAE,CAoElF"}
package/dist/client.d.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  import type { AbstractAgent } from '@ag-ui/client';
2
2
  import type { ServerDetailInfo } from '@mastra/core/mcp';
3
- import { Agent, MemoryThread, Tool, Workflow, Vector, BaseResource, Network, A2A, MCPTool, LegacyWorkflow } from './resources';
4
- import { NetworkMemoryThread } from './resources/network-memory-thread';
5
- import { VNextNetwork } from './resources/vNextNetwork';
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 } from './types';
3
+ import { Agent, MemoryThread, Tool, Workflow, Vector, BaseResource, Network, A2A, MCPTool, LegacyWorkflow } from './resources/index.js';
4
+ import { NetworkMemoryThread } from './resources/network-memory-thread.js';
5
+ import { VNextNetwork } from './resources/vNextNetwork.js';
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 } from './types.js';
7
7
  export declare class MastraClient extends BaseResource {
8
8
  constructor(options: ClientOptions);
9
9
  /**
@@ -261,5 +261,10 @@ export declare class MastraClient extends BaseResource {
261
261
  * @returns Promise containing the saved score
262
262
  */
263
263
  saveScore(params: SaveScoreParams): Promise<SaveScoreResponse>;
264
+ /**
265
+ * Retrieves model providers with available keys
266
+ * @returns Promise containing model providers with available keys
267
+ */
268
+ getModelProviders(): Promise<string[]>;
264
269
  }
265
270
  //# sourceMappingURL=client.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../src/client.ts"],"names":[],"mappings":"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"}