@aigne/afs-history 1.0.2 → 1.0.3-beta.1
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/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,24 @@
|
|
|
6
6
|
* dependencies
|
|
7
7
|
* @aigne/afs bumped to 1.2.0
|
|
8
8
|
|
|
9
|
+
## [1.0.3-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/afs-history-v1.0.3-beta...afs-history-v1.0.3-beta.1) (2025-11-18)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Dependencies
|
|
13
|
+
|
|
14
|
+
* The following workspace dependencies were updated
|
|
15
|
+
* dependencies
|
|
16
|
+
* @aigne/sqlite bumped to 0.4.6-beta.1
|
|
17
|
+
|
|
18
|
+
## [1.0.3-beta](https://github.com/AIGNE-io/aigne-framework/compare/afs-history-v1.0.2...afs-history-v1.0.3-beta) (2025-11-17)
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
### Dependencies
|
|
22
|
+
|
|
23
|
+
* The following workspace dependencies were updated
|
|
24
|
+
* dependencies
|
|
25
|
+
* @aigne/sqlite bumped to 0.4.6-beta
|
|
26
|
+
|
|
9
27
|
## [1.0.2](https://github.com/AIGNE-io/aigne-framework/compare/afs-history-v1.0.2-beta...afs-history-v1.0.2) (2025-11-15)
|
|
10
28
|
|
|
11
29
|
|
|
@@ -10,7 +10,7 @@ export declare class SharedAFSStorage {
|
|
|
10
10
|
options?: SharedAFSStorageOptions | undefined;
|
|
11
11
|
constructor(options?: SharedAFSStorageOptions | undefined);
|
|
12
12
|
private _db;
|
|
13
|
-
get db(): Promise<import("drizzle-orm/
|
|
13
|
+
get db(): Promise<import("drizzle-orm/sqlite-proxy/driver.js").SqliteRemoteDatabase<Record<string, never>>>;
|
|
14
14
|
withModule(module: AFSModule): AFSStorage;
|
|
15
15
|
}
|
|
16
16
|
export declare class AFSStorageWithModule implements AFSStorage {
|
|
@@ -10,7 +10,9 @@ export declare class SharedAFSStorage {
|
|
|
10
10
|
options?: SharedAFSStorageOptions | undefined;
|
|
11
11
|
constructor(options?: SharedAFSStorageOptions | undefined);
|
|
12
12
|
private _db;
|
|
13
|
-
get db(): Promise<import("drizzle-orm/libsql").LibSQLDatabase<Record<string, never
|
|
13
|
+
get db(): Promise<import("drizzle-orm/libsql").LibSQLDatabase<Record<string, never>> & {
|
|
14
|
+
vacuum?: () => Promise<void>;
|
|
15
|
+
}>;
|
|
14
16
|
withModule(module: AFSModule): AFSStorage;
|
|
15
17
|
}
|
|
16
18
|
export declare class AFSStorageWithModule implements AFSStorage {
|
|
@@ -10,7 +10,9 @@ export declare class SharedAFSStorage {
|
|
|
10
10
|
options?: SharedAFSStorageOptions | undefined;
|
|
11
11
|
constructor(options?: SharedAFSStorageOptions | undefined);
|
|
12
12
|
private _db;
|
|
13
|
-
get db(): Promise<import("drizzle-orm/libsql").LibSQLDatabase<Record<string, never
|
|
13
|
+
get db(): Promise<import("drizzle-orm/libsql").LibSQLDatabase<Record<string, never>> & {
|
|
14
|
+
vacuum?: () => Promise<void>;
|
|
15
|
+
}>;
|
|
14
16
|
withModule(module: AFSModule): AFSStorage;
|
|
15
17
|
}
|
|
16
18
|
export declare class AFSStorageWithModule implements AFSStorage {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/afs-history",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3-beta.1",
|
|
4
4
|
"description": "AIGNE AFS module for managing chat history",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"@aigne/uuid": "^13.0.1",
|
|
51
51
|
"ufo": "^1.6.1",
|
|
52
|
-
"@aigne/
|
|
53
|
-
"@aigne/
|
|
52
|
+
"@aigne/afs": "^1.2.1",
|
|
53
|
+
"@aigne/sqlite": "^0.4.6-beta.1"
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/bun": "^1.2.22",
|