@uipath/orchestrator-tool 0.1.11 → 0.2.0

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.
Files changed (4) hide show
  1. package/README.md +32 -18
  2. package/dist/index.js +2146 -5
  3. package/dist/tool.js +34176 -9820
  4. package/package.json +5 -13
package/README.md CHANGED
@@ -1,29 +1,43 @@
1
- # Orchestration Tool
1
+ # Orchestrator Tool
2
2
 
3
- `uip` plugin for managing UiPath Orchestrator resources.
3
+ `uip` tool for managing UiPath Orchestrator resources.
4
4
 
5
5
  ## Usage
6
6
 
7
- ### Commands
7
+ ### Command Groups
8
+
9
+ | Group | Description |
10
+ |-------|-------------|
11
+ | `folders` | List, create, get, delete, move, edit folders |
12
+ | `jobs` | Start, stop, restart, resume, list, get jobs |
13
+ | `processes` | List, get, create, update-version, edit, rollback |
14
+ | `packages` | List, get, versions, entry-points, upload |
15
+ | `machines` | List, get, create, edit, delete, assign, unassign |
16
+ | `users` | List, get, create, delete, assign, edit, current |
17
+ | `roles` | List, get, create, edit, delete roles and permissions |
18
+ | `licenses` | List, toggle, info |
19
+ | `feeds` | List |
20
+ | `settings` | List, get, update, execution, timezones |
21
+ | `credential-stores` | List, get |
22
+ | `calendars` | List, get, create, update, delete |
23
+ | `attachments` | List, download |
24
+ | `audit-logs` | List |
25
+
26
+ ### Examples
8
27
 
9
- **Folders:**
10
28
  ```bash
11
- uip or folders list <tenant-name> [options]
12
- uip or folders create <tenant-name> <name> [options]
13
- uip or folders get <tenant-name> <id>
14
- uip or folders delete <tenant-name> <id>
15
- uip or folders move <tenant-name> <id> <targetParentId>
16
- uip or folders edit <tenant-name> <id> [options]
29
+ uip or folders list
30
+ uip or jobs start --process-name "MyProcess" --folder-path /Default
31
+ uip or processes list --folder-path /Default
32
+ uip or packages upload ./MyPackage.nupkg
33
+ uip or users list --folder-path /Default
17
34
  ```
18
35
 
36
+ ### Common Options
19
37
 
20
- **Options:**
21
- - `--output <format>` - Output format: table, json, yaml, plain (default: table)
22
- - `--filter <filter>` - OData filter expression
38
+ - `--output <format>` - Output format: table, json, yaml, csv, tsv (default: table)
39
+ - `--folder-path <path>` - Folder path for folder-scoped commands
40
+ - `--folder-key <key>` - Folder key for folder-scoped commands
41
+ - `-t, --tenant <name>` - Tenant name
23
42
  - `--limit <number>` - Number of items to return
24
43
  - `--offset <number>` - Number of items to skip
25
-
26
- ## Versions
27
-
28
- ### orchestrator-tool 0.0.1
29
- - Added `folders` support