@vtxmacro/cli 2026.8.13 → 2026.8.14
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/bin/vtx.js +3 -3
- package/package.json +1 -1
package/bin/vtx.js
CHANGED
|
@@ -38,7 +38,7 @@ var init_agent_cli_release = __esm({
|
|
|
38
38
|
"agent-cli-release.json"() {
|
|
39
39
|
agent_cli_release_default = {
|
|
40
40
|
package_name: "@vtxmacro/cli",
|
|
41
|
-
package_version: "2026.8.
|
|
41
|
+
package_version: "2026.8.14",
|
|
42
42
|
codex_package_name: "@openai/codex",
|
|
43
43
|
codex_version: "0.147.0",
|
|
44
44
|
platforms: {
|
|
@@ -17267,7 +17267,7 @@ var init_mcp_client = __esm({
|
|
|
17267
17267
|
if (!host) return invalidBoundResult(name);
|
|
17268
17268
|
if (host.host_id !== request.host_id || host.host_generation !== request.host_generation || host.advertisement_generation !== request.advertisement_generation || host.key_generation !== request.key_generation || request.adapter !== void 0 && host.adapter !== request.adapter) invalidBoundResult(name);
|
|
17269
17269
|
if (name !== "inference.host.heartbeat") {
|
|
17270
|
-
if (host.display_name !== request.display_name ||
|
|
17270
|
+
if (host.display_name !== request.display_name || host.authenticated_account_email !== void 0 && host.authenticated_account_email !== null && host.authenticated_account_email !== request.authenticated_account_email || (host.authenticated_account_plan ?? null) !== (request.authenticated_account_plan ?? null) || !exactJson(host.models, request.models) || host.status === "revoked") invalidBoundResult(name);
|
|
17271
17271
|
return;
|
|
17272
17272
|
}
|
|
17273
17273
|
const expectedStatus = request.status === "healthy" ? "online" : request.status;
|
|
@@ -28075,7 +28075,7 @@ var init_runner = __esm({
|
|
|
28075
28075
|
};
|
|
28076
28076
|
assertAdvertisementResult = (advertisement, result2) => {
|
|
28077
28077
|
const host = result2.host;
|
|
28078
|
-
if (host.host_id !== advertisement.host_id || host.host_generation !== advertisement.host_generation || host.advertisement_generation !== advertisement.advertisement_generation || host.key_generation !== advertisement.key_generation || host.display_name !== advertisement.display_name ||
|
|
28078
|
+
if (host.host_id !== advertisement.host_id || host.host_generation !== advertisement.host_generation || host.advertisement_generation !== advertisement.advertisement_generation || host.key_generation !== advertisement.key_generation || host.display_name !== advertisement.display_name || host.authenticated_account_email !== void 0 && host.authenticated_account_email !== null && host.authenticated_account_email !== advertisement.authenticated_account_email || (host.authenticated_account_plan ?? null) !== (advertisement.authenticated_account_plan ?? null) || host.adapter !== advertisement.adapter || host.status === "revoked" || !exactJson2(host.models, advertisement.models)) runnerIdentityMismatch("Host advertisement");
|
|
28079
28079
|
};
|
|
28080
28080
|
assertHostHeartbeatResult = (request, result2, allowOfflineProjection = false) => {
|
|
28081
28081
|
const expectedStatus = request.status === "healthy" ? "online" : request.status;
|