@mastra/server 1.0.0-beta.15 → 1.0.0-beta.17

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 (32) hide show
  1. package/CHANGELOG.md +62 -0
  2. package/dist/{chunk-ER232COB.js → chunk-IRLQEU63.js} +36 -55
  3. package/dist/chunk-IRLQEU63.js.map +1 -0
  4. package/dist/{chunk-CTOZHWSD.js → chunk-JXPRNYUC.js} +12 -27
  5. package/dist/chunk-JXPRNYUC.js.map +1 -0
  6. package/dist/{chunk-SKVOSYY5.js → chunk-K3LMK4KU.js} +5 -3
  7. package/dist/chunk-K3LMK4KU.js.map +1 -0
  8. package/dist/{chunk-QD5JZUZR.cjs → chunk-T5QRQJCY.cjs} +36 -55
  9. package/dist/chunk-T5QRQJCY.cjs.map +1 -0
  10. package/dist/{chunk-XWNPRPEW.cjs → chunk-V3RILBZM.cjs} +5 -3
  11. package/dist/chunk-V3RILBZM.cjs.map +1 -0
  12. package/dist/{chunk-Q43HGWK7.cjs → chunk-VJNZJAIO.cjs} +12 -27
  13. package/dist/chunk-VJNZJAIO.cjs.map +1 -0
  14. package/dist/server/handlers/agent-builder.cjs +19 -19
  15. package/dist/server/handlers/agent-builder.js +1 -1
  16. package/dist/server/handlers/observability.cjs +5 -5
  17. package/dist/server/handlers/observability.d.ts.map +1 -1
  18. package/dist/server/handlers/observability.js +1 -1
  19. package/dist/server/handlers/stored-agents.cjs +6 -6
  20. package/dist/server/handlers/stored-agents.d.ts.map +1 -1
  21. package/dist/server/handlers/stored-agents.js +1 -1
  22. package/dist/server/handlers.cjs +4 -4
  23. package/dist/server/handlers.js +2 -2
  24. package/dist/server/server-adapter/index.cjs +30 -30
  25. package/dist/server/server-adapter/index.js +3 -3
  26. package/package.json +3 -3
  27. package/dist/chunk-CTOZHWSD.js.map +0 -1
  28. package/dist/chunk-ER232COB.js.map +0 -1
  29. package/dist/chunk-Q43HGWK7.cjs.map +0 -1
  30. package/dist/chunk-QD5JZUZR.cjs.map +0 -1
  31. package/dist/chunk-SKVOSYY5.js.map +0 -1
  32. package/dist/chunk-XWNPRPEW.cjs.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,67 @@
1
1
  # @mastra/server
2
2
 
