agent-transport-system 0.8.1 → 0.8.2
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/ats.js +7 -5
- package/dist/ats.js.map +1 -1
- package/package.json +1 -1
package/dist/ats.js
CHANGED
|
@@ -32,7 +32,7 @@ import { ReadStream, WriteStream } from "node:tty";
|
|
|
32
32
|
import { performance } from "node:perf_hooks";
|
|
33
33
|
|
|
34
34
|
//#region package.json
|
|
35
|
-
var version = "0.8.
|
|
35
|
+
var version = "0.8.2";
|
|
36
36
|
var package_default = {
|
|
37
37
|
$schema: "https://www.schemastore.org/package.json",
|
|
38
38
|
name: "agent-transport-system",
|
|
@@ -40302,7 +40302,7 @@ async function runDaemonServiceParticipationInstallAction(input) {
|
|
|
40302
40302
|
if (input.status.kind === "outdated") {
|
|
40303
40303
|
input.input.serviceProgress?.detail({
|
|
40304
40304
|
code: "daemon.participation.refresh.updating",
|
|
40305
|
-
text: "Updating ATS Service
|
|
40305
|
+
text: "Updating ATS Service..."
|
|
40306
40306
|
});
|
|
40307
40307
|
await runDaemonServiceSafeRefresh({
|
|
40308
40308
|
atsProfileId: input.input.atsProfileId,
|
|
@@ -40399,7 +40399,7 @@ async function runDaemonServiceParticipationRefresh(input) {
|
|
|
40399
40399
|
try {
|
|
40400
40400
|
input.input.serviceProgress?.detail({
|
|
40401
40401
|
code: "daemon.participation.refresh.updating",
|
|
40402
|
-
text: "Updating ATS Service
|
|
40402
|
+
text: "Updating ATS Service..."
|
|
40403
40403
|
});
|
|
40404
40404
|
const refreshOutcome = await runDaemonServiceSafeRefresh({
|
|
40405
40405
|
atsProfileId: input.input.atsProfileId,
|
|
@@ -57031,7 +57031,7 @@ const DAEMON_MENU_COMMANDS = [
|
|
|
57031
57031
|
function emitDaemonServiceProgress(input) {
|
|
57032
57032
|
input.progress?.detail({
|
|
57033
57033
|
code: input.code,
|
|
57034
|
-
text: input.text
|
|
57034
|
+
text: input.progressText ?? input.text
|
|
57035
57035
|
});
|
|
57036
57036
|
input.spinner?.message(input.text);
|
|
57037
57037
|
}
|
|
@@ -57552,6 +57552,7 @@ async function runDaemonAfterReinstallStartWithRetry(input) {
|
|
|
57552
57552
|
gatewayUrl: input.gatewayUrl,
|
|
57553
57553
|
outputMode: "silent",
|
|
57554
57554
|
profile: input.profile,
|
|
57555
|
+
suppressStartSpinner: true,
|
|
57555
57556
|
view: input.view,
|
|
57556
57557
|
mode: "background"
|
|
57557
57558
|
});
|
|
@@ -58776,7 +58777,7 @@ async function runSystemDaemonCore(context) {
|
|
|
58776
58777
|
deviceId: runConfig.deviceId,
|
|
58777
58778
|
heartbeatMs: runConfig.heartbeatMs,
|
|
58778
58779
|
...input.serviceProgress ? { serviceProgress: input.serviceProgress } : {},
|
|
58779
|
-
suppressStartSpinner: input.suppressStartSpinner
|
|
58780
|
+
suppressStartSpinner: input.suppressStartSpinner === true || input.outputMode === "silent"
|
|
58780
58781
|
});
|
|
58781
58782
|
}
|
|
58782
58783
|
async function maybeResolveRunResultFromDaemonInventory(input) {
|
|
@@ -59361,6 +59362,7 @@ async function runSystemServiceManager(input) {
|
|
|
59361
59362
|
emitDaemonServiceProgress({
|
|
59362
59363
|
code: "daemon.service.wait_running",
|
|
59363
59364
|
progress: input.serviceProgress,
|
|
59365
|
+
progressText: "Preparing ATS Service...",
|
|
59364
59366
|
spinner: startSpinner,
|
|
59365
59367
|
text: "Waiting for ATS Service to report ready..."
|
|
59366
59368
|
});
|