@abtnode/db-cache 1.17.8-beta-20260111-112953-aed5ff39 → 1.17.8-beta-20260115-003043-5e15c08a
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 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/package.json +3 -3
package/dist/index.d.cts
CHANGED
|
@@ -270,4 +270,5 @@ declare const getAbtNodeRedisAndSQLiteUrl: () => {
|
|
|
270
270
|
sqlitePath: string | undefined;
|
|
271
271
|
};
|
|
272
272
|
|
|
273
|
-
export {
|
|
273
|
+
export { LockDBCache as DBCache, LruCache, getAbtNodeRedisAndSQLiteUrl, withRetry };
|
|
274
|
+
export type { BaseDBCacheOptions, ForceType, IDBAdapter };
|
package/dist/index.d.mts
CHANGED
|
@@ -270,4 +270,5 @@ declare const getAbtNodeRedisAndSQLiteUrl: () => {
|
|
|
270
270
|
sqlitePath: string | undefined;
|
|
271
271
|
};
|
|
272
272
|
|
|
273
|
-
export {
|
|
273
|
+
export { LockDBCache as DBCache, LruCache, getAbtNodeRedisAndSQLiteUrl, withRetry };
|
|
274
|
+
export type { BaseDBCacheOptions, ForceType, IDBAdapter };
|
package/dist/index.d.ts
CHANGED
|
@@ -270,4 +270,5 @@ declare const getAbtNodeRedisAndSQLiteUrl: () => {
|
|
|
270
270
|
sqlitePath: string | undefined;
|
|
271
271
|
};
|
|
272
272
|
|
|
273
|
-
export {
|
|
273
|
+
export { LockDBCache as DBCache, LruCache, getAbtNodeRedisAndSQLiteUrl, withRetry };
|
|
274
|
+
export type { BaseDBCacheOptions, ForceType, IDBAdapter };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abtnode/db-cache",
|
|
3
|
-
"version": "1.17.8-beta-
|
|
3
|
+
"version": "1.17.8-beta-20260115-003043-5e15c08a",
|
|
4
4
|
"description": "Db cache use redis, sqlite or memory as backend",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"author": "",
|
|
28
28
|
"license": "ISC",
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@arcblock/event-hub": "^1.28.
|
|
30
|
+
"@arcblock/event-hub": "^1.28.5",
|
|
31
31
|
"@types/proper-lockfile": "^4.1.4",
|
|
32
32
|
"lru-cache": "^11.1.0",
|
|
33
33
|
"proper-lockfile": "^4.1.2",
|
|
@@ -44,5 +44,5 @@
|
|
|
44
44
|
"prettier": "^3.3.2",
|
|
45
45
|
"unbuild": "^2.0.0"
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "b22c37d35c84211b50f9ca05176f2c6de59fb24d"
|
|
48
48
|
}
|