@uipath/solution-packager 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/index.js CHANGED
@@ -1305,7 +1305,8 @@ class SolutionPackager {
1305
1305
  logger: this.logger,
1306
1306
  workflowCompilerVersion: options.workflowCompilerVersion,
1307
1307
  lockKey: options.lockKey,
1308
- jobTarget: options.jobTarget
1308
+ jobTarget: options.jobTarget,
1309
+ localSourcePath: options.localSourcePath
1309
1310
  };
1310
1311
  }
1311
1312
  async getPackageStreamsAsync(result) {
@@ -1374,14 +1375,15 @@ class SolutionPackOptions extends PackagerParameters {
1374
1375
  };
1375
1376
  lockKey;
1376
1377
  jobTarget;
1378
+ localSourcePath;
1377
1379
  }
1378
1380
  export {
1379
- createBrowserSolutionPackager,
1380
- SolutionPackager,
1381
- SolutionPackOptions,
1382
- RulesConfigFileType2 as RulesConfigFileType,
1381
+ BuildConfiguration2 as BuildConfiguration,
1383
1382
  LogLevel,
1384
- BuildConfiguration2 as BuildConfiguration
1383
+ RulesConfigFileType2 as RulesConfigFileType,
1384
+ SolutionPackOptions,
1385
+ SolutionPackager,
1386
+ createBrowserSolutionPackager
1385
1387
  };
1386
1388
 
1387
- //# debugId=A9816D586CADAC3A64756E2164756E21
1389
+ //# debugId=03CFB8B4129DE67764756E2164756E21
package/dist/node.js CHANGED
@@ -410,6 +410,7 @@ class SolutionPackOptions extends PackagerParameters {
410
410
  };
411
411
  lockKey;
412
412
  jobTarget;
413
+ localSourcePath;
413
414
  }
414
415
  // src/node-solution-packager-factory.ts
415
416
  import {
@@ -1334,7 +1335,8 @@ class SolutionPackager {
1334
1335
  logger: this.logger,
1335
1336
  workflowCompilerVersion: options.workflowCompilerVersion,
1336
1337
  lockKey: options.lockKey,
1337
- jobTarget: options.jobTarget
1338
+ jobTarget: options.jobTarget,
1339
+ localSourcePath: options.localSourcePath
1338
1340
  };
1339
1341
  }
1340
1342
  async getPackageStreamsAsync(result) {
@@ -1379,10 +1381,10 @@ async function createNodeSolutionPackager(options) {
1379
1381
  return factory.createAsync(options);
1380
1382
  }
1381
1383
  export {
1382
- createNodeSolutionPackager,
1383
- SolutionPackager,
1384
+ RulesConfigFileType2 as RulesConfigFileType,
1384
1385
  SolutionPackOptions,
1385
- RulesConfigFileType2 as RulesConfigFileType
1386
+ SolutionPackager,
1387
+ createNodeSolutionPackager
1386
1388
  };
1387
1389
 
1388
- //# debugId=A11A85DD9EF7E29364756E2164756E21
1390
+ //# debugId=D411D9437F9F478564756E2164756E21
@@ -55,6 +55,13 @@ export declare class SolutionPackOptions extends PackagerParameters {
55
55
  * serverless, which is the default and the only prior behaviour.
56
56
  */
57
57
  jobTarget?: PackJobTarget;
58
+ /**
59
+ * Absolute path of the workspace sources on the machine that runs the
60
+ * remote-agent pack job, letting the agent pack them in place instead of
61
+ * downloading the snapshot. Meaningful only with a `jobTarget` that pins the
62
+ * job to that machine's sessions; ignored otherwise.
63
+ */
64
+ localSourcePath?: string;
58
65
  }
59
66
  /**
60
67
  * Options controlling the cleanup operation.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@uipath/solution-packager",
3
3
  "license": "MIT",
4
- "version": "1.201.0-preview.133",
4
+ "version": "1.202.0-preview.134",
5
5
  "description": "UiPath Solution Packager - core library for packing UiPath solutions",
6
6
  "type": "module",
7
7
  "main": "./dist/index.js",
@@ -28,11 +28,11 @@
28
28
  "dist"
29
29
  ],
30
30
  "dependencies": {
31
- "@uipath/project-packager": "1.201.0",
32
- "@uipath/solutionpackager-tool-core": "1.201.0"
31
+ "@uipath/project-packager": "1.202.0",
32
+ "@uipath/solutionpackager-tool-core": "1.202.0"
33
33
  },
34
34
  "peerDependencies": {
35
35
  "fflate": "^0.8.2"
36
36
  },
37
- "gitHead": "7933378ad5276ac369900293a1447474dcec6826"
37
+ "gitHead": "a335728adbdb02f28308e4f55d8936d0b150444b"
38
38
  }