@uipath/solution-tool 0.1.14 → 0.9.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 (3) hide show
  1. package/README.md +23 -21
  2. package/dist/tool.js +56817 -61231
  3. package/package.json +16 -14
package/README.md CHANGED
@@ -1,30 +1,32 @@
1
1
  # Solution Tool
2
2
 
3
- `uip` plugin for for managing UiPath Automation Solutions.
4
-
3
+ `uip` tool for managing UiPath Automation Solutions.
5
4
 
6
5
  ## Commands
7
6
 
8
- ### Upload
9
-
10
- Upload a solution package (zip file) to UiPath
11
-
12
- ```bash
13
- uip solution upload <package-path>
14
- ```
15
-
16
- ### Pack
17
-
18
- Pack a UiPath solution from a folder or .uis file
7
+ | Command | Description |
8
+ |---------|-------------|
9
+ | `pack` | Pack a UiPath solution |
10
+ | `publish` | Publish solution package |
11
+ | `new` | Create a new solution |
12
+ | `upload` | Upload a solution package |
13
+ | `deploy run` | Deploy solution to environment |
14
+ | `deploy status` | Check deployment status |
15
+ | `deploy activate` | Activate deployed solution |
16
+ | `deploy uninstall` | Remove solution |
17
+ | `deploy list` | List deployments |
18
+ | `deploy config get/set/link/unlink` | Manage deployment configuration |
19
+ | `project add/import/remove` | Manage projects within a solution |
20
+ | `packages list/delete` | Manage solution packages |
21
+
22
+ ### Examples
19
23
 
20
24
  ```bash
21
25
  uip solution pack <solutionPath>
26
+ uip solution publish <packagePath>
27
+ uip solution new --name MySolution
28
+ uip solution upload <packagePath>
29
+ uip solution deploy run --solution-name MySolution
30
+ uip solution deploy status --solution-name MySolution
31
+ uip solution project add --name MyProject
22
32
  ```
23
-
24
- ## Changes
25
-
26
- ### solution-tool 0.0.1
27
- - Added `upload` support
28
-
29
- ### solution-tool 0.0.2
30
- - Added `pack` command