@cloudflare/workers-types 4.20250711.0 → 4.20250715.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.
@@ -3156,6 +3156,7 @@ declare abstract class FileSystemFileHandle extends FileSystemHandle {
3156
3156
  ): Promise<FileSystemWritableFileStream>;
3157
3157
  /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/createSyncAccessHandle) */
3158
3158
  createSyncAccessHandle(): Promise<FileSystemSyncAccessHandle>;
3159
+ getUniqueId(): Promise<string>;
3159
3160
  }
3160
3161
  /**
3161
3162
  * Available only in secure contexts.
@@ -3191,6 +3192,7 @@ declare abstract class FileSystemDirectoryHandle extends FileSystemHandle {
3191
3192
  ) => void,
3192
3193
  thisArg?: any,
3193
3194
  ): void;
3195
+ getUniqueId(): Promise<string>;
3194
3196
  [Symbol.asyncIterator](): AsyncIterableIterator<FileSystemDirectoryHandleEntryType>;
3195
3197
  }
3196
3198
  /**
@@ -3168,6 +3168,7 @@ export declare abstract class FileSystemFileHandle extends FileSystemHandle {
3168
3168
  ): Promise<FileSystemWritableFileStream>;
3169
3169
  /* [MDN Reference](https://developer.mozilla.org/docs/Web/API/FileSystemFileHandle/createSyncAccessHandle) */
3170
3170
  createSyncAccessHandle(): Promise<FileSystemSyncAccessHandle>;
3171
+ getUniqueId(): Promise<string>;
3171
3172
  }
3172
3173
  /**
3173
3174
  * Available only in secure contexts.
@@ -3203,6 +3204,7 @@ export declare abstract class FileSystemDirectoryHandle extends FileSystemHandle
3203
3204
  ) => void,
3204
3205
  thisArg?: any,
3205
3206
  ): void;
3207
+ getUniqueId(): Promise<string>;
3206
3208
  [Symbol.asyncIterator](): AsyncIterableIterator<FileSystemDirectoryHandleEntryType>;
3207
3209
  }
3208
3210
  /**
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.20250711.0"
10
+ "version": "4.20250715.0"
11
11
  }