2022-02-13 20:44:19 +00:00
|
|
|
// eslint-disable-next-line @typescript-eslint/no-empty-interface
|
|
|
|
export interface Model {}
|
|
|
|
|
|
|
|
interface SecurityKey extends Model {
|
|
|
|
uuid: string;
|
|
|
|
name: string;
|
|
|
|
type: 'public-key';
|
|
|
|
publicKeyId: string;
|
|
|
|
createdAt: Date;
|
|
|
|
updatedAt: Date;
|
|
|
|
}
|
2022-02-20 18:07:12 +00:00
|
|
|
|
|
|
|
interface PersonalAccessToken extends Model {
|
|
|
|
identifier: string;
|
|
|
|
description: string;
|
|
|
|
createdAt: Date;
|
|
|
|
updatedAt: Date;
|
|
|
|
lastUsedAt: Date | null;
|
|
|
|
}
|