@runtypelabs/sdk 5.1.0 → 5.2.0

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
@@ -5670,7 +5670,7 @@ var Runtype = class {
5670
5670
 
5671
5671
  // src/version.ts
5672
5672
  var FALLBACK_VERSION = "0.0.0";
5673
- var SDK_VERSION = "5.1.0".length > 0 ? "5.1.0" : FALLBACK_VERSION;
5673
+ var SDK_VERSION = "5.2.0".length > 0 ? "5.2.0" : FALLBACK_VERSION;
5674
5674
  var RUNTYPE_CLIENT_KIND = "sdk";
5675
5675
  var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
5676
5676
 
package/dist/index.d.cts CHANGED
@@ -36017,6 +36017,7 @@ interface components {
36017
36017
  } | {
36018
36018
  executionId: string;
36019
36019
  id: string;
36020
+ parentToolCallId?: string;
36020
36021
  /** @enum {string} */
36021
36022
  role?: "user" | "assistant" | "system";
36022
36023
  seq: number;
@@ -36041,6 +36042,7 @@ interface components {
36041
36042
  } | {
36042
36043
  executionId: string;
36043
36044
  id: string;
36045
+ parentToolCallId?: string;
36044
36046
  /** @enum {string} */
36045
36047
  scope?: "turn" | "loop";
36046
36048
  seq: number;
package/dist/index.d.ts CHANGED
@@ -36017,6 +36017,7 @@ interface components {
36017
36017
  } | {
36018
36018
  executionId: string;
36019
36019
  id: string;
36020
+ parentToolCallId?: string;
36020
36021
  /** @enum {string} */
36021
36022
  role?: "user" | "assistant" | "system";
36022
36023
  seq: number;
@@ -36041,6 +36042,7 @@ interface components {
36041
36042
  } | {
36042
36043
  executionId: string;
36043
36044
  id: string;
36045
+ parentToolCallId?: string;
36044
36046
  /** @enum {string} */
36045
36047
  scope?: "turn" | "loop";
36046
36048
  seq: number;
package/dist/index.mjs CHANGED
@@ -5509,7 +5509,7 @@ var Runtype = class {
5509
5509
 
5510
5510
  // src/version.ts
5511
5511
  var FALLBACK_VERSION = "0.0.0";
5512
- var SDK_VERSION = "5.1.0".length > 0 ? "5.1.0" : FALLBACK_VERSION;
5512
+ var SDK_VERSION = "5.2.0".length > 0 ? "5.2.0" : FALLBACK_VERSION;
5513
5513
  var RUNTYPE_CLIENT_KIND = "sdk";
5514
5514
  var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
5515
5515
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runtypelabs/sdk",
3
- "version": "5.1.0",
3
+ "version": "5.2.0",
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",