@uipath/packager-tool-workflowcompiler-browser 0.0.29 → 1.196.0

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.
@@ -1,4 +1,4 @@
1
- import { type IFileSystem, type IProjectPackOptions, type IToolLogger, type ProjectOperationContext, ToolResult } from "@uipath/solutionpackager-tool-core";
1
+ import { type IFileSystem, type IProjectPackOptions, type IToolLogger, type IZipService, type ProjectOperationContext, ToolResult } from "@uipath/solutionpackager-tool-core";
2
2
  interface ProjectResultEntry {
3
3
  options: IProjectPackOptions;
4
4
  }
@@ -6,7 +6,7 @@ export declare class PackResultProcessor {
6
6
  private readonly fileSystem;
7
7
  private readonly logger?;
8
8
  private readonly zipService;
9
- constructor(fileSystem: IFileSystem, logger?: IToolLogger | undefined);
9
+ constructor(fileSystem: IFileSystem, logger?: IToolLogger | undefined, zipService?: IZipService);
10
10
  processAsync(bucketId: number, projects: Map<string, ProjectResultEntry>, context: ProjectOperationContext): Promise<Map<string, ToolResult>>;
11
11
  private downloadArchiveAsync;
12
12
  private deleteBucketAsync;
@@ -1,26 +1,43 @@
1
- import { type IFileSystem, type IProjectPackOptions, type IProjectToolFactory, type ProjectOperationContext, ToolResult } from "@uipath/solutionpackager-tool-core";
1
+ import { type IFileSystem, type IProjectPackOptions, type IProjectToolFactory, type IProjectValidateOptions, type ProjectOperationContext, ToolResult } from "@uipath/solutionpackager-tool-core";
2
+ export declare enum BundleOperation {
3
+ Pack = "Pack",
4
+ Validate = "Validate"
5
+ }
2
6
  export interface IProjectBundleExecutor {
3
7
  packAsync(options: IProjectPackOptions, context: ProjectOperationContext): Promise<ToolResult>;
8
+ validateAsync(options: IProjectValidateOptions, context: ProjectOperationContext): Promise<ToolResult>;
4
9
  }
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
10
  export declare class ProjectBundleExecutor implements IProjectBundleExecutor {
11
11
  private readonly toolFactory;
12
12
  private readonly fileSystem;
13
13
  static readonly SESSION_TIMEOUT_MS = 1800000;
14
+ /**
15
+ * Maximum length (in characters) of the inline `inputArguments` payload
16
+ * accepted by the serverless jobs endpoint. Beyond this the arguments must
17
+ * be uploaded as a file attachment and referenced via `inputFile`.
18
+ */
19
+ static readonly MAX_INLINE_INPUT_ARGUMENTS_LENGTH = 10000;
14
20
  private readonly sessions;
15
21
  private readonly pendingSessionCreations;
16
22
  constructor(toolFactory: IProjectToolFactory, fileSystem: IFileSystem);
17
23
  packAsync(options: IProjectPackOptions, context: ProjectOperationContext): Promise<ToolResult>;
24
+ validateAsync(options: IProjectValidateOptions, context: ProjectOperationContext): Promise<ToolResult>;
25
+ private enqueueAsync;
18
26
  private getSessionAsync;
19
27
  private createSessionAsync;
20
- private packOnAgentAsync;
28
+ private runAgentAsync;
21
29
  private connectToHubAsync;
22
- private handlePackResultAsync;
30
+ private handleAgentResultAsync;
31
+ private handlePackBucketAsync;
23
32
  private sendBeginSessionAsync;
33
+ /**
34
+ * Uploads the input arguments JSON as a file attachment and returns the
35
+ * attachment id, to be passed as `inputFile` on the serverless job request.
36
+ * Mirrors the two-step flow used by the Orchestrator UI: create the
37
+ * attachment (which returns a signed blob write URI) then PUT the contents
38
+ * to that URI using the storage-provided headers.
39
+ */
40
+ private uploadInputArgumentsFileAsync;
24
41
  private resolveAll;
25
42
  private countCompatibleProjects;
26
43
  }
@@ -2,15 +2,16 @@ import { type IFileSystem, type IProjectBuildOptions, type IProjectPackOptions,
2
2
  import type { IProjectBundleExecutor } from "./project-bundle-executor.js";
3
3
  /**
4
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.
5
+ * Delegates pack and validate to a bundle executor that coordinates a
6
+ * single remote-agent invocation across all compatible projects in the
7
+ * solution via SignalR.
7
8
  */
8
9
  export declare class WorkflowCompilerTool extends ProjectTool {
9
10
  private readonly bundleExecutor;
10
11
  private readonly context?;
11
12
  constructor(fileSystem: IFileSystem, logger: IToolLogger, bundleExecutor: IProjectBundleExecutor, context?: ProjectOperationContext | undefined);
12
13
  restoreAsync(_options: IProjectRestoreOptions, _cancellationToken?: AbortSignal): Promise<ToolResult>;
13
- validateAsync(_options: IProjectValidateOptions, _cancellationToken?: AbortSignal): Promise<ToolResult>;
14
+ validateAsync(options: IProjectValidateOptions, _cancellationToken?: AbortSignal): Promise<ToolResult>;
14
15
  buildAsync(_options: IProjectBuildOptions, _cancellationToken?: AbortSignal): Promise<ToolResult>;
15
16
  packAsync(options: IProjectPackOptions, _cancellationToken?: AbortSignal): Promise<ToolResult>;
16
17
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uipath/packager-tool-workflowcompiler-browser",
3
- "version": "0.0.29",
3
+ "version": "1.196.0",
4
4
  "description": "UiPath Workflow Compiler tool - browser implementation",
5
5
  "type": "module",
6
6
  "exports": {
@@ -18,23 +18,6 @@
18
18
  "registry": "https://registry.npmjs.org/"
19
19
  },
20
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
21
  "files": [
39
22
  "dist",
40
23
  "!dist/**/*.map",
@@ -42,19 +25,19 @@
42
25
  ],
43
26
  "author": "",
44
27
  "license": "ISC",
45
- "dependencies": {
46
- "@microsoft/signalr": "^10.0.0"
47
- },
48
28
  "peerDependencies": {
49
- "@uipath/solutionpackager-tool-core": "0.0.31"
29
+ "@uipath/solutionpackager-tool-core": "1.196.0",
30
+ "@microsoft/signalr": ">=7 <11"
50
31
  },
51
32
  "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",
33
+ "@microsoft/signalr": "^10.0.0",
34
+ "@uipath/solutionpackager-tool-core": "1.196.0",
35
+ "@vitest/browser": "^4.1.6",
36
+ "@vitest/browser-playwright": "^4.1.6",
37
+ "@vitest/coverage-v8": "^4.1.6",
56
38
  "playwright": "^1.57.0",
57
- "typescript": "^5.9.3",
58
- "vitest": "^4.0.14"
59
- }
39
+ "typescript": "^6.0.2",
40
+ "vitest": "^4.1.6"
41
+ },
42
+ "gitHead": "bed2b46f1ec33a47a7dcae2e6d4b7ab99bd06981"
60
43
  }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "toolWorkflowCompilerBrowser": {
3
3
  "info": {
4
- "startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
5
4
  "connectingToHub": "Connecting to SignalR hub: {url}",
6
5
  "remoteAgentStartedExecution": "Remote agent started execution",
7
6
  "downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
@@ -9,14 +8,14 @@
9
8
  "distributingPackages": "Distributing packages for {count} project(s)",
10
9
  "cleaningUpTempDir": "Cleaning up temporary directory {path}",
11
10
  "deletingBucket": "Deleting temporary storage bucket {bucketId}",
12
- "copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
11
+ "copyingFiles": "Copying {count} file(s) for project {designId} to {path}",
12
+ "offloadingInputArguments": "Eingabeargumente sind zu groß ({length} Zeichen), um sie inline zu senden; sie werden als Dateianhang hochgeladen"
13
13
  },
14
14
  "errors": {
15
15
  "missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
16
16
  "signalRConnectionFailed": "Failed to connect to SignalR hub",
17
17
  "hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
18
18
  "packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
19
- "packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
20
19
  "noResultForProject": "No result for project",
21
20
  "beginSessionFailed": "BeginSession failed ({status}): {errorText}",
22
21
  "hubConnectionClosed": "Hub connection closed unexpectedly",
@@ -28,7 +27,10 @@
28
27
  "noMatchingProject": "No matching project found for path: {projectPath}",
29
28
  "noOutputForProject": "No output found for project {designId}",
30
29
  "distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
31
- "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
30
+ "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects",
31
+ "createAttachmentFailed": "Anhang für Eingabeargumente konnte nicht erstellt werden ({status}): {errorText}",
32
+ "attachmentResponseMalformed": "Die Antwort auf die Anhangerstellung enthielt keine ID und keine Blob-URI",
33
+ "uploadInputArgumentsFailed": "Datei mit Eingabeargumenten konnte nicht hochgeladen werden ({status}): {statusText}"
32
34
  }
33
35
  }
