@aigne/afs-json 1.1.0 → 1.11.0-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/LICENSE.md CHANGED
@@ -1,93 +1,26 @@
1
- Elastic License 2.0
1
+ # Proprietary License
2
2
 
3
- URL: https://www.elastic.co/licensing/elastic-license
3
+ Copyright (c) 2024-2025 ArcBlock, Inc. All Rights Reserved.
4
4
 
5
- ## Acceptance
5
+ This software and associated documentation files (the "Software") are proprietary
6
+ and confidential. Unauthorized copying, modification, distribution, or use of
7
+ this Software, via any medium, is strictly prohibited.
6
8
 
7
- By using the software, you agree to all of the terms and conditions below.
9
+ The Software is provided for internal use only within ArcBlock, Inc. and its
10
+ authorized affiliates.
8
11
 
9
- ## Copyright License
12
+ ## No License Granted
10
13
 
11
- The licensor grants you a non-exclusive, royalty-free, worldwide,
12
- non-sublicensable, non-transferable license to use, copy, distribute, make
13
- available, and prepare derivative works of the software, in each case subject to
14
- the limitations and conditions below.
14
+ No license, express or implied, is granted to any party for any purpose.
15
+ All rights are reserved by ArcBlock, Inc.
15
16
 
16
- ## Limitations
17
+ ## Public Artifact Distribution
17
18
 
18
- You may not provide the software to third parties as a hosted or managed
19
- service, where the service provides users with access to any substantial set of
20
- the features or functionality of the software.
19
+ Portions of this Software may be released publicly under separate open-source
20
+ licenses (such as MIT License) through designated public repositories. Such
21
+ public releases are governed by their respective licenses and do not affect
22
+ the proprietary nature of this repository.
21
23
 
22
- You may not move, change, disable, or circumvent the license key functionality
23
- in the software, and you may not remove or obscure any functionality in the
24
- software that is protected by the license key.
24
+ ## Contact
25
25
 
26
- You may not alter, remove, or obscure any licensing, copyright, or other notices
27
- of the licensor in the software. Any use of the licensor’s trademarks is subject
28
- to applicable law.
29
-
30
- ## Patents
31
-
32
- The licensor grants you a license, under any patent claims the licensor can
33
- license, or becomes able to license, to make, have made, use, sell, offer for
34
- sale, import and have imported the software, in each case subject to the
35
- limitations and conditions in this license. This license does not cover any
36
- patent claims that you cause to be infringed by modifications or additions to
37
- the software. If you or your company make any written claim that the software
38
- infringes or contributes to infringement of any patent, your patent license for
39
- the software granted under these terms ends immediately. If your company makes
40
- such a claim, your patent license ends immediately for work on behalf of your
41
- company.
42
-
43
- ## Notices
44
-
45
- You must ensure that anyone who gets a copy of any part of the software from you
46
- also gets a copy of these terms.
47
-
48
- If you modify the software, you must include in any modified copies of the
49
- software prominent notices stating that you have modified the software.
50
-
51
- ## No Other Rights
52
-
53
- These terms do not imply any licenses other than those expressly granted in
54
- these terms.
55
-
56
- ## Termination
57
-
58
- If you use the software in violation of these terms, such use is not licensed,
59
- and your licenses will automatically terminate. If the licensor provides you
60
- with a notice of your violation, and you cease all violation of this license no
61
- later than 30 days after you receive that notice, your licenses will be
62
- reinstated retroactively. However, if you violate these terms after such
63
- reinstatement, any additional violation of these terms will cause your licenses
64
- to terminate automatically and permanently.
65
-
66
- ## No Liability
67
-
68
- *As far as the law allows, the software comes as is, without any warranty or
69
- condition, and the licensor will not be liable to you for any damages arising
70
- out of these terms or the use or nature of the software, under any kind of
71
- legal claim.*
72
-
73
- ## Definitions
74
-
75
- The **licensor** is the entity offering these terms, and the **software** is the
76
- software the licensor makes available under these terms, including any portion
77
- of it.
78
-
79
- **you** refers to the individual or entity agreeing to these terms.
80
-
81
- **your company** is any legal entity, sole proprietorship, or other kind of
82
- organization that you work for, plus all organizations that have control over,
83
- are under the control of, or are under common control with that
84
- organization. **control** means ownership of substantially all the assets of an
85
- entity, or the power to direct its management and policies by vote, contract, or
86
- otherwise. Control can be direct or indirect.
87
-
88
- **your licenses** are all the licenses granted to you for the software under
89
- these terms.
90
-
91
- **use** means anything you do with the software requiring one of your licenses.
92
-
93
- **trademark** means trademarks, service marks, and similar rights.
26
+ For licensing inquiries, contact: legal@arcblock.io
package/README.md CHANGED
@@ -33,7 +33,7 @@ afs.mount(
33
33
  new AFSJSON({
34
34
  name: "config",
35
35
  jsonPath: "./config.json",
36
- })
36
+ }),
37
37
  );
