@uipath/solution-tool 1.201.0-preview.133 → 1.202.0-preview.134
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/dist/deploy.d.ts +6 -1
- package/dist/deploy.js +15 -16
- package/dist/{index-2fj08e7n.js → index-gpd94m28.js} +27 -27
- package/dist/{index-w03qc9m8.js → index-sby22td6.js} +4 -4
- package/dist/index.js +16 -19
- package/dist/init.js +10 -13
- package/dist/{js-yaml-4ypbq2tt.js → js-yaml-b2jq67kn.js} +16 -16
- package/dist/{list-skbehtq2.js → list-3mrc9s3f.js} +7 -11
- package/dist/models/pack-command-types.d.ts +8 -0
- package/dist/pack.js +9 -12
- package/dist/{packager-tool-krd5v2r5.js → packager-tool-0qva0ebq.js} +129 -53
- package/dist/{packager-tool-0v6na3yp.js → packager-tool-1de529jm.js} +9 -7
- package/dist/{packager-tool-9vehmnke.js → packager-tool-3hbsdwjm.js} +6 -661
- package/dist/{packager-tool-fzwxq48d.js → packager-tool-3y92zbg2.js} +3 -3
- package/dist/{packager-tool-f7kj5fpa.js → packager-tool-5pfxgc8z.js} +19 -11
- package/dist/{packager-tool-9w3k4e77.js → packager-tool-b16qemg2.js} +494 -198
- package/dist/{packager-tool-zbp5p149.js → packager-tool-bahvrjbv.js} +592 -264
- package/dist/{packager-tool-129wn232.js → packager-tool-dfrk01gn.js} +198 -2
- package/dist/{packager-tool-67ssxgph.js → packager-tool-fh8pb2th.js} +3 -5
- package/dist/{packager-tool-c29pg93e.js → packager-tool-hc6ybtdw.js} +5 -5
- package/dist/{packager-tool-bcpknnr8.js → packager-tool-hgx66d1p.js} +1656 -558
- package/dist/{packager-tool-2yz7m5ny.js → packager-tool-nq2nq71y.js} +21282 -20197
- package/dist/{packager-tool-wjhn59ft.js → packager-tool-t89r1edr.js} +596 -180
- package/dist/{packager-tool-vpr77gre.js → packager-tool-x3ehbhsn.js} +3 -2
- package/dist/{packager-tool-yktm4v4r.js → packager-tool-xntjj1bt.js} +1 -1
- package/dist/packager-tool.d.ts +4 -3
- package/dist/packager-tool.js +4 -4
- package/dist/publish.js +8 -11
- package/dist/resource.js +7 -10
- package/dist/services/activation.d.ts +9 -1
- package/dist/services/deploy-run-service.d.ts +25 -1
- package/dist/services/deploy-uninstall-service.d.ts +20 -1
- package/dist/services/deploy-upgrade-service.d.ts +94 -0
- package/dist/services/deployment-feed-locator.d.ts +36 -0
- package/dist/services/deployment-search.d.ts +88 -7
- package/dist/services/pack-command-service.d.ts +15 -0
- package/dist/services/package-metadata-rewrite.d.ts +9 -5
- package/dist/services/publish-service.d.ts +11 -9
- package/dist/services/solution-path.d.ts +34 -0
- package/dist/templates/AGENTS.md +183 -16
- package/dist/tool.js +18 -21
- package/package.json +2 -2
- package/dist/browser-strategy-yccf8mtd.js +0 -99
- package/dist/node-strategy-12qfy0nv.js +0 -348
- package/dist/packager-tool-5arsyj36.js +0 -11
- package/dist/packager-tool-7eva0peq.js +0 -265
- package/dist/packager-tool-9qecd4wb.js +0 -14
package/dist/deploy.d.ts
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Public `@uipath/solution-tool/deploy` entry: the programmatic deployment
|
|
3
|
-
* surface for SDK consumers (e.g. the VS Code extension).
|
|
3
|
+
* surface for SDK consumers (e.g. the VS Code extension). Six operations
|
|
4
4
|
* under one subpath:
|
|
5
5
|
*
|
|
6
6
|
* - `deployRunAsync` — install + poll + optional auto-activate
|
|
7
7
|
* - `listDeploymentsAsync` — list recent deployments
|
|
8
8
|
* - `activateDeploymentAsync`— activate a previously-deployed solution
|
|
9
|
+
* - `upgradeDeploymentAsync` — queue an in-place upgrade to a newer version
|
|
10
|
+
* (preview, like its CLI verb; queuing alone does not guarantee execution
|
|
11
|
+
* — poll `listDeploymentsAsync` until the version changes)
|
|
9
12
|
* - `uninstallDeploymentAsync` — uninstall a deployed solution
|
|
10
13
|
* - `listPackagesAsync` — list published solution packages
|
|
11
14
|
*
|
|
@@ -23,5 +26,7 @@ export type { DeployFailure, DeployFailureReason, DeployOptions, DeployResult, D
|
|
|
23
26
|
export { deployRunAsync } from "./services/deploy-run-service";
|
|
24
27
|
export type { UninstallDeploymentFailure, UninstallDeploymentFailureReason, UninstallDeploymentOptions, UninstallDeploymentResult, UninstallDeploymentSuccess, } from "./services/deploy-uninstall-service";
|
|
25
28
|
export { uninstallDeploymentAsync } from "./services/deploy-uninstall-service";
|
|
29
|
+
export type { UpgradeDeploymentFailure, UpgradeDeploymentFailureReason, UpgradeDeploymentOptions, UpgradeDeploymentResult, UpgradeDeploymentSuccess, } from "./services/deploy-upgrade-service";
|
|
30
|
+
export { upgradeDeploymentAsync } from "./services/deploy-upgrade-service";
|
|
26
31
|
export type { ListPackagesFailure, ListPackagesFailureReason, ListPackagesOptions, ListPackagesResult, ListPackagesSuccess, PackageSummary, } from "./services/packages-list-service";
|
|
27
32
|
export { listPackagesAsync } from "./services/packages-list-service";
|
package/dist/deploy.js
CHANGED
|
@@ -3,23 +3,22 @@ import {
|
|
|
3
3
|
deployRunAsync,
|
|
4
4
|
listDeploymentsAsync,
|
|
5
5
|
listPackagesAsync,
|
|
6
|
-
uninstallDeploymentAsync
|
|
7
|
-
} from "./packager-tool-wjhn59ft.js";
|
|
8
|
-
import"./packager-tool-c29pg93e.js";
|
|
9
|
-
import"./packager-tool-9w3k4e77.js";
|
|
10
|
-
import"./packager-tool-fzwxq48d.js";
|
|
11
|
-
import"./packager-tool-bcpknnr8.js";
|
|
12
|
-
import"./packager-tool-9qecd4wb.js";
|
|
13
|
-
import"./packager-tool-7eva0peq.js";
|
|
14
|
-
import"./packager-tool-5arsyj36.js";
|
|
15
|
-
import"./packager-tool-129wn232.js";
|
|
16
|
-
import"./packager-tool-0v6na3yp.js";
|
|
17
|
-
export {
|
|
18
6
|
uninstallDeploymentAsync,
|
|
19
|
-
|
|
20
|
-
|
|
7
|
+
upgradeDeploymentAsync
|
|
8
|
+
} from "./packager-tool-t89r1edr.js";
|
|
9
|
+
import"./packager-tool-hc6ybtdw.js";
|
|
10
|
+
import"./packager-tool-b16qemg2.js";
|
|
11
|
+
import"./packager-tool-3y92zbg2.js";
|
|
12
|
+
import"./packager-tool-hgx66d1p.js";
|
|
13
|
+
import"./packager-tool-dfrk01gn.js";
|
|
14
|
+
import"./packager-tool-1de529jm.js";
|
|
15
|
+
export {
|
|
16
|
+
activateDeploymentAsync,
|
|
21
17
|
deployRunAsync,
|
|
22
|
-
|
|
18
|
+
listDeploymentsAsync,
|
|
19
|
+
listPackagesAsync,
|
|
20
|
+
uninstallDeploymentAsync,
|
|
21
|
+
upgradeDeploymentAsync
|
|
23
22
|
};
|
|
24
23
|
|
|
25
|
-
//# debugId=
|
|
24
|
+
//# debugId=A7B1879DDA94712A64756E2164756E21
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import"./packager-tool-
|
|
1
|
+
import"./packager-tool-1de529jm.js";
|
|
2
2
|
|
|
3
3
|
// ../../node_modules/@jmespath-community/jmespath/dist/index.mjs
|
|
4
4
|
var isObject = (obj) => {
|
|
@@ -2027,32 +2027,32 @@ var jmespath = {
|
|
|
2027
2027
|
TYPE_STRING
|
|
2028
2028
|
};
|
|
2029
2029
|
export {
|
|
2030
|
-
|
|
2031
|
-
tokenize,
|
|
2032
|
-
search,
|
|
2033
|
-
registerFunction,
|
|
2034
|
-
register,
|
|
2035
|
-
jmespath,
|
|
2036
|
-
isRegistered,
|
|
2037
|
-
getRegisteredFunctions,
|
|
2038
|
-
getCustomFunctions,
|
|
2039
|
-
jmespath as default,
|
|
2040
|
-
compile,
|
|
2041
|
-
clearCustomFunctions,
|
|
2042
|
-
TreeInterpreter2 as TreeInterpreter,
|
|
2043
|
-
TYPE_STRING,
|
|
2044
|
-
TYPE_OBJECT,
|
|
2045
|
-
TYPE_NUMBER,
|
|
2046
|
-
TYPE_NULL,
|
|
2047
|
-
TYPE_EXPREF,
|
|
2048
|
-
TYPE_BOOLEAN,
|
|
2049
|
-
TYPE_ARRAY_STRING,
|
|
2050
|
-
TYPE_ARRAY_OBJECT,
|
|
2051
|
-
TYPE_ARRAY_NUMBER,
|
|
2052
|
-
TYPE_ARRAY_ARRAY,
|
|
2053
|
-
TYPE_ARRAY,
|
|
2030
|
+
Scope,
|
|
2054
2031
|
TYPE_ANY,
|
|
2055
|
-
|
|
2032
|
+
TYPE_ARRAY,
|
|
2033
|
+
TYPE_ARRAY_ARRAY,
|
|
2034
|
+
TYPE_ARRAY_NUMBER,
|
|
2035
|
+
TYPE_ARRAY_OBJECT,
|
|
2036
|
+
TYPE_ARRAY_STRING,
|
|
2037
|
+
TYPE_BOOLEAN,
|
|
2038
|
+
TYPE_EXPREF,
|
|
2039
|
+
TYPE_NULL,
|
|
2040
|
+
TYPE_NUMBER,
|
|
2041
|
+
TYPE_OBJECT,
|
|
2042
|
+
TYPE_STRING,
|
|
2043
|
+
TreeInterpreter2 as TreeInterpreter,
|
|
2044
|
+
clearCustomFunctions,
|
|
2045
|
+
compile,
|
|
2046
|
+
jmespath as default,
|
|
2047
|
+
getCustomFunctions,
|
|
2048
|
+
getRegisteredFunctions,
|
|
2049
|
+
isRegistered,
|
|
2050
|
+
jmespath,
|
|
2051
|
+
register,
|
|
2052
|
+
registerFunction,
|
|
2053
|
+
search,
|
|
2054
|
+
tokenize,
|
|
2055
|
+
unregisterFunction
|
|
2056
2056
|
};
|
|
2057
2057
|
|
|
2058
|
-
//# debugId=
|
|
2058
|
+
//# debugId=046020B702C7051664756E2164756E21
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import"./packager-tool-
|
|
1
|
+
import"./packager-tool-1de529jm.js";
|
|
2
2
|
|
|
3
3
|
// ../../node_modules/open/index.js
|
|
4
4
|
import process7 from "node:process";
|
|
@@ -626,9 +626,9 @@ defineLazyProperty(apps, "safari", () => detectPlatformBinary({
|
|
|
626
626
|
}));
|
|
627
627
|
var open_default = open;
|
|
628
628
|
export {
|
|
629
|
-
|
|
629
|
+
apps,
|
|
630
630
|
open_default as default,
|
|
631
|
-
|
|
631
|
+
openApp
|
|
632
632
|
};
|
|
633
633
|
|
|
634
|
-
//# debugId=
|
|
634
|
+
//# debugId=42C9AEC59ECC644E64756E2164756E21
|
package/dist/index.js
CHANGED
|
@@ -2,26 +2,23 @@
|
|
|
2
2
|
import {
|
|
3
3
|
metadata,
|
|
4
4
|
registerCommands
|
|
5
|
-
} from "./packager-tool-
|
|
6
|
-
import"./packager-tool-
|
|
7
|
-
import"./packager-tool-
|
|
8
|
-
import"./packager-tool-
|
|
9
|
-
import"./packager-tool-
|
|
10
|
-
import"./packager-tool-
|
|
11
|
-
import"./packager-tool-
|
|
12
|
-
import"./packager-tool-
|
|
13
|
-
import"./packager-tool-
|
|
14
|
-
import"./packager-tool-
|
|
15
|
-
import"./packager-tool-
|
|
16
|
-
import"./packager-tool-
|
|
5
|
+
} from "./packager-tool-bahvrjbv.js";
|
|
6
|
+
import"./packager-tool-xntjj1bt.js";
|
|
7
|
+
import"./packager-tool-t89r1edr.js";
|
|
8
|
+
import"./packager-tool-fh8pb2th.js";
|
|
9
|
+
import"./packager-tool-nq2nq71y.js";
|
|
10
|
+
import"./packager-tool-3hbsdwjm.js";
|
|
11
|
+
import"./packager-tool-5pfxgc8z.js";
|
|
12
|
+
import"./packager-tool-hc6ybtdw.js";
|
|
13
|
+
import"./packager-tool-b16qemg2.js";
|
|
14
|
+
import"./packager-tool-0qva0ebq.js";
|
|
15
|
+
import"./packager-tool-x3ehbhsn.js";
|
|
16
|
+
import"./packager-tool-3y92zbg2.js";
|
|
17
17
|
import {
|
|
18
18
|
Command
|
|
19
|
-
} from "./packager-tool-
|
|
20
|
-
import"./packager-tool-
|
|
21
|
-
import"./packager-tool-
|
|
22
|
-
import"./packager-tool-5arsyj36.js";
|
|
23
|
-
import"./packager-tool-129wn232.js";
|
|
24
|
-
import"./packager-tool-0v6na3yp.js";
|
|
19
|
+
} from "./packager-tool-hgx66d1p.js";
|
|
20
|
+
import"./packager-tool-dfrk01gn.js";
|
|
21
|
+
import"./packager-tool-1de529jm.js";
|
|
25
22
|
|
|
26
23
|
// src/index.ts
|
|
27
24
|
var program = new Command;
|
|
@@ -29,4 +26,4 @@ program.name(metadata.commandPrefix).description(metadata.description).version(m
|
|
|
29
26
|
await registerCommands(program);
|
|
30
27
|
program.parse(process.argv);
|
|
31
28
|
|
|
32
|
-
//# debugId=
|
|
29
|
+
//# debugId=5F7005FD5BDBB7BC64756E2164756E21
|
package/dist/init.js
CHANGED
|
@@ -1,22 +1,19 @@
|
|
|
1
1
|
import {
|
|
2
2
|
SolutionInitError,
|
|
3
3
|
solutionInitAsync
|
|
4
|
-
} from "./packager-tool-
|
|
4
|
+
} from "./packager-tool-fh8pb2th.js";
|
|
5
5
|
import {
|
|
6
6
|
addProjectArtifactsToSolutionAsync
|
|
7
|
-
} from "./packager-tool-
|
|
8
|
-
import"./packager-tool-
|
|
9
|
-
import"./packager-tool-
|
|
10
|
-
import"./packager-tool-
|
|
11
|
-
import"./packager-tool-
|
|
12
|
-
import"./packager-tool-
|
|
13
|
-
import"./packager-tool-5arsyj36.js";
|
|
14
|
-
import"./packager-tool-129wn232.js";
|
|
15
|
-
import"./packager-tool-0v6na3yp.js";
|
|
7
|
+
} from "./packager-tool-0qva0ebq.js";
|
|
8
|
+
import"./packager-tool-x3ehbhsn.js";
|
|
9
|
+
import"./packager-tool-3y92zbg2.js";
|
|
10
|
+
import"./packager-tool-hgx66d1p.js";
|
|
11
|
+
import"./packager-tool-dfrk01gn.js";
|
|
12
|
+
import"./packager-tool-1de529jm.js";
|
|
16
13
|
export {
|
|
17
|
-
|
|
14
|
+
SolutionInitError,
|
|
18
15
|
addProjectArtifactsToSolutionAsync,
|
|
19
|
-
|
|
16
|
+
solutionInitAsync
|
|
20
17
|
};
|
|
21
18
|
|
|
22
|
-
//# debugId=
|
|
19
|
+
//# debugId=219A91969559D73864756E2164756E21
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import"./packager-tool-
|
|
1
|
+
import"./packager-tool-1de529jm.js";
|
|
2
2
|
|
|
3
3
|
// ../../node_modules/js-yaml/dist/js-yaml.mjs
|
|
4
4
|
function getDefaultExportFromCjs(x) {
|
|
@@ -3125,21 +3125,21 @@ var {
|
|
|
3125
3125
|
safeDump
|
|
3126
3126
|
} = yaml;
|
|
3127
3127
|
export {
|
|
3128
|
-
|
|
3129
|
-
safeLoadAll,
|
|
3130
|
-
safeLoad,
|
|
3131
|
-
safeDump,
|
|
3132
|
-
loadAll,
|
|
3133
|
-
load,
|
|
3134
|
-
dump,
|
|
3135
|
-
yaml as default,
|
|
3136
|
-
YAMLException,
|
|
3137
|
-
Type,
|
|
3138
|
-
Schema,
|
|
3139
|
-
JSON_SCHEMA,
|
|
3140
|
-
FAILSAFE_SCHEMA,
|
|
3128
|
+
CORE_SCHEMA,
|
|
3141
3129
|
DEFAULT_SCHEMA,
|
|
3142
|
-
|
|
3130
|
+
FAILSAFE_SCHEMA,
|
|
3131
|
+
JSON_SCHEMA,
|
|
3132
|
+
Schema,
|
|
3133
|
+
Type,
|
|
3134
|
+
YAMLException,
|
|
3135
|
+
yaml as default,
|
|
3136
|
+
dump,
|
|
3137
|
+
load,
|
|
3138
|
+
loadAll,
|
|
3139
|
+
safeDump,
|
|
3140
|
+
safeLoad,
|
|
3141
|
+
safeLoadAll,
|
|
3142
|
+
types
|
|
3143
3143
|
};
|
|
3144
3144
|
|
|
3145
|
-
//# debugId=
|
|
3145
|
+
//# debugId=3FF8535573D0966A64756E2164756E21
|
|
@@ -1,28 +1,24 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getStudioWebAuth,
|
|
3
3
|
useStudioWebAuth
|
|
4
|
-
} from "./packager-tool-
|
|
4
|
+
} from "./packager-tool-xntjj1bt.js";
|
|
5
5
|
import {
|
|
6
6
|
getStudioWebSolutionProjects,
|
|
7
7
|
listStudioWebSolutions
|
|
8
|
-
} from "./packager-tool-
|
|
8
|
+
} from "./packager-tool-b16qemg2.js";
|
|
9
9
|
import {
|
|
10
10
|
DEFAULT_PAGE_SIZE,
|
|
11
11
|
OutputFormatter,
|
|
12
12
|
Pagination,
|
|
13
13
|
RESULTS,
|
|
14
14
|
catchError,
|
|
15
|
+
getFileSystem,
|
|
15
16
|
parseBoundedInt,
|
|
16
17
|
parseOffset,
|
|
17
18
|
processContext
|
|
18
|
-
} from "./packager-tool-
|
|
19
|
-
import"./packager-tool-
|
|
20
|
-
import
|
|
21
|
-
getFileSystem
|
|
22
|
-
} from "./packager-tool-7eva0peq.js";
|
|
23
|
-
import"./packager-tool-5arsyj36.js";
|
|
24
|
-
import"./packager-tool-129wn232.js";
|
|
25
|
-
import"./packager-tool-0v6na3yp.js";
|
|
19
|
+
} from "./packager-tool-hgx66d1p.js";
|
|
20
|
+
import"./packager-tool-dfrk01gn.js";
|
|
21
|
+
import"./packager-tool-1de529jm.js";
|
|
26
22
|
|
|
27
23
|
// src/services/solution-list-service.ts
|
|
28
24
|
var fail = (message, instructions) => ({
|
|
@@ -375,4 +371,4 @@ export {
|
|
|
375
371
|
registerListCommand
|
|
376
372
|
};
|
|
377
373
|
|
|
378
|
-
//# debugId=
|
|
374
|
+
//# debugId=145455B7F7DD4BEE64756E2164756E21
|
|
@@ -28,6 +28,14 @@ export interface PackCommandOptions extends PackageMetadataFields {
|
|
|
28
28
|
* tenant's Orchestrator feeds, a NuGet.config XML is used as-is.
|
|
29
29
|
*/
|
|
30
30
|
nugetSourcesConfigPath?: string;
|
|
31
|
+
/**
|
|
32
|
+
* Resolve dependencies only from the feeds this command supplies — the
|
|
33
|
+
* session's Orchestrator feeds (or `feedFolder`) and
|
|
34
|
+
* `nugetSourcesConfigPath`. Drops the WorkflowCompiler's built-in feeds
|
|
35
|
+
* (nuget.org, UiPath-Official, Connect, internal) and its predefined local
|
|
36
|
+
* package folders.
|
|
37
|
+
*/
|
|
38
|
+
excludeConfiguredSources?: boolean;
|
|
31
39
|
/**
|
|
32
40
|
* Orchestrator folder whose library feed resolves this solution's project
|
|
33
41
|
* dependencies, instead of every accessible tenant library feed. Accepts a
|
package/dist/pack.js
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
1
|
import {
|
|
2
2
|
packSolutionAsync
|
|
3
|
-
} from "./packager-tool-
|
|
4
|
-
import"./packager-tool-
|
|
5
|
-
import"./packager-tool-
|
|
6
|
-
import"./packager-tool-
|
|
7
|
-
import"./packager-tool-
|
|
8
|
-
import"./packager-tool-
|
|
9
|
-
import"./packager-tool-
|
|
10
|
-
import"./packager-tool-
|
|
11
|
-
import"./packager-tool-5arsyj36.js";
|
|
12
|
-
import"./packager-tool-129wn232.js";
|
|
13
|
-
import"./packager-tool-0v6na3yp.js";
|
|
3
|
+
} from "./packager-tool-nq2nq71y.js";
|
|
4
|
+
import"./packager-tool-3hbsdwjm.js";
|
|
5
|
+
import"./packager-tool-0qva0ebq.js";
|
|
6
|
+
import"./packager-tool-x3ehbhsn.js";
|
|
7
|
+
import"./packager-tool-3y92zbg2.js";
|
|
8
|
+
import"./packager-tool-hgx66d1p.js";
|
|
9
|
+
import"./packager-tool-dfrk01gn.js";
|
|
10
|
+
import"./packager-tool-1de529jm.js";
|
|
14
11
|
export {
|
|
15
12
|
packSolutionAsync
|
|
16
13
|
};
|
|
17
14
|
|
|
18
|
-
//# debugId=
|
|
15
|
+
//# debugId=64B375CFEDA90EAF64756E2164756E21
|