@runtypelabs/sdk 5.2.0 → 5.2.1

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.2.0".length > 0 ? "5.2.0" : FALLBACK_VERSION;
5673
+ var SDK_VERSION = "5.2.1".length > 0 ? "5.2.1" : 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
@@ -36202,6 +36202,10 @@ interface components {
36202
36202
  reason?: string;
36203
36203
  seq: number;
36204
36204
  startedAt?: string;
36205
+ subagent?: {
36206
+ agentName?: string;
36207
+ toolName: string;
36208
+ };
36205
36209
  timeout?: number;
36206
36210
  toolCallId?: string;
36207
36211
  toolName: string;
package/dist/index.d.ts CHANGED
@@ -36202,6 +36202,10 @@ interface components {
36202
36202
  reason?: string;
36203
36203
  seq: number;
36204
36204
  startedAt?: string;
36205
+ subagent?: {
36206
+ agentName?: string;
36207
+ toolName: string;
36208
+ };
36205
36209
  timeout?: number;
36206
36210
  toolCallId?: string;
36207
36211
  toolName: string;
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.2.0".length > 0 ? "5.2.0" : FALLBACK_VERSION;
5512
+ var SDK_VERSION = "5.2.1".length > 0 ? "5.2.1" : 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.2.0",
3
+ "version": "5.2.1",
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",