fix(ci): repair tsgo test harnesses

This commit is contained in:
Peter Steinberger
2026-04-06 17:15:24 +01:00
parent c01b4981af
commit 5d7a73380f
9 changed files with 47 additions and 22 deletions

View File

@@ -14,7 +14,7 @@ import {
type SessionBindingContractChannelId,
} from "./manifest.js";
import { importBundledChannelContractArtifact } from "./runtime-artifacts.js";
import "./registry.js";
import "../registry.js";
type SessionBindingContractEntry = {
id: string;

View File

@@ -79,11 +79,8 @@ export type ChannelConfigSchema = {
/** Full capability contract for a native channel plugin. */
type ChannelPluginSetupWizard = ChannelSetupWizard | ChannelSetupWizardAdapter;
export type ChannelPlugin<
ResolvedAccount = Record<string, unknown>,
Probe = unknown,
Audit = unknown,
> = {
// oxlint-disable-next-line typescript/no-explicit-any
export type ChannelPlugin<ResolvedAccount = any, Probe = unknown, Audit = unknown> = {
id: ChannelId;
meta: ChannelMeta;
capabilities: ChannelCapabilities;