34
36
  }
@@ -6,8 +6,8 @@
6
6
  export const en = {
7
7
  toolWorkflowCompilerBrowser: {
8
8
  info: {
9
- startingRemotePackAgent:
10
- "Starting remote pack agent for {count} project(s): {paths}",
9
+ startingRemoteAgent:
10
+ "Starting remote {operation} agent for {count} project(s): {paths}",
11
11
  connectingToHub: "Connecting to SignalR hub: {url}",
12
12
  remoteAgentStartedExecution: "Remote agent started execution",
13
13
  downloadingArchive:
@@ -15,10 +15,14 @@ export const en = {
15
15
  extractingArchive: "Extracting archive ({size} bytes) to {path}",
16
16
  distributingPackages:
17
17
  "Distributing packages for {count} project(s)",
18
+ skippingRemoteCompilation:
19
+ "No connection info available — skipping remote compilation for workflow compiler projects",
18
20
  cleaningUpTempDir: "Cleaning up temporary directory {path}",
19
21
  deletingBucket: "Deleting temporary storage bucket {bucketId}",
20
22
  copyingFiles:
21
23
  "Copying {count} file(s) for project {designId} to {path}",
24
+ offloadingInputArguments:
25
+ "Input arguments are too large ({length} chars) to send inline; uploading them as a file attachment",
22
26
  },
23
27
  errors: {
24
28
  missingConnectionInfo:
@@ -28,8 +32,8 @@ export const en = {
28
32
  "Failed to connect to SignalR hub at {url}: {message}",
29
33
  packSucceededNoBucket:
30
34
  "Pack succeeded but no BucketId was returned",
31
- packAgentFailed:
32
- "Pack agent failed with status {status} (code {errorCode})",
35
+ agentFailed:
36
+ "{operation} agent failed with status {status} (code {errorCode})",
33
37
  noResultForProject: "No result for project",
34
38
  beginSessionFailed: "BeginSession failed ({status}): {errorText}",
35
39
  hubConnectionClosed: "Hub connection closed unexpectedly",
@@ -49,6 +53,14 @@ export const en = {
49
53
  "Failed to distribute packages for {designId}: {message}",
50
54
  sessionTimeout:
51
55
  "Session timed out waiting for projects: received {received} of {expected} expected projects",
56
+ bundleOperationMismatch:
57
+ "Cannot mix {sessionOperation} and {entryOperation} in the same context",
58
+ createAttachmentFailed:
59
+ "Failed to create input arguments attachment ({status}): {errorText}",
60
+ attachmentResponseMalformed:
61
+ "Attachment creation response did not include an id and blob URI",
62
+ uploadInputArgumentsFailed:
63
+ "Failed to upload input arguments file ({status}): {statusText}",
52
64
  },
53
65
  },
54
66
  } as const;
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "toolWorkflowCompilerBrowser": {
3
3
  "info": {
4
- "startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
5
4
  "connectingToHub": "Connecting to SignalR hub: {url}",
6
5
  "remoteAgentStartedExecution": "Remote agent started execution",
7
6
  "downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
@@ -9,14 +8,14 @@
9
8
  "distributingPackages": "Distributing packages for {count} project(s)",
10
9
  "cleaningUpTempDir": "Cleaning up temporary directory {path}",
11
10
  "deletingBucket": "Deleting temporary storage bucket {bucketId}",
12
- "copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
11
+ "copyingFiles": "Copying {count} file(s) for project {designId} to {path}",
12
+ "offloadingInputArguments": "Los argumentos de entrada son demasiado grandes ({length} caracteres) para enviarlos en línea; se cargarán como un archivo adjunto"
13
13
  },
14
14
  "errors": {
15
15
  "missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
16
16
  "signalRConnectionFailed": "Failed to connect to SignalR hub",
17
17
  "hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
18
18
  "packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
19
- "packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
20
19
  "noResultForProject": "No result for project",
21
20
  "beginSessionFailed": "BeginSession failed ({status}): {errorText}",
22
21
  "hubConnectionClosed": "Hub connection closed unexpectedly",
@@ -28,7 +27,10 @@
28
27
  "noMatchingProject": "No matching project found for path: {projectPath}",
29
28
  "noOutputForProject": "No output found for project {designId}",
30
29
  "distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
31
- "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
30
+ "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects",
31
+ "createAttachmentFailed": "No se pudo crear el archivo adjunto de argumentos de entrada ({status}): {errorText}",
32
+ "attachmentResponseMalformed": "La respuesta de creación del archivo adjunto no incluía un id ni un URI de blob",
33
+ "uploadInputArgumentsFailed": "No se pudo cargar el archivo de argumentos de entrada ({status}): {statusText}"
32
34
  }
33
35
  }
34
36
  }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "toolWorkflowCompilerBrowser": {
3
3
  "info": {
4
- "startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
5
4
  "connectingToHub": "Connecting to SignalR hub: {url}",
6
5
  "remoteAgentStartedExecution": "Remote agent started execution",
7
6
  "downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
@@ -9,14 +8,14 @@
9
8
  "distributingPackages": "Distributing packages for {count} project(s)",
10
9
  "cleaningUpTempDir": "Cleaning up temporary directory {path}",
11
10
  "deletingBucket": "Deleting temporary storage bucket {bucketId}",
12
- "copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
11
+ "copyingFiles": "Copying {count} file(s) for project {designId} to {path}",
12
+ "offloadingInputArguments": "Los argumentos de entrada son demasiado grandes ({length} caracteres) para enviarlos en línea; se cargarán como un archivo adjunto"
13
13
  },
14
14
  "errors": {
15
15
  "missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
16
16
  "signalRConnectionFailed": "Failed to connect to SignalR hub",
17
17
  "hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
18
18
  "packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
19
- "packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
20
19
  "noResultForProject": "No result for project",
21
20
  "beginSessionFailed": "BeginSession failed ({status}): {errorText}",
22
21
  "hubConnectionClosed": "Hub connection closed unexpectedly",
@@ -28,7 +27,10 @@
28
27
  "noMatchingProject": "No matching project found for path: {projectPath}",
29
28
  "noOutputForProject": "No output found for project {designId}",
30
29
  "distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
31
- "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
30
+ "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects",
31
+ "createAttachmentFailed": "No se pudo crear el archivo adjunto de argumentos de entrada ({status}): {errorText}",
32
+ "attachmentResponseMalformed": "La respuesta de creación del archivo adjunto no incluía un id ni un URI de blob",
33
+ "uploadInputArgumentsFailed": "No se pudo cargar el archivo de argumentos de entrada ({status}): {statusText}"
32
34
  }
33
35
  }
34
36
  }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "toolWorkflowCompilerBrowser": {
3
3
  "info": {
4
- "startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
5
4
  "connectingToHub": "Connecting to SignalR hub: {url}",
6
5
  "remoteAgentStartedExecution": "Remote agent started execution",
7
6
  "downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
@@ -9,14 +8,14 @@
9
8
  "distributingPackages": "Distributing packages for {count} project(s)",
10
9
  "cleaningUpTempDir": "Cleaning up temporary directory {path}",
11
10
  "deletingBucket": "Deleting temporary storage bucket {bucketId}",
12
- "copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
11
+ "copyingFiles": "Copying {count} file(s) for project {designId} to {path}",
12
+ "offloadingInputArguments": "Les arguments d'entrée sont trop volumineux ({length} caractères) pour être envoyés en ligne ; ils seront chargés en tant que pièce jointe"
13
13
  },
14
14
  "errors": {
15
15
  "missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
16
16
  "signalRConnectionFailed": "Failed to connect to SignalR hub",
17
17
  "hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
18
18
  "packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
19
- "packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
20
19
  "noResultForProject": "No result for project",
21
20
  "beginSessionFailed": "BeginSession failed ({status}): {errorText}",
22
21
  "hubConnectionClosed": "Hub connection closed unexpectedly",
@@ -28,7 +27,10 @@
28
27
  "noMatchingProject": "No matching project found for path: {projectPath}",
29
28
  "noOutputForProject": "No output found for project {designId}",
30
29
  "distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
31
- "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
30
+ "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects",
31
+ "createAttachmentFailed": "Échec de la création de la pièce jointe des arguments d'entrée ({status}) : {errorText}",
32
+ "attachmentResponseMalformed": "La réponse de création de la pièce jointe ne contenait pas d'id ni d'URI de blob",
33
+ "uploadInputArgumentsFailed": "Échec du chargement du fichier des arguments d'entrée ({status}) : {statusText}"
32
34
  }
33
35
  }
34
36
  }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "toolWorkflowCompilerBrowser": {
3
3
  "info": {
4
- "startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
5
4
  "connectingToHub": "Connecting to SignalR hub: {url}",
6
5
  "remoteAgentStartedExecution": "Remote agent started execution",
7
6
  "downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
@@ -9,14 +8,14 @@
9
8
  "distributingPackages": "Distributing packages for {count} project(s)",
10
9
  "cleaningUpTempDir": "Cleaning up temporary directory {path}",
11
10
  "deletingBucket": "Deleting temporary storage bucket {bucketId}",
12
- "copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
11
+ "copyingFiles": "Copying {count} file(s) for project {designId} to {path}",
12
+ "offloadingInputArguments": "入力引数が大きすぎるため ({length} 文字)、インラインで送信できません。ファイル添付としてアップロードします"
13
13
  },
14
14
  "errors": {
15
15
  "missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
16
16
  "signalRConnectionFailed": "Failed to connect to SignalR hub",
17
17
  "hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
18
18
  "packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
19
- "packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
20
19
  "noResultForProject": "No result for project",
21
20
  "beginSessionFailed": "BeginSession failed ({status}): {errorText}",
22
21
  "hubConnectionClosed": "Hub connection closed unexpectedly",
@@ -28,7 +27,10 @@
28
27
  "noMatchingProject": "No matching project found for path: {projectPath}",
29
28
  "noOutputForProject": "No output found for project {designId}",
30
29
  "distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
31
- "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
30
+ "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects",
31
+ "createAttachmentFailed": "入力引数の添付ファイルの作成に失敗しました ({status}):{errorText}",
32
+ "attachmentResponseMalformed": "添付ファイルの作成応答に id と blob URI が含まれていませんでした",
33
+ "uploadInputArgumentsFailed": "入力引数ファイルのアップロードに失敗しました ({status}):{statusText}"
32
34
  }
33
35
  }
