UNPKG

@gftdcojp/auth

Version:

✅ Enterprise-grade Auth0 integration for GFTD platform - 90% Complete, High Quality Implementation

15 lines 893 B
/** * Next.js Edge Runtime 対応 Auth0 SDK * * 🆕 Edge Runtime & サーバー専用 * 使用場所: * - API Routes (Edge Runtime) * - Middleware * - Server Actions * - RSC (React Server Components) * * ⚠️ クライアントサイドでは使用不可 */ export { NextJsAuth0Client, createNextJsAuth0Client, getSession, getSessionWithOrganization, getAccessToken, updateSession, withMiddlewareAuthRequired, withOrganizationAuthRequired, auth0Middleware, withApiAuthRequired, withOrganizationApiAuthRequired, handleAuth, handleAuthLogin, handleAuthLogout, handleAuthCallback, handleAuthMe, handleOrganizationLogin, handleOrganizationCallback, handleOrganizationSelection, buildOrganizationLoginUrl, } from './nextjs-auth0-server'; export type { NextJsAuth0Config, Session, OrganizationLoginOptions, } from './nextjs-auth0-types'; //# sourceMappingURL=nextjs-auth0-edge.d.ts.map