@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.
- package/experimental/index.d.ts +1 -0
- package/experimental/index.ts +1 -0
- package/package.json +1 -1
package/experimental/index.d.ts
CHANGED
|
@@ -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;
|
package/experimental/index.ts
CHANGED
|
@@ -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