@runtypelabs/sdk 1.15.2 → 1.15.3

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.d.cts CHANGED
@@ -473,6 +473,11 @@ interface DeployCfSandboxResponse {
473
473
  previewUrl: string;
474
474
  output: string;
475
475
  status: 'running' | 'error';
476
+ /**
477
+ * Last pipeline step that ran. On failure, identifies where it failed
478
+ * (e.g. 'npm_install', 'start_process').
479
+ */
480
+ stage?: 'validate_port' | 'validate_files' | 'write_package_json' | 'npm_install' | 'write_main_file' | 'write_additional_files' | 'start_process' | 'expose_port';
476
481
  error?: string;
477
482
  }
478
483
  interface ModelUsageQueryParams {
package/dist/index.d.ts CHANGED
@@ -473,6 +473,11 @@ interface DeployCfSandboxResponse {
473
473
  previewUrl: string;
474
474
  output: string;
475
475
  status: 'running' | 'error';
476
+ /**
477
+ * Last pipeline step that ran. On failure, identifies where it failed
478
+ * (e.g. 'npm_install', 'start_process').
479
+ */
480
+ stage?: 'validate_port' | 'validate_files' | 'write_package_json' | 'npm_install' | 'write_main_file' | 'write_additional_files' | 'start_process' | 'expose_port';
476
481
  error?: string;
477
482
  }
478
483
  interface ModelUsageQueryParams {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runtypelabs/sdk",
3
- "version": "1.15.2",
3
+ "version": "1.15.3",
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",