34
36
  }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "toolWorkflowCompilerBrowser": {
3
3
  "info": {
4
- "startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
5
4
  "connectingToHub": "Connecting to SignalR hub: {url}",
6
5
  "remoteAgentStartedExecution": "Remote agent started execution",
7
6
  "downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
@@ -9,14 +8,14 @@
9
8
  "distributingPackages": "Distributing packages for {count} project(s)",
10
9
  "cleaningUpTempDir": "Cleaning up temporary directory {path}",
11
10
  "deletingBucket": "Deleting temporary storage bucket {bucketId}",
12
- "copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
11
+ "copyingFiles": "Copying {count} file(s) for project {designId} to {path}",
12
+ "offloadingInputArguments": "입력 인수가 너무 커서({length}자) 인라인으로 보낼 수 없습니다. 파일 첨부로 업로드합니다"
13
13
  },
14
14
  "errors": {
15
15
  "missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
16
16
  "signalRConnectionFailed": "Failed to connect to SignalR hub",
17
17
  "hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
18
18
  "packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
19
- "packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
20
19
  "noResultForProject": "No result for project",
21
20
  "beginSessionFailed": "BeginSession failed ({status}): {errorText}",
22
21
  "hubConnectionClosed": "Hub connection closed unexpectedly",
@@ -28,7 +27,10 @@
28
27
  "noMatchingProject": "No matching project found for path: {projectPath}",
29
28
  "noOutputForProject": "No output found for project {designId}",
30
29
  "distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
31
- "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
30
+ "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects",
31
+ "createAttachmentFailed": "입력 인수 첨부 파일을 만들지 못했습니다({status}): {errorText}",
32
+ "attachmentResponseMalformed": "첨부 파일 생성 응답에 id와 blob URI가 포함되어 있지 않습니다",
33
+ "uploadInputArgumentsFailed": "입력 인수 파일을 업로드하지 못했습니다({status}): {statusText}"
32
34
  }
33
35
  }
