@uipath/cli 1.196.2 → 1.197.0-preview.59
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 +5 -4
- package/dist/index.browser.js +2599 -0
- package/dist/index.js +27809 -26589
- package/package.json +8 -5
package/README.md
CHANGED
|
@@ -49,7 +49,8 @@ Authenticate with UiPath Cloud using interactive OAuth login.
|
|
|
49
49
|
- `--client-id <id>` - Custom Client ID
|
|
50
50
|
- `-s, --scope <scopes>` - Custom scopes (space separated)
|
|
51
51
|
- `-t, --tenant <name>` - Tenant name (non-interactive mode)
|
|
52
|
-
- `--
|
|
52
|
+
- `--interactive` - Force interactive tenant selection
|
|
53
|
+
- `--no-interactive` - Disable interactive prompts
|
|
53
54
|
|
|
54
55
|
**Examples:**
|
|
55
56
|
```bash
|
|
@@ -62,8 +63,8 @@ uip login -f /path/to/my-folder
|
|
|
62
63
|
# Login with specific tenant
|
|
63
64
|
uip login -t my-tenant-name
|
|
64
65
|
|
|
65
|
-
#
|
|
66
|
-
uip login --interactive
|
|
66
|
+
# Disable tenant picker prompts
|
|
67
|
+
uip login --no-interactive
|
|
67
68
|
```
|
|
68
69
|
|
|
69
70
|
**Authentication exit-code contract:**
|
|
@@ -394,7 +395,7 @@ After installing a new tool with `uip tools install`, you may need to restart yo
|
|
|
394
395
|
If you're having trouble logging in, try:
|
|
395
396
|
1. Check your internet connection
|
|
396
397
|
2. Verify your credentials
|
|
397
|
-
3.
|
|
398
|
+
3. Run `uip login` in a terminal to select a tenant, or pass `--tenant <name>`
|
|
398
399
|
|
|
399
400
|
## For Developers
|
|
400
401
|
|