@mastra/client-js 1.29.0-alpha.6 → 1.29.0-alpha.7

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 CHANGED
@@ -1,5 +1,12 @@
1
1
  # @mastra/client-js
2
2
 
3
+ ## 1.29.0-alpha.7
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`8be63b0`](https://github.com/mastra-ai/mastra/commit/8be63b015fb8d72cea1220f05e7dc3bb997cc249), [`345eecc`](https://github.com/mastra-ai/mastra/commit/345eecce6ba519b5d987f0e10b5de4c8e5734580), [`ee14cae`](https://github.com/mastra-ai/mastra/commit/ee14cae244805783bde518a6142de28b744b169c)]:
8
+ - @mastra/core@1.48.0-alpha.7
9
+
3
10
  ## 1.29.0-alpha.6
4
11
 
5
12
  ### Patch Changes
@@ -3,7 +3,7 @@ name: mastra-client-js
3
3
  description: Documentation for @mastra/client-js. Use when working with @mastra/client-js APIs, configuration, or implementation.
4
4
  metadata:
5
5
  package: "@mastra/client-js"
6
- version: "1.29.0-alpha.6"
6
+ version: "1.29.0-alpha.7"
7
7
  ---
8
8
 
9
9
  ## When to use
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.29.0-alpha.6",
2
+ "version": "1.29.0-alpha.7",
3
3
  "package": "@mastra/client-js",
4
4
  "exports": {
5
5
  "RequestContext": {
@@ -106,7 +106,7 @@ export type GetAgents_Response = {
106
106
  defaultStreamOptionsLegacy?: {
107
107
  [key: string]: any;
108
108
  } | undefined;
109
- source?: ('code' | 'stored') | undefined;
109
+ source?: ('code' | 'stored' | 'fs') | undefined;
110
110
  status?: ('draft' | 'published' | 'archived') | undefined;
111
111
  activeVersionId?: string | undefined;
112
112
  hasDraft?: boolean | undefined;
@@ -273,7 +273,7 @@ export type GetAgentsAgentId_Response = {
273
273
  defaultStreamOptionsLegacy?: {
274
274
  [key: string]: any;
275
275
  } | undefined;
276
- source?: ('code' | 'stored') | undefined;
276
+ source?: ('code' | 'stored' | 'fs') | undefined;
277
277
  status?: ('draft' | 'published' | 'archived') | undefined;
278
278
  activeVersionId?: string | undefined;
279
279
  hasDraft?: boolean | undefined;
@@ -8553,7 +8553,7 @@ export type GetScoresScorers_Response = {
8553
8553
  agentNames: string[];
8554
8554
  workflowIds: string[];
8555
8555
  isRegistered: boolean;
8556
- source: 'code' | 'stored';
8556
+ source: 'code' | 'stored' | 'fs';
8557
8557
  };
8558
8558
  };
8559
8559
  export type GetScoresScorers_Request = Simplify<(never extends never ? {} : {
@@ -8594,7 +8594,7 @@ export type GetScoresScorersScorerId_Response = {
8594
8594
  agentNames: string[];
8595
8595
  workflowIds: string[];
8596
8596
  isRegistered: boolean;
8597
- source: 'code' | 'stored';
8597
+ source: 'code' | 'stored' | 'fs';
8598
8598
  } | null;
8599
8599
  export type GetScoresScorersScorerId_Request = Simplify<(GetScoresScorersScorerId_PathParams extends never ? {} : {
8600
8600
  params: GetScoresScorersScorerId_PathParams;