Files
cfw-autumn/shared/models/devModels/apiKeyModels.ts
John Yeo cb05d169a2 wip
2026-01-23 17:13:19 +00:00

14 lines
238 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;
};