@vention/vention-cli 0.10.0 → 0.10.2
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/README.md +2 -4
- package/cli.esm.js +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -51,12 +51,10 @@ vention --help # Show help
|
|
|
51
51
|
vention --version # Show version
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
-
- login: Authenticate
|
|
54
|
+
- login: Authenticate
|
|
55
55
|
```bash
|
|
56
56
|
vention login
|
|
57
|
-
#
|
|
58
|
-
# - prod: most users
|
|
59
|
-
# - demo: testing/sandboxes
|
|
57
|
+
# will open a browser window where you will be able to login to your Vention account
|
|
60
58
|
```
|
|
61
59
|
|
|
62
60
|
- pull: Fetch a MachineLogic Python app from your active design into the current directory
|
package/cli.esm.js
CHANGED
|
@@ -4274,13 +4274,13 @@ var z = /*#__PURE__*/Object.freeze({
|
|
|
4274
4274
|
const CONNECTED_APP_SSO_CONFIG = {
|
|
4275
4275
|
demo: {
|
|
4276
4276
|
clientId: "connected-app-test-b52f1837-a716-444c-9d17-a841cb0f4747",
|
|
4277
|
-
authorizeUrl: "https://vention.foo/
|
|
4277
|
+
authorizeUrl: "https://vention.foo/oauth2/authorize",
|
|
4278
4278
|
tokenUrl: "https://login.vention.foo/v1/public/project-test-a9ed68fb-5548-4344-ae3a-0242676d7f47/oauth2/token",
|
|
4279
4279
|
revokeUrl: "https://login.vention.foo/v1/oauth2/revoke",
|
|
4280
4280
|
},
|
|
4281
4281
|
prod: {
|
|
4282
4282
|
clientId: "connected-app-live-07043de1-9e9c-4511-8c6a-514a2a050da2",
|
|
4283
|
-
authorizeUrl: "https://vention.io/
|
|
4283
|
+
authorizeUrl: "https://vention.io/oauth2/authorize",
|
|
4284
4284
|
tokenUrl: "https://login.vention.io/v1/public/project-live-f81fdd2f-245c-4fec-943b-624ddef86b3b/oauth2/token",
|
|
4285
4285
|
revokeUrl: "https://login.vention.io/v1/oauth2/revoke",
|
|
4286
4286
|
},
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vention/vention-cli",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"description": "CLI tool for Vention applications",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"vn": "cli.esm.js"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"axios": "1.
|
|
20
|
+
"axios": "1.12.0",
|
|
21
21
|
"chalk": "4.1.2",
|
|
22
22
|
"commander": "14.0.0",
|
|
23
23
|
"@inquirer/prompts": "7.6.0"
|