34
36
  }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "toolWorkflowCompilerBrowser": {
3
3
  "info": {
4
- "startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
5
4
  "connectingToHub": "Connecting to SignalR hub: {url}",
6
5
  "remoteAgentStartedExecution": "Remote agent started execution",
7
6
  "downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
@@ -9,14 +8,14 @@
9
8
  "distributingPackages": "Distributing packages for {count} project(s)",
10
9
  "cleaningUpTempDir": "Cleaning up temporary directory {path}",
11
10
  "deletingBucket": "Deleting temporary storage bucket {bucketId}",
12
- "copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
11
+ "copyingFiles": "Copying {count} file(s) for project {designId} to {path}",
12
+ "offloadingInputArguments": "Os argumentos de entrada são muito grandes ({length} caracteres) para serem enviados inline; eles serão carregados como um anexo de arquivo"
13
13
  },
14
14
  "errors": {
15
15
  "missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
16
16
  "signalRConnectionFailed": "Failed to connect to SignalR hub",
17
17
  "hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
18
18
  "packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
19
- "packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
20
19
  "noResultForProject": "No result for project",
21
20
  "beginSessionFailed": "BeginSession failed ({status}): {errorText}",
22
21
  "hubConnectionClosed": "Hub connection closed unexpectedly",
@@ -28,7 +27,10 @@
28
27
  "noMatchingProject": "No matching project found for path: {projectPath}",
29
28
  "noOutputForProject": "No output found for project {designId}",
30
29
  "distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
31
- "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
30
+ "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects",
31
+ "createAttachmentFailed": "Falha ao criar o anexo dos argumentos de entrada ({status}): {errorText}",
32
+ "attachmentResponseMalformed": "A resposta de criação do anexo não incluiu um id nem uma URI de blob",
33
+ "uploadInputArgumentsFailed": "Falha ao fazer upload do arquivo de argumentos de entrada ({status}): {statusText}"
32
34
  }
33
35
  }
