@uipath/vertical-solutions-tool 0.1.7
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 +51 -0
- package/dist/index.js +285252 -0
- package/dist/tool.js +283061 -0
- package/package.json +58 -0
package/README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
# Vertical Solutions Tool
|
|
2
|
+
|
|
3
|
+
`uip` plugin for managing UiPath Vertical Solutions.
|
|
4
|
+
|
|
5
|
+
## Commands
|
|
6
|
+
|
|
7
|
+
### Init
|
|
8
|
+
|
|
9
|
+
Initialize a new vertical solution
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
uip vss init
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
### Scaffold
|
|
16
|
+
|
|
17
|
+
Scaffold a new vertical solution
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
uip vss scaffold
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
### Sync
|
|
24
|
+
|
|
25
|
+
Sync a vertical solution
|
|
26
|
+
|
|
27
|
+
```bash
|
|
28
|
+
uip vss sync
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
### Add
|
|
32
|
+
|
|
33
|
+
Add an entity, process or connection to your vertical solution
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
uip vss add <type> [path]
|
|
37
|
+
```
|
|
38
|
+
|
|
39
|
+
### Generate
|
|
40
|
+
|
|
41
|
+
Generate types for your vertical solution
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
uip vss generate
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Changes
|
|
48
|
+
|
|
49
|
+
### vss 0.0.1
|
|
50
|
+
|
|
51
|
+
- Initial release with `init`, `scaffold`, `sync`, `add`, and `generate` commands
|