@crawlee/fs-storage 4.0.0-beta.77 → 4.0.0-beta.78

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.
@@ -55,9 +55,9 @@ export declare class FileSystemStorageBackend implements storage.StorageBackend
55
55
  */
56
56
  getStorageBackendCacheKey(): string;
57
57
  private static resolveStorageKey;
58
- createDatasetBackend(options?: storage.CreateDatasetBackendOptions): Promise<storage.DatasetBackend>;
59
- createKeyValueStoreBackend(options?: storage.CreateKeyValueStoreBackendOptions): Promise<storage.KeyValueStoreBackend>;
60
- createRequestQueueBackend(options?: storage.CreateRequestQueueBackendOptions): Promise<storage.RequestQueueBackend>;
58
+ createDatasetBackend(options?: storage.StorageIdentifier): Promise<storage.DatasetBackend>;
59
+ createKeyValueStoreBackend(options?: storage.StorageIdentifier): Promise<storage.KeyValueStoreBackend>;
60
+ createRequestQueueBackend(options?: storage.StorageIdentifier): Promise<storage.RequestQueueBackend>;
61
61
  storageExists(id: string, type: 'Dataset' | 'KeyValueStore' | 'RequestQueue'): Promise<boolean>;
62
62
  /**
63
63
  * Resolve the real `id` of the on-disk storage identified by `entryNameOrId` under `baseDirectory`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@crawlee/fs-storage",
3
- "version": "4.0.0-beta.77",
3
+ "version": "4.0.0-beta.78",
4
4
  "description": "A file-system storage implementation of the Apify API",
5
5
  "engines": {
6
6
  "node": ">=22.0.0"
@@ -43,7 +43,7 @@
43
43
  },
44
44
  "dependencies": {
45
45
  "@crawlee/fs-storage-native": "0.1.5-beta.18",
46
- "@crawlee/types": "4.0.0-beta.77",
46
+ "@crawlee/types": "4.0.0-beta.78",
47
47
  "@sapphire/shapeshift": "^4.0.0"
48
48
  },
49
49
  "lerna": {
@@ -53,5 +53,5 @@
53
53
  }
54
54
  }
55
55
  },
56
- "gitHead": "671ef0dab0f67275d0db5c289b940ea100ad3ef9"
56
+ "gitHead": "e6c53f94d11cf6e0885855255c0d9ac8071459fa"
57
57
  }