@agentgrant.cash/cli 1.4.5 → 1.4.7
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/.env.example +1 -1
- package/dist/lib/config.js +4 -4
- package/package.json +1 -1
package/.env.example
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
# ── Money side (Perfolio backend — gold, portfolio, cash) ── [develop defaults]
|
|
15
15
|
GRANTCASH_API_URL=https://api-dev.perfolio.ai/api
|
|
16
16
|
GRANTCASH_FIAT_URL=https://api-dev-fiat.perfolio.ai/api
|
|
17
|
-
GRANTCASH_APP_URL=https://
|
|
17
|
+
GRANTCASH_APP_URL=https://agentgrant.cash
|
|
18
18
|
|
|
19
19
|
# ── Agent side (Agent-mode backend — pay-per-use services, x402) ── [develop]
|
|
20
20
|
GRANTCASH_AGENT_URL=https://agent-mode-backend-develop.up.railway.app
|
package/dist/lib/config.js
CHANGED
|
@@ -10,10 +10,10 @@ import { mkdirSync, readFileSync, writeFileSync, unlinkSync } from "node:fs";
|
|
|
10
10
|
*/
|
|
11
11
|
export function baseUrls(env = process.env) {
|
|
12
12
|
return {
|
|
13
|
-
api: env.GRANTCASH_API_URL || "https://api
|
|
14
|
-
fiat: env.GRANTCASH_FIAT_URL || "https://api-
|
|
15
|
-
app: env.GRANTCASH_APP_URL || "https://
|
|
16
|
-
agent: env.GRANTCASH_AGENT_URL || "https://agent-mode-backend-
|
|
13
|
+
api: env.GRANTCASH_API_URL || "https://api.perfolio.ai/api",
|
|
14
|
+
fiat: env.GRANTCASH_FIAT_URL || "https://api-fiat.perfolio.ai/api",
|
|
15
|
+
app: env.GRANTCASH_APP_URL || "https://agentgrant.cash",
|
|
16
|
+
agent: env.GRANTCASH_AGENT_URL || "https://agent-mode-backend-prod-merge.up.railway.app",
|
|
17
17
|
};
|
|
18
18
|
}
|
|
19
19
|
export function resolveCredsPath(flag, env = process.env) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agentgrant.cash/cli",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.7",
|
|
4
4
|
"description": "Grant Cash — one CLI for your money (gold) and your agent (pay-per-use services). Routes to the Perfolio backend and the Agent-mode backend behind a single, plain-language surface.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/lib/index.js",
|