Member Junction
    Preparing search index...

    Optional hook a provider class may expose when the generic prefixed-key convention does not describe its configuration. MSAL is the built-in example: it reads unprefixed CLIENT_ID / CLIENT_AUTHORITY, so it maps the catalog row itself.

    interface CatalogEnvironmentMapper {
        EnvironmentFromCatalog?: (
            info: PublicAuthProviderInfo,
        ) => Record<string, unknown>;
    }
    Index

    Properties

    EnvironmentFromCatalog?: (
        info: PublicAuthProviderInfo,
    ) => Record<string, unknown>