refactor: share trimmed list normalization in provider helpers

This commit is contained in:
Peter Steinberger
2026-03-07 23:25:39 +00:00
parent c5bd84309a
commit c9128e1f3f
4 changed files with 14 additions and 4 deletions

View File

@@ -92,6 +92,7 @@ export {
resolveDmGroupAccessWithLists,
} from "../security/dm-policy-shared.js";
export { formatDocsLink } from "../terminal/links.js";
export { normalizeStringEntries } from "../shared/string-normalization.js";
export type { WizardPrompter } from "../wizard/prompts.js";
export {
evaluateGroupRouteAccessForPolicy,

View File

@@ -117,3 +117,4 @@ export {
buildRuntimeAccountStatusSnapshot,
createDefaultChannelRuntimeState,
} from "./status-helpers.js";
export { normalizeStringEntries } from "../shared/string-normalization.js";