@uipath/solution-tool 1.202.0-preview.134 → 1.202.0-preview.137

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.js CHANGED
@@ -5,11 +5,11 @@ import {
5
5
  listPackagesAsync,
6
6
  uninstallDeploymentAsync,
7
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";
8
+ } from "./packager-tool-8cw7djz6.js";
9
+ import"./packager-tool-m7vg7dwj.js";
10
+ import"./packager-tool-56b5tnnr.js";
11
+ import"./packager-tool-fjr8yn4g.js";
12
+ import"./packager-tool-sba5cptt.js";
13
13
  import"./packager-tool-dfrk01gn.js";
14
14
  import"./packager-tool-1de529jm.js";
15
15
  export {
package/dist/index.js CHANGED
@@ -2,21 +2,21 @@
2
2
  import {
3
3
  metadata,
4
4
  registerCommands
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";
5
+ } from "./packager-tool-kjjkk63a.js";
6
+ import"./packager-tool-vxthsps3.js";
7
+ import"./packager-tool-8cw7djz6.js";
8
+ import"./packager-tool-xfg2cveb.js";
9
+ import"./packager-tool-6d4e44g7.js";
10
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";
11
+ import"./packager-tool-zz9cxrqw.js";
12
+ import"./packager-tool-m7vg7dwj.js";
13
+ import"./packager-tool-56b5tnnr.js";
14
+ import"./packager-tool-n41f88jn.js";
15
15
  import"./packager-tool-x3ehbhsn.js";
16
- import"./packager-tool-3y92zbg2.js";
16
+ import"./packager-tool-fjr8yn4g.js";
17
17
  import {
18
18
  Command
19
- } from "./packager-tool-hgx66d1p.js";
19
+ } from "./packager-tool-sba5cptt.js";
20
20
  import"./packager-tool-dfrk01gn.js";
21
21
  import"./packager-tool-1de529jm.js";
22
22
 
package/dist/init.js CHANGED
@@ -1,13 +1,13 @@
1
1
  import {
2
2
  SolutionInitError,
3
3
  solutionInitAsync
4
- } from "./packager-tool-fh8pb2th.js";
4
+ } from "./packager-tool-xfg2cveb.js";
5
5
  import {
6
6
  addProjectArtifactsToSolutionAsync
7
- } from "./packager-tool-0qva0ebq.js";
7
+ } from "./packager-tool-n41f88jn.js";
8
8
  import"./packager-tool-x3ehbhsn.js";
9
- import"./packager-tool-3y92zbg2.js";
10
- import"./packager-tool-hgx66d1p.js";
9
+ import"./packager-tool-fjr8yn4g.js";
10
+ import"./packager-tool-sba5cptt.js";
11
11
  import"./packager-tool-dfrk01gn.js";
12
12
  import"./packager-tool-1de529jm.js";
13
13
  export {
@@ -1334,16 +1334,21 @@ function requireLoader() {
1334
1334
  state.result += _result;
1335
1335
  }
1336
1336
  }
