@kvs/env 2.1.3 → 2.1.4
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/lib/share.d.ts +3 -3
- package/module/share.d.ts +3 -3
- package/package.json +11 -12
package/lib/share.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { JsonValue } from "@kvs/storage";
|
|
2
2
|
import { KVS, KVSOptions } from "@kvs/types";
|
|
3
|
-
export
|
|
3
|
+
export type KvsEnvStorageSchema = {
|
|
4
4
|
[index: string]: JsonValue;
|
|
5
5
|
};
|
|
6
|
-
export
|
|
7
|
-
export
|
|
6
|
+
export type KvsEnvStorage<Schema extends KvsEnvStorageSchema> = KVS<Schema>;
|
|
7
|
+
export type KvsEnvStorageOptions<Schema extends KvsEnvStorageSchema> = KVSOptions<Schema>;
|
package/module/share.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { JsonValue } from "@kvs/storage";
|
|
2
2
|
import { KVS, KVSOptions } from "@kvs/types";
|
|
3
|
-
export
|
|
3
|
+
export type KvsEnvStorageSchema = {
|
|
4
4
|
[index: string]: JsonValue;
|
|
5
5
|
};
|
|
6
|
-
export
|
|
7
|
-
export
|
|
6
|
+
export type KvsEnvStorage<Schema extends KvsEnvStorageSchema> = KVS<Schema>;
|
|
7
|
+
export type KvsEnvStorageOptions<Schema extends KvsEnvStorageSchema> = KVSOptions<Schema>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kvs/env",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.4",
|
|
4
4
|
"description": "Universal Storage for KVS.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"kvs",
|
|
@@ -46,21 +46,20 @@
|
|
|
46
46
|
"trailingComma": "none"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@kvs/indexeddb": "^2.1.
|
|
50
|
-
"@kvs/node-localstorage": "^2.1.
|
|
49
|
+
"@kvs/indexeddb": "^2.1.4",
|
|
50
|
+
"@kvs/node-localstorage": "^2.1.4"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@
|
|
54
|
-
"@types/
|
|
55
|
-
"
|
|
56
|
-
"
|
|
57
|
-
"
|
|
58
|
-
"
|
|
59
|
-
"
|
|
60
|
-
"typescript": "^4.2.4"
|
|
53
|
+
"@types/mocha": "^10.0.1",
|
|
54
|
+
"@types/node": "^20.4.2",
|
|
55
|
+
"mocha": "^10.2.0",
|
|
56
|
+
"prettier": "^3.0.0",
|
|
57
|
+
"rimraf": "^5.0.1",
|
|
58
|
+
"ts-loader": "^9.4.4",
|
|
59
|
+
"typescript": "^5.1.6"
|
|
61
60
|
},
|
|
62
61
|
"publishConfig": {
|
|
63
62
|
"access": "public"
|
|
64
63
|
},
|
|
65
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "d7a5ac9d3c859cceaa75711916bc6bb4e6cd61be"
|
|
66
65
|
}
|