/** * Auth admin namespace — thin re-export wrapper over `authSettings.ts`. * * The Platform route `apps/api/src/server/platform/routes/auth.ts` * carries an `auth` top-level namespace in the coverage inventory. * Consumers read more cleanly when the settings surface is called * `authSettings` (distinguishes it from `@sylphx/sdk.auth` on the BaaS * plane, which owns end-user sign-in / sign-up). * * This file re-binds every export of `authSettings.ts` as a local * `export const` so that both: * * - `@sylphx/management/auth` — maps 1:1 to `authAdminEndpoints` * - `@sylphx/management/authSettings` — ergonomic alias * * resolve to the same transport functions, and the ADR-089 S7 coverage * guard matches the route namespace 1:1. * * @see ./authSettings.ts — source of truth */ import * as settings from './authSettings.js'; export declare const getOAuthProviders: (client: import("./client.js").Client, projectId: string) => Promise; export declare const updateOAuthProviders: (client: import("./client.js").Client, projectId: string, body: settings.UpdateOAuthProvidersInput) => Promise; export declare const getAuthSettings: (client: import("./client.js").Client, projectId: string) => Promise; export declare const updateAuthSettings: (client: import("./client.js").Client, projectId: string, body: settings.UpdateAuthSettingsInput) => Promise; export declare const getAuthStats: (client: import("./client.js").Client, projectId: string) => Promise; export type { AuthSettings, AuthStats, OAuthProvidersResult, UpdateAuthSettingsInput, UpdateOAuthProvidersInput, UpdateOAuthProvidersResult, } from '@sylphx/contract'; //# sourceMappingURL=auth.d.ts.map