3
+ ## 1.0.0-beta.17
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [[`b5dc973`](https://github.com/mastra-ai/mastra/commit/b5dc9733a5158850298dfb103acb3babdba8a318)]:
8
+ - @mastra/core@1.0.0-beta.17
9
+
10
+ ## 1.0.0-beta.16
11
+
12
+ ### Patch Changes
13
+
14
+ - Fix workflow observability view broken by invalid entityType parameter ([#11427](https://github.com/mastra-ai/mastra/pull/11427))
15
+
16
+ The UI workflow observability view was failing with a Zod validation error when trying to filter traces by workflow. The UI was sending `entityType=workflow`, but the backend's `EntityType` enum only accepts `workflow_run`.
17
+
18
+ **Root Cause**: The legacy value transformation was happening in the handler (after validation), but Zod validation occurred earlier in the request pipeline, rejecting the request before it could be transformed.
19
+
20
+ **Solution**:
21
+ - Added `z.preprocess()` to the query schema to transform `workflow` → `workflow_run` before validation
22
+ - Kept handler transformation for defense in depth
23
+ - Updated UI to use `EntityType.WORKFLOW_RUN` enum value for type safety
24
+
25
+ This maintains backward compatibility with legacy clients while fixing the validation error.
26
+
27
+ Fixes #11412
28
+
29
+ - Add storage composition to MastraStorage ([#11401](https://github.com/mastra-ai/mastra/pull/11401))
30
+
31
+ `MastraStorage` can now compose storage domains from different adapters. Use it when you need different databases for different purposes - for example, PostgreSQL for memory and workflows, but a different database for observability.
32
+
33
+ ```typescript
34
+ import { MastraStorage } from '@mastra/core/storage';
35
+ import { MemoryPG, WorkflowsPG, ScoresPG } from '@mastra/pg';
36
+ import { MemoryLibSQL } from '@mastra/libsql';
37
+
38
+ // Compose domains from different stores
39
+ const storage = new MastraStorage({
40
+ id: 'composite',
41
+ domains: {
42
+ memory: new MemoryLibSQL({ url: 'file:./local.db' }),
43
+ workflows: new WorkflowsPG({ connectionString: process.env.DATABASE_URL }),
44
+ scores: new ScoresPG({ connectionString: process.env.DATABASE_URL }),
45
+ },
46
+ });
47
+ ```
48
+
49
+ **Breaking changes:**
50
+ - `storage.supports` property no longer exists
51
+ - `StorageSupports` type is no longer exported from `@mastra/core/storage`
52
+
53
+ All stores now support the same features. For domain availability, use `getStore()`:
54
+
55
+ ```typescript
56
+ const store = await storage.getStore('memory');
57
+ if (store) {
58
+ // domain is available
59
+ }
60
+ ```
61
+
62
+ - Updated dependencies [[`3d93a15`](https://github.com/mastra-ai/mastra/commit/3d93a15796b158c617461c8b98bede476ebb43e2), [`efe406a`](https://github.com/mastra-ai/mastra/commit/efe406a1353c24993280ebc2ed61dd9f65b84b26), [`119e5c6`](https://github.com/mastra-ai/mastra/commit/119e5c65008f3e5cfca954eefc2eb85e3bf40da4), [`74e504a`](https://github.com/mastra-ai/mastra/commit/74e504a3b584eafd2f198001c6a113bbec589fd3), [`e33fdbd`](https://github.com/mastra-ai/mastra/commit/e33fdbd07b33920d81e823122331b0c0bee0bb59), [`929f69c`](https://github.com/mastra-ai/mastra/commit/929f69c3436fa20dd0f0e2f7ebe8270bd82a1529), [`8a73529`](https://github.com/mastra-ai/mastra/commit/8a73529ca01187f604b1f3019d0a725ac63ae55f)]:
63
+ - @mastra/core@1.0.0-beta.16
64
+
3
65
  ## 1.0.0-beta.15
4
66
 
5
67
  ### Minor Changes
@@ -21239,20 +21239,6 @@ var Memory = class extends MastraMemory {
21239
21239
  );
21240
21240
  }
21241
21241
  }
21242
- checkStorageFeatureSupport(config) {
21243
- const resourceScope = typeof config.semanticRecall === "object" && config.semanticRecall.scope !== "thread" || // resource scope is now default
21244
- config.semanticRecall === true;
21245
- if (resourceScope && !this.storage.supports.selectByIncludeResourceScope) {
21246
- throw new Error(
21247
- `Memory error: Attached storage adapter "${this.storage.name || "unknown"}" doesn't support semanticRecall: { scope: "resource" } yet and currently only supports per-thread semantic recall.`
21248
- );
21249
- }
21250
- if (config.workingMemory?.enabled && config.workingMemory.scope === `resource` && !this.storage.supports.resourceWorkingMemory) {
21251
- throw new Error(
21252
- `Memory error: Attached storage adapter "${this.storage.name || "unknown"}" doesn't support workingMemory: { scope: "resource" } yet and currently only supports per-thread working memory. Supported adapters: LibSQL, PostgreSQL, Upstash.`
21253
- );
21254
- }
21255
- }
21256
21242
  async recall(args) {
21257
21243
  const { threadId, resourceId, perPage: perPageArg, page, orderBy, threadConfig, vectorSearchString, filter: filter32 } = args;
21258
21244
  const config = this.getMergedThreadConfig(threadConfig || {});
@@ -21270,7 +21256,6 @@ var Memory = class extends MastraMemory {
21270
21256
  workingMemoryEnabled: config.workingMemory?.enabled,
21271
21257
  semanticRecallEnabled: Boolean(config.semanticRecall)
21272
21258
  });
21273
- this.checkStorageFeatureSupport(config);
21274
21259
  const defaultRange = DEFAULT_MESSAGE_RANGE;
21275
21260
  const defaultTopK = DEFAULT_TOP_K;
21276
21261
  const vectorConfig = typeof config?.semanticRecall === `boolean` ? {
@@ -21348,7 +21333,6 @@ var Memory = class extends MastraMemory {
21348
21333
  }) {
21349
21334
  const config = this.getMergedThreadConfig(memoryConfig || {});
21350
21335
  if (config.workingMemory?.enabled) {
21351
- this.checkStorageFeatureSupport(config);
21352
21336
  const scope = config.workingMemory.scope || "resource";
21353
21337
  if (scope === "resource" && resourceId) {
21354
21338
  const memoryStore = await this.getMemoryStore();
@@ -21409,7 +21393,6 @@ var Memory = class extends MastraMemory {
21409
21393
  if (!config.workingMemory?.enabled) {
21410
21394
  throw new Error("Working memory is not enabled for this memory instance");
21411
21395
  }
21412
- this.checkStorageFeatureSupport(config);
21413
21396
  const scope = config.workingMemory.scope || "resource";
21414
21397
  if (scope === "resource" && !resourceId) {
21415
21398
  throw new Error(
@@ -21452,7 +21435,6 @@ var Memory = class extends MastraMemory {
21452
21435
  if (!config.workingMemory?.enabled) {
21453
21436
  throw new Error("Working memory is not enabled for this memory instance");
21454
21437
  }
21455
- this.checkStorageFeatureSupport(config);
21456
21438
  const mutexKey = memoryConfig?.workingMemory?.scope === `resource` ? `resource-${resourceId}` : `thread-${threadId}`;
21457
21439
  const mutex = this.updateWorkingMemoryMutexes.has(mutexKey) ? this.updateWorkingMemoryMutexes.get(mutexKey) : new Mutex();
21458
21440
  this.updateWorkingMemoryMutexes.set(mutexKey, mutex);
@@ -21694,7 +21676,6 @@ ${workingMemory}`;
21694
21676
  if (!config.workingMemory?.enabled) {
21695
21677
  return null;
21696
21678
  }
21697
- this.checkStorageFeatureSupport(config);
21698
21679
  const scope = config.workingMemory.scope || "resource";
21699
21680
  let workingMemoryData = null;
21700
21681
  if (scope === "resource" && !resourceId) {
@@ -23002,7 +22983,7 @@ export const mastra = new Mastra({
23002
22983
  encoding: z.string(),
23003
22984
  lastModified: z.string()
23004
22985
  }).optional(),
23005
- error: z.string().optional()
22986
+ errorMessage: z.string().optional()
23006
22987
  }),
23007
22988
  execute: async (inputData) => {
23008
22989
  return await _AgentBuilderDefaults.readFile({ ...inputData, projectPath });
@@ -23022,7 +23003,7 @@ export const mastra = new Mastra({
23022
23003
  filePath: z.string(),
23023
23004
  bytesWritten: z.number().optional(),
23024
23005
  message: z.string(),
23025
- error: z.string().optional()
23006
+ errorMessage: z.string().optional()
23026
23007
  }),
23027
23008
  execute: async (inputData) => {
23028
23009
  return await _AgentBuilderDefaults.writeFile({ ...inputData, projectPath });
@@ -23054,7 +23035,7 @@ export const mastra = new Mastra({
23054
23035
  totalItems: z.number(),
23055
23036
  path: z.string(),
23056
23037
  message: z.string(),
23057
- error: z.string().optional()
23038
+ errorMessage: z.string().optional()
23058
23039
  }),
23059
23040
  execute: async (inputData) => {
23060
23041
  return await _AgentBuilderDefaults.listDirectory({ ...inputData, projectPath });
@@ -23079,7 +23060,7 @@ export const mastra = new Mastra({
23079
23060
  command: z.string(),
23080
23061
  workingDirectory: z.string().optional(),
23081
23062
  executionTime: z.number().optional(),
23082
- error: z.string().optional()
23063
+ errorMessage: z.string().optional()
23083
23064
  }),
23084
23065
  execute: async (inputData) => {
23085
23066
  return await _AgentBuilderDefaults.executeCommand({
@@ -23180,7 +23161,7 @@ export const mastra = new Mastra({
23180
23161
  message: z.string(),
23181
23162
  linesReplaced: z.number().optional(),
23182
23163
  backup: z.string().optional(),
23183
- error: z.string().optional()
23164
+ errorMessage: z.string().optional()
23184
23165
  }),
23185
23166
  execute: async (inputData) => {
23186
23167
  return await _AgentBuilderDefaults.replaceLines({ ...inputData, projectPath });
@@ -23209,7 +23190,7 @@ export const mastra = new Mastra({
23209
23190
  ),
23210
23191
  totalLines: z.number(),
23211
23192
  message: z.string(),
23212
- error: z.string().optional()
23193
+ errorMessage: z.string().optional()
23213
23194
  }),
23214
23195
  execute: async (inputData) => {
23215
23196
  return await _AgentBuilderDefaults.showFileLines({ ...inputData, projectPath });
@@ -23327,7 +23308,7 @@ export const mastra = new Mastra({
23327
23308
  totalResults: z.number(),
23328
23309
  searchTime: z.number(),
23329
23310
  suggestions: z.array(z.string()).optional(),
23330
- error: z.string().optional()
23311
+ errorMessage: z.string().optional()
23331
23312
  }),
23332
23313
  execute: async (inputData) => {
23333
23314
  return await _AgentBuilderDefaults.webSearch(inputData);
@@ -23383,7 +23364,7 @@ export const mastra = new Mastra({
23383
23364
  warnings: z.array(z.string()).optional(),
23384
23365
  message: z.string().optional(),
23385
23366
  details: z.string().optional(),
23386
- error: z.string().optional()
23367
+ errorMessage: z.string().optional()
23387
23368
  }),
23388
23369
  execute: async (inputData) => {
23389
23370
  const { action, features, packages } = inputData;
@@ -23445,7 +23426,7 @@ export const mastra = new Mastra({
23445
23426
  url: z.string().optional(),
23446
23427
  message: z.string().optional(),
23447
23428
  stdout: z.array(z.string()).optional().describe("Server output lines captured during startup"),
23448
- error: z.string().optional()
23429
+ errorMessage: z.string().optional()
23449
23430
  }),
23450
23431
  execute: async (inputData) => {
23451
23432
  const { action, port } = inputData;
@@ -23471,7 +23452,7 @@ export const mastra = new Mastra({
23471
23452
  success: false,
23472
23453
  status: "unknown",
23473
23454
  message: `Failed to restart: could not stop server on port ${port}`,
23474
- error: stopResult.error || "Unknown stop error"
23455
+ errorMessage: stopResult.errorMessage || "Unknown stop error"
23475
23456
  };
23476
23457
  }
23477
23458
  await new Promise((resolve5) => setTimeout(resolve5, 500));
@@ -23484,7 +23465,7 @@ export const mastra = new Mastra({
23484
23465
  success: false,
23485
23466
  status: "stopped",
23486
23467
  message: `Failed to restart: server stopped successfully but failed to start on port ${port}`,
23487
- error: startResult.error || "Unknown start error"
23468
+ errorMessage: startResult.errorMessage || "Unknown start error"
23488
23469
  };
23489
23470
  }
23490
23471
  return {
@@ -23529,7 +23510,7 @@ export const mastra = new Mastra({
23529
23510
  statusText: z.string().optional(),
23530
23511
  headers: z.record(z.string()).optional(),
23531
23512
  data: z.any().optional(),
23532
- error: z.string().optional(),
23513
+ errorMessage: z.string().optional(),
23533
23514
  url: z.string(),
23534
23515
  method: z.string()
23535
23516
  }),
@@ -23549,7 +23530,7 @@ export const mastra = new Mastra({
23549
23530
  success: false,
23550
23531
  url: baseUrl ? `${baseUrl}${url}` : url,
23551
23532
  method,
23552
- error: error instanceof Error ? error.message : String(error)
23533
+ errorMessage: error instanceof Error ? error.message : String(error)
23553
23534
  };
23554
23535
  }
23555
23536
  }
@@ -23613,7 +23594,7 @@ export const mastra = new Mastra({
23613
23594
  projectPath: `./${projectName}`,
23614
23595
  message: `Successfully created Mastra project: ${projectName}.`,
23615
23596
  details: stdout,
23616
- error: stderr
23597
+ errorMessage: stderr
23617
23598
  };
23618
23599
  } catch (error) {
23619
23600
  console.error(error);
@@ -23741,7 +23722,7 @@ export const mastra = new Mastra({
23741
23722
  return {
23742
23723
  success: false,
23743
23724
  status: "stopped",
23744
- error: error instanceof Error ? error.message : String(error)
23725
+ errorMessage: error instanceof Error ? error.message : String(error)
23745
23726
  };
23746
23727
  }
23747
23728
  }
@@ -23753,7 +23734,7 @@ export const mastra = new Mastra({
23753
23734
  return {
23754
23735
  success: false,
23755
23736
  status: "error",
23756
- error: `Invalid port value: ${String(port)}`
23737
+ errorMessage: `Invalid port value: ${String(port)}`
23757
23738
  };
23758
23739
  }
23759
23740
  try {
@@ -23785,7 +23766,7 @@ export const mastra = new Mastra({
23785
23766
  success: false,
23786
23767
  status: "unknown",
23787
23768
  message: `Failed to stop any processes on port ${port}`,
23788
- error: `Could not kill PIDs: ${failedPids.join(", ")}`
23769
+ errorMessage: `Could not kill PIDs: ${failedPids.join(", ")}`
23789
23770
  };
23790
23771
  }
23791
23772
  if (failedPids.length > 0) {
@@ -23816,7 +23797,7 @@ export const mastra = new Mastra({
23816
23797
  success: false,
23817
23798
  status: "unknown",
23818
23799
  message: `Server processes still running on port ${port} after stop attempts`,
23819
- error: `Remaining PIDs: ${finalCheck.trim()}`
23800
+ errorMessage: `Remaining PIDs: ${finalCheck.trim()}`
23820
23801
  };
23821
23802
  }
23822
23803
  }
@@ -23832,7 +23813,7 @@ export const mastra = new Mastra({
23832
23813
  return {
23833
23814
  success: false,
23834
23815
  status: "unknown",
23835
- error: error instanceof Error ? error.message : String(error)
23816
+ errorMessage: error instanceof Error ? error.message : String(error)
23836
23817
  };
23837
23818
  }
23838
23819
  }
@@ -24315,7 +24296,7 @@ export const mastra = new Mastra({
24315
24296
  success: false,
24316
24297
  url: baseUrl ? `${baseUrl}${url}` : url,
24317
24298
  method,
24318
- error: error instanceof Error ? error.message : String(error)
24299
+ errorMessage: error instanceof Error ? error.message : String(error)
24319
24300
  };
24320
24301
  }
24321
24302
  }
@@ -24498,21 +24479,21 @@ export const mastra = new Mastra({
24498
24479
  return {
24499
24480
  success: false,
24500
24481
  message: `Line numbers must be 1 or greater. Got startLine: ${startLine}, endLine: ${endLine}`,
24501
- error: "Invalid line range"
24482
+ errorMessage: "Invalid line range"
24502
24483
  };
24503
24484
  }
24504
24485
  if (startLine > lines.length || endLine > lines.length) {
24505
24486
  return {
24506
24487
  success: false,
24507
24488
  message: `Line range ${startLine}-${endLine} is out of bounds. File has ${lines.length} lines. Remember: lines are 1-indexed, so valid range is 1-${lines.length}.`,
24508
- error: "Invalid line range"
24489
+ errorMessage: "Invalid line range"
24509
24490
  };
24510
24491
  }
24511
24492
  if (startLine > endLine) {
24512
24493
  return {
24513
24494
  success: false,
24514
24495
  message: `Start line (${startLine}) cannot be greater than end line (${endLine}).`,
24515
- error: "Invalid line range"
24496
+ errorMessage: "Invalid line range"
24516
24497
  };
24517
24498
  }
24518
24499
  let backup;
@@ -24539,7 +24520,7 @@ export const mastra = new Mastra({
24539
24520
  return {
24540
24521
  success: false,
24541
24522
  message: `Failed to replace lines: ${error instanceof Error ? error.message : String(error)}`,
24542
- error: error instanceof Error ? error.message : String(error)
24523
+ errorMessage: error instanceof Error ? error.message : String(error)
24543
24524
  };
24544
24525
  }
24545
24526
  }
@@ -24584,7 +24565,7 @@ export const mastra = new Mastra({
24584
24565
  lines: [],
24585
24566
  totalLines: 0,
24586
24567
  message: `Failed to read file: ${error instanceof Error ? error.message : String(error)}`,
24587
- error: error instanceof Error ? error.message : String(error)
24568
+ errorMessage: error instanceof Error ? error.message : String(error)
24588
24569
  };
24589
24570
  }
24590
24571
  }
@@ -24734,7 +24715,7 @@ export const mastra = new Mastra({
24734
24715
  } catch (error) {
24735
24716
  return {
24736
24717
  success: false,
24737
- error: error instanceof Error ? error.message : String(error)
24718
+ errorMessage: error instanceof Error ? error.message : String(error)
24738
24719
  };
24739
24720
  }
24740
24721
  }
@@ -24761,7 +24742,7 @@ export const mastra = new Mastra({
24761
24742
  success: false,
24762
24743
  filePath: context.filePath,
24763
24744
  message: `Failed to write file: ${error instanceof Error ? error.message : String(error)}`,
24764
- error: error instanceof Error ? error.message : String(error)
24745
+ errorMessage: error instanceof Error ? error.message : String(error)
24765
24746
  };
24766
24747
  }
24767
24748
  }
@@ -24852,7 +24833,7 @@ export const mastra = new Mastra({
24852
24833
  totalItems: 0,
24853
24834
  path: context.path,
24854
24835
  message: `Failed to list directory: ${error instanceof Error ? error.message : String(error)}`,
24855
- error: error instanceof Error ? error.message : String(error)
24836
+ errorMessage: error instanceof Error ? error.message : String(error)
24856
24837
  };
24857
24838
  }
24858
24839
  }
@@ -24894,7 +24875,7 @@ export const mastra = new Mastra({
24894
24875
  command: context.command,
24895
24876
  workingDirectory: context.workingDirectory,
24896
24877
  executionTime,
24897
- error: error instanceof Error ? error.message : String(error)
24878
+ errorMessage: error instanceof Error ? error.message : String(error)
24898
24879
  };
24899
24880
  }
24900
24881
  }
@@ -24957,7 +24938,7 @@ export const mastra = new Mastra({
24957
24938
  results: [],
24958
24939
  totalResults: 0,
24959
24940
  searchTime: 0,
24960
- error: error instanceof Error ? error.message : String(error)
24941
+ errorMessage: error instanceof Error ? error.message : String(error)
24961
24942
  };
24962
24943
  }
24963
24944
  }
@@ -25951,7 +25932,7 @@ var intelligentMergeStep = createStep({
25951
25932
  outputSchema: z.object({
25952
25933
  success: z.boolean(),
25953
25934
  message: z.string(),
25954
- error: z.string().optional()
25935
+ errorMessage: z.string().optional()
25955
25936
  }),
25956
25937
  execute: async (input) => {
25957
25938
  try {
@@ -25966,11 +25947,11 @@ var intelligentMergeStep = createStep({
25966
25947
  success: true,
25967
25948
  message: `Successfully copied file from ${sourcePath} to ${destinationPath}`
25968
25949
  };
25969
- } catch (error) {
25950
+ } catch (err) {
25970
25951
  return {
25971
25952
  success: false,
25972
- message: `Failed to copy file: ${error instanceof Error ? error.message : String(error)}`,
25973
- error: error instanceof Error ? error.message : String(error)
25953
+ message: `Failed to copy file: ${err instanceof Error ? err.message : String(err)}`,
25954
+ errorMessage: err instanceof Error ? err.message : String(err)
25974
25955
  };
25975
25956
  }
25976
25957
  }
@@ -32864,5 +32845,5 @@ var OBSERVE_STREAM_LEGACY_AGENT_BUILDER_ACTION_ROUTE = createRoute({
32864
32845
  });
32865
32846
 
32866
32847
  export { CANCEL_AGENT_BUILDER_ACTION_RUN_ROUTE, CREATE_AGENT_BUILDER_ACTION_RUN_ROUTE, GET_AGENT_BUILDER_ACTION_BY_ID_ROUTE, GET_AGENT_BUILDER_ACTION_RUN_BY_ID_ROUTE, GET_AGENT_BUILDER_ACTION_RUN_EXECUTION_RESULT_ROUTE, LIST_AGENT_BUILDER_ACTIONS_ROUTE, LIST_AGENT_BUILDER_ACTION_RUNS_ROUTE, OBSERVE_STREAM_AGENT_BUILDER_ACTION_ROUTE, OBSERVE_STREAM_LEGACY_AGENT_BUILDER_ACTION_ROUTE, OBSERVE_STREAM_VNEXT_AGENT_BUILDER_ACTION_ROUTE, RESUME_AGENT_BUILDER_ACTION_ROUTE, RESUME_ASYNC_AGENT_BUILDER_ACTION_ROUTE, RESUME_STREAM_AGENT_BUILDER_ACTION_ROUTE, START_AGENT_BUILDER_ACTION_RUN_ROUTE, START_ASYNC_AGENT_BUILDER_ACTION_ROUTE, STREAM_AGENT_BUILDER_ACTION_ROUTE, STREAM_LEGACY_AGENT_BUILDER_ACTION_ROUTE, STREAM_VNEXT_AGENT_BUILDER_ACTION_ROUTE, agent_builder_exports };
32867
- //# sourceMappingURL=chunk-ER232COB.js.map
32868
- //# sourceMappingURL=chunk-ER232COB.js.map
32848
+ //# sourceMappingURL=chunk-IRLQEU63.js.map
32849
+ //# sourceMappingURL=chunk-IRLQEU63.js.map