@uipath/solution-tool 1.196.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.
@@ -13,10 +13,6 @@ export interface PackCommandOptions extends PackageMetadataFields {
13
13
  name?: string;
14
14
  /** Package version (default: 1.0.0) */
15
15
  version?: string;
16
- /** Package author (default: UiPath) */
17
- author?: string;
18
- /** Package description (default: Created by UiPath) */
19
- description?: string;
20
16
  /** Minimum minutes before token expiration to trigger a refresh (default: 10) */
21
17
  loginValidity?: number;
22
18
  /**
@@ -25,4 +21,13 @@ export interface PackCommandOptions extends PackageMetadataFields {
25
21
  * committing to a package build.
26
22
  */
27
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;
28
33
  }