agent-transport-system 0.4.1 → 0.4.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 +4 -2
- package/dist/ats.js.map +1 -1
- package/package.json +1 -1
package/dist/ats.js
CHANGED
|
@@ -27,7 +27,7 @@ import wrapAnsi from "wrap-ansi";
|
|
|
27
27
|
import { Box, Container, Editor, Key, ProcessTerminal, TUI, Text, getEditorKeybindings, matchesKey } from "@mariozechner/pi-tui";
|
|
28
28
|
|
|
29
29
|
//#region package.json
|
|
30
|
-
var version = "0.4.
|
|
30
|
+
var version = "0.4.2";
|
|
31
31
|
var package_default = {
|
|
32
32
|
$schema: "https://www.schemastore.org/package.json",
|
|
33
33
|
name: "agent-transport-system",
|
|
@@ -55225,7 +55225,8 @@ function buildTerminalStep(input) {
|
|
|
55225
55225
|
run: async () => {
|
|
55226
55226
|
return await connectSelectedLocalAgentsToAts({
|
|
55227
55227
|
gatewayUrl: input.input.gatewayUrl,
|
|
55228
|
-
localAgentIds: input.localAgentIds
|
|
55228
|
+
localAgentIds: input.localAgentIds,
|
|
55229
|
+
syncRouteCatalog: true
|
|
55229
55230
|
});
|
|
55230
55231
|
}
|
|
55231
55232
|
};
|
|
@@ -55298,6 +55299,7 @@ async function connectSelectedLocalAgentsToAts(input) {
|
|
|
55298
55299
|
readiness,
|
|
55299
55300
|
localAgentIds: input.localAgentIds
|
|
55300
55301
|
}));
|
|
55302
|
+
if (input.syncRouteCatalog) await notifyDaemonRouteCatalogChanged({ reason: "prepare_selected_agents_connected" });
|
|
55301
55303
|
return {
|
|
55302
55304
|
...runtimeIdentity,
|
|
55303
55305
|
localReadinessSnapshot: buildPrepareLocalReadinessSnapshot(readiness)
|