@aigne/afs 1.2.3 → 1.3.0-beta.2

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,26 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.3.0-beta.2](https://github.com/AIGNE-io/aigne-framework/compare/afs-v1.3.0-beta.1...afs-v1.3.0-beta.2) (2025-12-10)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * bump version ([af04b69](https://github.com/AIGNE-io/aigne-framework/commit/af04b6931951afa35d52065430acc7fef4b10087))
9
+
10
+ ## [1.3.0-beta.1](https://github.com/AIGNE-io/aigne-framework/compare/afs-v1.3.0-beta...afs-v1.3.0-beta.1) (2025-12-10)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **afs:** add case-sensitive option for search with case-insensitive default ([#814](https://github.com/AIGNE-io/aigne-framework/issues/814)) ([9dc9446](https://github.com/AIGNE-io/aigne-framework/commit/9dc944635104fc311e7756b4bde0a20275cfe8ec))
16
+
17
+ ## [1.3.0-beta](https://github.com/AIGNE-io/aigne-framework/compare/afs-v1.2.3...afs-v1.3.0-beta) (2025-12-07)
18
+
19
+
20
+ ### Features
21
+
22
+ * support define agent by third library & orchestrator agent refactor ([#799](https://github.com/AIGNE-io/aigne-framework/issues/799)) ([7264b11](https://github.com/AIGNE-io/aigne-framework/commit/7264b11ab6eed787e928367f09aa08d254968d40))
23
+
3
24
  ## [1.2.3](https://github.com/AIGNE-io/aigne-framework/compare/afs-v1.2.3-beta...afs-v1.2.3) (2025-12-05)
4
25
 
5
26
  ## [1.2.3-beta](https://github.com/AIGNE-io/aigne-framework/compare/afs-v1.2.2...afs-v1.2.3-beta) (2025-12-02)
package/lib/cjs/type.d.ts CHANGED
@@ -11,6 +11,7 @@ export interface AFSListOptions {
11
11
  }
12
12
  export interface AFSSearchOptions {
13
13
  limit?: number;
14
+ caseSensitive?: boolean;
14
15
  }
15
16
  export interface AFSWriteEntryPayload extends Omit<AFSEntry, "id" | "path"> {
16
17
  }
@@ -58,6 +59,7 @@ export interface AFSEntryMetadata extends Record<string, any> {
58
59
  inputSchema?: Record<string, any>;
59
60
  outputSchema?: Record<string, any>;
60
61
  };
62
+ childrenCount?: number;
61
63
  }
62
64
  export interface AFSEntry<T = any> {
63
65
  id: string;
package/lib/dts/type.d.ts CHANGED
@@ -11,6 +11,7 @@ export interface AFSListOptions {
11
11
  }
12
12
  export interface AFSSearchOptions {
13
13
  limit?: number;
14
+ caseSensitive?: boolean;
14
15
  }
15
16
  export interface AFSWriteEntryPayload extends Omit<AFSEntry, "id" | "path"> {
16
17
  }
@@ -58,6 +59,7 @@ export interface AFSEntryMetadata extends Record<string, any> {
58
59
  inputSchema?: Record<string, any>;
59
60
  outputSchema?: Record<string, any>;
60
61
  };
62
+ childrenCount?: number;
61
63
  }
62
64
  export interface AFSEntry<T = any> {
63
65
  id: string;
package/lib/esm/type.d.ts CHANGED
@@ -11,6 +11,7 @@ export interface AFSListOptions {
11
11
  }
12
12
  export interface AFSSearchOptions {
13
13
  limit?: number;
14
+ caseSensitive?: boolean;
14
15
  }
15
16
  export interface AFSWriteEntryPayload extends Omit<AFSEntry, "id" | "path"> {
16
17
  }
@@ -58,6 +59,7 @@ export interface AFSEntryMetadata extends Record<string, any> {
58
59
  inputSchema?: Record<string, any>;
59
60
  outputSchema?: Record<string, any>;
60
61
  };
62
+ childrenCount?: number;
61
63
  }
62
64
  export interface AFSEntry<T = any> {
63
65
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/afs",
3
- "version": "1.2.3",
3
+ "version": "1.3.0-beta.2",
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"