@uipath/solution-tool 1.195.0 → 1.197.0-preview.59
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 +49 -0
- package/dist/deploy.js +6649 -7033
- package/dist/index.js +2 -0
- package/dist/init.js +2953 -4058
- package/dist/models/pack-command-types.d.ts +11 -3
- package/dist/pack.js +185534 -181922
- package/dist/publish.js +7209 -6302
- package/dist/resource.js +5614 -6071
- package/dist/services/auth-helper.d.ts +3 -0
- package/dist/services/deploy-activate-service.d.ts +2 -0
- package/dist/services/deploy-list-service.d.ts +2 -0
- package/dist/services/deploy-run-service.d.ts +22 -4
- package/dist/services/deploy-uninstall-service.d.ts +2 -0
- package/dist/services/folder-helper.d.ts +3 -0
- package/dist/services/pack-command-service.d.ts +0 -1
- package/dist/services/pack-service.d.ts +0 -10
- package/dist/services/packages-list-service.d.ts +2 -0
- package/dist/services/personal-workspace-deploy.d.ts +28 -0
- package/dist/services/personal-workspace-resolver.d.ts +1 -1
- package/dist/services/publish-service.d.ts +26 -8
- package/dist/services/resource-refresh-service.d.ts +3 -1
- package/dist/services/solution-packager-helpers.d.ts +25 -0
- package/dist/services/sync-resources-from-bindings.d.ts +8 -0
- package/dist/templates/AGENTS.md +25 -10
- package/dist/tool.js +54451 -98104
- package/package.json +2 -2
|
@@ -1,7 +1,8 @@
|
|
|
1
|
+
import type { PackageMetadataFields } from "@uipath/common";
|
|
1
2
|
/**
|
|
2
3
|
* Options for the PackCommandService
|
|
3
4
|
*/
|
|
4
|
-
export interface PackCommandOptions {
|
|
5
|
+
export interface PackCommandOptions extends PackageMetadataFields {
|
|
5
6
|
/**
|
|
6
7
|
* Output directory where the packed solution will be saved.
|
|
7
8
|
* Required for real packs; ignored in dry-run mode (a temp directory is
|
|
@@ -12,8 +13,6 @@ export interface PackCommandOptions {
|
|
|
12
13
|
name?: string;
|
|
13
14
|
/** Package version (default: 1.0.0) */
|
|
14
15
|
version?: string;
|
|
15
|
-
/** Release notes for the package */
|
|
16
|
-
releaseNotes?: string;
|
|
17
16
|
/** Minimum minutes before token expiration to trigger a refresh (default: 10) */
|
|
18
17
|
loginValidity?: number;
|
|
19
18
|
/**
|
|
@@ -22,4 +21,13 @@ export interface PackCommandOptions {
|
|
|
22
21
|
* committing to a package build.
|
|
23
22
|
*/
|
|
24
23
|
dryRun?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Path to a .pfx certificate. When set, each packed project .nupkg is
|
|
26
|
+
* signed with `dotnet nuget sign` before the solution .zip is assembled.
|
|
27
|
+
*/
|
|
28
|
+
signingCertificatePath?: string;
|
|
29
|
+
/** Password for the signing certificate. */
|
|
30
|
+
signingCertificatePassword?: string;
|
|
31
|
+
/** RFC 3161 timestamp server URL for the signature. */
|
|
32
|
+
signingTimestampServer?: string;
|
|
25
33
|
}
|