@aigne/afs 1.4.0-beta.2 → 1.4.0-beta.3
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 +7 -0
- package/lib/cjs/type.d.ts +5 -0
- package/lib/dts/type.d.ts +5 -0
- package/lib/esm/type.d.ts +5 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.4.0-beta.3](https://github.com/AIGNE-io/aigne-framework/compare/afs-v1.4.0-beta.2...afs-v1.4.0-beta.3) (2025-12-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add Agent Skill support ([#787](https://github.com/AIGNE-io/aigne-framework/issues/787)) ([f04fbe7](https://github.com/AIGNE-io/aigne-framework/commit/f04fbe76ec24cf3c59c74adf92d87b0c3784a8f7))
|
|
9
|
+
|
|
3
10
|
## [1.4.0-beta.2](https://github.com/AIGNE-io/aigne-framework/compare/afs-v1.4.0-beta.1...afs-v1.4.0-beta.2) (2025-12-19)
|
|
4
11
|
|
|
5
12
|
|
package/lib/cjs/type.d.ts
CHANGED
|
@@ -15,6 +15,11 @@ export interface AFSListOptions {
|
|
|
15
15
|
* @default false
|
|
16
16
|
*/
|
|
17
17
|
disableGitignore?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Glob pattern to filter entries by path.
|
|
20
|
+
* Examples: "*.ts", "**\/*.js", "src/**\/*.{ts,tsx}"
|
|
21
|
+
*/
|
|
22
|
+
pattern?: string;
|
|
18
23
|
context?: any;
|
|
19
24
|
}
|
|
20
25
|
export interface AFSListResult {
|
package/lib/dts/type.d.ts
CHANGED
|
@@ -15,6 +15,11 @@ export interface AFSListOptions {
|
|
|
15
15
|
* @default false
|
|
16
16
|
*/
|
|
17
17
|
disableGitignore?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Glob pattern to filter entries by path.
|
|
20
|
+
* Examples: "*.ts", "**\/*.js", "src/**\/*.{ts,tsx}"
|
|
21
|
+
*/
|
|
22
|
+
pattern?: string;
|
|
18
23
|
context?: any;
|
|
19
24
|
}
|
|
20
25
|
export interface AFSListResult {
|
package/lib/esm/type.d.ts
CHANGED
|
@@ -15,6 +15,11 @@ export interface AFSListOptions {
|
|
|
15
15
|
* @default false
|
|
16
16
|
*/
|
|
17
17
|
disableGitignore?: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Glob pattern to filter entries by path.
|
|
20
|
+
* Examples: "*.ts", "**\/*.js", "src/**\/*.{ts,tsx}"
|
|
21
|
+
*/
|
|
22
|
+
pattern?: string;
|
|
18
23
|
context?: any;
|
|
19
24
|
}
|
|
20
25
|
export interface AFSListResult {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aigne/afs",
|
|
3
|
-
"version": "1.4.0-beta.
|
|
3
|
+
"version": "1.4.0-beta.3",
|
|
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"
|