@uipath/packager-tool-workflowcompiler 1.195.0 → 1.197.0-preview.59

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.d.ts CHANGED
@@ -1,2 +1,3 @@
1
1
  import "./i18n/index.js";
2
+ export { WorkflowCompilerToolFactory } from "./workflow-compiler-tool-factory.js";
2
3
  export { setupWorkflowCompiler } from "./workflow-compiler-config.js";
package/dist/index.js CHANGED
@@ -649,9 +649,6 @@ I18nManager.registerTranslations("zh-CN", zh_CN_default);
649
649
  I18nManager.registerTranslations("zh-TW", zh_TW_default);
650
650
  I18nManager.registerTranslations("zu", zu_default);
651
651
 
652
- // src/index.ts
653
- import { toolsFactoryRepository } from "@uipath/solutionpackager-tool-core";
654
-
655
652
  // src/workflow-compiler-tool-factory.ts
656
653
  import { execSync } from "node:child_process";
657
654
  import {
@@ -683,7 +680,7 @@ import {
683
680
  } from "@uipath/solutionpackager-tool-core";
684
681
 
685
682
  // src/workflow-compiler-config.ts
686
- var DEFAULT_WORKFLOW_COMPILER_VERSION = "26.0.195-alpha.23402";
683
+ var DEFAULT_WORKFLOW_COMPILER_VERSION = "26.0.196-cloud.23765";
687
684
  var workflowCompilerConfig = {
688
685
  workflowCompilerPath: undefined,
689
686
  workflowCompilerVersion: DEFAULT_WORKFLOW_COMPILER_VERSION
@@ -1252,9 +1249,9 @@ class WorkflowCompilerToolFactory {
1252
1249
  }
1253
1250
  }
1254
1251
  }
1255
-
1256
- // src/index.ts
1257
- toolsFactoryRepository.registerProjectToolFactory(new WorkflowCompilerToolFactory);
1258
1252
  export {
1259
- setupWorkflowCompiler
1253
+ setupWorkflowCompiler,
1254
+ WorkflowCompilerToolFactory
1260
1255
  };
1256
+
1257
+ //# debugId=50A7EA5FC29ACF3664756E2164756E21
@@ -1,4 +1,4 @@
1
- export declare const DEFAULT_WORKFLOW_COMPILER_VERSION = "26.0.195-alpha.23402";
1
+ export declare const DEFAULT_WORKFLOW_COMPILER_VERSION = "26.0.196-cloud.23765";
2
2
  export declare const workflowCompilerConfig: {
3
3
  workflowCompilerPath: string | undefined;
4
4
  workflowCompilerVersion: string;
@@ -14,7 +14,7 @@ export declare const workflowCompilerConfig: {
14
14
  * import { setupWorkflowCompiler } from "@uipath/packager-tool-workflowcompiler";
15
15
  *
16
16
  * setupWorkflowCompiler({ compilerPath: "/path/to/UiPath.WorkflowCompiler.dll" });
17
- * setupWorkflowCompiler({ version: "26.0.195-alpha.23402" });
17
+ * setupWorkflowCompiler({ version: "26.0.196-cloud.23765" });
18
18
  * ```
19
19
  */
20
20
  export declare function setupWorkflowCompiler(options: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uipath/packager-tool-workflowcompiler",
3
- "version": "1.195.0",
3
+ "version": "1.197.0-preview.59",
4
4
  "description": "UiPath Workflow Compiler tool implementation",
5
5
  "type": "module",
6
6
  "exports": {
@@ -20,14 +20,13 @@
20
20
  "types": "./dist/index.d.ts",
21
21
  "files": [
22
22
  "dist",
23
- "!dist/**/*.map",
24
23
  "src"
25
24
  ],
26
25
  "author": "",
27
26
  "license": "ISC",
28
27
  "peerDependencies": {
29
- "@uipath/solutionpackager-tool-core": "1.195.0"
28
+ "@uipath/solutionpackager-tool-core": "1.197.0"
30
29
  },
31
30
  "dependencies": {},
32
- "gitHead": "eecf5713cd579b15783c770d1923e44e730271ea"
31
+ "gitHead": "df0e2b8140cced13f463b487214927c82bc0f85b"
33
32
  }
package/src/index.ts CHANGED
@@ -5,15 +5,11 @@
5
5
  import "./i18n/index.js";
6
6
 
7
7
  // ============================================================================
8
- // Self-register Workflow Compiler tool factory with the singleton repository
8
+ // Workflow Compiler tool factory. Consumers register it explicitly via
9
+ // `toolsFactoryRepository.registerProjectToolFactory(new WorkflowCompilerToolFactory())`.
9
10
  // ============================================================================
10
11
 
11
- import { toolsFactoryRepository } from "@uipath/solutionpackager-tool-core";
12
- import { WorkflowCompilerToolFactory } from "./workflow-compiler-tool-factory.js";
13
-
14
- toolsFactoryRepository.registerProjectToolFactory(
15
- new WorkflowCompilerToolFactory(),
16
- );
12
+ export { WorkflowCompilerToolFactory } from "./workflow-compiler-tool-factory.js";
17
13
 
18
14
  // ============================================================================
19
15
  // Export setup function for consumers to configure compiler path or version
@@ -1,4 +1,4 @@
1
- export const DEFAULT_WORKFLOW_COMPILER_VERSION = "26.0.195-alpha.23402";
1
+ export const DEFAULT_WORKFLOW_COMPILER_VERSION = "26.0.196-cloud.23765";
2
2
 
3
3
  export const workflowCompilerConfig = {
4
4
  workflowCompilerPath: undefined as string | undefined,
@@ -16,7 +16,7 @@ export const workflowCompilerConfig = {
16
16
  * import { setupWorkflowCompiler } from "@uipath/packager-tool-workflowcompiler";
17
17
  *
18
18
  * setupWorkflowCompiler({ compilerPath: "/path/to/UiPath.WorkflowCompiler.dll" });
19
- * setupWorkflowCompiler({ version: "26.0.195-alpha.23402" });
19
+ * setupWorkflowCompiler({ version: "26.0.196-cloud.23765" });
20
20
  * ```
21
21
  */
22
22
  export function setupWorkflowCompiler(options: {