@uipath/orchestrator-tool 0.1.5
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 +29 -0
- package/dist/index.js +29036 -0
- package/dist/tool.js +26915 -0
- package/package.json +48 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# Orchestration Tool
|
|
2
|
+
|
|
3
|
+
`uip` plugin for managing UiPath Orchestrator resources.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
### Commands
|
|
8
|
+
|
|
9
|
+
**Folders:**
|
|
10
|
+
```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]
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
**Options:**
|
|
21
|
+
- `--format <format>` - Output format: table, json, yaml, plain (default: table)
|
|
22
|
+
- `--filter <filter>` - OData filter expression
|
|
23
|
+
- `--limit <number>` - Number of items to return
|
|
24
|
+
- `--offset <number>` - Number of items to skip
|
|
25
|
+
|
|
26
|
+
## Versions
|
|
27
|
+
|
|
28
|
+
### orchestrator-tool 0.0.1
|
|
29
|
+
- Added `folders` support
|