@runtypelabs/sdk 6.6.1 → 6.6.2

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
@@ -6449,7 +6449,7 @@ var Runtype = class {
6449
6449
 
6450
6450
  // src/version.ts
6451
6451
  var FALLBACK_VERSION = "0.0.0";
6452
- var SDK_VERSION = "6.6.1".length > 0 ? "6.6.1" : FALLBACK_VERSION;
6452
+ var SDK_VERSION = "6.6.2".length > 0 ? "6.6.2" : FALLBACK_VERSION;
6453
6453
  var RUNTYPE_CLIENT_KIND = "sdk";
6454
6454
  var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
6455
6455
 
package/dist/index.d.cts CHANGED
@@ -28198,6 +28198,16 @@ interface paths {
28198
28198
  id: string;
28199
28199
  isEntryPoint: boolean;
28200
28200
  surfaceId: string;
28201
+ /** @description Advisory findings about this binding. Present only when non-empty; never blocks the mutation. */
28202
+ warnings?: {
28203
+ /** @description Stable advisory code, e.g. `APPROVAL_UNANSWERABLE_ON_SURFACE` when an approval-gated agent is bound to a surface with no human to answer the prompt. */
28204
+ code: string;
28205
+ message: string;
28206
+ path: string;
28207
+ /** @enum {string} */
28208
+ severity: "warning";
28209
+ suggestedFix?: string;
28210
+ }[];
28201
28211
  };
28202
28212
  };
28203
28213
  };
@@ -28342,6 +28352,16 @@ interface paths {
28342
28352
  id: string;
28343
28353
  isEntryPoint: boolean;
28344
28354
  surfaceId: string;
28355
+ /** @description Advisory findings about this binding. Present only when non-empty; never blocks the mutation. */
28356
+ warnings?: {
28357
+ /** @description Stable advisory code, e.g. `APPROVAL_UNANSWERABLE_ON_SURFACE` when an approval-gated agent is bound to a surface with no human to answer the prompt. */
28358
+ code: string;
28359
+ message: string;
28360
+ path: string;
28361
+ /** @enum {string} */
28362
+ severity: "warning";
28363
+ suggestedFix?: string;
28364
+ }[];
28345
28365
  };
28346
28366
  };
28347
28367
  };
@@ -44352,6 +44372,16 @@ interface components {
44352
44372
  requestedSchema?: {
44353
44373
  [key: string]: unknown;
44354
44374
  };
44375
+ requests?: {
44376
+ message: string;
44377
+ /** @enum {string} */
44378
+ mode: "form" | "url";
44379
+ name: string;
44380
+ requestedSchema?: {
44381
+ [key: string]: unknown;
44382
+ };
44383
+ url?: string;
44384
+ }[];
44355
44385
  serverName?: string;
44356
44386
  url?: string;
44357
44387
  };
package/dist/index.d.ts CHANGED
@@ -28198,6 +28198,16 @@ interface paths {
28198
28198
  id: string;
28199
28199
  isEntryPoint: boolean;
28200
28200
  surfaceId: string;
28201
+ /** @description Advisory findings about this binding. Present only when non-empty; never blocks the mutation. */
28202
+ warnings?: {
28203
+ /** @description Stable advisory code, e.g. `APPROVAL_UNANSWERABLE_ON_SURFACE` when an approval-gated agent is bound to a surface with no human to answer the prompt. */
28204
+ code: string;
28205
+ message: string;
28206
+ path: string;
28207
+ /** @enum {string} */
28208
+ severity: "warning";
28209
+ suggestedFix?: string;
28210
+ }[];
28201
28211
  };
28202
28212
  };
28203
28213
  };
@@ -28342,6 +28352,16 @@ interface paths {
28342
28352
  id: string;
28343
28353
  isEntryPoint: boolean;
28344
28354
  surfaceId: string;
28355
+ /** @description Advisory findings about this binding. Present only when non-empty; never blocks the mutation. */
28356
+ warnings?: {
28357
+ /** @description Stable advisory code, e.g. `APPROVAL_UNANSWERABLE_ON_SURFACE` when an approval-gated agent is bound to a surface with no human to answer the prompt. */
28358
+ code: string;
28359
+ message: string;
28360
+ path: string;
28361
+ /** @enum {string} */
28362
+ severity: "warning";
28363
+ suggestedFix?: string;
28364
+ }[];
28345
28365
  };
28346
28366
  };
28347
28367
  };
@@ -44352,6 +44372,16 @@ interface components {
44352
44372
  requestedSchema?: {
44353
44373
  [key: string]: unknown;
44354
44374
  };
44375
+ requests?: {
44376
+ message: string;
44377
+ /** @enum {string} */
44378
+ mode: "form" | "url";
44379
+ name: string;
44380
+ requestedSchema?: {
44381
+ [key: string]: unknown;
44382
+ };
44383
+ url?: string;
44384
+ }[];
44355
44385
  serverName?: string;
44356
44386
  url?: string;
44357
44387
  };
package/dist/index.mjs CHANGED
@@ -6261,7 +6261,7 @@ var Runtype = class {
6261
6261
 
6262
6262
  // src/version.ts
6263
6263
  var FALLBACK_VERSION = "0.0.0";
6264
- var SDK_VERSION = "6.6.1".length > 0 ? "6.6.1" : FALLBACK_VERSION;
6264
+ var SDK_VERSION = "6.6.2".length > 0 ? "6.6.2" : FALLBACK_VERSION;
6265
6265
  var RUNTYPE_CLIENT_KIND = "sdk";
6266
6266
  var SDK_USER_AGENT = `runtype-sdk/${SDK_VERSION} (typescript)`;
6267
6267
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runtypelabs/sdk",
3
- "version": "6.6.1",
3
+ "version": "6.6.2",
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",