@aigne/afs 1.4.0-beta.7 → 1.4.0-beta.8

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.8](https://github.com/AIGNE-io/aigne-framework/compare/afs-v1.4.0-beta.7...afs-v1.4.0-beta.8) (2026-01-12)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **afs:** show gitignored files with marker instead of filtering ([c2bdea1](https://github.com/AIGNE-io/aigne-framework/commit/c2bdea155f47c9420f2fe810cdfed79ef70ef899))
9
+
3
10
  ## [1.4.0-beta.7](https://github.com/AIGNE-io/aigne-framework/compare/afs-v1.4.0-beta.6...afs-v1.4.0-beta.7) (2026-01-08)
4
11
 
5
12
 
package/lib/cjs/afs.js CHANGED
@@ -281,6 +281,10 @@ class AFS extends strict_event_emitter_1.Emitter {
281
281
  if (entry?.metadata?.childrenTruncated) {
282
282
  metadataParts.push("truncated");
283
283
  }
284
+ // Gitignored
285
+ if (entry?.metadata?.gitignored) {
286
+ metadataParts.push("gitignored");
287
+ }
284
288
  // Executable
285
289
  if (entry?.metadata?.execute) {
286
290
  metadataParts.push("executable");
package/lib/cjs/type.d.ts CHANGED
@@ -133,6 +133,7 @@ export interface AFSEntryMetadata extends Record<string, any> {
133
133
  };
134
134
  childrenCount?: number;
135
135
  childrenTruncated?: boolean;
136
+ gitignored?: boolean;
136
137
  }
137
138
  export interface AFSEntry<T = any> {
138
139
  id: string;
package/lib/dts/type.d.ts CHANGED
@@ -133,6 +133,7 @@ export interface AFSEntryMetadata extends Record<string, any> {
133
133
  };
134
134
  childrenCount?: number;
135
135
  childrenTruncated?: boolean;
136
+ gitignored?: boolean;
136
137
  }
137
138
  export interface AFSEntry<T = any> {
138
139
  id: string;
package/lib/esm/afs.js CHANGED
@@ -278,6 +278,10 @@ export class AFS extends Emitter {
278
278
  if (entry?.metadata?.childrenTruncated) {
279
279
  metadataParts.push("truncated");
280
280
  }
281
+ // Gitignored
282
+ if (entry?.metadata?.gitignored) {
283
+ metadataParts.push("gitignored");
284
+ }
281
285
  // Executable
282
286
  if (entry?.metadata?.execute) {
283
287
  metadataParts.push("executable");
package/lib/esm/type.d.ts CHANGED
@@ -133,6 +133,7 @@ export interface AFSEntryMetadata extends Record<string, any> {
133
133
  };
134
134
  childrenCount?: number;
135
135
  childrenTruncated?: boolean;
136
+ gitignored?: boolean;
136
137
  }
137
138
  export interface AFSEntry<T = any> {
138
139
  id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/afs",
3
- "version": "1.4.0-beta.7",
3
+ "version": "1.4.0-beta.8",
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"