34
36
  }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "toolWorkflowCompilerBrowser": {
3
3
  "info": {
4
- "startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
5
4
  "connectingToHub": "Connecting to SignalR hub: {url}",
6
5
  "remoteAgentStartedExecution": "Remote agent started execution",
7
6
  "downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
@@ -9,14 +8,14 @@
9
8
  "distributingPackages": "Distributing packages for {count} project(s)",
10
9
  "cleaningUpTempDir": "Cleaning up temporary directory {path}",
11
10
  "deletingBucket": "Deleting temporary storage bucket {bucketId}",
12
- "copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
11
+ "copyingFiles": "Copying {count} file(s) for project {designId} to {path}",
12
+ "offloadingInputArguments": "Os argumentos de entrada são demasiado grandes ({length} carateres) para serem enviados inline; serão carregados como um anexo de ficheiro"
13
13
  },
14
14
  "errors": {
15
15
  "missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
16
16
  "signalRConnectionFailed": "Failed to connect to SignalR hub",
17
17
  "hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
18
18
  "packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
19
- "packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
20
19
  "noResultForProject": "No result for project",
21
20
  "beginSessionFailed": "BeginSession failed ({status}): {errorText}",
22
21
  "hubConnectionClosed": "Hub connection closed unexpectedly",
@@ -28,7 +27,10 @@
28
27
  "noMatchingProject": "No matching project found for path: {projectPath}",
29
28
  "noOutputForProject": "No output found for project {designId}",
30
29
  "distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
31
- "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
30
+ "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects",
31
+ "createAttachmentFailed": "Falha ao criar o anexo dos argumentos de entrada ({status}): {errorText}",
32
+ "attachmentResponseMalformed": "A resposta de criação do anexo não incluía um id nem um URI de blob",
33
+ "uploadInputArgumentsFailed": "Falha ao carregar o ficheiro de argumentos de entrada ({status}): {statusText}"
32
34
  }
33
35
  }
