From 7ec2986fd11e2de3964546657c0069a00f0676d6 Mon Sep 17 00:00:00 2001 From: Brennan Benson <79079362+brennanb2025@users.noreply.github.com> Date: Tue, 15 Sep 2026 17:36:08 -0700 Subject: [PATCH] fix(lint): merge the duplicate agent-status contract type imports (#20907) main's tip fails audit:code-quality:native on import(no-duplicates), which reds the static analysis and verify jobs of every open PR via the merge ref. --- src/shared/agent-status-store-snapshot-budget.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/shared/agent-status-store-snapshot-budget.ts b/src/shared/agent-status-store-snapshot-budget.ts index 6ae4dc8f040..dfb4665a01a 100644 --- a/src/shared/agent-status-store-snapshot-budget.ts +++ b/src/shared/agent-status-store-snapshot-budget.ts @@ -4,10 +4,12 @@ import { } from './agent-status-store-contract' import type { AgentChildWorkAliasRecord } from './agent-status-child-work-alias' import type { AgentChildWorkRecord } from './agent-status-child-work' -import type { AgentStatusFactRecord } from './agent-status-store-contract' +import type { + AgentStatusFactRecord, + AgentStatusTombstoneRecord +} from './agent-status-store-contract' import type { AgentStatusParentRecord } from './agent-status-store-parent' import type { AgentStatusStoreState } from './agent-status-store-state' -import type { AgentStatusTombstoneRecord } from './agent-status-store-contract' import { getUtf8ByteLength } from './utf8-byte-limits' type AgentStatusSnapshotRecord =