@uipath/packager-tool-workflowcompiler-browser 0.0.29
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/i18n/index.d.ts +7 -0
- package/dist/i18n/locales/en.d.ts +40 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1104 -0
- package/dist/pack-result-processor.d.ts +17 -0
- package/dist/packager-hub-connection.d.ts +28 -0
- package/dist/project-bundle-executor.d.ts +26 -0
- package/dist/workflow-compiler-tool-factory.d.ts +12 -0
- package/dist/workflow-compiler-tool.d.ts +16 -0
- package/package.json +60 -0
- package/src/i18n/index.ts +45 -0
- package/src/i18n/locales/de.json +34 -0
- package/src/i18n/locales/en.ts +57 -0
- package/src/i18n/locales/es-MX.json +34 -0
- package/src/i18n/locales/es.json +34 -0
- package/src/i18n/locales/fr.json +34 -0
- package/src/i18n/locales/ja.json +34 -0
- package/src/i18n/locales/ko.json +34 -0
- package/src/i18n/locales/pt-BR.json +34 -0
- package/src/i18n/locales/pt.json +34 -0
- package/src/i18n/locales/ro.json +34 -0
- package/src/i18n/locales/ru.json +34 -0
- package/src/i18n/locales/tr.json +34 -0
- package/src/i18n/locales/zh-CN.json +34 -0
- package/src/i18n/locales/zh-TW.json +34 -0
- package/src/i18n/locales/zu.json +34 -0
- package/src/index.ts +7 -0
- package/src/pack-result-processor.ts +309 -0
- package/src/packager-hub-connection.ts +257 -0
- package/src/project-bundle-executor.ts +414 -0
- package/src/workflow-compiler-tool-factory.ts +47 -0
- package/src/workflow-compiler-tool.ts +72 -0
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { type IFileSystem, type IProjectPackOptions, type IToolLogger, type ProjectOperationContext, ToolResult } from "@uipath/solutionpackager-tool-core";
|
|
2
|
+
interface ProjectResultEntry {
|
|
3
|
+
options: IProjectPackOptions;
|
|
4
|
+
}
|
|
5
|
+
export declare class PackResultProcessor {
|
|
6
|
+
private readonly fileSystem;
|
|
7
|
+
private readonly logger?;
|
|
8
|
+
private readonly zipService;
|
|
9
|
+
constructor(fileSystem: IFileSystem, logger?: IToolLogger | undefined);
|
|
10
|
+
processAsync(bucketId: number, projects: Map<string, ProjectResultEntry>, context: ProjectOperationContext): Promise<Map<string, ToolResult>>;
|
|
11
|
+
private downloadArchiveAsync;
|
|
12
|
+
private deleteBucketAsync;
|
|
13
|
+
private getReadUriAsync;
|
|
14
|
+
private downloadBlobAsync;
|
|
15
|
+
private distributePackages;
|
|
16
|
+
}
|
|
17
|
+
export {};
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { type IToolLogger } from "@uipath/solutionpackager-tool-core";
|
|
2
|
+
/** @public */
|
|
3
|
+
export declare enum CompletedStatus {
|
|
4
|
+
Succeeded = 0,
|
|
5
|
+
Stopped = 1,
|
|
6
|
+
Failed = 2
|
|
7
|
+
}
|
|
8
|
+
export interface PackAgentResult {
|
|
9
|
+
errorCode: number;
|
|
10
|
+
status: CompletedStatus;
|
|
11
|
+
message?: string;
|
|
12
|
+
bucketId?: number;
|
|
13
|
+
}
|
|
14
|
+
export declare class PackagerHubConnection {
|
|
15
|
+
private readonly logger?;
|
|
16
|
+
private hubConnection;
|
|
17
|
+
private completionResolve;
|
|
18
|
+
private completionReject;
|
|
19
|
+
constructor(logger?: IToolLogger | undefined);
|
|
20
|
+
connectAsync(hubUrl: string, accessToken: string): Promise<void>;
|
|
21
|
+
private buildConnection;
|
|
22
|
+
private registerOnClose;
|
|
23
|
+
waitForCompletionAsync(): Promise<PackAgentResult>;
|
|
24
|
+
disconnectAsync(): Promise<void>;
|
|
25
|
+
private registerHandlers;
|
|
26
|
+
private onLogMessage;
|
|
27
|
+
private onExecutionCompleted;
|
|
28
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { type IFileSystem, type IProjectPackOptions, type IProjectToolFactory, type ProjectOperationContext, ToolResult } from "@uipath/solutionpackager-tool-core";
|
|
2
|
+
export interface IProjectBundleExecutor {
|
|
3
|
+
packAsync(options: IProjectPackOptions, context: ProjectOperationContext): Promise<ToolResult>;
|
|
4
|
+
}
|
|
5
|
+
/**
|
|
6
|
+
* Coordinates packing of multiple projects within a single operation context.
|
|
7
|
+
* Waits until all compatible projects have submitted their pack options,
|
|
8
|
+
* then executes a single bundled operation and resolves all pending promises.
|
|
9
|
+
*/
|
|
10
|
+
export declare class ProjectBundleExecutor implements IProjectBundleExecutor {
|
|
11
|
+
private readonly toolFactory;
|
|
12
|
+
private readonly fileSystem;
|
|
13
|
+
static readonly SESSION_TIMEOUT_MS = 1800000;
|
|
14
|
+
private readonly sessions;
|
|
15
|
+
private readonly pendingSessionCreations;
|
|
16
|
+
constructor(toolFactory: IProjectToolFactory, fileSystem: IFileSystem);
|
|
17
|
+
packAsync(options: IProjectPackOptions, context: ProjectOperationContext): Promise<ToolResult>;
|
|
18
|
+
private getSessionAsync;
|
|
19
|
+
private createSessionAsync;
|
|
20
|
+
private packOnAgentAsync;
|
|
21
|
+
private connectToHubAsync;
|
|
22
|
+
private handlePackResultAsync;
|
|
23
|
+
private sendBeginSessionAsync;
|
|
24
|
+
private resolveAll;
|
|
25
|
+
private countCompatibleProjects;
|
|
26
|
+
}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type IFileSystem, type IProjectToolFactory, type IToolLogger, type ProjectOperationContext, type ProjectTool, type ProjectType } from "@uipath/solutionpackager-tool-core";
|
|
2
|
+
/**
|
|
3
|
+
* Factory for creating a browser workflow compiler tool.
|
|
4
|
+
* Handles Process, Library, WebApp, and Tests project types.
|
|
5
|
+
* Always creates WorkflowCompilerTool (browser-only package).
|
|
6
|
+
*/
|
|
7
|
+
export declare class WorkflowCompilerToolFactory implements IProjectToolFactory {
|
|
8
|
+
private bundleExecutor?;
|
|
9
|
+
readonly supportedTypes: readonly ProjectType[];
|
|
10
|
+
createAsync(logger: IToolLogger, fileSystem: IFileSystem, context?: ProjectOperationContext): Promise<ProjectTool>;
|
|
11
|
+
private getBundleExecutor;
|
|
12
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { type IFileSystem, type IProjectBuildOptions, type IProjectPackOptions, type IProjectRestoreOptions, type IProjectValidateOptions, type IToolLogger, type ProjectOperationContext, ProjectTool, ToolResult } from "@uipath/solutionpackager-tool-core";
|
|
2
|
+
import type { IProjectBundleExecutor } from "./project-bundle-executor.js";
|
|
3
|
+
/**
|
|
4
|
+
* Browser workflow compiler tool implementation.
|
|
5
|
+
* DUMMY: Logs messages indicating where robot/remote agent integration will be added.
|
|
6
|
+
* Future: Will send pack commands to robot which starts remote agent to pack projects.
|
|
7
|
+
*/
|
|
8
|
+
export declare class WorkflowCompilerTool extends ProjectTool {
|
|
9
|
+
private readonly bundleExecutor;
|
|
10
|
+
private readonly context?;
|
|
11
|
+
constructor(fileSystem: IFileSystem, logger: IToolLogger, bundleExecutor: IProjectBundleExecutor, context?: ProjectOperationContext | undefined);
|
|
12
|
+
restoreAsync(_options: IProjectRestoreOptions, _cancellationToken?: AbortSignal): Promise<ToolResult>;
|
|
13
|
+
validateAsync(_options: IProjectValidateOptions, _cancellationToken?: AbortSignal): Promise<ToolResult>;
|
|
14
|
+
buildAsync(_options: IProjectBuildOptions, _cancellationToken?: AbortSignal): Promise<ToolResult>;
|
|
15
|
+
packAsync(options: IProjectPackOptions, _cancellationToken?: AbortSignal): Promise<ToolResult>;
|
|
16
|
+
}
|
package/package.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@uipath/packager-tool-workflowcompiler-browser",
|
|
3
|
+
"version": "0.0.29",
|
|
4
|
+
"description": "UiPath Workflow Compiler tool - browser implementation",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"exports": {
|
|
7
|
+
".": {
|
|
8
|
+
"source": "./src/index.ts",
|
|
9
|
+
"default": "./dist/index.js"
|
|
10
|
+
}
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/UiPath/cli.git",
|
|
15
|
+
"directory": "packages/packager/packager-tool-workflowcompiler-browser"
|
|
16
|
+
},
|
|
17
|
+
"publishConfig": {
|
|
18
|
+
"registry": "https://registry.npmjs.org/"
|
|
19
|
+
},
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"scripts": {
|
|
22
|
+
"build": "bun build ./src/index.ts --outdir dist --format esm --target browser --external @uipath/solutionpackager-tool-core --external @microsoft/signalr && tsc --emitDeclarationOnly --outDir dist",
|
|
23
|
+
"dev": "bun build ./src/index.ts --outdir dist --format esm --target browser --external @uipath/solutionpackager-tool-core --external @microsoft/signalr --watch",
|
|
24
|
+
"test": "vitest run",
|
|
25
|
+
"test:browser": "vitest run --config=vitest.browser.config.ts",
|
|
26
|
+
"test:coverage": "vitest run --coverage",
|
|
27
|
+
"test:browser:coverage": "vitest run --config=vitest.browser.config.ts --coverage",
|
|
28
|
+
"test:all": "bun run test && bun run test:browser",
|
|
29
|
+
"test:all:coverage": "bun run test:coverage && bun run test:browser:coverage",
|
|
30
|
+
"prepack": "bun run build",
|
|
31
|
+
"publish:dry": "bun publish --dry-run",
|
|
32
|
+
"publish:gh": "bun publish",
|
|
33
|
+
"version:patch": "bun version patch --no-git-tag-version",
|
|
34
|
+
"version:minor": "bun version minor --no-git-tag-version",
|
|
35
|
+
"version:major": "bun version major --no-git-tag-version",
|
|
36
|
+
"lint": "biome check ."
|
|
37
|
+
},
|
|
38
|
+
"files": [
|
|
39
|
+
"dist",
|
|
40
|
+
"!dist/**/*.map",
|
|
41
|
+
"src"
|
|
42
|
+
],
|
|
43
|
+
"author": "",
|
|
44
|
+
"license": "ISC",
|
|
45
|
+
"dependencies": {
|
|
46
|
+
"@microsoft/signalr": "^10.0.0"
|
|
47
|
+
},
|
|
48
|
+
"peerDependencies": {
|
|
49
|
+
"@uipath/solutionpackager-tool-core": "0.0.31"
|
|
50
|
+
},
|
|
51
|
+
"devDependencies": {
|
|
52
|
+
"@uipath/solutionpackager-tool-core": "0.0.31",
|
|
53
|
+
"@vitest/browser": "^4.0.14",
|
|
54
|
+
"@vitest/browser-playwright": "^4.0.14",
|
|
55
|
+
"@vitest/coverage-v8": "^4.0.14",
|
|
56
|
+
"playwright": "^1.57.0",
|
|
57
|
+
"typescript": "^5.9.3",
|
|
58
|
+
"vitest": "^4.0.14"
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* i18n module for tool-workflowcompiler-browser package.
|
|
3
|
+
* Registers tool-workflowcompiler-browser-specific translations.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
import { I18nManager } from "@uipath/solutionpackager-tool-core";
|
|
7
|
+
import de from "./locales/de.json" with { type: "json" };
|
|
8
|
+
import { en } from "./locales/en.js";
|
|
9
|
+
import es from "./locales/es.json" with { type: "json" };
|
|
10
|
+
import esMX from "./locales/es-MX.json" with { type: "json" };
|
|
11
|
+
import fr from "./locales/fr.json" with { type: "json" };
|
|
12
|
+
import ja from "./locales/ja.json" with { type: "json" };
|
|
13
|
+
import ko from "./locales/ko.json" with { type: "json" };
|
|
14
|
+
import pt from "./locales/pt.json" with { type: "json" };
|
|
15
|
+
import ptBR from "./locales/pt-BR.json" with { type: "json" };
|
|
16
|
+
import ro from "./locales/ro.json" with { type: "json" };
|
|
17
|
+
import ru from "./locales/ru.json" with { type: "json" };
|
|
18
|
+
import tr from "./locales/tr.json" with { type: "json" };
|
|
19
|
+
import zhCN from "./locales/zh-CN.json" with { type: "json" };
|
|
20
|
+
import zhTW from "./locales/zh-TW.json" with { type: "json" };
|
|
21
|
+
import zu from "./locales/zu.json" with { type: "json" };
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Register tool-workflowcompiler-browser translations at module initialization.
|
|
25
|
+
* This extends the core translations with package-specific keys.
|
|
26
|
+
*/
|
|
27
|
+
I18nManager.registerTranslations("en", en);
|
|
28
|
+
I18nManager.registerTranslations("de", de);
|
|
29
|
+
I18nManager.registerTranslations("es", es);
|
|
30
|
+
I18nManager.registerTranslations("es-MX", esMX);
|
|
31
|
+
I18nManager.registerTranslations("fr", fr);
|
|
32
|
+
I18nManager.registerTranslations("ja", ja);
|
|
33
|
+
I18nManager.registerTranslations("ko", ko);
|
|
34
|
+
I18nManager.registerTranslations("pt", pt);
|
|
35
|
+
I18nManager.registerTranslations("pt-BR", ptBR);
|
|
36
|
+
I18nManager.registerTranslations("ro", ro);
|
|
37
|
+
I18nManager.registerTranslations("ru", ru);
|
|
38
|
+
I18nManager.registerTranslations("tr", tr);
|
|
39
|
+
I18nManager.registerTranslations("zh-CN", zhCN);
|
|
40
|
+
I18nManager.registerTranslations("zh-TW", zhTW);
|
|
41
|
+
I18nManager.registerTranslations("zu", zu);
|
|
42
|
+
|
|
43
|
+
export type { TranslationKeys } from "./locales/en.js";
|
|
44
|
+
// Export the translations for type inference
|
|
45
|
+
export { en };
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"toolWorkflowCompilerBrowser": {
|
|
3
|
+
"info": {
|
|
4
|
+
"startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
|
|
5
|
+
"connectingToHub": "Connecting to SignalR hub: {url}",
|
|
6
|
+
"remoteAgentStartedExecution": "Remote agent started execution",
|
|
7
|
+
"downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
|
|
8
|
+
"extractingArchive": "Extracting archive ({size} bytes) to {path}",
|
|
9
|
+
"distributingPackages": "Distributing packages for {count} project(s)",
|
|
10
|
+
"cleaningUpTempDir": "Cleaning up temporary directory {path}",
|
|
11
|
+
"deletingBucket": "Deleting temporary storage bucket {bucketId}",
|
|
12
|
+
"copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
|
|
13
|
+
},
|
|
14
|
+
"errors": {
|
|
15
|
+
"missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
|
|
16
|
+
"signalRConnectionFailed": "Failed to connect to SignalR hub",
|
|
17
|
+
"hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
|
|
18
|
+
"packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
|
|
19
|
+
"packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
|
|
20
|
+
"noResultForProject": "No result for project",
|
|
21
|
+
"beginSessionFailed": "BeginSession failed ({status}): {errorText}",
|
|
22
|
+
"hubConnectionClosed": "Hub connection closed unexpectedly",
|
|
23
|
+
"packAgentDisconnected": "Pack agent disconnected unexpectedly",
|
|
24
|
+
"deleteBucketFailed": "Unable to delete temporary storage bucket on Orchestrator: {statusText}",
|
|
25
|
+
"cleanupBucketFailed": "Unable to cleanup remote bucket {bucketId}: {message}",
|
|
26
|
+
"getBucketUriFailed": "Failed to get bucket read URI ({status}): {errorText}",
|
|
27
|
+
"downloadArchiveFailed": "Failed to download archive from bucket ({status}): {statusText}",
|
|
28
|
+
"noMatchingProject": "No matching project found for path: {projectPath}",
|
|
29
|
+
"noOutputForProject": "No output found for project {designId}",
|
|
30
|
+
"distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
|
|
31
|
+
"sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* English translations for tool-workflowcompiler-browser package.
|
|
3
|
+
* These translations are registered alongside core translations via I18nManager.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
export const en = {
|
|
7
|
+
toolWorkflowCompilerBrowser: {
|
|
8
|
+
info: {
|
|
9
|
+
startingRemotePackAgent:
|
|
10
|
+
"Starting remote pack agent for {count} project(s): {paths}",
|
|
11
|
+
connectingToHub: "Connecting to SignalR hub: {url}",
|
|
12
|
+
remoteAgentStartedExecution: "Remote agent started execution",
|
|
13
|
+
downloadingArchive:
|
|
14
|
+
"Downloading pack result archive from bucket {bucketId}",
|
|
15
|
+
extractingArchive: "Extracting archive ({size} bytes) to {path}",
|
|
16
|
+
distributingPackages:
|
|
17
|
+
"Distributing packages for {count} project(s)",
|
|
18
|
+
cleaningUpTempDir: "Cleaning up temporary directory {path}",
|
|
19
|
+
deletingBucket: "Deleting temporary storage bucket {bucketId}",
|
|
20
|
+
copyingFiles:
|
|
21
|
+
"Copying {count} file(s) for project {designId} to {path}",
|
|
22
|
+
},
|
|
23
|
+
errors: {
|
|
24
|
+
missingConnectionInfo:
|
|
25
|
+
"Missing connection info (cloudUrl, accessToken, or folderId)",
|
|
26
|
+
signalRConnectionFailed: "Failed to connect to SignalR hub",
|
|
27
|
+
hubConnectionFailed:
|
|
28
|
+
"Failed to connect to SignalR hub at {url}: {message}",
|
|
29
|
+
packSucceededNoBucket:
|
|
30
|
+
"Pack succeeded but no BucketId was returned",
|
|
31
|
+
packAgentFailed:
|
|
32
|
+
"Pack agent failed with status {status} (code {errorCode})",
|
|
33
|
+
noResultForProject: "No result for project",
|
|
34
|
+
beginSessionFailed: "BeginSession failed ({status}): {errorText}",
|
|
35
|
+
hubConnectionClosed: "Hub connection closed unexpectedly",
|
|
36
|
+
packAgentDisconnected: "Pack agent disconnected unexpectedly",
|
|
37
|
+
deleteBucketFailed:
|
|
38
|
+
"Unable to delete temporary storage bucket on Orchestrator: {statusText}",
|
|
39
|
+
cleanupBucketFailed:
|
|
40
|
+
"Unable to cleanup remote bucket {bucketId}: {message}",
|
|
41
|
+
getBucketUriFailed:
|
|
42
|
+
"Failed to get bucket read URI ({status}): {errorText}",
|
|
43
|
+
downloadArchiveFailed:
|
|
44
|
+
"Failed to download archive from bucket ({status}): {statusText}",
|
|
45
|
+
noMatchingProject:
|
|
46
|
+
"No matching project found for path: {projectPath}",
|
|
47
|
+
noOutputForProject: "No output found for project {designId}",
|
|
48
|
+
distributePackagesFailed:
|
|
49
|
+
"Failed to distribute packages for {designId}: {message}",
|
|
50
|
+
sessionTimeout:
|
|
51
|
+
"Session timed out waiting for projects: received {received} of {expected} expected projects",
|
|
52
|
+
},
|
|
53
|
+
},
|
|
54
|
+
} as const;
|
|
55
|
+
|
|
56
|
+
/** @public */
|
|
57
|
+
export type TranslationKeys = typeof en;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"toolWorkflowCompilerBrowser": {
|
|
3
|
+
"info": {
|
|
4
|
+
"startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
|
|
5
|
+
"connectingToHub": "Connecting to SignalR hub: {url}",
|
|
6
|
+
"remoteAgentStartedExecution": "Remote agent started execution",
|
|
7
|
+
"downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
|
|
8
|
+
"extractingArchive": "Extracting archive ({size} bytes) to {path}",
|
|
9
|
+
"distributingPackages": "Distributing packages for {count} project(s)",
|
|
10
|
+
"cleaningUpTempDir": "Cleaning up temporary directory {path}",
|
|
11
|
+
"deletingBucket": "Deleting temporary storage bucket {bucketId}",
|
|
12
|
+
"copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
|
|
13
|
+
},
|
|
14
|
+
"errors": {
|
|
15
|
+
"missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
|
|
16
|
+
"signalRConnectionFailed": "Failed to connect to SignalR hub",
|
|
17
|
+
"hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
|
|
18
|
+
"packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
|
|
19
|
+
"packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
|
|
20
|
+
"noResultForProject": "No result for project",
|
|
21
|
+
"beginSessionFailed": "BeginSession failed ({status}): {errorText}",
|
|
22
|
+
"hubConnectionClosed": "Hub connection closed unexpectedly",
|
|
23
|
+
"packAgentDisconnected": "Pack agent disconnected unexpectedly",
|
|
24
|
+
"deleteBucketFailed": "Unable to delete temporary storage bucket on Orchestrator: {statusText}",
|
|
25
|
+
"cleanupBucketFailed": "Unable to cleanup remote bucket {bucketId}: {message}",
|
|
26
|
+
"getBucketUriFailed": "Failed to get bucket read URI ({status}): {errorText}",
|
|
27
|
+
"downloadArchiveFailed": "Failed to download archive from bucket ({status}): {statusText}",
|
|
28
|
+
"noMatchingProject": "No matching project found for path: {projectPath}",
|
|
29
|
+
"noOutputForProject": "No output found for project {designId}",
|
|
30
|
+
"distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
|
|
31
|
+
"sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"toolWorkflowCompilerBrowser": {
|
|
3
|
+
"info": {
|
|
4
|
+
"startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
|
|
5
|
+
"connectingToHub": "Connecting to SignalR hub: {url}",
|
|
6
|
+
"remoteAgentStartedExecution": "Remote agent started execution",
|
|
7
|
+
"downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
|
|
8
|
+
"extractingArchive": "Extracting archive ({size} bytes) to {path}",
|
|
9
|
+
"distributingPackages": "Distributing packages for {count} project(s)",
|
|
10
|
+
"cleaningUpTempDir": "Cleaning up temporary directory {path}",
|
|
11
|
+
"deletingBucket": "Deleting temporary storage bucket {bucketId}",
|
|
12
|
+
"copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
|
|
13
|
+
},
|
|
14
|
+
"errors": {
|
|
15
|
+
"missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
|
|
16
|
+
"signalRConnectionFailed": "Failed to connect to SignalR hub",
|
|
17
|
+
"hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
|
|
18
|
+
"packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
|
|
19
|
+
"packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
|
|
20
|
+
"noResultForProject": "No result for project",
|
|
21
|
+
"beginSessionFailed": "BeginSession failed ({status}): {errorText}",
|
|
22
|
+
"hubConnectionClosed": "Hub connection closed unexpectedly",
|
|
23
|
+
"packAgentDisconnected": "Pack agent disconnected unexpectedly",
|
|
24
|
+
"deleteBucketFailed": "Unable to delete temporary storage bucket on Orchestrator: {statusText}",
|
|
25
|
+
"cleanupBucketFailed": "Unable to cleanup remote bucket {bucketId}: {message}",
|
|
26
|
+
"getBucketUriFailed": "Failed to get bucket read URI ({status}): {errorText}",
|
|
27
|
+
"downloadArchiveFailed": "Failed to download archive from bucket ({status}): {statusText}",
|
|
28
|
+
"noMatchingProject": "No matching project found for path: {projectPath}",
|
|
29
|
+
"noOutputForProject": "No output found for project {designId}",
|
|
30
|
+
"distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
|
|
31
|
+
"sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"toolWorkflowCompilerBrowser": {
|
|
3
|
+
"info": {
|
|
4
|
+
"startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
|
|
5
|
+
"connectingToHub": "Connecting to SignalR hub: {url}",
|
|
6
|
+
"remoteAgentStartedExecution": "Remote agent started execution",
|
|
7
|
+
"downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
|
|
8
|
+
"extractingArchive": "Extracting archive ({size} bytes) to {path}",
|
|
9
|
+
"distributingPackages": "Distributing packages for {count} project(s)",
|
|
10
|
+
"cleaningUpTempDir": "Cleaning up temporary directory {path}",
|
|
11
|
+
"deletingBucket": "Deleting temporary storage bucket {bucketId}",
|
|
12
|
+
"copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
|
|
13
|
+
},
|
|
14
|
+
"errors": {
|
|
15
|
+
"missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
|
|
16
|
+
"signalRConnectionFailed": "Failed to connect to SignalR hub",
|
|
17
|
+
"hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
|
|
18
|
+
"packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
|
|
19
|
+
"packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
|
|
20
|
+
"noResultForProject": "No result for project",
|
|
21
|
+
"beginSessionFailed": "BeginSession failed ({status}): {errorText}",
|
|
22
|
+
"hubConnectionClosed": "Hub connection closed unexpectedly",
|
|
23
|
+
"packAgentDisconnected": "Pack agent disconnected unexpectedly",
|
|
24
|
+
"deleteBucketFailed": "Unable to delete temporary storage bucket on Orchestrator: {statusText}",
|
|
25
|
+
"cleanupBucketFailed": "Unable to cleanup remote bucket {bucketId}: {message}",
|
|
26
|
+
"getBucketUriFailed": "Failed to get bucket read URI ({status}): {errorText}",
|
|
27
|
+
"downloadArchiveFailed": "Failed to download archive from bucket ({status}): {statusText}",
|
|
28
|
+
"noMatchingProject": "No matching project found for path: {projectPath}",
|
|
29
|
+
"noOutputForProject": "No output found for project {designId}",
|
|
30
|
+
"distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
|
|
31
|
+
"sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"toolWorkflowCompilerBrowser": {
|
|
3
|
+
"info": {
|
|
4
|
+
"startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
|
|
5
|
+
"connectingToHub": "Connecting to SignalR hub: {url}",
|
|
6
|
+
"remoteAgentStartedExecution": "Remote agent started execution",
|
|
7
|
+
"downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
|
|
8
|
+
"extractingArchive": "Extracting archive ({size} bytes) to {path}",
|
|
9
|
+
"distributingPackages": "Distributing packages for {count} project(s)",
|
|
10
|
+
"cleaningUpTempDir": "Cleaning up temporary directory {path}",
|
|
11
|
+
"deletingBucket": "Deleting temporary storage bucket {bucketId}",
|
|
12
|
+
"copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
|
|
13
|
+
},
|
|
14
|
+
"errors": {
|
|
15
|
+
"missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
|
|
16
|
+
"signalRConnectionFailed": "Failed to connect to SignalR hub",
|
|
17
|
+
"hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
|
|
18
|
+
"packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
|
|
19
|
+
"packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
|
|
20
|
+
"noResultForProject": "No result for project",
|
|
21
|
+
"beginSessionFailed": "BeginSession failed ({status}): {errorText}",
|
|
22
|
+
"hubConnectionClosed": "Hub connection closed unexpectedly",
|
|
23
|
+
"packAgentDisconnected": "Pack agent disconnected unexpectedly",
|
|
24
|
+
"deleteBucketFailed": "Unable to delete temporary storage bucket on Orchestrator: {statusText}",
|
|
25
|
+
"cleanupBucketFailed": "Unable to cleanup remote bucket {bucketId}: {message}",
|
|
26
|
+
"getBucketUriFailed": "Failed to get bucket read URI ({status}): {errorText}",
|
|
27
|
+
"downloadArchiveFailed": "Failed to download archive from bucket ({status}): {statusText}",
|
|
28
|
+
"noMatchingProject": "No matching project found for path: {projectPath}",
|
|
29
|
+
"noOutputForProject": "No output found for project {designId}",
|
|
30
|
+
"distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
|
|
31
|
+
"sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"toolWorkflowCompilerBrowser": {
|
|
3
|
+
"info": {
|
|
4
|
+
"startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
|
|
5
|
+
"connectingToHub": "Connecting to SignalR hub: {url}",
|
|
6
|
+
"remoteAgentStartedExecution": "Remote agent started execution",
|
|
7
|
+
"downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
|
|
8
|
+
"extractingArchive": "Extracting archive ({size} bytes) to {path}",
|
|
9
|
+
"distributingPackages": "Distributing packages for {count} project(s)",
|
|
10
|
+
"cleaningUpTempDir": "Cleaning up temporary directory {path}",
|
|
11
|
+
"deletingBucket": "Deleting temporary storage bucket {bucketId}",
|
|
12
|
+
"copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
|
|
13
|
+
},
|
|
14
|
+
"errors": {
|
|
15
|
+
"missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
|
|
16
|
+
"signalRConnectionFailed": "Failed to connect to SignalR hub",
|
|
17
|
+
"hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
|
|
18
|
+
"packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
|
|
19
|
+
"packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
|
|
20
|
+
"noResultForProject": "No result for project",
|
|
21
|
+
"beginSessionFailed": "BeginSession failed ({status}): {errorText}",
|
|
22
|
+
"hubConnectionClosed": "Hub connection closed unexpectedly",
|
|
23
|
+
"packAgentDisconnected": "Pack agent disconnected unexpectedly",
|
|
24
|
+
"deleteBucketFailed": "Unable to delete temporary storage bucket on Orchestrator: {statusText}",
|
|
25
|
+
"cleanupBucketFailed": "Unable to cleanup remote bucket {bucketId}: {message}",
|
|
26
|
+
"getBucketUriFailed": "Failed to get bucket read URI ({status}): {errorText}",
|
|
27
|
+
"downloadArchiveFailed": "Failed to download archive from bucket ({status}): {statusText}",
|
|
28
|
+
"noMatchingProject": "No matching project found for path: {projectPath}",
|
|
29
|
+
"noOutputForProject": "No output found for project {designId}",
|
|
30
|
+
"distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
|
|
31
|
+
"sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"toolWorkflowCompilerBrowser": {
|
|
3
|
+
"info": {
|
|
4
|
+
"startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
|
|
5
|
+
"connectingToHub": "Connecting to SignalR hub: {url}",
|
|
6
|
+
"remoteAgentStartedExecution": "Remote agent started execution",
|
|
7
|
+
"downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
|
|
8
|
+
"extractingArchive": "Extracting archive ({size} bytes) to {path}",
|
|
9
|
+
"distributingPackages": "Distributing packages for {count} project(s)",
|
|
10
|
+
"cleaningUpTempDir": "Cleaning up temporary directory {path}",
|
|
11
|
+
"deletingBucket": "Deleting temporary storage bucket {bucketId}",
|
|
12
|
+
"copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
|
|
13
|
+
},
|
|
14
|
+
"errors": {
|
|
15
|
+
"missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
|
|
16
|
+
"signalRConnectionFailed": "Failed to connect to SignalR hub",
|
|
17
|
+
"hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
|
|
18
|
+
"packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
|
|
19
|
+
"packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
|
|
20
|
+
"noResultForProject": "No result for project",
|
|
21
|
+
"beginSessionFailed": "BeginSession failed ({status}): {errorText}",
|
|
22
|
+
"hubConnectionClosed": "Hub connection closed unexpectedly",
|
|
23
|
+
"packAgentDisconnected": "Pack agent disconnected unexpectedly",
|
|
24
|
+
"deleteBucketFailed": "Unable to delete temporary storage bucket on Orchestrator: {statusText}",
|
|
25
|
+
"cleanupBucketFailed": "Unable to cleanup remote bucket {bucketId}: {message}",
|
|
26
|
+
"getBucketUriFailed": "Failed to get bucket read URI ({status}): {errorText}",
|
|
27
|
+
"downloadArchiveFailed": "Failed to download archive from bucket ({status}): {statusText}",
|
|
28
|
+
"noMatchingProject": "No matching project found for path: {projectPath}",
|
|
29
|
+
"noOutputForProject": "No output found for project {designId}",
|
|
30
|
+
"distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
|
|
31
|
+
"sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"toolWorkflowCompilerBrowser": {
|
|
3
|
+
"info": {
|
|
4
|
+
"startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
|
|
5
|
+
"connectingToHub": "Connecting to SignalR hub: {url}",
|
|
6
|
+
"remoteAgentStartedExecution": "Remote agent started execution",
|
|
7
|
+
"downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
|
|
8
|
+
"extractingArchive": "Extracting archive ({size} bytes) to {path}",
|
|
9
|
+
"distributingPackages": "Distributing packages for {count} project(s)",
|
|
10
|
+
"cleaningUpTempDir": "Cleaning up temporary directory {path}",
|
|
11
|
+
"deletingBucket": "Deleting temporary storage bucket {bucketId}",
|
|
12
|
+
"copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
|
|
13
|
+
},
|
|
14
|
+
"errors": {
|
|
15
|
+
"missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
|
|
16
|
+
"signalRConnectionFailed": "Failed to connect to SignalR hub",
|
|
17
|
+
"hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
|
|
18
|
+
"packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
|
|
19
|
+
"packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
|
|
20
|
+
"noResultForProject": "No result for project",
|
|
21
|
+
"beginSessionFailed": "BeginSession failed ({status}): {errorText}",
|
|
22
|
+
"hubConnectionClosed": "Hub connection closed unexpectedly",
|
|
23
|
+
"packAgentDisconnected": "Pack agent disconnected unexpectedly",
|
|
24
|
+
"deleteBucketFailed": "Unable to delete temporary storage bucket on Orchestrator: {statusText}",
|
|
25
|
+
"cleanupBucketFailed": "Unable to cleanup remote bucket {bucketId}: {message}",
|
|
26
|
+
"getBucketUriFailed": "Failed to get bucket read URI ({status}): {errorText}",
|
|
27
|
+
"downloadArchiveFailed": "Failed to download archive from bucket ({status}): {statusText}",
|
|
28
|
+
"noMatchingProject": "No matching project found for path: {projectPath}",
|
|
29
|
+
"noOutputForProject": "No output found for project {designId}",
|
|
30
|
+
"distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
|
|
31
|
+
"sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"toolWorkflowCompilerBrowser": {
|
|
3
|
+
"info": {
|
|
4
|
+
"startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
|
|
5
|
+
"connectingToHub": "Connecting to SignalR hub: {url}",
|
|
6
|
+
"remoteAgentStartedExecution": "Remote agent started execution",
|
|
7
|
+
"downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
|
|
8
|
+
"extractingArchive": "Extracting archive ({size} bytes) to {path}",
|
|
9
|
+
"distributingPackages": "Distributing packages for {count} project(s)",
|
|
10
|
+
"cleaningUpTempDir": "Cleaning up temporary directory {path}",
|
|
11
|
+
"deletingBucket": "Deleting temporary storage bucket {bucketId}",
|
|
12
|
+
"copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
|
|
13
|
+
},
|
|
14
|
+
"errors": {
|
|
15
|
+
"missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
|
|
16
|
+
"signalRConnectionFailed": "Failed to connect to SignalR hub",
|
|
17
|
+
"hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
|
|
18
|
+
"packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
|
|
19
|
+
"packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
|
|
20
|
+
"noResultForProject": "No result for project",
|
|
21
|
+
"beginSessionFailed": "BeginSession failed ({status}): {errorText}",
|
|
22
|
+
"hubConnectionClosed": "Hub connection closed unexpectedly",
|
|
23
|
+
"packAgentDisconnected": "Pack agent disconnected unexpectedly",
|
|
24
|
+
"deleteBucketFailed": "Unable to delete temporary storage bucket on Orchestrator: {statusText}",
|
|
25
|
+
"cleanupBucketFailed": "Unable to cleanup remote bucket {bucketId}: {message}",
|
|
26
|
+
"getBucketUriFailed": "Failed to get bucket read URI ({status}): {errorText}",
|
|
27
|
+
"downloadArchiveFailed": "Failed to download archive from bucket ({status}): {statusText}",
|
|
28
|
+
"noMatchingProject": "No matching project found for path: {projectPath}",
|
|
29
|
+
"noOutputForProject": "No output found for project {designId}",
|
|
30
|
+
"distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
|
|
31
|
+
"sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"toolWorkflowCompilerBrowser": {
|
|
3
|
+
"info": {
|
|
4
|
+
"startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
|
|
5
|
+
"connectingToHub": "Connecting to SignalR hub: {url}",
|
|
6
|
+
"remoteAgentStartedExecution": "Remote agent started execution",
|
|
7
|
+
"downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
|
|
8
|
+
"extractingArchive": "Extracting archive ({size} bytes) to {path}",
|
|
9
|
+
"distributingPackages": "Distributing packages for {count} project(s)",
|
|
10
|
+
"cleaningUpTempDir": "Cleaning up temporary directory {path}",
|
|
11
|
+
"deletingBucket": "Deleting temporary storage bucket {bucketId}",
|
|
12
|
+
"copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
|
|
13
|
+
},
|
|
14
|
+
"errors": {
|
|
15
|
+
"missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
|
|
16
|
+
"signalRConnectionFailed": "Failed to connect to SignalR hub",
|
|
17
|
+
"hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
|
|
18
|
+
"packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
|
|
19
|
+
"packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
|
|
20
|
+
"noResultForProject": "No result for project",
|
|
21
|
+
"beginSessionFailed": "BeginSession failed ({status}): {errorText}",
|
|
22
|
+
"hubConnectionClosed": "Hub connection closed unexpectedly",
|
|
23
|
+
"packAgentDisconnected": "Pack agent disconnected unexpectedly",
|
|
24
|
+
"deleteBucketFailed": "Unable to delete temporary storage bucket on Orchestrator: {statusText}",
|
|
25
|
+
"cleanupBucketFailed": "Unable to cleanup remote bucket {bucketId}: {message}",
|
|
26
|
+
"getBucketUriFailed": "Failed to get bucket read URI ({status}): {errorText}",
|
|
27
|
+
"downloadArchiveFailed": "Failed to download archive from bucket ({status}): {statusText}",
|
|
28
|
+
"noMatchingProject": "No matching project found for path: {projectPath}",
|
|
29
|
+
"noOutputForProject": "No output found for project {designId}",
|
|
30
|
+
"distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
|
|
31
|
+
"sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|