@uploadista/kv-store-filesystem 0.0.9 → 0.0.10
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/dist/index.d.cts +2 -2
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/index.d.mts.map +1 -1
- package/package.json +7 -6
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseKvStore } from "@uploadista/core/types";
|
|
1
|
+
import { BaseKvStore, BaseKvStoreService } from "@uploadista/core/types";
|
|
2
2
|
import { Layer } from "effect";
|
|
3
3
|
|
|
4
4
|
//#region src/file-kv-store.d.ts
|
|
@@ -8,7 +8,7 @@ type FileKvStoreOptions = {
|
|
|
8
8
|
declare function makeFileBaseKvStore({
|
|
9
9
|
directory
|
|
10
10
|
}: FileKvStoreOptions): BaseKvStore;
|
|
11
|
-
declare const fileKvStore: (config: FileKvStoreOptions) => Layer.Layer<
|
|
11
|
+
declare const fileKvStore: (config: FileKvStoreOptions) => Layer.Layer<BaseKvStoreService, never, never>;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { FileKvStoreOptions, fileKvStore, makeFileBaseKvStore };
|
|
14
14
|
//# sourceMappingURL=index.d.cts.map
|
package/dist/index.d.cts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/file-kv-store.ts"],"sourcesContent":[],"mappings":";;;;KAMY,kBAAA;;AAAZ,CAAA;AAKgB,iBAAA,mBAAA,CAAmB;EAAA;AAAA,CAAA,EAEhC,kBAFgC,CAAA,EAEX,WAFW;AACjC,cA4CW,WA5CX,EAAA,CAAA,MAAA,EA4CkC,kBA5ClC,EAAA,GA4CoD,KAAA,CAAA,KA5CpD,
|
|
1
|
+
{"version":3,"file":"index.d.cts","names":[],"sources":["../src/file-kv-store.ts"],"sourcesContent":[],"mappings":";;;;KAMY,kBAAA;;AAAZ,CAAA;AAKgB,iBAAA,mBAAA,CAAmB;EAAA;AAAA,CAAA,EAEhC,kBAFgC,CAAA,EAEX,WAFW;AACjC,cA4CW,WA5CX,EAAA,CAAA,MAAA,EA4CkC,kBA5ClC,EAAA,GA4CoD,KAAA,CAAA,KA5CpD,CA4CoD,kBA5CpD,EAAA,KAAA,EAAA,KAAA,CAAA"}
|
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseKvStore } from "@uploadista/core/types";
|
|
1
|
+
import { BaseKvStore, BaseKvStoreService } from "@uploadista/core/types";
|
|
2
2
|
import { Layer } from "effect";
|
|
3
3
|
|
|
4
4
|
//#region src/file-kv-store.d.ts
|
|
@@ -8,7 +8,7 @@ type FileKvStoreOptions = {
|
|
|
8
8
|
declare function makeFileBaseKvStore({
|
|
9
9
|
directory
|
|
10
10
|
}: FileKvStoreOptions): BaseKvStore;
|
|
11
|
-
declare const fileKvStore: (config: FileKvStoreOptions) => Layer.Layer<
|
|
11
|
+
declare const fileKvStore: (config: FileKvStoreOptions) => Layer.Layer<BaseKvStoreService, never, never>;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { FileKvStoreOptions, fileKvStore, makeFileBaseKvStore };
|
|
14
14
|
//# sourceMappingURL=index.d.mts.map
|
package/dist/index.d.mts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/file-kv-store.ts"],"sourcesContent":[],"mappings":";;;;KAMY,kBAAA;;AAAZ,CAAA;AAKgB,iBAAA,mBAAA,CAAmB;EAAA;AAAA,CAAA,EAEhC,kBAFgC,CAAA,EAEX,WAFW;AACjC,cA4CW,WA5CX,EAAA,CAAA,MAAA,EA4CkC,kBA5ClC,EAAA,GA4CoD,KAAA,CAAA,KA5CpD,
|
|
1
|
+
{"version":3,"file":"index.d.mts","names":[],"sources":["../src/file-kv-store.ts"],"sourcesContent":[],"mappings":";;;;KAMY,kBAAA;;AAAZ,CAAA;AAKgB,iBAAA,mBAAA,CAAmB;EAAA;AAAA,CAAA,EAEhC,kBAFgC,CAAA,EAEX,WAFW;AACjC,cA4CW,WA5CX,EAAA,CAAA,MAAA,EA4CkC,kBA5ClC,EAAA,GA4CoD,KAAA,CAAA,KA5CpD,CA4CoD,kBA5CpD,EAAA,KAAA,EAAA,KAAA,CAAA"}
|
package/package.json
CHANGED
|
@@ -1,25 +1,26 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uploadista/kv-store-filesystem",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.10",
|
|
5
5
|
"description": "File system KV store for Uploadista",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"author": "Uploadista",
|
|
8
8
|
"exports": {
|
|
9
9
|
".": {
|
|
10
|
-
"types": "./dist/index.d.
|
|
11
|
-
"import": "./dist/index.
|
|
12
|
-
"
|
|
10
|
+
"types": "./dist/index.d.mts",
|
|
11
|
+
"import": "./dist/index.mjs",
|
|
12
|
+
"require": "./dist/index.cjs",
|
|
13
|
+
"default": "./dist/index.mjs"
|
|
13
14
|
}
|
|
14
15
|
},
|
|
15
16
|
"dependencies": {
|
|
16
17
|
"effect": "3.19.0",
|
|
17
|
-
"@uploadista/core": "0.0.
|
|
18
|
+
"@uploadista/core": "0.0.10"
|
|
18
19
|
},
|
|
19
20
|
"devDependencies": {
|
|
20
21
|
"@types/node": "24.10.0",
|
|
21
22
|
"tsdown": "0.16.0",
|
|
22
|
-
"@uploadista/typescript-config": "0.0.
|
|
23
|
+
"@uploadista/typescript-config": "0.0.10"
|
|
23
24
|
},
|
|
24
25
|
"scripts": {
|
|
25
26
|
"build": "tsdown",
|