sphereai-cli 1.0.7 → 1.0.9
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 +13 -0
- package/package.json +3 -2
package/.env
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Main API URL (for prompts and other resources after authentication)
|
|
2
|
+
#SPHEREAI_API_URL=https://localhost:5001
|
|
3
|
+
SPHEREAI_API_URL=https://api.develop.sphereai.nava.com.br
|
|
4
|
+
|
|
5
|
+
# CLI API URL (for key-based authentication)
|
|
6
|
+
SPHEREAI_CLI_API_URL=https://cli.api.develop.sphereai.nava.com.br
|
|
7
|
+
|
|
8
|
+
# OAuth2 URL (for legacy OAuth authentication)
|
|
9
|
+
SPHEREAI_AUTH_URL=http://localhost:3000/login?callback=http://localhost:3001/callback
|
|
10
|
+
SPHEREAI_OAUTH_CALLBACK_PORT=3001
|
|
11
|
+
|
|
12
|
+
# develop config
|
|
13
|
+
# NODE_TLS_REJECT_UNAUTHORIZED=0
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sphereai-cli",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"description": "CLI tool for interacting with the SphereAI API",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
"node": ">=14.0.0"
|
|
44
44
|
},
|
|
45
45
|
"files": [
|
|
46
|
-
"dist"
|
|
46
|
+
"dist",
|
|
47
|
+
".env"
|
|
47
48
|
]
|
|
48
49
|
}
|