fix(test): restore support shard boundaries

This commit is contained in:
Peter Steinberger
2026-04-07 08:59:21 +01:00
parent 9e9730a55e
commit 0b159d7250
5 changed files with 89 additions and 85 deletions

View File

@@ -1,12 +1,24 @@
// Narrow shared exports for web-search contract surfaces.
import type { WebSearchProviderPlugin } from "../plugins/types.js";
// Public contract-safe web-search registration helpers for provider plugins.
import type {
WebSearchCredentialResolutionSource,
WebSearchProviderSetupContext,
WebSearchProviderPlugin,
WebSearchProviderToolDefinition,
} from "../plugins/types.js";
export {
getScopedCredentialValue,
getTopLevelCredentialValue,
mergeScopedSearchConfig,
resolveProviderWebSearchPluginConfig,
setScopedCredentialValue,
setProviderWebSearchPluginConfigValue,
setTopLevelCredentialValue,
} from "../agents/tools/web-search-provider-config.js";
export { enablePluginInConfig } from "../plugins/enable.js";
export type { WebSearchProviderPlugin };
export type {
WebSearchCredentialResolutionSource,
WebSearchProviderSetupContext,
WebSearchProviderPlugin,
WebSearchProviderToolDefinition,
};