@runtypelabs/sdk 1.19.0 → 1.19.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.d.cts CHANGED
@@ -341,6 +341,8 @@ interface DispatchRequest {
341
341
  versionNotes?: string;
342
342
  flowVersionId?: string;
343
343
  upsertOptions?: UpsertOptions$2;
344
+ flowTimeoutMs?: number;
345
+ stepTimeoutMs?: number;
344
346
  };
345
347
  }
346
348
  interface ListParams {
@@ -1223,6 +1225,8 @@ interface DispatchOptions$1 {
1223
1225
  flowVersionId?: string;
1224
1226
  /** Options for upsert mode (only used when flowMode is 'upsert') */
1225
1227
  upsertOptions?: UpsertOptions$1;
1228
+ flowTimeoutMs?: number;
1229
+ stepTimeoutMs?: number;
1226
1230
  }
1227
1231
  interface Message$1 {
1228
1232
  role: 'system' | 'user' | 'assistant';
package/dist/index.d.ts CHANGED
@@ -341,6 +341,8 @@ interface DispatchRequest {
341
341
  versionNotes?: string;
342
342
  flowVersionId?: string;
343
343
  upsertOptions?: UpsertOptions$2;
344
+ flowTimeoutMs?: number;
345
+ stepTimeoutMs?: number;
344
346
  };
345
347
  }
346
348
  interface ListParams {
@@ -1223,6 +1225,8 @@ interface DispatchOptions$1 {
1223
1225
  flowVersionId?: string;
1224
1226
  /** Options for upsert mode (only used when flowMode is 'upsert') */
1225
1227
  upsertOptions?: UpsertOptions$1;
1228
+ flowTimeoutMs?: number;
1229
+ stepTimeoutMs?: number;
1226
1230
  }
1227
1231
  interface Message$1 {
1228
1232
  role: 'system' | 'user' | 'assistant';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runtypelabs/sdk",
3
- "version": "1.19.0",
3
+ "version": "1.19.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",