@agenticmail/core 0.9.21 → 0.9.22
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 +4 -4
- package/dist/index.d.ts +4 -4
- 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
|
|
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
|
|