@crawlee/fs-storage 4.0.0-beta.76 → 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.
- package/file-system-storage.d.ts +3 -3
- package/package.json +3 -3
package/file-system-storage.d.ts
CHANGED
|
@@ -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.
|
|
59
|
-
createKeyValueStoreBackend(options?: storage.
|
|
60
|
-
createRequestQueueBackend(options?: storage.
|
|
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.
|
|
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.
|
|
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": "
|
|
56
|
+
"gitHead": "e6c53f94d11cf6e0885855255c0d9ac8071459fa"
|
|
57
57
|
}
|