agentdial 1.0.2 → 1.0.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/dist/lib/constants.d.ts +1 -1
- package/dist/lib/constants.js +1 -1
- package/package.json +1 -1
package/dist/lib/constants.d.ts
CHANGED
package/dist/lib/constants.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { homedir } from "node:os";
|
|
2
2
|
import { join } from "node:path";
|
|
3
|
-
export const VERSION = "1.0.
|
|
3
|
+
export const VERSION = "1.0.3";
|
|
4
4
|
export const CONFIG_DIR = join(homedir(), ".agentdial");
|
|
5
5
|
export const CONFIG_FILE = join(CONFIG_DIR, "config.json");
|
|
6
6
|
export const CREDENTIALS_DIR = join(CONFIG_DIR, "credentials");
|