15 lines
264 B
TypeScript
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;
|
|
};
|