@uipath/solution-tool 1.195.0 → 1.196.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.
- package/README.md +32 -0
- package/dist/deploy.js +5973 -5348
- package/dist/init.js +2922 -2718
- package/dist/models/pack-command-types.d.ts +6 -3
- package/dist/pack.js +143885 -170652
- package/dist/publish.js +6830 -4888
- package/dist/resource.js +4623 -4306
- 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/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/templates/AGENTS.md +11 -9
- package/dist/tool.js +10753 -73968
- 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,10 @@ export interface PackCommandOptions {
|
|
|
12
13
|
name?: string;
|
|
13
14
|
/** Package version (default: 1.0.0) */
|
|
14
15
|
version?: string;
|
|
15
|
-
/**
|
|
16
|
-
|
|
16
|
+
/** Package author (default: UiPath) */
|
|
17
|
+
author?: string;
|
|
18
|
+
/** Package description (default: Created by UiPath) */
|
|
19
|
+
description?: string;
|
|
17
20
|
/** Minimum minutes before token expiration to trigger a refresh (default: 10) */
|
|
18
21
|
loginValidity?: number;
|
|
19
22
|
/**
|