refactor(pairing): model runtime type consumers (#107760)

* refactor(pairing): model runtime type consumers

* chore(deadcode): refresh unused-export baseline
This commit is contained in:
Peter Steinberger
2026-07-14 13:53:34 -07:00
committed by GitHub
parent 2b6053c3f9
commit 7cf790a49d
2 changed files with 4 additions and 6 deletions

View File

@@ -381,8 +381,6 @@ export const KNIP_UNUSED_EXPORT_BASELINE = [
"src/music-generation/capabilities.ts: resolveMusicGenerationMode",
"src/music-generation/runtime.ts: MusicGenerationRuntimeDeps",
"src/node-host/invoke.ts: testing",
"src/pairing/pairing-store.types.ts: ReadChannelAllowFromStoreForAccount",
"src/pairing/pairing-store.types.ts: UpsertChannelPairingRequestForAccount",
"src/plugin-state/plugin-state-store.sqlite.ts: probePluginStateStore",
"src/plugin-state/plugin-state-store.sqlite.ts: seedPluginStateDatabaseEntriesForTests",
"src/plugin-state/plugin-state-store.sqlite.ts: setMaxPluginStateEntriesPerPluginForTests",

View File

@@ -24,13 +24,13 @@ import type {
RecordSessionMetaFromInbound,
UpdateLastRoute,
} from "../../config/sessions/runtime-types.js";
import type {
ReadChannelAllowFromStoreForAccount,
UpsertChannelPairingRequestForAccount,
} from "../../pairing/pairing-store.types.js";
type DispatchReplyWithBufferedBlockDispatcher =
import("../../auto-reply/reply/provider-dispatcher.types.js").DispatchReplyWithBufferedBlockDispatcher;
type ReadChannelAllowFromStoreForAccount =
import("../../pairing/pairing-store.types.js").ReadChannelAllowFromStoreForAccount;
type UpsertChannelPairingRequestForAccount =
import("../../pairing/pairing-store.types.js").UpsertChannelPairingRequestForAccount;
type RecordInboundSession = import("../../channels/session.types.js").RecordInboundSession;
type RuntimeThreadBindingLifecycleRecord =