34
36
  }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "toolWorkflowCompilerBrowser": {
3
3
  "info": {
4
- "startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
5
4
  "connectingToHub": "Connecting to SignalR hub: {url}",
6
5
  "remoteAgentStartedExecution": "Remote agent started execution",
7
6
  "downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
@@ -9,14 +8,14 @@
9
8
  "distributingPackages": "Distributing packages for {count} project(s)",
10
9
  "cleaningUpTempDir": "Cleaning up temporary directory {path}",
11
10
  "deletingBucket": "Deleting temporary storage bucket {bucketId}",
12
- "copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
11
+ "copyingFiles": "Copying {count} file(s) for project {designId} to {path}",
12
+ "offloadingInputArguments": "Argumentele de intrare sunt prea mari ({length} caractere) pentru a fi trimise inline; vor fi încărcate ca atașament de fișier"
13
13
  },
14
14
  "errors": {
15
15
  "missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
16
16
  "signalRConnectionFailed": "Failed to connect to SignalR hub",
17
17
  "hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
18
18
  "packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
19
- "packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
20
19
  "noResultForProject": "No result for project",
21
20
  "beginSessionFailed": "BeginSession failed ({status}): {errorText}",
22
21
  "hubConnectionClosed": "Hub connection closed unexpectedly",
@@ -28,7 +27,10 @@
28
27
  "noMatchingProject": "No matching project found for path: {projectPath}",
29
28
  "noOutputForProject": "No output found for project {designId}",
30
29
  "distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
31
- "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
30
+ "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects",
31
+ "createAttachmentFailed": "Crearea atașamentului cu argumentele de intrare a eșuat ({status}): {errorText}",
32
+ "attachmentResponseMalformed": "Răspunsul de creare a atașamentului nu a inclus un id și un URI de blob",
33
+ "uploadInputArgumentsFailed": "Încărcarea fișierului cu argumentele de intrare a eșuat ({status}): {statusText}"
32
34
  }
33
35
  }
