@aigne/afs 1.4.0-beta.4 → 1.4.0-beta.5

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
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.4.0-beta.5](https://github.com/AIGNE-io/aigne-framework/compare/afs-v1.4.0-beta.4...afs-v1.4.0-beta.5) (2025-12-31)
4
+
5
+
6
+ ### Features
7
+
8
+ * add session compact support for AIAgent ([#863](https://github.com/AIGNE-io/aigne-framework/issues/863)) ([9010918](https://github.com/AIGNE-io/aigne-framework/commit/9010918cd3f18b02b5c60ddc9ed5c34b568d0b28))
9
+
3
10
  ## [1.4.0-beta.4](https://github.com/AIGNE-io/aigne-framework/compare/afs-v1.4.0-beta.3...afs-v1.4.0-beta.4) (2025-12-26)
4
11
 
5
12
 
package/lib/cjs/type.d.ts CHANGED
@@ -5,6 +5,8 @@ export interface AFSListOptions {
5
5
  agentId?: string;
6
6
  userId?: string;
7
7
  sessionId?: string;
8
+ before?: string;
9
+ after?: string;
8
10
  };
9
11
  maxDepth?: number;
10
12
  limit?: number;
@@ -38,6 +40,7 @@ export interface AFSSearchResult {
38
40
  message?: string;
39
41
  }
40
42
  export interface AFSReadOptions {
43
+ filter?: AFSListOptions["filter"];
41
44
  context?: any;
42
45
  }
43
46
  export interface AFSReadResult {
package/lib/dts/type.d.ts CHANGED
@@ -5,6 +5,8 @@ export interface AFSListOptions {
5
5
  agentId?: string;
6
6
  userId?: string;
7
7
  sessionId?: string;
8
+ before?: string;
9
+ after?: string;
8
10
  };
9
11
  maxDepth?: number;
10
12
  limit?: number;
@@ -38,6 +40,7 @@ export interface AFSSearchResult {
38
40
  message?: string;
39
41
  }
40
42
  export interface AFSReadOptions {
43
+ filter?: AFSListOptions["filter"];
41
44
  context?: any;
42
45
  }
43
46
  export interface AFSReadResult {
package/lib/esm/type.d.ts CHANGED
@@ -5,6 +5,8 @@ export interface AFSListOptions {
5
5
  agentId?: string;
6
6
  userId?: string;
7
7
  sessionId?: string;
8
+ before?: string;
9
+ after?: string;
8
10
  };
9
11
  maxDepth?: number;
10
12
  limit?: number;
@@ -38,6 +40,7 @@ export interface AFSSearchResult {
38
40
  message?: string;
39
41
  }
40
42
  export interface AFSReadOptions {
43
+ filter?: AFSListOptions["filter"];
41
44
  context?: any;
42
45
  }
43
46
  export interface AFSReadResult {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/afs",
3
- "version": "1.4.0-beta.4",
3
+ "version": "1.4.0-beta.5",
4
4
  "description": "Agentic File System (AFS) is a virtual file system that supports various storage backends and provides a unified API for file operations.",
5
5
  "publishConfig": {
6
6
  "access": "public"