@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 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
- - `--it, --interactive` - Interactively select tenant from list
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
- # Interactive tenant selection
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. Use `uip login --interactive` to manually select your tenant
398
+ 3. Run `uip login` in a terminal to select a tenant, or pass `--tenant <name>`
398
399
 
399
400
  ## For Developers
400
401