38
38
 
39
39
  // Or mount a YAML file
@@ -41,7 +41,7 @@ afs.mount(
41
41
  new AFSJSON({
42
42
  name: "app-config",
43
43
  jsonPath: "./config.yaml",
44
- })
44
+ }),
45
45
  );
46
46
 
47
47
  // Read the entire JSON/YAML
@@ -86,6 +86,7 @@ version: "1.0.0"
86
86
  ```
87
87
 
88
88
  This YAML structure becomes:
89
+
89
90
  ```
90
91
  /config/ # Root object
91
92
  /config/database/ # Nested object (directory)
@@ -99,6 +100,7 @@ This YAML structure becomes:
99
100
  ```
100
101
 
101
102
  **Format Detection and Persistence:**
103
+
102
104
  - Format is detected automatically from file extension (.json, .yaml, .yml)
103
105
  - When writing to a YAML file, changes are saved in YAML format
104
106
  - When writing to a JSON file, changes are saved in JSON format
@@ -124,6 +126,7 @@ This YAML structure becomes:
124
126
  ```
125
127
 
126
128
  This structure becomes:
129
+
127
130
  ```
128
131
  /config/ # Root object
129
132
  /config/database/ # Nested object (directory)
@@ -161,6 +164,7 @@ This structure becomes:
161
164
  ```
162
165
 
163
166
  This structure becomes:
167
+
164
168
  ```
165
169
  /users/ # Array (directory)
166
170
  /users/0/ # First user object (directory)
@@ -181,23 +185,23 @@ This structure becomes:
181
185
 
182
186
  ```typescript
183
187
  // Read a property from an array object
184
- const { data } = await afs.read('/modules/users/0/name');
188
+ const { data } = await afs.read("/modules/users/0/name");
185
189
  console.log(data?.content); // "Alice"
186
190
 
187
191
  // Update a nested property in an array object
188
- await afs.write('/modules/users/0/profile/age', { content: 31 });
192
+ await afs.write("/modules/users/0/profile/age", { content: 31 });
189
193
 
190
194
  // Add a new property to an array object
191
- await afs.write('/modules/users/0/active', { content: true });
195
+ await afs.write("/modules/users/0/active", { content: true });
192
196
 
193
197
  // List all properties of an array object
194
- const result = await afs.list('/modules/users/0');
198
+ const result = await afs.list("/modules/users/0");
195
199
 
196
200
  // Search within array objects
197
- const results = await afs.search('/modules/users', 'Beijing');
201
+ const results = await afs.search("/modules/users", "Beijing");
198
202
 
199
203
  // Delete from an array (shifts subsequent indices)
200
- await afs.delete('/modules/users/1', { recursive: true });
204
+ await afs.delete("/modules/users/1", { recursive: true });
201
205
  // Now users/2 becomes users/1
202
206
  ```
203
207
 
@@ -205,15 +209,16 @@ await afs.delete('/modules/users/1', { recursive: true });
205
209
 
206
210
  ```typescript
