@cloudflare/workers-types 4.20260402.1 → 4.20260404.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.
@@ -3973,6 +3973,7 @@ interface Container {
3973
3973
  ): Promise<ContainerSnapshot>;
3974
3974
  interceptOutboundHttps(addr: string, binding: Fetcher): Promise<void>;
3975
3975
  exec(cmd: string[], options?: ContainerExecOptions): Promise<ExecProcess>;
3976
+ interceptOutboundTcp(addr: string, binding: Fetcher): Promise<void>;
3976
3977
  }
3977
3978
  interface ContainerDirectorySnapshot {
3978
3979
  id: string;
@@ -3979,6 +3979,7 @@ export interface Container {
3979
3979
  ): Promise<ContainerSnapshot>;
3980
3980
  interceptOutboundHttps(addr: string, binding: Fetcher): Promise<void>;
3981
3981
  exec(cmd: string[], options?: ContainerExecOptions): Promise<ExecProcess>;
3982
+ interceptOutboundTcp(addr: string, binding: Fetcher): Promise<void>;
3982
3983
  }
3983
3984
  export interface ContainerDirectorySnapshot {
3984
3985
  id: string;
package/package.json CHANGED
@@ -7,5 +7,5 @@
7
7
  },
8
8
  "author": "Cloudflare Workers DevProd Team <workers-devprod@cloudflare.com> (https://workers.cloudflare.com)",
9
9
  "license": "MIT OR Apache-2.0",
10
- "version": "4.20260402.1"
10
+ "version": "4.20260404.1"
11
11
  }