@uipath/solution-tool 1.198.0-preview.83 → 1.198.0-preview.85

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
@@ -37253,7 +37253,7 @@ class JSONApiResponse2 {
37253
37253
  var package_default2 = {
37254
37254
  name: "@uipath/solution-sdk",
37255
37255
  license: "MIT",
37256
- version: "1.198.0-preview.83",
37256
+ version: "1.198.0-preview.85",
37257
37257
  repository: {
37258
37258
  type: "git",
37259
37259
  url: "https://github.com/UiPath/cli.git",
@@ -42851,4 +42851,4 @@ export {
42851
42851
  activateDeploymentAsync
42852
42852
  };
42853
42853
 
42854
- //# debugId=97F9442D2BB8251D64756E2164756E21
42854
+ //# debugId=F27C0E5DD945C26D64756E2164756E21
package/dist/pack.js CHANGED
@@ -201037,7 +201037,7 @@ init_dist();
201037
201037
  // ../packager/packager-tool-flow/package.json
201038
201038
  var package_default = {
201039
201039
  name: "@uipath/packager-tool-flow",
201040
- version: "1.198.0-preview.83",
201040
+ version: "1.198.0-preview.85",
201041
201041
  description: "UiPath Flow tool implementation",
201042
201042
  type: "module",
201043
201043
  exports: {
@@ -236969,7 +236969,7 @@ var sdkUserAgentHostToken22 = singleton22("SdkUserAgentHostToken");
236969
236969
  var package_default3 = {
236970
236970
  name: "@uipath/project-packager",
236971
236971
  license: "MIT",
236972
- version: "1.198.0-preview.83",
236972
+ version: "1.198.0-preview.85",
236973
236973
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
236974
236974
  type: "module",
236975
236975
  main: "./dist/index.js",
@@ -248556,7 +248556,7 @@ var sdkUserAgentHostToken23 = singleton23("SdkUserAgentHostToken");
248556
248556
  var package_default4 = {
248557
248557
  name: "@uipath/project-packager",
248558
248558
  license: "MIT",
248559
- version: "1.198.0-preview.83",
248559
+ version: "1.198.0-preview.85",
248560
248560
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
248561
248561
  type: "module",
248562
248562
  main: "./dist/index.js",
@@ -266723,10 +266723,7 @@ Packing solution...
266723
266723
  logger.debug(`Package: ${packageName}@${options.version}`);
266724
266724
  logger.debug(`Output: ${absoluteOutputPath}`);
266725
266725
  if (isDirectory) {
266726
- await syncAndLog(absoluteSolutionPath);
266727
- const rtd = await emitRuntimeDependenciesForProcesses(absoluteSolutionPath);
266728
- for (const w2 of rtd.warnings)
266729
- logger.warn(w2);
266726
+ await this.prepareSolutionDirectoryForPack(absoluteSolutionPath);
266730
266727
  }
266731
266728
  const [error95, result] = await catchError2(async () => {
266732
266729
  await this.fs.mkdir(absoluteOutputPath);
@@ -266735,6 +266732,7 @@ Packing solution...
266735
266732
  if (isUisFile) {
266736
266733
  const uint8Array = await readSolutionFileAsUint8Array(this.fs, absoluteSolutionPath);
266737
266734
  inputPath = await packager.setupAsync(uint8Array);
266735
+ await this.prepareSolutionDirectoryForPack(inputPath);
266738
266736
  } else {
266739
266737
  inputPath = await packager.setupAsync(absoluteSolutionPath);
266740
266738
  }
@@ -266747,6 +266745,12 @@ Packing solution...
266747
266745
  }
266748
266746
  return result;
266749
266747
  }
266748
+ async prepareSolutionDirectoryForPack(solutionDir) {
266749
+ await syncAndLog(solutionDir);
266750
+ const rtd = await emitRuntimeDependenciesForProcesses(solutionDir);
266751
+ for (const w2 of rtd.warnings)
266752
+ logger.warn(w2);
266753
+ }
266750
266754
  async ensurePackagerAsync() {
266751
266755
  if (!this.packager) {
266752
266756
  this.packager = await createSolutionPackager();
@@ -266810,4 +266814,4 @@ export {
266810
266814
  packSolutionAsync
266811
266815
  };
266812
266816
 
266813
- //# debugId=9054F8D8A21FA13064756E2164756E21
266817
+ //# debugId=271858FD2656446664756E2164756E21
package/dist/publish.js CHANGED
@@ -30215,7 +30215,7 @@ class TextApiResponse2 {
30215
30215
  var package_default2 = {
30216
30216
  name: "@uipath/solution-sdk",
30217
30217
  license: "MIT",
30218
- version: "1.198.0-preview.83",
30218
+ version: "1.198.0-preview.85",
30219
30219
  repository: {
30220
30220
  type: "git",
30221
30221
  url: "https://github.com/UiPath/cli.git",
@@ -32990,4 +32990,4 @@ export {
32990
32990
  publishSolutionAsync
32991
32991
  };
32992
32992
 
32993
- //# debugId=6D8006414834105764756E2164756E21
32993
+ //# debugId=D842ACAB3F9CEC5E64756E2164756E21
@@ -18,6 +18,7 @@ export declare class PackCommandService {
18
18
  * Execute the pack command and return result (for programmatic usage and testing)
19
19
  */
20
20
  executeAsync(solutionPath: string, options: PackCommandOptions): Promise<ToolResult>;
21
+ private prepareSolutionDirectoryForPack;
21
22
  private ensurePackagerAsync;
22
23
  private createPackOptions;
23
24
  }
package/dist/tool.js CHANGED
@@ -30536,7 +30536,7 @@ import"./packager-tool.js";
30536
30536
  var package_default = {
30537
30537
  name: "@uipath/solution-tool",
30538
30538
  license: "MIT",
30539
- version: "1.198.0-preview.83",
30539
+ version: "1.198.0-preview.85",
30540
30540
  description: "Create, pack, publish, and deploy UiPath Automation Solutions.",
30541
30541
  repository: {
30542
30542
  type: "git",
@@ -41234,7 +41234,7 @@ class TextApiResponse2 {
41234
41234
  var package_default3 = {
41235
41235
  name: "@uipath/solution-sdk",
41236
41236
  license: "MIT",
41237
- version: "1.198.0-preview.83",
41237
+ version: "1.198.0-preview.85",
41238
41238
  repository: {
41239
41239
  type: "git",
41240
41240
  url: "https://github.com/UiPath/cli.git",
@@ -75574,7 +75574,7 @@ var sdkUserAgentHostToken22 = singleton22("SdkUserAgentHostToken");
75574
75574
  var package_default5 = {
75575
75575
  name: "@uipath/project-packager",
75576
75576
  license: "MIT",
75577
- version: "1.198.0-preview.83",
75577
+ version: "1.198.0-preview.85",
75578
75578
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
75579
75579
  type: "module",
75580
75580
  main: "./dist/index.js",
@@ -87142,7 +87142,7 @@ var sdkUserAgentHostToken23 = singleton23("SdkUserAgentHostToken");
87142
87142
  var package_default6 = {
87143
87143
  name: "@uipath/project-packager",
87144
87144
  license: "MIT",
87145
- version: "1.198.0-preview.83",
87145
+ version: "1.198.0-preview.85",
87146
87146
  description: "UiPath Project Packager - core library for packing individual UiPath projects",
87147
87147
  type: "module",
87148
87148
  main: "./dist/index.js",
@@ -103186,10 +103186,7 @@ Packing solution...
103186
103186
  logger.debug(`Package: ${packageName}@${options.version}`);
103187
103187
  logger.debug(`Output: ${absoluteOutputPath}`);
103188
103188
  if (isDirectory) {
103189
- await syncAndLog(absoluteSolutionPath);
103190
- const rtd = await emitRuntimeDependenciesForProcesses(absoluteSolutionPath);
103191
- for (const w of rtd.warnings)
103192
- logger.warn(w);
103189
+ await this.prepareSolutionDirectoryForPack(absoluteSolutionPath);
103193
103190
  }
103194
103191
  const [error, result] = await catchError2(async () => {
103195
103192
  await this.fs.mkdir(absoluteOutputPath);
@@ -103198,6 +103195,7 @@ Packing solution...
103198
103195
  if (isUisFile) {
103199
103196
  const uint8Array = await readSolutionFileAsUint8Array(this.fs, absoluteSolutionPath);
103200
103197
  inputPath = await packager.setupAsync(uint8Array);
103198
+ await this.prepareSolutionDirectoryForPack(inputPath);
103201
103199
  } else {
103202
103200
  inputPath = await packager.setupAsync(absoluteSolutionPath);
103203
103201
  }
@@ -103210,6 +103208,12 @@ Packing solution...
103210
103208
  }
103211
103209
  return result;
103212
103210
  }
103211
+ async prepareSolutionDirectoryForPack(solutionDir) {
103212
+ await syncAndLog(solutionDir);
103213
+ const rtd = await emitRuntimeDependenciesForProcesses(solutionDir);
103214
+ for (const w of rtd.warnings)
103215
+ logger.warn(w);
103216
+ }
103213
103217
  async ensurePackagerAsync() {
103214
103218
  if (!this.packager) {
103215
103219
  this.packager = await createSolutionPackager();
@@ -106725,4 +106729,4 @@ export {
106725
106729
  metadata
106726
106730
  };
106727
106731
 
106728
- //# debugId=EC770A4E00F1D23564756E2164756E21
106732
+ //# debugId=471CD5E1BA30AF5A64756E2164756E21
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/solution-tool",
3
3
  "license": "MIT",
4
- "version": "1.198.0-preview.83",
4
+ "version": "1.198.0-preview.85",
5
5
  "description": "Create, pack, publish, and deploy UiPath Automation Solutions.",
6
6
  "repository": {
7
7
  "type": "git",
@@ -46,5 +46,5 @@
46
46
  "dist"
47
47
  ],
48
48
  "private": false,
49
- "gitHead": "38fc9a0872ac9260d7ee783e20d57c18fcd479f5"
49
+ "gitHead": "4a4fb9d0a395bafc674550cf9a4ff7a0c14e134f"
50
50
  }