@uipath/solutionpackager-tool-core 0.0.31 → 0.0.33
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.
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import type { ConnectionInfo } from "../models/connection-info.js";
|
|
2
2
|
import type { TargetFramework } from "../models/target-frameworks.js";
|
|
3
|
-
import type {
|
|
3
|
+
import type { UiPathProject } from "../models/uipath-project.js";
|
|
4
4
|
import type { IToolLogger } from "./tool-logger.js";
|
|
5
5
|
/**
|
|
6
|
-
* Context for a project operation, providing information about
|
|
6
|
+
* Context for a project operation, providing information about all projects involved
|
|
7
7
|
*/
|
|
8
8
|
export interface ProjectOperationContext {
|
|
9
9
|
/**
|
|
@@ -11,17 +11,18 @@ export interface ProjectOperationContext {
|
|
|
11
11
|
*/
|
|
12
12
|
id: string;
|
|
13
13
|
/**
|
|
14
|
-
*
|
|
14
|
+
* Projects involved in the operation
|
|
15
15
|
*/
|
|
16
|
-
|
|
16
|
+
projects: UiPathProject[];
|
|
17
17
|
/**
|
|
18
|
-
* URL to download the
|
|
18
|
+
* URL to download the snapshot for remote packing
|
|
19
19
|
*/
|
|
20
20
|
downloadUrl?: string;
|
|
21
21
|
/**
|
|
22
|
-
* Build configuration (e.g. "Debug", "Release")
|
|
22
|
+
* Build configuration (e.g. "Debug", "Release").
|
|
23
|
+
* Only used for pack operations; required when packing a solution.
|
|
23
24
|
*/
|
|
24
|
-
configuration
|
|
25
|
+
configuration?: string;
|
|
25
26
|
/**
|
|
26
27
|
* Target framework for the package
|
|
27
28
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uipath/solutionpackager-tool-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.33",
|
|
4
4
|
"description": "UiPath contracts for solution packager tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -19,6 +19,7 @@
|
|
|
19
19
|
"version:minor": "bun version minor --no-git-tag-version",
|
|
20
20
|
"version:major": "bun version major --no-git-tag-version",
|
|
21
21
|
"test": "vitest run",
|
|
22
|
+
"test:coverage": "vitest run --coverage",
|
|
22
23
|
"test:browser": "vitest run --config=vitest.browser.config.ts",
|
|
23
24
|
"lint": "biome check ."
|
|
24
25
|
},
|
|
@@ -45,7 +46,8 @@
|
|
|
45
46
|
"vitest": "^4.0.14"
|
|
46
47
|
},
|
|
47
48
|
"dependencies": {
|
|
48
|
-
"@uipath/filesystem": "0.
|
|
49
|
+
"@uipath/filesystem": "0.9.0",
|
|
49
50
|
"fflate": "^0.8.2"
|
|
50
|
-
}
|
|
51
|
+
},
|
|
52
|
+
"gitHead": "3f1b4d8e9f910be81e4cab956537f21dbd5d63ac"
|
|
51
53
|
}
|