/** * @mastra/auth-cloud * * Mastra Cloud authentication with PKCE OAuth flow. * * This is the v2.0 rewrite implementing proper PKCE-based OAuth * with role information from the /verify endpoint. * * @packageDocumentation */ export { MastraCloudAuth } from './client.js'; export type { MastraCloudAuthConfig } from './client.js'; export { MastraCloudAuthProvider } from './auth-provider.js'; export type { MastraCloudAuthProviderOptions } from './auth-provider.js'; export { AuthError } from './error.js'; export type { AuthErrorCode, AuthErrorOptions } from './error.js'; export type { CloudUser, CloudSession, VerifyResponse, CallbackResult, LoginUrlResult } from './types.js'; export { MastraRBACCloud, type MastraRBACCloudOptions } from './rbac/index.js'; //# sourceMappingURL=index.d.ts.map