import { GeneratedSchema } from './../foundations/index.js'; /** * * @remarks This is a type for database creation. * @see {@link Scope} for the original type. */ export type CreateScope = { tenantId?: string; id: string; resourceId: string; name: string; description?: string | null; createdAt?: number; }; export type Scope = { tenantId: string; id: string; resourceId: string; name: string; description: string | null; createdAt: number; }; export type ScopeKeys = 'tenantId' | 'id' | 'resourceId' | 'name' | 'description' | 'createdAt'; export declare const Scopes: GeneratedSchema;