@agenticmail/core 0.9.21 → 0.9.23
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/dist/index.cjs +3391 -3357
- package/dist/index.d.cts +5 -5
- package/dist/index.d.ts +5 -5
- package/dist/index.js +3391 -3357
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3792,14 +3792,14 @@ declare function debugWarn(tag: string, message: string): void;
|
|
|
3792
3792
|
* # Examples
|
|
3793
3793
|
*
|
|
3794
3794
|
* ```ts
|
|
3795
|
-
* // Safe: resolves to /home/
|
|
3796
|
-
* safeJoin('/home/
|
|
3795
|
+
* // Safe: resolves to /home/alice/.codex/agents/agenticmail-cli.toml
|
|
3796
|
+
* safeJoin('/home/alice/.codex/agents', 'agenticmail-cli.toml');
|
|
3797
3797
|
*
|
|
3798
3798
|
* // Throws: '../etc/passwd' resolves outside the base dir
|
|
3799
|
-
* safeJoin('/home/
|
|
3799
|
+
* safeJoin('/home/alice/.codex/agents', '../etc/passwd');
|
|
3800
3800
|
*
|
|
3801
3801
|
* // Throws: an absolute path bypasses the base dir
|
|
3802
|
-
* safeJoin('/home/
|
|
3802
|
+
* safeJoin('/home/alice/.codex/agents', '/etc/passwd');
|
|
3803
3803
|
* ```
|
|
3804
3804
|
*/
|
|
3805
3805
|
|
|
@@ -3930,7 +3930,7 @@ declare function redactObject<T>(input: T, _depth?: number): T;
|
|
|
3930
3930
|
* `~/.agenticmail/operator-prefs.json`:
|
|
3931
3931
|
*
|
|
3932
3932
|
* ```json
|
|
3933
|
-
* { "version": 1, "operatorEmail": "
|
|
3933
|
+
* { "version": 1, "operatorEmail": "you@example.com" }
|
|
3934
3934
|
* ```
|
|
3935
3935
|
*
|
|
3936
3936
|
* Atomic writes (tmp + rename), tolerant of missing / corrupt
|
package/dist/index.d.ts
CHANGED
|
@@ -3792,14 +3792,14 @@ declare function debugWarn(tag: string, message: string): void;
|
|
|
3792
3792
|
* # Examples
|
|
3793
3793
|
*
|
|
3794
3794
|
* ```ts
|
|
3795
|
-
* // Safe: resolves to /home/
|
|
3796
|
-
* safeJoin('/home/
|
|
3795
|
+
* // Safe: resolves to /home/alice/.codex/agents/agenticmail-cli.toml
|
|
3796
|
+
* safeJoin('/home/alice/.codex/agents', 'agenticmail-cli.toml');
|
|
3797
3797
|
*
|
|
3798
3798
|
* // Throws: '../etc/passwd' resolves outside the base dir
|
|
3799
|
-
* safeJoin('/home/
|
|
3799
|
+
* safeJoin('/home/alice/.codex/agents', '../etc/passwd');
|
|
3800
3800
|
*
|
|
3801
3801
|
* // Throws: an absolute path bypasses the base dir
|
|
3802
|
-
* safeJoin('/home/
|
|
3802
|
+
* safeJoin('/home/alice/.codex/agents', '/etc/passwd');
|
|
3803
3803
|
* ```
|
|
3804
3804
|
*/
|
|
3805
3805
|
|
|
@@ -3930,7 +3930,7 @@ declare function redactObject<T>(input: T, _depth?: number): T;
|
|
|
3930
3930
|
* `~/.agenticmail/operator-prefs.json`:
|
|
3931
3931
|
*
|
|
3932
3932
|
* ```json
|
|
3933
|
-
* { "version": 1, "operatorEmail": "
|
|
3933
|
+
* { "version": 1, "operatorEmail": "you@example.com" }
|
|
3934
3934
|
* ```
|
|
3935
3935
|
*
|
|
3936
3936
|
* Atomic writes (tmp + rename), tolerant of missing / corrupt
|