@cloudflare/workers-types 5.20260813.1 → 5.20260814.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 +4 -1
- package/experimental/index.ts +4 -1
- package/index.d.ts +4 -1
- package/index.ts +4 -1
- package/package.json +1 -1
package/experimental/index.d.ts
CHANGED
|
@@ -4087,6 +4087,9 @@ interface ContainerSnapshot {
|
|
|
4087
4087
|
size: number;
|
|
4088
4088
|
name?: string;
|
|
4089
4089
|
}
|
|
4090
|
+
interface ContainerSnapshotRestoreParams {
|
|
4091
|
+
id: string;
|
|
4092
|
+
}
|
|
4090
4093
|
interface ContainerSnapshotOptions {
|
|
4091
4094
|
name?: string;
|
|
4092
4095
|
}
|
|
@@ -4111,7 +4114,7 @@ type ContainerStartupOptions = {
|
|
|
4111
4114
|
}
|
|
4112
4115
|
| {
|
|
4113
4116
|
image?: never;
|
|
4114
|
-
containerSnapshot?:
|
|
4117
|
+
containerSnapshot?: ContainerSnapshotRestoreParams;
|
|
4115
4118
|
}
|
|
4116
4119
|
);
|
|
4117
4120
|
interface ContainerInfo {
|
package/experimental/index.ts
CHANGED
|
@@ -4096,6 +4096,9 @@ export interface ContainerSnapshot {
|
|
|
4096
4096
|
size: number;
|
|
4097
4097
|
name?: string;
|
|
4098
4098
|
}
|
|
4099
|
+
export interface ContainerSnapshotRestoreParams {
|
|
4100
|
+
id: string;
|
|
4101
|
+
}
|
|
4099
4102
|
export interface ContainerSnapshotOptions {
|
|
4100
4103
|
name?: string;
|
|
4101
4104
|
}
|
|
@@ -4120,7 +4123,7 @@ export type ContainerStartupOptions = {
|
|
|
4120
4123
|
}
|
|
4121
4124
|
| {
|
|
4122
4125
|
image?: never;
|
|
4123
|
-
containerSnapshot?:
|
|
4126
|
+
containerSnapshot?: ContainerSnapshotRestoreParams;
|
|
4124
4127
|
}
|
|
4125
4128
|
);
|
|
4126
4129
|
export interface ContainerInfo {
|
package/index.d.ts
CHANGED
|
@@ -3997,6 +3997,9 @@ interface ContainerSnapshot {
|
|
|
3997
3997
|
size: number;
|
|
3998
3998
|
name?: string;
|
|
3999
3999
|
}
|
|
4000
|
+
interface ContainerSnapshotRestoreParams {
|
|
4001
|
+
id: string;
|
|
4002
|
+
}
|
|
4000
4003
|
interface ContainerSnapshotOptions {
|
|
4001
4004
|
name?: string;
|
|
4002
4005
|
}
|
|
@@ -4006,7 +4009,7 @@ interface ContainerStartupOptions {
|
|
|
4006
4009
|
env?: Record<string, string>;
|
|
4007
4010
|
labels?: Record<string, string>;
|
|
4008
4011
|
directorySnapshots?: ContainerDirectorySnapshotRestoreParams[];
|
|
4009
|
-
containerSnapshot?:
|
|
4012
|
+
containerSnapshot?: ContainerSnapshotRestoreParams;
|
|
4010
4013
|
}
|
|
4011
4014
|
interface ContainerStartResources {
|
|
4012
4015
|
vcpu: number;
|
package/index.ts
CHANGED
|
@@ -4006,6 +4006,9 @@ export interface ContainerSnapshot {
|
|
|
4006
4006
|
size: number;
|
|
4007
4007
|
name?: string;
|
|
4008
4008
|
}
|
|
4009
|
+
export interface ContainerSnapshotRestoreParams {
|
|
4010
|
+
id: string;
|
|
4011
|
+
}
|
|
4009
4012
|
export interface ContainerSnapshotOptions {
|
|
4010
4013
|
name?: string;
|
|
4011
4014
|
}
|
|
@@ -4015,7 +4018,7 @@ export interface ContainerStartupOptions {
|
|
|
4015
4018
|
env?: Record<string, string>;
|
|
4016
4019
|
labels?: Record<string, string>;
|
|
4017
4020
|
directorySnapshots?: ContainerDirectorySnapshotRestoreParams[];
|
|
4018
|
-
containerSnapshot?:
|
|
4021
|
+
containerSnapshot?: ContainerSnapshotRestoreParams;
|
|
4019
4022
|
}
|
|
4020
4023
|
export interface ContainerStartResources {
|
|
4021
4024
|
vcpu: number;
|
package/package.json
CHANGED