@runtypelabs/sdk 6.3.0 → 6.3.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
@@ -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.0".length > 0 ? "6.3.0" : FALLBACK_VERSION;
6365
+ var SDK_VERSION = "6.3.1".length > 0 ? "6.3.1" : FALLBACK_VERSION;
6366
6366
  var RUNTYPE_CLIENT_KIND = "sdk";
6367
6367
  var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
6368
6368
 
package/dist/index.d.cts CHANGED
@@ -6561,7 +6561,7 @@ interface paths {
6561
6561
  "application/json": components["schemas"]["Error"];
6562
6562
  };
6563
6563
  };
6564
- /** @description Client token inactive or origin not allowed */
6564
+ /** @description Forbidden. Either the client token is inactive or the origin is not allowed, or the tenancy lock-down refused the execution: the agent requires an end-user scope and no valid `identityProof` was supplied (`end_user_scope_required`), or this session's conversation record belongs to a different signed-in end user (`conversation_scope_mismatch`; start a new conversation). */
6565
6565
  403: {
6566
6566
  headers: {
6567
6567
  [name: string]: unknown;
@@ -42456,6 +42456,7 @@ interface components {
42456
42456
  input: number;
42457
42457
  output: number;
42458
42458
  };
42459
+ totalTokensUsed?: number;
42459
42460
  /** @enum {string} */
42460
42461
  type: "execution_complete";
42461
42462
  } | {
@@ -42764,6 +42765,7 @@ interface components {
42764
42765
  stepId?: string;
42765
42766
  success: boolean;
42766
42767
  toolCallId: string;
42768
+ toolCost?: number;
42767
42769
  toolName?: string;
42768
42770
  /** @enum {string} */
42769
42771
  type: "tool_complete";
package/dist/index.d.ts CHANGED
@@ -6561,7 +6561,7 @@ interface paths {
6561
6561
  "application/json": components["schemas"]["Error"];
6562
6562
  };
6563
6563
  };
6564
- /** @description Client token inactive or origin not allowed */
6564
+ /** @description Forbidden. Either the client token is inactive or the origin is not allowed, or the tenancy lock-down refused the execution: the agent requires an end-user scope and no valid `identityProof` was supplied (`end_user_scope_required`), or this session's conversation record belongs to a different signed-in end user (`conversation_scope_mismatch`; start a new conversation). */
6565
6565
  403: {
6566
6566
  headers: {
6567
6567
  [name: string]: unknown;
@@ -42456,6 +42456,7 @@ interface components {
42456
42456
  input: number;
42457
42457
  output: number;
42458
42458
  };
42459
+ totalTokensUsed?: number;
42459
42460
  /** @enum {string} */
42460
42461
  type: "execution_complete";
42461
42462
  } | {
@@ -42764,6 +42765,7 @@ interface components {
42764
42765
  stepId?: string;
42765
42766
  success: boolean;
42766
42767
  toolCallId: string;
42768
+ toolCost?: number;
42767
42769
  toolName?: string;
42768
42770
  /** @enum {string} */
42769
42771
  type: "tool_complete";
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.0".length > 0 ? "6.3.0" : FALLBACK_VERSION;
6178
+ var SDK_VERSION = "6.3.1".length > 0 ? "6.3.1" : FALLBACK_VERSION;
6179
6179
  var RUNTYPE_CLIENT_KIND = "sdk";
6180
6180
  var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
6181
6181
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runtypelabs/sdk",
3
- "version": "6.3.0",
3
+ "version": "6.3.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",