@uipath/solution-tool 1.198.0 → 1.199.0-preview.105
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 +1 -1
- package/dist/commands/package-command-utils.d.ts +4 -0
- package/dist/commands/project-add.d.ts +2 -0
- package/dist/commands/project-import.d.ts +2 -0
- package/dist/commands/project-list.d.ts +2 -0
- package/dist/commands/project-publish.d.ts +2 -0
- package/dist/commands/project-remove.d.ts +2 -0
- package/dist/commands/project-resync.d.ts +2 -0
- package/dist/commands/project-utils.d.ts +60 -0
- package/dist/commands/project.d.ts +3 -0
- package/dist/deploy.js +99 -10
- package/dist/init.d.ts +8 -0
- package/dist/init.js +47610 -8921
- package/dist/models/pack-command-types.d.ts +7 -0
- package/dist/pack.js +43081 -29364
- package/dist/packager-tool.js +6 -4
- package/dist/providers/resource-builder-init.d.ts +1 -1
- package/dist/publish.js +13 -6
- package/dist/resource.js +557 -73
- package/dist/services/deploy-list-service.d.ts +24 -2
- package/dist/services/deploy-run-service.d.ts +6 -0
- package/dist/services/deployment-search.d.ts +9 -1
- package/dist/services/entry-point-spec-enhancer.d.ts +1 -1
- package/dist/services/local-resource-matcher.d.ts +27 -0
- package/dist/services/pack-command-service.d.ts +8 -0
- package/dist/services/project-artifacts-service.d.ts +34 -0
- package/dist/services/sync-resources-from-bindings.d.ts +1 -8
- package/dist/templates/AGENTS.md +7 -7
- package/dist/tool.js +75007 -74016
- package/dist/utils/option-parsers.d.ts +1 -0
- package/dist/utils/poll-result-handler.d.ts +11 -0
- package/package.json +2 -2
|
@@ -21,6 +21,13 @@ export interface PackCommandOptions extends PackageMetadataFields {
|
|
|
21
21
|
* committing to a package build.
|
|
22
22
|
*/
|
|
23
23
|
dryRun?: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* Path to a NuGet sources configuration file. Forwarded to the packager for
|
|
26
|
+
* every project in the solution. When set, it overrides the feeds resolved
|
|
27
|
+
* from the authenticated session; a JSON feeds file is merged with the
|
|
28
|
+
* tenant's Orchestrator feeds, a NuGet.config XML is used as-is.
|
|
29
|
+
*/
|
|
30
|
+
nugetSourcesConfigPath?: string;
|
|
24
31
|
/**
|
|
25
32
|
* Path to a .pfx certificate. When set, each packed project .nupkg is
|
|
26
33
|
* signed with `dotnet nuget sign` before the solution .zip is assembled.
|