@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.
- package/dist/i18n/locales/en.d.ts +8 -2
- package/dist/index.js +251 -128
- package/dist/pack-result-processor.d.ts +2 -2
- package/dist/project-bundle-executor.d.ts +25 -8
- package/dist/workflow-compiler-tool.d.ts +4 -3
- package/package.json +12 -29
- package/src/i18n/locales/de.json +6 -4
- package/src/i18n/locales/en.ts +16 -4
- package/src/i18n/locales/es-MX.json +6 -4
- package/src/i18n/locales/es.json +6 -4
- package/src/i18n/locales/fr.json +6 -4
- package/src/i18n/locales/ja.json +6 -4
- package/src/i18n/locales/ko.json +6 -4
- package/src/i18n/locales/pt-BR.json +6 -4
- package/src/i18n/locales/pt.json +6 -4
- package/src/i18n/locales/ro.json +6 -4
- package/src/i18n/locales/ru.json +6 -4
- package/src/i18n/locales/tr.json +6 -4
- package/src/i18n/locales/zh-CN.json +6 -4
- package/src/i18n/locales/zh-TW.json +6 -4
- package/src/i18n/locales/zu.json +6 -4
- package/src/pack-result-processor.ts +4 -6
- package/src/packager-hub-connection.ts +15 -40
- package/src/project-bundle-executor.ts +270 -40
- package/src/workflow-compiler-tool.ts +15 -9
|
@@ -5,22 +5,24 @@
|
|
|
5
5
|
export declare const en: {
|
|
6
6
|
readonly toolWorkflowCompilerBrowser: {
|
|
7
7
|
readonly info: {
|
|
8
|
-
readonly
|
|
8
|
+
readonly startingRemoteAgent: "Starting remote {operation} agent for {count} project(s): {paths}";
|
|
9
9
|
readonly connectingToHub: "Connecting to SignalR hub: {url}";
|
|
10
10
|
readonly remoteAgentStartedExecution: "Remote agent started execution";
|
|
11
11
|
readonly downloadingArchive: "Downloading pack result archive from bucket {bucketId}";
|
|
12
12
|
readonly extractingArchive: "Extracting archive ({size} bytes) to {path}";
|
|
13
13
|
readonly distributingPackages: "Distributing packages for {count} project(s)";
|
|
14
|
+
readonly skippingRemoteCompilation: "No connection info available — skipping remote compilation for workflow compiler projects";
|
|
14
15
|
readonly cleaningUpTempDir: "Cleaning up temporary directory {path}";
|
|
15
16
|
readonly deletingBucket: "Deleting temporary storage bucket {bucketId}";
|
|
16
17
|
readonly copyingFiles: "Copying {count} file(s) for project {designId} to {path}";
|
|
18
|
+
readonly offloadingInputArguments: "Input arguments are too large ({length} chars) to send inline; uploading them as a file attachment";
|
|
17
19
|
};
|
|
18
20
|
readonly errors: {
|
|
19
21
|
readonly missingConnectionInfo: "Missing connection info (cloudUrl, accessToken, or folderId)";
|
|
20
22
|
readonly signalRConnectionFailed: "Failed to connect to SignalR hub";
|
|
21
23
|
readonly hubConnectionFailed: "Failed to connect to SignalR hub at {url}: {message}";
|
|
22
24
|
readonly packSucceededNoBucket: "Pack succeeded but no BucketId was returned";
|
|
23
|
-
readonly
|
|
25
|
+
readonly agentFailed: "{operation} agent failed with status {status} (code {errorCode})";
|
|
24
26
|
readonly noResultForProject: "No result for project";
|
|
25
27
|
readonly beginSessionFailed: "BeginSession failed ({status}): {errorText}";
|
|
26
28
|
readonly hubConnectionClosed: "Hub connection closed unexpectedly";
|
|
@@ -33,6 +35,10 @@ export declare const en: {
|
|
|
33
35
|
readonly noOutputForProject: "No output found for project {designId}";
|
|
34
36
|
readonly distributePackagesFailed: "Failed to distribute packages for {designId}: {message}";
|
|
35
37
|
readonly sessionTimeout: "Session timed out waiting for projects: received {received} of {expected} expected projects";
|
|
38
|
+
readonly bundleOperationMismatch: "Cannot mix {sessionOperation} and {entryOperation} in the same context";
|
|
39
|
+
readonly createAttachmentFailed: "Failed to create input arguments attachment ({status}): {errorText}";
|
|
40
|
+
readonly attachmentResponseMalformed: "Attachment creation response did not include an id and blob URI";
|
|
41
|
+
readonly uploadInputArgumentsFailed: "Failed to upload input arguments file ({status}): {statusText}";
|
|
36
42
|
};
|
|
37
43
|
};
|
|
38
44
|
};
|