/** * Plugin type exports for @agentuity/auth. * * This module re-exports all plugin-specific types and interfaces for * convenient access. Each plugin has its own file for easier maintenance. * * @module agentuity/plugins */ export type { Organization, OrganizationMember, OrganizationInvitation, OrganizationApiMethods, } from './organization.ts'; export type { ApiKey, ApiKeyPluginOptions, ApiKeyApiMethods } from './api-key.ts'; export { DEFAULT_API_KEY_OPTIONS } from './api-key.ts'; export type { JwtApiMethods } from './jwt.ts'; /** * Combined API extensions from all default plugins. * * This type represents all the server-side API methods added by the * default Agentuity auth plugins (organization, jwt, bearer, apiKey). */ import type { OrganizationApiMethods } from './organization.ts'; import type { ApiKeyApiMethods } from './api-key.ts'; import type { JwtApiMethods } from './jwt.ts'; export type DefaultPluginApiMethods = OrganizationApiMethods & ApiKeyApiMethods & JwtApiMethods; //# sourceMappingURL=index.d.ts.map