@blaxel/core 0.2.87-preview.169 → 0.2.87-preview.170

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.
@@ -11,8 +11,8 @@ const index_js_1 = require("../authentication/index.js");
11
11
  const env_js_1 = require("../common/env.js");
12
12
  const node_js_1 = require("../common/node.js");
13
13
  // Build info - these placeholders are replaced at build time by build:replace-imports
14
- const BUILD_VERSION = "0.2.87-preview.169";
15
- const BUILD_COMMIT = "5357b12d98548db2b306537be7d96d2888ac8cb1";
14
+ const BUILD_VERSION = "0.2.87-preview.170";
15
+ const BUILD_COMMIT = "0988680b8e320e4f8a4e0007eec9a30cb043aac2";
16
16
  const BUILD_SENTRY_DSN = "https://fd5e60e1c9820e1eef5ccebb84a07127@o4508714045276160.ingest.us.sentry.io/4510465864564736";
17
17
  const BLAXEL_API_VERSION = "2026-04-16";
18
18
  // Cache for config.yaml tracking value
@@ -10,13 +10,18 @@ import type { H2Pool } from "./h2pool.js";
10
10
  */
11
11
  export declare function createH2Fetch(session: http2.ClientHttp2Session): (input: Request) => Promise<Response>;
12
12
  /**
13
- * Creates a fetch()-compatible function backed by the H2 session pool.
13
+ * Creates a fetch()-compatible function backed by the H2 session pool, routed
14
+ * through the single gateway. Used as the generated client's `fetch`.
14
15
  *
15
- * The pool validates idle sessions before reuse. If no usable H2 session is
16
- * available, the request falls back to regular fetch before any H2 frames
17
- * are sent.
16
+ * If no usable H2 session is available, the request falls back to regular fetch
17
+ * before any H2 frames are sent.
18
18
  */
19
19
  export declare function createPoolBackedH2Fetch(pool: H2Pool, domain: string): (input: Request) => Promise<Response>;
20
+ /**
21
+ * Pool-backed H2 request taking raw url + init (skips Request allocation),
22
+ * routed through the same single gateway. Used by `SandboxAction.h2Fetch` and
23
+ * the code interpreter.
24
+ */
20
25
  export declare function h2RequestDirectFromPool(pool: H2Pool, domain: string, url: string, init?: RequestInit): Promise<Response>;
21
26
  /**
22
27
  * Low-level H2 request that takes raw URL + init, skipping Request construction.