@uipath/packager-tool-workflowcompiler 0.0.14

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.
@@ -0,0 +1,7 @@
1
+ /**
2
+ * i18n module for tool-workflowcompiler package.
3
+ * Registers tool-workflowcompiler-specific translations.
4
+ */
5
+ import { en } from "./locales/en.js";
6
+ export type { TranslationKeys } from "./locales/en.js";
7
+ export { en };
@@ -0,0 +1,46 @@
1
+ /**
2
+ * English translations for tool-workflowcompiler package.
3
+ * These translations are registered alongside core translations via I18nManager.
4
+ */
5
+ export declare const en: {
6
+ readonly toolWorkflowcompiler: {
7
+ readonly lifecycle: {
8
+ readonly started: "[WorkflowCompiler] {operation} started";
9
+ readonly command: "[WorkflowCompiler] Command: {command}";
10
+ readonly completed: "[WorkflowCompiler] {operation} completed in {elapsed}ms with code: {errorCode}";
11
+ readonly cancelled: "[WorkflowCompiler] Operation cancelled";
12
+ };
13
+ readonly errors: {
14
+ readonly processExited: "Process exited with code {exitCode}";
15
+ readonly failed: "[WorkflowCompiler] {operation} failed: {errorMessage}";
16
+ readonly processError: "[WorkflowCompiler] Process error: {message}";
17
+ readonly startFailed: "Failed to start workflow compiler: {message}";
18
+ readonly operationCancelled: "Operation cancelled";
19
+ };
20
+ readonly pathResolver: {
21
+ readonly info: {
22
+ readonly usingCached: "[PathResolver] Using cached compiler path: {path}";
23
+ readonly usingExplicitPath: "[PathResolver] Using explicit compiler path: {path}";
24
+ readonly resolving: "[PathResolver] Resolving workflow compiler path...";
25
+ readonly checkingEnvVar: "[PathResolver] Checking environment variable location: {path}";
26
+ readonly foundViaEnv: "[PathResolver] Found compiler via UIPATH_WORKFLOWCOMPILER_LOCATION";
27
+ readonly checkingNuGetCache: "[PathResolver] Checking NuGet cache: {path}";
28
+ readonly foundInNuGetCache: "[PathResolver] Found compiler in NuGet cache";
29
+ readonly notFoundStartingInstall: "[PathResolver] Compiler not found, starting dotnet restore...";
30
+ readonly restoringPackage: "[PathResolver] Restoring NuGet package \"{packageName}\" v{version} for platform \"{platform}\" via dotnet restore...";
31
+ readonly runningDotnetRestore: "[PathResolver] Running dotnet restore...";
32
+ readonly restoreCompleted: "[PathResolver] dotnet restore completed";
33
+ readonly installCompleted: "[PathResolver] Compiler restored successfully";
34
+ readonly cleaningUp: "[PathResolver] Cleaning up temp directory";
35
+ readonly resolved: "[PathResolver] Compiler resolved at: {path}";
36
+ };
37
+ readonly errors: {
38
+ readonly unsupportedPlatform: "Unsupported platform: {platform}";
39
+ readonly compilerNotFoundAfterRestore: "Compiler not found in NuGet cache after dotnet restore.";
40
+ readonly dotnetRestoreFailed: "dotnet restore failed: {details}";
41
+ };
42
+ };
43
+ };
44
+ };
45
+ /** @public */
46
+ export type TranslationKeys = typeof en;
@@ -0,0 +1,2 @@
1
+ import "./i18n/index.js";
2
+ export { setupWorkflowCompiler } from "./workflow-compiler-config.js";