@cloudflare/workers-types 4.20241106.0 → 4.20241112.0
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
|
@@ -640,6 +640,7 @@ interface DurableObjectStorage {
|
|
|
640
640
|
getBookmarkForTime(timestamp: number | Date): Promise<string>;
|
|
641
641
|
onNextSessionRestoreBookmark(bookmark: string): Promise<string>;
|
|
642
642
|
waitForBookmark(bookmark: string): Promise<void>;
|
|
643
|
+
ensureReplicas(): void;
|
|
643
644
|
}
|
|
644
645
|
interface DurableObjectListOptions {
|
|
645
646
|
start?: string;
|
package/experimental/index.ts
CHANGED
|
@@ -645,6 +645,7 @@ export interface DurableObjectStorage {
|
|
|
645
645
|
getBookmarkForTime(timestamp: number | Date): Promise<string>;
|
|
646
646
|
onNextSessionRestoreBookmark(bookmark: string): Promise<string>;
|
|
647
647
|
waitForBookmark(bookmark: string): Promise<void>;
|
|
648
|
+
ensureReplicas(): void;
|
|
648
649
|
}
|
|
649
650
|
export interface DurableObjectListOptions {
|
|
650
651
|
start?: string;
|
package/package.json
CHANGED