@aexhq/sdk 0.40.13 → 0.40.14

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.
@@ -121,7 +121,7 @@ export declare const READ_OUTPUT_TEXT_MAX_BYTES = 10000000;
121
121
  /** Default `maxBytes` for {@link readOutputText} — a chat-sized preview. */
122
122
  export declare const READ_OUTPUT_TEXT_DEFAULT_BYTES = 50000;
123
123
  /** Default per-attempt timeout while fetching or reading one output body. */
124
- export declare const OUTPUT_FILE_TRANSFER_DEFAULT_TIMEOUT_MS = 15000;
124
+ export declare const OUTPUT_FILE_TRANSFER_DEFAULT_TIMEOUT_MS = 30000;
125
125
  /** Idempotent output GETs retry once on a transfer timeout. */
126
126
  export declare const OUTPUT_FILE_TRANSFER_ATTEMPTS = 2;
127
127
  export interface OutputTransferOptions {
@@ -382,7 +382,7 @@ export const READ_OUTPUT_TEXT_MAX_BYTES = 10_000_000;
382
382
  /** Default `maxBytes` for {@link readOutputText} — a chat-sized preview. */
383
383
  export const READ_OUTPUT_TEXT_DEFAULT_BYTES = 50_000;
384
384
  /** Default per-attempt timeout while fetching or reading one output body. */
385
- export const OUTPUT_FILE_TRANSFER_DEFAULT_TIMEOUT_MS = 15_000;
385
+ export const OUTPUT_FILE_TRANSFER_DEFAULT_TIMEOUT_MS = 30_000;
386
386
  /** Idempotent output GETs retry once on a transfer timeout. */
387
387
  export const OUTPUT_FILE_TRANSFER_ATTEMPTS = 2;
388
388
  /**
@@ -434,7 +434,7 @@ export interface ReadOutputTextOptions {
434
434
  readonly maxBytes?: number;
435
435
  /**
436
436
  * Per-attempt timeout for fetching and reading the selected output body.
437
- * Defaults to 15_000ms; idempotent output reads retry once on timeout before
437
+ * Defaults to 30_000ms; idempotent output reads retry once on timeout before
438
438
  * surfacing a structured NETWORK_ERROR.
439
439
  */
440
440
  readonly timeoutMs?: number;
package/dist/cli.mjs CHANGED
@@ -3460,7 +3460,7 @@ async function downloadOutput(http, runId, selector, options) {
3460
3460
  }
3461
3461
  var READ_OUTPUT_TEXT_MAX_BYTES = 1e7;
3462
3462
  var READ_OUTPUT_TEXT_DEFAULT_BYTES = 5e4;
3463
- var OUTPUT_FILE_TRANSFER_DEFAULT_TIMEOUT_MS = 15e3;
3463
+ var OUTPUT_FILE_TRANSFER_DEFAULT_TIMEOUT_MS = 3e4;
3464
3464
  var OUTPUT_FILE_TRANSFER_ATTEMPTS = 2;
3465
3465
  async function readOutputText(http, runId, selector, options) {
3466
3466
  const maxBytes = Math.max(1, Math.min(options?.maxBytes ?? READ_OUTPUT_TEXT_DEFAULT_BYTES, READ_OUTPUT_TEXT_MAX_BYTES));
@@ -1 +1 @@
1
- e5a409f5a6045f4ac2f366cb55f8a34faac7a3dc0ab048fc99760230305cd5e9 cli.mjs
1
+ b09e07023815e06e45a5a0ecd6f9a241409eafcb79b7ea929d26e0bb1447c1a1 cli.mjs
package/dist/client.d.ts CHANGED
@@ -580,7 +580,7 @@ export interface OutputDownloadOptions {
580
580
  readonly to?: string;
581
581
  /**
582
582
  * Per-attempt timeout for fetching and reading the selected output body.
583
- * Defaults to 15_000ms; idempotent output downloads retry once on timeout.
583
+ * Defaults to 30_000ms; idempotent output downloads retry once on timeout.
584
584
  */
585
585
  readonly timeoutMs?: number;
586
586
  }
package/dist/version.d.ts CHANGED
@@ -6,4 +6,4 @@
6
6
  *
7
7
  * Used by the (future) User-Agent header on outbound SDK requests.
8
8
  */
9
- export declare const SDK_VERSION = "0.40.13";
9
+ export declare const SDK_VERSION = "0.40.14";
package/dist/version.js CHANGED
@@ -6,5 +6,5 @@
6
6
  *
7
7
  * Used by the (future) User-Agent header on outbound SDK requests.
8
8
  */
9
- export const SDK_VERSION = "0.40.13";
9
+ export const SDK_VERSION = "0.40.14";
10
10
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aexhq/sdk",
3
- "version": "0.40.13",
3
+ "version": "0.40.14",
4
4
  "description": "TypeScript SDK for running autonomous agent sessions across providers (Anthropic, OpenAI, DeepSeek, Gemini, Mistral) behind one interface.",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {