@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.
@@ -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;
@@ -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
@@ -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.20241106.0"
10
+ "version": "4.20241112.0"
11
11
  }