@runtypelabs/sdk 6.3.4 → 6.3.6

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/dist/index.cjs CHANGED
@@ -6362,7 +6362,7 @@ var Runtype = class {
6362
6362
 
6363
6363
  // src/version.ts
6364
6364
  var FALLBACK_VERSION = "0.0.0";
6365
- var SDK_VERSION = "6.3.4".length > 0 ? "6.3.4" : FALLBACK_VERSION;
6365
+ var SDK_VERSION = "6.3.6".length > 0 ? "6.3.6" : FALLBACK_VERSION;
6366
6366
  var RUNTYPE_CLIENT_KIND = "sdk";
6367
6367
  var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
6368
6368
 
@@ -11648,7 +11648,7 @@ var _AgentsEndpoint = class _AgentsEndpoint {
11648
11648
  const references = /* @__PURE__ */ new Set();
11649
11649
  const offloadPrefix = "[Output saved to ";
11650
11650
  const ledgerArtifactPrefix = LEDGER_ARTIFACT_LINE_PREFIX;
11651
- const savedToPattern = /saved to\s+([^—\]\n]+?)(?:\s+—|\]|\n|$)/gi;
11651
+ const savedToPattern = /saved to\s+([^—\]\n\s][^—\]\n]*?)(?:—|\]|\n|$)/gi;
11652
11652
  for (const message of messages) {
11653
11653
  if (!message.toolResults) continue;
11654
11654
  for (const toolResult of message.toolResults) {
package/dist/index.mjs CHANGED
@@ -6175,7 +6175,7 @@ var Runtype = class {
6175
6175
 
6176
6176
  // src/version.ts
6177
6177
  var FALLBACK_VERSION = "0.0.0";
6178
- var SDK_VERSION = "6.3.4".length > 0 ? "6.3.4" : FALLBACK_VERSION;
6178
+ var SDK_VERSION = "6.3.6".length > 0 ? "6.3.6" : FALLBACK_VERSION;
6179
6179
  var RUNTYPE_CLIENT_KIND = "sdk";
6180
6180
  var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
6181
6181
 
@@ -11461,7 +11461,7 @@ var _AgentsEndpoint = class _AgentsEndpoint {
11461
11461
  const references = /* @__PURE__ */ new Set();
11462
11462
  const offloadPrefix = "[Output saved to ";
11463
11463
  const ledgerArtifactPrefix = LEDGER_ARTIFACT_LINE_PREFIX;
11464
- const savedToPattern = /saved to\s+([^—\]\n]+?)(?:\s+—|\]|\n|$)/gi;
11464
+ const savedToPattern = /saved to\s+([^—\]\n\s][^—\]\n]*?)(?:—|\]|\n|$)/gi;
11465
11465
  for (const message of messages) {
11466
11466
  if (!message.toolResults) continue;
11467
11467
  for (const toolResult of message.toolResults) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runtypelabs/sdk",
3
- "version": "6.3.4",
3
+ "version": "6.3.6",
4
4
  "type": "module",
5
5
  "description": "TypeScript SDK for the Runtype API with fluent methods. Use it to quickly realize AI products, agents, and workflows.",
6
6
  "main": "dist/index.cjs",