Files
cfw-autumn/shared/models/devModels/apiKeyModels.ts
2026-04-24 16:56:10 +01:00

15 lines
264 B
TypeScript

import type { AppEnv } from "../genModels/genEnums.js";
export type ApiKey = {
id: string;
org_id: string;
user_id: string | null;
name: string;
prefix: string;
created_at: number;
env: AppEnv;
hashed_key: string;
meta: any;
scopes: string[] | null;
};