2026-03-16 22:32:25 -07:00
|
|
|
/** Shared directory listing helpers for plugins that derive users/groups from config maps. */
|
2026-03-18 04:27:29 +00:00
|
|
|
export type { DirectoryConfigParams } from "../channels/plugins/directory-types.js";
|
2026-03-18 00:10:35 -07:00
|
|
|
export type { ReadOnlyInspectedAccount } from "../channels/read-only-account-inspect.js";
|
2026-03-16 22:32:25 -07:00
|
|
|
export {
|
|
|
|
|
applyDirectoryQueryAndLimit,
|
2026-03-18 04:27:29 +00:00
|
|
|
collectNormalizedDirectoryIds,
|
2026-03-18 16:36:09 +00:00
|
|
|
listDirectoryEntriesFromSources,
|
2026-03-16 22:32:25 -07:00
|
|
|
listDirectoryGroupEntriesFromMapKeys,
|
|
|
|
|
listDirectoryGroupEntriesFromMapKeysAndAllowFrom,
|
2026-03-18 16:36:09 +00:00
|
|
|
listInspectedDirectoryEntriesFromSources,
|
|
|
|
|
listResolvedDirectoryEntriesFromSources,
|
|
|
|
|
listResolvedDirectoryGroupEntriesFromMapKeys,
|
|
|
|
|
listResolvedDirectoryUserEntriesFromAllowFrom,
|
2026-03-16 22:32:25 -07:00
|
|
|
listDirectoryUserEntriesFromAllowFrom,
|
|
|
|
|
listDirectoryUserEntriesFromAllowFromAndMapKeys,
|
|
|
|
|
toDirectoryEntries,
|
|
|
|
|
} from "../channels/plugins/directory-config-helpers.js";
|
2026-03-18 00:10:35 -07:00
|
|
|
export { inspectReadOnlyChannelAccount } from "../channels/read-only-account-inspect.js";
|