@blade-hq/agent-kit 1.0.18 → 1.0.20

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.
@@ -1299,6 +1299,26 @@ interface paths {
1299
1299
  patch?: never;
1300
1300
  trace?: never;
1301
1301
  };
1302
+ "/api/sessions/{session_id}/preview-proxy/{host_port}/{proxy_path}": {
1303
+ parameters: {
1304
+ query?: never;
1305
+ header?: never;
1306
+ path?: never;
1307
+ cookie?: never;
1308
+ };
1309
+ /**
1310
+ * Proxy Session Preview
1311
+ * @description Serve a mapped preview app through Blade and inject selection support.
1312
+ */
1313
+ get: operations["proxy_session_preview_api_sessions__session_id__preview_proxy__host_port___proxy_path__get"];
1314
+ put?: never;
1315
+ post?: never;
1316
+ delete?: never;
1317
+ options?: never;
1318
+ head?: never;
1319
+ patch?: never;
1320
+ trace?: never;
1321
+ };
1302
1322
  "/api/sessions/{session_id}/ls/{dir_path}": {
1303
1323
  parameters: {
1304
1324
  query?: never;
@@ -9479,6 +9499,39 @@ interface operations {
9479
9499
  };
9480
9500
  };
9481
9501
  };
9502
+ proxy_session_preview_api_sessions__session_id__preview_proxy__host_port___proxy_path__get: {
9503
+ parameters: {
9504
+ query?: never;
9505
+ header?: never;
9506
+ path: {
9507
+ session_id: string;
9508
+ host_port: number;
9509
+ proxy_path: string;
9510
+ };
9511
+ cookie?: never;
9512
+ };
9513
+ requestBody?: never;
9514
+ responses: {
9515
+ /** @description Successful Response */
9516
+ 200: {
9517
+ headers: {
9518
+ [name: string]: unknown;
9519
+ };
9520
+ content: {
9521
+ "application/json": unknown;
9522
+ };
9523
+ };
9524
+ /** @description Validation Error */
9525
+ 422: {
9526
+ headers: {
9527
+ [name: string]: unknown;
9528
+ };
9529
+ content: {
9530
+ "application/json": components["schemas"]["HTTPValidationError"];
9531
+ };
9532
+ };
9533
+ };
9534
+ };
9482
9535
  list_dir_api_sessions__session_id__ls__dir_path__get: {
9483
9536
  parameters: {
9484
9537
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blade-hq/agent-kit",
3
- "version": "1.0.18",
3
+ "version": "1.0.20",
4
4
  "type": "module",
5
5
  "main": "./dist/react/index.js",
6
6
  "types": "./dist/react/index.d.ts",