34
36
  }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "toolWorkflowCompilerBrowser": {
3
3
  "info": {
4
- "startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
5
4
  "connectingToHub": "Connecting to SignalR hub: {url}",
6
5
  "remoteAgentStartedExecution": "Remote agent started execution",
7
6
  "downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
@@ -9,14 +8,14 @@
9
8
  "distributingPackages": "Distributing packages for {count} project(s)",
10
9
  "cleaningUpTempDir": "Cleaning up temporary directory {path}",
11
10
  "deletingBucket": "Deleting temporary storage bucket {bucketId}",
12
- "copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
11
+ "copyingFiles": "Copying {count} file(s) for project {designId} to {path}",
12
+ "offloadingInputArguments": "Входные аргументы слишком велики ({length} символов) для встроенной отправки; они будут загружены как вложение файла"
13
13
  },
14
14
  "errors": {
15
15
  "missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
16
16
  "signalRConnectionFailed": "Failed to connect to SignalR hub",
17
17
  "hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
18
18
  "packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
19
- "packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
20
19
  "noResultForProject": "No result for project",
21
20
  "beginSessionFailed": "BeginSession failed ({status}): {errorText}",
22
21
  "hubConnectionClosed": "Hub connection closed unexpectedly",
@@ -28,7 +27,10 @@
28
27
  "noMatchingProject": "No matching project found for path: {projectPath}",
29
28
  "noOutputForProject": "No output found for project {designId}",
30
29
  "distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
31
- "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
30
+ "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects",
31
+ "createAttachmentFailed": "Не удалось создать вложение с входными аргументами ({status}): {errorText}",
32
+ "attachmentResponseMalformed": "Ответ на создание вложения не содержал id и blob-URI",
33
+ "uploadInputArgumentsFailed": "Не удалось загрузить файл входных аргументов ({status}): {statusText}"
32
34
  }
33
35
  }
