Fix main CI guard drift (#90532)

This commit is contained in:
Dallin Romney
2026-06-04 20:31:41 -07:00
committed by GitHub
parent 978fdd7d2a
commit fb750e6eed
5 changed files with 9 additions and 9 deletions

View File

@@ -47,9 +47,9 @@ const allowedRawFetchCallsites = new Set([
bundledPluginCallsite("qa-lab", "src/gateway-child.ts", 489),
bundledPluginCallsite("qa-lab", "src/suite.ts", 330),
bundledPluginCallsite("qa-lab", "src/suite.ts", 341),
bundledPluginCallsite("qa-lab", "web/src/app.ts", 21),
bundledPluginCallsite("qa-lab", "web/src/app.ts", 29),
bundledPluginCallsite("qa-lab", "web/src/app.ts", 37),
bundledPluginCallsite("qa-lab", "web/src/app.ts", 22),
bundledPluginCallsite("qa-lab", "web/src/app.ts", 30),
bundledPluginCallsite("qa-lab", "web/src/app.ts", 38),
bundledPluginCallsite("qqbot", "src/engine/api/api-client.ts", 124),
bundledPluginCallsite("qqbot", "src/engine/api/media-chunked.ts", 554),
bundledPluginCallsite("qqbot", "src/engine/api/token.ts", 211),

View File

@@ -184,8 +184,8 @@ export function loadFacadeModuleAtLocationSync<T extends object>(params: {
return sentinel;
}
// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- Dynamic facade loaders use caller-supplied module surface types.
/** Resolve and synchronously load a bundled plugin public surface by plugin dir and artifact name. */
// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- Dynamic facade loaders use caller-supplied module surface types.
export function loadBundledPluginPublicSurfaceModuleSync<T extends object>(params: {
dirName: string;
artifactBasename: string;

View File

@@ -189,8 +189,8 @@ function buildFacadeActivationCheckParams(
};
}
// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- Dynamic facade loaders use caller-supplied module surface types.
/** Load a bundled or registry-backed plugin public surface, tracking activation ownership. */
// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- Dynamic facade loaders use caller-supplied module surface types.
export function loadBundledPluginPublicSurfaceModuleSync<T extends object>(
params: BundledPluginPublicSurfaceParams,
): T {
@@ -226,8 +226,8 @@ export function canLoadActivatedBundledPluginPublicSurface(params: {
).allowed;
}
// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- Dynamic facade loaders use caller-supplied module surface types.
/** Load an activated plugin public surface or throw when activation policy blocks access. */
// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- Dynamic facade loaders use caller-supplied module surface types.
export function loadActivatedBundledPluginPublicSurfaceModuleSync<T extends object>(params: {
dirName: string;
artifactBasename: string;
@@ -239,8 +239,8 @@ export function loadActivatedBundledPluginPublicSurfaceModuleSync<T extends obje
return loadBundledPluginPublicSurfaceModuleSync<T>(params);
}
// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- Dynamic facade loaders use caller-supplied module surface types.
/** Load an activated plugin public surface, returning null when activation policy blocks access. */
// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- Dynamic facade loaders use caller-supplied module surface types.
export function tryLoadActivatedBundledPluginPublicSurfaceModuleSync<T extends object>(params: {
dirName: string;
artifactBasename: string;

View File

@@ -66,8 +66,8 @@ export function loadQaRuntimeModule(): QaRuntimeSurface {
});
}
// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- QA runtime loader uses caller-supplied test API surface type.
/** Load a bundled QA runner plugin test API facade by plugin id. */
// oxlint-disable-next-line typescript/no-unnecessary-type-parameters -- QA runtime loader uses caller-supplied test API surface type.
export function loadQaRunnerBundledPluginTestApi<T extends object>(pluginId: string): T {
const env = resolvePrivateQaBundledPluginsEnv();
return loadBundledPluginPublicSurfaceModuleSync<T>({

View File

@@ -200,7 +200,7 @@ export type TtsStreamResult = {
release?: () => Promise<void>;
};
/** Backward-compatible alias for stream synthesis results. */
/** @deprecated Use `TtsStreamResult`. */
export type TtsSynthesisStreamResult = TtsStreamResult;
/** Telephony synthesis result with provider voice/model and sample-rate metadata. */