export interface RollAPIKeyRequest {
    current_apikey: string;
    type: 'organization' | 'app' | 'tenant';
}
export interface RolledAPIKey {
    key: string;
    type: 'organization' | 'app' | 'tenant';
    organization_id: string;
    app_id?: string;
    tenant_id?: string;
    name: string;
    status: 'active';
    created_at: string;
    updated_at: string;
}