34
36
  }
@@ -1,7 +1,6 @@
1
1
  {
2
2
  "toolWorkflowCompilerBrowser": {
3
3
  "info": {
4
- "startingRemotePackAgent": "Starting remote pack agent for {count} project(s): {paths}",
5
4
  "connectingToHub": "Connecting to SignalR hub: {url}",
6
5
  "remoteAgentStartedExecution": "Remote agent started execution",
7
6
  "downloadingArchive": "Downloading pack result archive from bucket {bucketId}",
@@ -9,14 +8,14 @@
9
8
  "distributingPackages": "Distributing packages for {count} project(s)",
10
9
  "cleaningUpTempDir": "Cleaning up temporary directory {path}",
11
10
  "deletingBucket": "Deleting temporary storage bucket {bucketId}",
12
- "copyingFiles": "Copying {count} file(s) for project {designId} to {path}"
11
+ "copyingFiles": "Copying {count} file(s) for project {designId} to {path}",
12
+ "offloadingInputArguments": "Giriş bağımsız değişkenleri satır içi gönderilemeyecek kadar büyük ({length} karakter); dosya eki olarak yüklenecek"
13
13
  },
14
14
  "errors": {
15
15
  "missingConnectionInfo": "Missing connection info (cloudUrl, accessToken, or folderId)",
16
16
  "signalRConnectionFailed": "Failed to connect to SignalR hub",
17
17
  "hubConnectionFailed": "Failed to connect to SignalR hub at {url}: {message}",
18
18
  "packSucceededNoBucket": "Pack succeeded but no BucketId was returned",
19
- "packAgentFailed": "Pack agent failed with status {status} (code {errorCode})",
20
19
  "noResultForProject": "No result for project",
21
20
  "beginSessionFailed": "BeginSession failed ({status}): {errorText}",
22
21
  "hubConnectionClosed": "Hub connection closed unexpectedly",
@@ -28,7 +27,10 @@
28
27
  "noMatchingProject": "No matching project found for path: {projectPath}",
29
28
  "noOutputForProject": "No output found for project {designId}",
30
29
  "distributePackagesFailed": "Failed to distribute packages for {designId}: {message}",
31
- "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects"
30
+ "sessionTimeout": "Session timed out waiting for projects: received {received} of {expected} expected projects",
31
+ "createAttachmentFailed": "Giriş bağımsız değişkenleri eki oluşturulamadı ({status}): {errorText}",
32
+ "attachmentResponseMalformed": "Ek oluşturma yanıtı bir kimlik ve blob URI'si içermiyordu",
33
+ "uploadInputArgumentsFailed": "Giriş bağımsız değişkenleri dosyası yüklenemedi ({status}): {statusText}"
32
34
  }
33
35
  }
34
36
  }