207
211
  interface AFSJSONOptions {
208
- name?: string; // Module name (default: basename of jsonPath without extension)
209
- jsonPath: string; // Path to JSON or YAML file
210
- description?: string; // Module description
211
- accessMode?: "readonly" | "readwrite"; // Access mode (default: "readwrite")
212
- agentSkills?: boolean; // Enable agent skill scanning
212
+ name?: string; // Module name (default: basename of jsonPath without extension)
213
+ jsonPath: string; // Path to JSON or YAML file
214
+ description?: string; // Module description
215
+ accessMode?: "readonly" | "readwrite"; // Access mode (default: "readwrite")
216
+ agentSkills?: boolean; // Enable agent skill scanning
213
217
  }
214
218
  ```
215
219
 
216
220
  **Note:** File format is automatically detected from the `jsonPath` extension:
221
+
217
222
  - `.json` files are saved as JSON
218
223
  - `.yaml` or `.yml` files are saved as YAML
219
224
 
@@ -225,7 +230,7 @@ afs.mount(
225
230
  name: "readonly-config",
226
231
  jsonPath: "./config.json",
227
232
  accessMode: "readonly",
228
- })
233
+ }),
229
234
  );
230
235
 
231
236
  // Reading is allowed
@@ -244,7 +249,7 @@ afs.mount(
244
249
  name: "settings",
245
250
  jsonPath: "./settings.json",
246
251
  accessMode: "readwrite",
247
- })
252
+ }),
248
253
  );
249
254
 
250
255
  // Or mount a YAML file
@@ -253,7 +258,7 @@ afs.mount(
253
258
  name: "config",
254
259
  jsonPath: "./config.yaml",
255
260
  accessMode: "readwrite",
256
- })
261
+ }),
257
262
  );
258
263
 
259
264
  // Update a value
@@ -299,6 +304,3 @@ Search for values within the JSON/YAML structure.
299
304
  - **Kubernetes Config**: Navigate and query YAML configuration files
300
305
  - **CI/CD Pipelines**: Access and modify YAML pipeline configurations
301
306
 
302
- ## License
303
-
304
- Elastic-2.0
package/dist/index.cjs ADDED
@@ -0,0 +1,366 @@
1
+ let node_fs_promises = require("node:fs/promises");
2
+ let node_path = require("node:path");
3
+ let _aigne_afs_utils_zod = require("@aigne/afs/utils/zod");
4
+ let yaml = require("yaml");
5
+ let zod = require("zod");
6
+
7
+ //#region src/index.ts
8
+ const LIST_MAX_LIMIT = 1e3;
9
+ const afsJSONOptionsSchema = (0, _aigne_afs_utils_zod.camelize)(zod.z.object({
10
+ name: (0, _aigne_afs_utils_zod.optionalize)(zod.z.string()),
11
+ jsonPath: zod.z.string().describe("The path to the JSON/YAML file to mount"),
12
+ description: (0, _aigne_afs_utils_zod.optionalize)(zod.z.string().describe("A description of the JSON module")),
13
+ accessMode: (0, _aigne_afs_utils_zod.optionalize)(zod.z.enum(["readonly", "readwrite"]).describe("Access mode for this module")),
14
+ agentSkills: (0, _aigne_afs_utils_zod.optionalize)(zod.z.boolean().describe("Enable automatic agent skill scanning for this module"))
15
+ }));
16
+ /**
17
+ * AFS module for mounting JSON/YAML files as virtual file systems.
18
+ *
19
+ * JSON/YAML objects are treated as directories, and properties/array items as files.
20
+ * Supports nested structures and path-based access to data values.
21
+ */
22
+ var AFSJSON = class AFSJSON {
23
+ static schema() {
24
+ return afsJSONOptionsSchema;
25
+ }
26
+ static async load({ filepath, parsed }) {
27
+ return new AFSJSON({
28
+ ...await AFSJSON.schema().parseAsync(parsed),
29
+ cwd: (0, node_path.dirname)(filepath)
30
+ });
31
+ }
32
+ jsonData = null;
33
+ fileStats = {};
34
+ fileFormat = "json";
35
+ constructor(options) {
36
+ this.options = options;
37
+ (0, _aigne_afs_utils_zod.zodParse)(afsJSONOptionsSchema, options);
38
+ let jsonPath;
39
+ jsonPath = options.jsonPath.replaceAll("${CWD}", process.cwd());
40
+ if (jsonPath.startsWith("~/")) jsonPath = (0, node_path.join)(process.env.HOME || "", jsonPath.slice(2));
41
+ if (!(0, node_path.isAbsolute)(jsonPath)) jsonPath = (0, node_path.join)(options.cwd || process.cwd(), jsonPath);
42
+ const ext = (0, node_path.extname)(jsonPath).toLowerCase();
43
+ this.fileFormat = ext === ".yaml" || ext === ".yml" ? "yaml" : "json";
44
+ const extensions = [
45
+ ".json",
46
+ ".yaml",
47
+ ".yml"
48
+ ];
49
+ let name = (0, node_path.basename)(jsonPath);
50
+ for (const e of extensions) if (name.endsWith(e)) {
51
+ name = name.slice(0, -e.length);
52
+ break;
53
+ }
54
+ this.name = options.name || name || "json";
55
+ this.description = options.description;
56
+ this.agentSkills = options.agentSkills;
57
+ this.accessMode = options.accessMode ?? (options.agentSkills ? "readonly" : "readwrite");
58
+ this.options.jsonPath = jsonPath;
59
+ }
60
+ name;
61
+ description;
62
+ accessMode;
63
+ agentSkills;
64
+ /**
65
+ * Load JSON/YAML data from file. Called lazily on first access.
66
+ * Uses YAML parser which can handle both JSON and YAML formats.
67
+ */
68
+ async ensureLoaded() {
69
+ if (this.jsonData !== null) return;
70
+ try {
71
+ const stats = await (0, node_fs_promises.stat)(this.options.jsonPath);
72
+ this.fileStats = {
73
+ birthtime: stats.birthtime,
74
+ mtime: stats.mtime
75
+ };
76
+ this.jsonData = (0, yaml.parse)(await (0, node_fs_promises.readFile)(this.options.jsonPath, "utf8"));
77
+ } catch (error) {
78
+ if (error.code === "ENOENT") this.jsonData = {};
79
+ else throw error;
80
+ }
81
+ }
82
+ /**
83
+ * Save JSON/YAML data back to file. Only called in readwrite mode.
84
+ */
85
+ async saveToFile() {
86
+ let content;
87
+ if (this.fileFormat === "yaml") content = (0, yaml.stringify)(this.jsonData);
88
+ else content = JSON.stringify(this.jsonData, null, 2);
89
+ await (0, node_fs_promises.writeFile)(this.options.jsonPath, content, "utf8");
90
+ const stats = await (0, node_fs_promises.stat)(this.options.jsonPath);
91
+ this.fileStats = {
92
+ birthtime: this.fileStats.birthtime || stats.birthtime,
93
+ mtime: stats.mtime
94
+ };
95
+ }
96
+ /**
97
+ * Normalize path to ensure consistent format
98
+ */
99
+ normalizePath(path) {
100
+ let normalized = path.startsWith("/") ? path : `/${path}`;
101
+ if (normalized.length > 1 && normalized.endsWith("/")) normalized = normalized.slice(0, -1);
102
+ return normalized;
103
+ }
104
+ /**
105
+ * Get path segments from normalized path
106
+ */
107
+ getPathSegments(path) {
108
+ const normalized = this.normalizePath(path);
109
+ if (normalized === "/") return [];
110
+ return normalized.slice(1).split("/");
111
+ }
112
+ /**
113
+ * Navigate to a value in the JSON structure using path segments
114
+ */
115
+ getValueAtPath(data, segments) {
116
+ let current = data;
117
+ for (const segment of segments) {
118
+ if (current == null) return void 0;
119
+ if (Array.isArray(current)) {
120
+ const index = Number.parseInt(segment, 10);
121
+ if (Number.isNaN(index) || index < 0 || index >= current.length) return;
122
+ current = current[index];
123
+ } else if (typeof current === "object") current = current[segment];
124
+ else return;
125
+ }
126
+ return current;
127
+ }
128
+ /**
129
+ * Set a value in the JSON structure at the given path
130
+ */
131
+ setValueAtPath(data, segments, value) {
132
+ if (segments.length === 0) throw new Error("Cannot set value at root path");
133
+ let current = data;
134
+ for (let i = 0; i < segments.length - 1; i++) {
135
+ const segment = segments[i];
136
+ const nextSegment = segments[i + 1];
137
+ if (Array.isArray(current)) {
138
+ const index = Number.parseInt(segment, 10);
139
+ if (Number.isNaN(index) || index < 0) throw new Error(`Invalid array index: ${segment}`);
140
+ while (current.length <= index) current.push(null);
141
+ if (current[index] == null) current[index] = !Number.isNaN(Number.parseInt(nextSegment, 10)) ? [] : {};
142
+ current = current[index];
143
+ } else if (typeof current === "object") {
144
+ if (current[segment] == null) current[segment] = !Number.isNaN(Number.parseInt(nextSegment, 10)) ? [] : {};
145
+ current = current[segment];
146
+ } else throw new Error(`Cannot set property on non-object at ${segments.slice(0, i + 1).join("/")}`);
147
+ }
148
+ const lastSegment = segments[segments.length - 1];
149
+ if (Array.isArray(current)) {
150
+ const index = Number.parseInt(lastSegment, 10);
151
+ if (Number.isNaN(index) || index < 0) throw new Error(`Invalid array index: ${lastSegment}`);
152
+ current[index] = value;
153
+ } else if (typeof current === "object") current[lastSegment] = value;
154
+ else throw new Error("Cannot set property on non-object");
155
+ }
156
+ /**
157
+ * Delete a value from the JSON structure at the given path
158
+ */
159
+ deleteValueAtPath(data, segments) {
160
+ if (segments.length === 0) throw new Error("Cannot delete root path");
161
+ let current = data;
162
+ for (let i = 0; i < segments.length - 1; i++) {
163
+ const segment = segments[i];
164
+ if (Array.isArray(current)) {
165
+ const index = Number.parseInt(segment, 10);
166
+ if (Number.isNaN(index) || index < 0 || index >= current.length) return false;
167
+ current = current[index];
168
+ } else if (typeof current === "object") {
169
+ if (!(segment in current)) return false;
170
+ current = current[segment];
171
+ } else return false;
172
+ }
173
+ const lastSegment = segments[segments.length - 1];
174
+ if (Array.isArray(current)) {
175
+ const index = Number.parseInt(lastSegment, 10);
176
+ if (Number.isNaN(index) || index < 0 || index >= current.length) return false;
177
+ current.splice(index, 1);
178
+ return true;
179
+ }
180
+ if (typeof current === "object") {
181
+ if (!(lastSegment in current)) return false;
182
+ delete current[lastSegment];
183
+ return true;
184
+ }
185
+ return false;
186
+ }
187
+ /**
188
+ * Check if a value is a "directory" (object or array with children)
189
+ */
190
+ isDirectory(value) {
191
+ if (Array.isArray(value)) return true;
192
+ if (typeof value === "object" && value !== null) return true;
193
+ return false;
194
+ }
195
+ /**
196
+ * Get children of a directory value
197
+ */
198
+ getChildren(value) {
199
+ if (Array.isArray(value)) return value.map((item, index) => ({
200
+ key: String(index),
201
+ value: item
202
+ }));
203
+ if (typeof value === "object" && value !== null) return Object.entries(value).map(([key, val]) => ({
204
+ key,
205
+ value: val
206
+ }));
207
+ return [];
208
+ }
209
+ /**
210
+ * Convert a JSON value to an AFSEntry
211
+ */
212
+ valueToAFSEntry(path, value) {
213
+ const isDir = this.isDirectory(value);
214
+ const children = isDir ? this.getChildren(value) : [];
215
+ return {
216
+ id: path,
217
+ path,
218
+ content: isDir ? void 0 : value,
219
+ createdAt: this.fileStats.birthtime,
220
+ updatedAt: this.fileStats.mtime,
221
+ metadata: {
222
+ type: isDir ? "directory" : "file",
223
+ childrenCount: isDir ? children.length : void 0
224
+ }
225
+ };
226
+ }
227
+ async list(path, options) {
228
+ await this.ensureLoaded();
229
+ const normalizedPath = this.normalizePath(path);
230
+ const limit = Math.min(options?.limit || LIST_MAX_LIMIT, LIST_MAX_LIMIT);
231
+ const maxChildren = typeof options?.maxChildren === "number" ? options.maxChildren : Number.MAX_SAFE_INTEGER;
232
+ const maxDepth = options?.maxDepth ?? 1;
233
+ const segments = this.getPathSegments(normalizedPath);
234
+ const value = this.getValueAtPath(this.jsonData, segments);
235
+ if (value === void 0) throw new Error(`Path not found: ${normalizedPath}`);
236
+ const entries = [];
237
+ const queue = [{
238
+ path: normalizedPath,
239
+ value,
240
+ depth: 0
241
+ }];
242
+ while (queue.length > 0) {
243
+ const item = queue.shift();
244
+ if (!item) break;
245
+ const { path: itemPath, value: itemValue, depth } = item;
246
+ const entry = this.valueToAFSEntry(itemPath, itemValue);
247
+ entries.push(entry);
248
+ if (entries.length >= limit) {
249
+ if (entry.metadata) entry.metadata.childrenTruncated = true;
250
+ break;
251
+ }
252
+ if (this.isDirectory(itemValue) && depth < maxDepth) {
253
+ const children = this.getChildren(itemValue);
254
+ const childrenToProcess = children.length > maxChildren ? children.slice(0, maxChildren) : children;
255
+ if (childrenToProcess.length < children.length && entry.metadata) entry.metadata.childrenTruncated = true;
256
+ for (const child of childrenToProcess) {
257
+ const childPath = itemPath === "/" ? `/${child.key}` : `${itemPath}/${child.key}`;
258
+ queue.push({
259
+ path: childPath,
260
+ value: child.value,
261
+ depth: depth + 1
262
+ });
263
+ }
264
+ }
265
+ }
266
+ return { data: entries };
267
+ }
268
+ async read(path, _options) {
269
+ await this.ensureLoaded();
270
+ const normalizedPath = this.normalizePath(path);
271
+ const segments = this.getPathSegments(normalizedPath);
272
+ const value = this.getValueAtPath(this.jsonData, segments);
273
+ if (value === void 0) return {
274
+ data: void 0,
275
+ message: `Path not found: ${normalizedPath}`
276
+ };
277
+ return { data: this.valueToAFSEntry(normalizedPath, value) };
278
+ }
279
+ async write(path, entry, _options) {
280
+ await this.ensureLoaded();
281
+ const normalizedPath = this.normalizePath(path);
282
+ const segments = this.getPathSegments(normalizedPath);
283
+ this.setValueAtPath(this.jsonData, segments, entry.content);
284
+ await this.saveToFile();
285
+ const newValue = this.getValueAtPath(this.jsonData, segments);
286
+ const isDir = this.isDirectory(newValue);
287
+ const children = isDir ? this.getChildren(newValue) : [];
288
+ return { data: {
289
+ id: normalizedPath,
290
+ path: normalizedPath,
291
+ content: entry.content,
292
+ summary: entry.summary,
293
+ description: entry.description,
294
+ createdAt: this.fileStats.birthtime,
295
+ updatedAt: this.fileStats.mtime,
296
+ metadata: {
297
+ ...entry.metadata,
298
+ type: isDir ? "directory" : "file",
299
+ childrenCount: isDir ? children.length : void 0
300
+ },
301
+ userId: entry.userId,
302
+ sessionId: entry.sessionId,
303
+ linkTo: entry.linkTo
304
+ } };
305
+ }
306
+ async delete(path, options) {
307
+ await this.ensureLoaded();
308
+ const normalizedPath = this.normalizePath(path);
309
+ const segments = this.getPathSegments(normalizedPath);
310
+ const value = this.getValueAtPath(this.jsonData, segments);
311
+ if (value === void 0) throw new Error(`Path not found: ${normalizedPath}`);
312
+ if (this.isDirectory(value) && this.getChildren(value).length > 0 && !options?.recursive) throw new Error(`Cannot delete directory '${normalizedPath}' without recursive option. Set recursive: true to delete directories.`);
313
+ this.deleteValueAtPath(this.jsonData, segments);
314
+ await this.saveToFile();
315
+ return { message: `Successfully deleted: ${normalizedPath}` };
316
+ }
317
+ async rename(oldPath, newPath, options) {
318
+ await this.ensureLoaded();
319
+ const normalizedOldPath = this.normalizePath(oldPath);
320
+ const normalizedNewPath = this.normalizePath(newPath);
321
+ const oldSegments = this.getPathSegments(normalizedOldPath);
322
+ const newSegments = this.getPathSegments(normalizedNewPath);
323
+ const oldValue = this.getValueAtPath(this.jsonData, oldSegments);
324
+ if (oldValue === void 0) throw new Error(`Source path not found: ${normalizedOldPath}`);
325
+ if (this.getValueAtPath(this.jsonData, newSegments) !== void 0 && !options?.overwrite) throw new Error(`Destination '${normalizedNewPath}' already exists. Set overwrite: true to replace it.`);
326
+ this.setValueAtPath(this.jsonData, newSegments, oldValue);
327
+ this.deleteValueAtPath(this.jsonData, oldSegments);
328
+ await this.saveToFile();
329
+ return { message: `Successfully renamed '${normalizedOldPath}' to '${normalizedNewPath}'` };
330
+ }
331
+ async search(path, query, options) {
332
+ await this.ensureLoaded();
333
+ const normalizedPath = this.normalizePath(path);
334
+ const limit = Math.min(options?.limit || LIST_MAX_LIMIT, LIST_MAX_LIMIT);
335
+ const caseSensitive = options?.caseSensitive ?? false;
336
+ const segments = this.getPathSegments(normalizedPath);
337
+ const rootValue = this.getValueAtPath(this.jsonData, segments);
338
+ if (rootValue === void 0) throw new Error(`Path not found: ${normalizedPath}`);
339
+ const entries = [];
340
+ const searchQuery = caseSensitive ? query : query.toLowerCase();
341
+ const searchInValue = (valuePath, value) => {
342
+ if (entries.length >= limit) return;
343
+ let matched = false;
344
+ if (!this.isDirectory(value)) {
345
+ const valueStr = typeof value === "string" ? value : JSON.stringify(value);
346
+ if ((caseSensitive ? valueStr : valueStr.toLowerCase()).includes(searchQuery)) matched = true;
347
+ }
348
+ if (matched) entries.push(this.valueToAFSEntry(valuePath, value));
349
+ if (this.isDirectory(value)) {
350
+ const children = this.getChildren(value);
351
+ for (const child of children) {
352
+ if (entries.length >= limit) break;
353
+ searchInValue(valuePath === "/" ? `/${child.key}` : `${valuePath}/${child.key}`, child.value);
354
+ }
355
+ }
356
+ };
357
+ searchInValue(normalizedPath, rootValue);
358
+ return {
359
+ data: entries,
360
+ message: entries.length >= limit ? `Results truncated to limit ${limit}` : void 0
361
+ };
362
+ }
363
+ };
364
+
365
+ //#endregion
366
+ exports.AFSJSON = AFSJSON;