1337
+ function chargeMergeWork(state) {
1338
+ state.totalMergeKeys++;
1339
+ if (state.maxTotalMergeKeys !== -1 && state.totalMergeKeys > state.maxTotalMergeKeys) {
1340
+ throwError(state, "merge keys exceeded maxTotalMergeKeys (" + state.maxTotalMergeKeys + ")");
1341
+ }
1342
+ }
1337
1343
  function mergeMappings(state, destination, source, overridableKeys) {
1338
1344
  if (!common2.isObject(source)) {
1339
1345
  throwError(state, "cannot merge mappings; the provided source object is unacceptable");
1340
1346
  }
1347
+ chargeMergeWork(state);
1341
1348
  const sourceKeys = Object.keys(source);
1342
1349
  for (let index = 0, quantity = sourceKeys.length;index < quantity; index += 1) {
1343
1350
  const key = sourceKeys[index];
1344
- if (state.maxTotalMergeKeys !== -1 && ++state.totalMergeKeys > state.maxTotalMergeKeys) {
1345
- throwError(state, "merge keys exceeded maxTotalMergeKeys (" + state.maxTotalMergeKeys + ")");
1346
- }
1351
+ chargeMergeWork(state);
1347
1352
  if (!_hasOwnProperty.call(destination, key)) {
1348
1353
  setProperty(destination, key, source[key]);
1349
1354
  overridableKeys[key] = true;
@@ -1371,6 +1376,9 @@ function requireLoader() {
1371
1376
  }
1372
1377
  if (keyTag === "tag:yaml.org,2002:merge") {
1373
1378
  if (Array.isArray(valueNode)) {
1379
+ if (valueNode.length > 100) {
1380
+ throwError(state, "abnormal merge sequence size");
1381
+ }
1374
1382
  for (let index = 0, quantity = valueNode.length;index < quantity; index += 1) {
1375
1383
  mergeMappings(state, _result, valueNode[index], overridableKeys);
1376
1384
  }
@@ -3142,4 +3150,4 @@ export {
3142
3150
  types
3143
3151
  };
3144
3152
 
3145
- //# debugId=3FF8535573D0966A64756E2164756E21
3153
+ //# debugId=9FA8E718B2F80BEA64756E2164756E21
@@ -1,11 +1,11 @@
1
1
  import {
2
2
  getStudioWebAuth,
3
3
  useStudioWebAuth
4
- } from "./packager-tool-xntjj1bt.js";
4
+ } from "./packager-tool-vxthsps3.js";
5
5
  import {
6
6
  getStudioWebSolutionProjects,
7
7
  listStudioWebSolutions
8
- } from "./packager-tool-b16qemg2.js";
8
+ } from "./packager-tool-56b5tnnr.js";
9
9
  import {
10
10
  DEFAULT_PAGE_SIZE,
11
11
  OutputFormatter,
@@ -16,7 +16,7 @@ import {
16
16
  parseBoundedInt,
17
17
  parseOffset,
18
18
  processContext
19
- } from "./packager-tool-hgx66d1p.js";
19
+ } from "./packager-tool-sba5cptt.js";
20
20
  import"./packager-tool-dfrk01gn.js";
21
21
  import"./packager-tool-1de529jm.js";
22
22
 
package/dist/pack.js CHANGED
@@ -1,11 +1,11 @@
1
1
  import {
2
2
  packSolutionAsync
3
- } from "./packager-tool-nq2nq71y.js";
3
+ } from "./packager-tool-6d4e44g7.js";
4
4
  import"./packager-tool-3hbsdwjm.js";
5
- import"./packager-tool-0qva0ebq.js";
5
+ import"./packager-tool-n41f88jn.js";
6
6
  import"./packager-tool-x3ehbhsn.js";
7
- import"./packager-tool-3y92zbg2.js";
8
- import"./packager-tool-hgx66d1p.js";
7
+ import"./packager-tool-fjr8yn4g.js";
8
+ import"./packager-tool-sba5cptt.js";
9
9
  import"./packager-tool-dfrk01gn.js";
10
10
  import"./packager-tool-1de529jm.js";
11
11
  export {
@@ -5,7 +5,7 @@ import {
5
5
  installSdkUserAgentHeader,
6
6
  logger,
7
7
  readUipxFile
8
- } from "./packager-tool-hgx66d1p.js";
8
+ } from "./packager-tool-sba5cptt.js";
9
9
  import {
10
10
  zipSync
11
11
  } from "./packager-tool-dfrk01gn.js";
@@ -3103,7 +3103,7 @@ async function listStudioWebSolutions(config, organizationName, options = {}) {
3103
3103
  var package_default = {
3104
3104
  name: "@uipath/solution-sdk",
3105
3105
  license: "MIT",
3106
- version: "1.202.0-preview.134",
3106
+ version: "1.202.0-preview.137",
3107
3107
  repository: {
3108
3108
  type: "git",
3109
3109
  url: "https://github.com/UiPath/cli.git",
@@ -3394,4 +3394,4 @@ async function searchPackageVersions(config, packageKey, filter, feedFolderKey)
3394
3394
  }
3395
3395
  export { Configuration, getAvailablePublishLocationsV2, DeploymentActivationStatus, DeploymentOperationStatus, SolutionDeploymentAction, DeploymentsApi, PackagesApi, SearchApi, StudioWebIncompatibleProjectError, bundleSolution, deploymentsAutoInstall, isDebugProvisioningTerminal, isDebugProvisioningSucceeded, getProjectDebugStatus, searchPackageVersions, getStudioWebSolutionProjects, listStudioWebSolutions, solutionExistsOnStudioWeb, importSolution, overwriteSolution };
3396
3396
 
3397
- //# debugId=696F8E3EF0A1226664756E2164756E21
3397
+ //# debugId=1DF7E23CF3FEEFE764756E2164756E21
@@ -23,7 +23,7 @@ import {
23
23
  models_BindingsResourceType,
24
24
  readUipxProjects,
25
25
  syncAndLog
26
- } from "./packager-tool-0qva0ebq.js";
26
+ } from "./packager-tool-n41f88jn.js";
27
27
  import {
28
28
  ToolResult as ToolResult2,
29
29
  toolsFactoryRepository as toolsFactoryRepository2
@@ -39,7 +39,7 @@ import {
39
39
  logger,
40
40
  telemetry,
41
41
  unsupportedSolutionProjectType
42
- } from "./packager-tool-hgx66d1p.js";
42
+ } from "./packager-tool-sba5cptt.js";
43
43
 
44
44
  // ../filesystem/dist/index.js
45
45
  import fs from "node:fs";
@@ -24191,7 +24191,7 @@ var sdkUserAgentHostToken2 = singleton2("SdkUserAgentHostToken");
24191
24191
  var package_default = {
24192
24192
  name: "@uipath/project-packager",
24193
24193
  license: "MIT",
24194
- version: "1.202.0-preview.134",
24194
+ version: "1.202.0-preview.137",
24195
24195
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
24196
24196
  type: "module",
24197
24197
  main: "./dist/index.js",
@@ -24253,11 +24253,11 @@ var package_default = {
24253
24253
  "@uipath/packager-tool-functions": "workspace:*",
24254
24254
  "@uipath/packager-tool-webapp": "workspace:*",
24255
24255
  "@uipath/packager-tool-workflowcompiler": "workspace:*",
24256
- "@vitest/coverage-v8": "^4.1.6",
24256
+ "@vitest/coverage-v8": "^4.1.11",
24257
24257
  jsdom: "^30.0.1",
24258
24258
  typescript: "^7.0.2",
24259
24259
  "vite-tsconfig-paths": "^6.1.1",
24260
- vitest: "^4.1.6"
24260
+ vitest: "^4.1.11"
24261
24261
  }
24262
24262
  };
24263
24263
  var SDK_USER_AGENT = `${package_default.name.replace(/^@uipath\//, "")}/${package_default.version}`;
@@ -27928,16 +27928,21 @@ function requireLoader() {
27928
27928
  state.result += _result;
27929
27929
  }
27930
27930
  }
27931
+ function chargeMergeWork(state) {
27932
+ state.totalMergeKeys++;
27933
+ if (state.maxTotalMergeKeys !== -1 && state.totalMergeKeys > state.maxTotalMergeKeys) {
27934
+ throwError(state, "merge keys exceeded maxTotalMergeKeys (" + state.maxTotalMergeKeys + ")");
27935
+ }
27936
+ }
27931
27937
  function mergeMappings(state, destination, source, overridableKeys) {
27932
27938
  if (!common2.isObject(source)) {
27933
27939
  throwError(state, "cannot merge mappings; the provided source object is unacceptable");
27934
27940
  }
27941
+ chargeMergeWork(state);
27935
27942
  const sourceKeys = Object.keys(source);
27936
27943
  for (let index = 0, quantity = sourceKeys.length;index < quantity; index += 1) {
27937
27944
  const key = sourceKeys[index];
27938
- if (state.maxTotalMergeKeys !== -1 && ++state.totalMergeKeys > state.maxTotalMergeKeys) {
27939
- throwError(state, "merge keys exceeded maxTotalMergeKeys (" + state.maxTotalMergeKeys + ")");
27940
- }
27945
+ chargeMergeWork(state);
27941
27946
  if (!_hasOwnProperty.call(destination, key)) {
27942
27947
  setProperty(destination, key, source[key]);
27943
27948
  overridableKeys[key] = true;
@@ -27965,6 +27970,9 @@ function requireLoader() {
27965
27970
  }
27966
27971
  if (keyTag === "tag:yaml.org,2002:merge") {
27967
27972
  if (Array.isArray(valueNode)) {
27973
+ if (valueNode.length > 100) {
27974
+ throwError(state, "abnormal merge sequence size");
27975
+ }
27968
27976
  for (let index = 0, quantity = valueNode.length;index < quantity; index += 1) {
27969
27977
  mergeMappings(state, _result, valueNode[index], overridableKeys);
27970
27978
  }
@@ -35824,6 +35832,14 @@ var RETRY_HINTS = [
35824
35832
  "RetryAfter30Seconds",
35825
35833
  "RetryAfter60Seconds"
35826
35834
  ];
35835
+ var CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
35836
+ var RETRY_HINT_VALUES = new Set(RETRY_HINTS);
35837
+ function isCliErrorCode(value) {
35838
+ return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
35839
+ }
35840
+ function isRetryHint(value) {
35841
+ return typeof value === "string" && RETRY_HINT_VALUES.has(value);
35842
+ }
35827
35843
  var RESULTS2 = {
35828
35844
  Success: "Success",
35829
35845
  Failure: "Failure",
@@ -36615,8 +36631,6 @@ function emitInvocationRequest(name, success, properties) {
36615
36631
  }
36616
36632
  }
36617
36633
  var pollSignalSlot = singleton3("PollSignal");
36618
- var cliErrorCodeValues = new Set(CLI_ERROR_CODES);
36619
- var retryHintValues = new Set(RETRY_HINTS);
36620
36634
  var TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.";
36621
36635
  var TELEMETRY_ARG_VALUE_WITHHELD = "<provided>";
36622
36636
  var TELEMETRY_ARG_VALUE_DEFAULTED = "<default>";
@@ -36695,12 +36709,6 @@ function deriveCommandPath(cmd) {
36695
36709
  }
36696
36710
  return commandTelemetryName(parts);
36697
36711
  }
36698
- function isCliErrorCode(value) {
36699
- return typeof value === "string" && cliErrorCodeValues.has(value);
36700
- }
36701
- function isRetryHint(value) {
36702
- return typeof value === "string" && retryHintValues.has(value);
36703
- }
36704
36712
  function isErrorContext(value) {
36705
36713
  return value !== null && typeof value === "object";
36706
36714
  }
@@ -37326,7 +37334,7 @@ var sdkUserAgentHostToken22 = singleton22("SdkUserAgentHostToken");
37326
37334
  var package_default2 = {
37327
37335
  name: "@uipath/project-packager",
37328
37336
  license: "MIT",
37329
- version: "1.202.0-preview.134",
37337
+ version: "1.202.0-preview.137",
37330
37338
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
37331
37339
  type: "module",
37332
37340
  main: "./dist/index.js",
@@ -37388,11 +37396,11 @@ var package_default2 = {
37388
37396
  "@uipath/packager-tool-functions": "workspace:*",
37389
37397
  "@uipath/packager-tool-webapp": "workspace:*",
37390
37398
  "@uipath/packager-tool-workflowcompiler": "workspace:*",
37391
- "@vitest/coverage-v8": "^4.1.6",
37399
+ "@vitest/coverage-v8": "^4.1.11",
37392
37400
  jsdom: "^30.0.1",
37393
37401
  typescript: "^7.0.2",
37394
37402
  "vite-tsconfig-paths": "^6.1.1",
37395
- vitest: "^4.1.6"
37403
+ vitest: "^4.1.11"
37396
37404
  }
37397
37405
  };
37398
37406
  var SDK_USER_AGENT2 = `${package_default2.name.replace(/^@uipath\//, "")}/${package_default2.version}`;
@@ -39409,4 +39417,4 @@ async function packSolutionAsync(solutionPath, options) {
39409
39417
 
39410
39418
  export { SolutionPackOptions, ensurePackagerTools, createSolutionPackager, readSolutionFileAsUint8Array, resolveSdkLogLevel, applyAuthConnection, SOLUTION_PATH_INSTRUCTIONS, checkSolutionPathAsync, GOVERNANCE_OPTION_INSTRUCTIONS, validateGovernanceOptions, PackCommandService, packSolutionAsync };
39411
39419
 
39412
- //# debugId=8665F4C75C06E42264756E2164756E21
39420
+ //# debugId=57C636C235AB2E9564756E2164756E21
@@ -7,7 +7,7 @@ import {
7
7
  listSelectablePublishLocations,
8
8
  resolveFeedScope,
9
9
  resolvePersonalWorkspace
10
- } from "./packager-tool-hc6ybtdw.js";
10
+ } from "./packager-tool-m7vg7dwj.js";
11
11
  import {
12
12
  Configuration as Configuration2,
13
13
  DeploymentOperationStatus,
@@ -16,11 +16,11 @@ import {
16
16
  SolutionDeploymentAction,
17
17
  deploymentsAutoInstall,
18
18
  searchPackageVersions
19
- } from "./packager-tool-b16qemg2.js";
19
+ } from "./packager-tool-56b5tnnr.js";
20
20
  import {
21
21
  getSolutionAuthContext,
22
22
  resolveFolder
23
- } from "./packager-tool-3y92zbg2.js";
23
+ } from "./packager-tool-fjr8yn4g.js";
24
24
  import {
25
25
  DEFAULT_PAGE_SIZE,
26
26
  PollOutcome,
@@ -31,7 +31,7 @@ import {
31
31
  mapPollFailure,
32
32
  pollUntil,
33
33
  processContext
34
- } from "./packager-tool-hgx66d1p.js";
34
+ } from "./packager-tool-sba5cptt.js";
35
35
  import {
36
36
  __commonJS,
37
37
  __require
@@ -3,7 +3,7 @@ import {
3
3
  getAuthContext,
4
4
  getSdkUserAgentToken,
5
5
  installSdkUserAgentHeader
6
- } from "./packager-tool-hgx66d1p.js";
6
+ } from "./packager-tool-sba5cptt.js";
7
7
 
8
8
  // ../solution-sdk/src/solution-auth.ts
9
9
  async function getSolutionAuthContext(options) {
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  getStudioWebAuthWithOrganizationId,
3
3
  useStudioWebAuth
4
- } from "./packager-tool-xntjj1bt.js";
4
+ } from "./packager-tool-vxthsps3.js";
5
5
  import {
6
6
  activateDeploymentAsync,
7
7
  deployRunAsync,
@@ -11,11 +11,11 @@ import {
11
11
  listPackagesAsync,
12
12
  uninstallDeploymentAsync,
13
13
  upgradeDeploymentAsync
14
- } from "./packager-tool-t89r1edr.js";
14
+ } from "./packager-tool-8cw7djz6.js";
15
15
  import {
16
16
  SolutionInitError,
17
17
  solutionInitAsync
18
- } from "./packager-tool-fh8pb2th.js";
18
+ } from "./packager-tool-xfg2cveb.js";
19
19
  import {
20
20
  GOVERNANCE_OPTION_INSTRUCTIONS,
21
21
  PackCommandService,
@@ -29,10 +29,10 @@ import {
29
29
  readSolutionFileAsUint8Array,
30
30
  resolveSdkLogLevel,
31
31
  validateGovernanceOptions
32
- } from "./packager-tool-nq2nq71y.js";
32
+ } from "./packager-tool-6d4e44g7.js";
33
33
  import {
34
34
  publishSolutionAsync
35
- } from "./packager-tool-5pfxgc8z.js";
35
+ } from "./packager-tool-zz9cxrqw.js";
36
36
  import {
37
37
  Configuration,
38
38
  PipelinesApi,
@@ -40,7 +40,7 @@ import {
40
40
  feedScopeInitOverride,
41
41
  listSelectablePublishLocations,
42
42
  resolveFeedScope
43
- } from "./packager-tool-hc6ybtdw.js";
43
+ } from "./packager-tool-m7vg7dwj.js";
44
44
  import {
45
45
  Configuration as Configuration2,
46
46
  DeploymentActivationStatus,
@@ -56,7 +56,7 @@ import {
56
56
  overwriteSolution,
57
57
  searchPackageVersions,
58
58
  solutionExistsOnStudioWeb
59
- } from "./packager-tool-b16qemg2.js";
59
+ } from "./packager-tool-56b5tnnr.js";
60
60
  import {
61
61
  Tokens,
62
62
  applyEntryPointEnhancementAsync,
@@ -78,13 +78,13 @@ import {
78
78
  syncAndLog,
79
79
  syncResourcesFromBindings,
80
80
  writeSolutionFile
81
- } from "./packager-tool-0qva0ebq.js";
81
+ } from "./packager-tool-n41f88jn.js";
82
82
  import {
83
83
  ToolResult
84
84
  } from "./packager-tool-x3ehbhsn.js";
85
85
  import {
86
86
  getSolutionAuthContext
87
- } from "./packager-tool-3y92zbg2.js";
87
+ } from "./packager-tool-fjr8yn4g.js";
88
88
  import {
89
89
  DEFAULT_PAGE_SIZE,
90
90
  Option,
@@ -117,7 +117,7 @@ import {
117
117
  unsupportedSolutionProjectType,
118
118
  updateUipxSolutionId,
119
119
  withCompleter
120
- } from "./packager-tool-hgx66d1p.js";
120
+ } from "./packager-tool-sba5cptt.js";
121
121
  import {
122
122
  strFromU8,
123
123
  unzip,
@@ -130,7 +130,7 @@ import {
130
130
  var package_default = {
131
131
  name: "@uipath/solution-tool",
132
132
  license: "MIT",
133
- version: "1.202.0-preview.134",
133
+ version: "1.202.0-preview.137",
134
134
  description: "Create, pack, publish, and deploy UiPath Automation Solutions.",
135
135
  repository: {
136
136
  type: "git",
@@ -6055,7 +6055,7 @@ var registerCommands = async (program) => {
6055
6055
  registerResourceCommand(program);
6056
6056
  registerDeleteCommand(program);
6057
6057
  if (isPreviewBuild()) {
6058
- const { registerListCommand } = await import("./list-3mrc9s3f.js");
6058
+ const { registerListCommand } = await import("./list-484rd8hx.js");
6059
6059
  registerListCommand(program);
6060
6060
  }
6061
6061
  registerFeedsCommand(program);
@@ -6063,4 +6063,4 @@ var registerCommands = async (program) => {
6063
6063
 
6064
6064
  export { metadata, registerCommands };
6065
6065
 
6066
- //# debugId=58375CF8CAC8E11064756E2164756E21
6066
+ //# debugId=53AC8396C5EA789164756E2164756E21
@@ -1,15 +1,15 @@
1
1
  import {
2
2
  getAvailablePublishLocationsV2
3
- } from "./packager-tool-b16qemg2.js";
3
+ } from "./packager-tool-56b5tnnr.js";
4
4
  import {
5
5
  PersonalWorkspacesApi,
6
6
  createOrchestratorConfig
7
- } from "./packager-tool-3y92zbg2.js";
7
+ } from "./packager-tool-fjr8yn4g.js";
8
8
  import {
9
9
  getLoginStatusAsync,
10
10
  getSdkUserAgentToken,
11
11
  installSdkUserAgentHeader
12
- } from "./packager-tool-hgx66d1p.js";
12
+ } from "./packager-tool-sba5cptt.js";
13
13
 
14
14
  // ../pipelines-sdk/generated/src/runtime.ts
15
15
  var BASE_PATH = "https://alpha.uipath.com/uipattycyrhx/abizon_1/automationsolutions_".replace(/\/+$/, "");
@@ -2,7 +2,7 @@ import {
2
2
  UsersApi,
3
3
  createApiClient,
4
4
  getSolutionAuthContext
5
- } from "./packager-tool-3y92zbg2.js";
5
+ } from "./packager-tool-fjr8yn4g.js";
6
6
  import {
7
7
  catchError,
8
8
  extractErrorMessage,
@@ -12,7 +12,7 @@ import {
12
12
  isGuid,
13
13
  logger,
14
14
  normalizeProjectType
15
- } from "./packager-tool-hgx66d1p.js";
15
+ } from "./packager-tool-sba5cptt.js";
16
16
  import {
17
17
  __commonJS,
18
18
  __toESM
@@ -3089,7 +3089,7 @@ var jmespathSlot = singleton("JmespathCodec");
3089
3089
  async function loadOutputCodecsAsync(needed) {
3090
3090
  const loads = [];
3091
3091
  if (needed.yaml && yamlSlot.get() === undefined) {
3092
- loads.push(import("./js-yaml-b2jq67kn.js").then((mod) => {
3092
+ loads.push(import("./js-yaml-88tdqrtd.js").then((mod) => {
3093
3093
  yamlSlot.set(mod);
3094
3094
  }));
3095
3095
  }
@@ -3994,6 +3994,14 @@ var RETRY_HINTS = [
3994
3994
  "RetryAfter30Seconds",
3995
3995
  "RetryAfter60Seconds"
3996
3996
  ];
3997
+ var CLI_ERROR_CODE_VALUES = new Set(CLI_ERROR_CODES);
3998
+ var RETRY_HINT_VALUES = new Set(RETRY_HINTS);
3999
+ function isCliErrorCode(value) {
4000
+ return typeof value === "string" && CLI_ERROR_CODE_VALUES.has(value);
4001
+ }
4002
+ function isRetryHint(value) {
4003
+ return typeof value === "string" && RETRY_HINT_VALUES.has(value);
4004
+ }
3997
4005
  var RESULTS = {
3998
4006
  Success: "Success",
3999
4007
  Failure: "Failure",
@@ -4825,8 +4833,6 @@ function emitInvocationRequest(name, success, properties) {
4825
4833
 
4826
4834
  // ../common/src/trackedAction.ts
4827
4835
  var pollSignalSlot = singleton("PollSignal");
4828
- var cliErrorCodeValues = new Set(CLI_ERROR_CODES);
4829
- var retryHintValues = new Set(RETRY_HINTS);
4830
4836
  var TELEMETRY_COMMAND_ARG_PREFIX = "uip.cmd.arg.";
4831
4837
  var processContext = {
4832
4838
  exit: (code) => {
@@ -4914,12 +4920,6 @@ function deriveCommandPath(cmd) {
4914
4920
  }
4915
4921
  return commandTelemetryName(parts);
4916
4922
  }
4917
- function isCliErrorCode(value) {
4918
- return typeof value === "string" && cliErrorCodeValues.has(value);
4919
- }
4920
- function isRetryHint(value) {
4921
- return typeof value === "string" && retryHintValues.has(value);
4922
- }
4923
4923
  function isErrorContext(value) {
4924
4924
  return value !== null && typeof value === "object";
4925
4925
  }
@@ -7819,4 +7819,4 @@ async function findSolutionFileUpward(fs2, startDir) {
7819
7819
 
7820
7820
  export { getFileSystem, catchError, carriedInstructions, extractErrorDetails, extractErrorMessage, logger, telemetry, RESULTS, Pagination, OutputFormatter, Command, Option, isPreviewBuild, processContext, withCompleter, requireConfirmation, DEFAULT_PAGE_SIZE, resolveEnvReference, isGuid, createHiddenDeprecatedTenantOption, parseLimit, parseOffset, parseBoundedInt, registerPackageMetadataOptions, mapPackageMetadataOptions, PollOutcome, mapPollFailure, pollUntil, getSdkUserAgentToken, addSdkUserAgentHeader, installSdkUserAgentHeader, unsupportedSolutionProjectType, trackShipSucceeded, ensurePackagerFactory, getLoginStatusAsync, getAuthContext, normalizeProjectType, toPortableRelativePath, readUipxFile, resolveSolutionDir, updateUipxSolutionId, findSolutionFileUpward };
7821
7821
 
7822
- //# debugId=59C0F4CE1FDC114C64756E2164756E21
7822
+ //# debugId=62C28FF18B08C6A164756E2164756E21
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  catchError,
3
3
  getAuthContext
4
- } from "./packager-tool-hgx66d1p.js";
4
+ } from "./packager-tool-sba5cptt.js";
5
5
 
6
6
  // src/services/studio-web-auth-middleware.ts
7
7
  var studioWebAuthByCommand = new WeakMap;
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  catchError,
3
3
  getFileSystem
4
- } from "./packager-tool-hgx66d1p.js";
4
+ } from "./packager-tool-sba5cptt.js";
5
5
 
6
6
  // src/services/solution-init-service.ts
7
7
  var AGENTS_FILENAME = "AGENTS.md";
@@ -3,14 +3,14 @@ import {
3
3
  PipelinesApi,
4
4
  feedScopeInitOverride,
5
5
  resolveFeedScope
6
- } from "./packager-tool-hc6ybtdw.js";
6
+ } from "./packager-tool-m7vg7dwj.js";
7
7
  import {
8
8
  Configuration as Configuration2,
9
9
  PackagesApi
10
- } from "./packager-tool-b16qemg2.js";
10
+ } from "./packager-tool-56b5tnnr.js";
11
11
  import {
12
12
  getSolutionAuthContext
13
- } from "./packager-tool-3y92zbg2.js";
13
+ } from "./packager-tool-fjr8yn4g.js";
14
14
  import {
15
15
  PollOutcome,
16
16
  catchError,
@@ -19,7 +19,7 @@ import {
19
19
  logger,
20
20
  mapPollFailure,
21
21
  pollUntil
22
- } from "./packager-tool-hgx66d1p.js";
22
+ } from "./packager-tool-sba5cptt.js";
23
23
  import {
24
24
  strFromU8,
25
25
  strToU8,
package/dist/publish.js CHANGED
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  publishSolutionAsync
3
- } from "./packager-tool-5pfxgc8z.js";
4
- import"./packager-tool-hc6ybtdw.js";
5
- import"./packager-tool-b16qemg2.js";
6
- import"./packager-tool-3y92zbg2.js";
7
- import"./packager-tool-hgx66d1p.js";
3
+ } from "./packager-tool-zz9cxrqw.js";
4
+ import"./packager-tool-m7vg7dwj.js";
5
+ import"./packager-tool-56b5tnnr.js";
6
+ import"./packager-tool-fjr8yn4g.js";
7
+ import"./packager-tool-sba5cptt.js";
8
8
  import"./packager-tool-dfrk01gn.js";
9
9
  import"./packager-tool-1de529jm.js";
10
10
  export {
package/dist/resource.js CHANGED
@@ -1,9 +1,9 @@
1
1
  import {
2
2
  resourceRefreshAsync
3
- } from "./packager-tool-0qva0ebq.js";
3
+ } from "./packager-tool-n41f88jn.js";
4
4
  import"./packager-tool-x3ehbhsn.js";
5
- import"./packager-tool-3y92zbg2.js";
6
- import"./packager-tool-hgx66d1p.js";
5
+ import"./packager-tool-fjr8yn4g.js";
6
+ import"./packager-tool-sba5cptt.js";
7
7
  import"./packager-tool-dfrk01gn.js";
8
8
  import"./packager-tool-1de529jm.js";
9
9
  export {
package/dist/tool.js CHANGED
@@ -1,19 +1,19 @@
1
1
  import {
2
2
  metadata,
3
3
  registerCommands
4
- } from "./packager-tool-bahvrjbv.js";
5
- import"./packager-tool-xntjj1bt.js";
6
- import"./packager-tool-t89r1edr.js";
7
- import"./packager-tool-fh8pb2th.js";
8
- import"./packager-tool-nq2nq71y.js";
4
+ } from "./packager-tool-kjjkk63a.js";
5
+ import"./packager-tool-vxthsps3.js";
6
+ import"./packager-tool-8cw7djz6.js";
7
+ import"./packager-tool-xfg2cveb.js";
8
+ import"./packager-tool-6d4e44g7.js";
9
9
  import"./packager-tool-3hbsdwjm.js";
10
- import"./packager-tool-5pfxgc8z.js";
11
- import"./packager-tool-hc6ybtdw.js";
12
- import"./packager-tool-b16qemg2.js";
13
- import"./packager-tool-0qva0ebq.js";
10
+ import"./packager-tool-zz9cxrqw.js";
11
+ import"./packager-tool-m7vg7dwj.js";
12
+ import"./packager-tool-56b5tnnr.js";
13
+ import"./packager-tool-n41f88jn.js";
14
14
  import"./packager-tool-x3ehbhsn.js";
15
- import"./packager-tool-3y92zbg2.js";
16
- import"./packager-tool-hgx66d1p.js";
15
+ import"./packager-tool-fjr8yn4g.js";
16
+ import"./packager-tool-sba5cptt.js";
17
17
  import"./packager-tool-dfrk01gn.js";
18
18
  import"./packager-tool-1de529jm.js";
19
19
  export {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/solution-tool",
3
3
  "license": "MIT",
4
- "version": "1.202.0-preview.134",
4
+ "version": "1.202.0-preview.137",
5
5
  "description": "Create, pack, publish, and deploy UiPath Automation Solutions.",
6
6
  "repository": {
7
7
  "type": "git",
@@ -47,5 +47,5 @@
47
47
  "dist"
48
48
  ],
49
49
  "private": false,
50
- "gitHead": "a335728adbdb02f28308e4f55d8936d0b150444b"
50
+ "gitHead": "bbb20a6d3501afc3435a92af9ae2e9f7ab2e34f6"
51
51
  }