remove jetstream inertia properties; remove unused ApiTokenManager;

This commit is contained in:
Gregor Vostrak
2026-06-05 16:32:38 +02:00
committed by Constantin Graf
parent 56ea0ed90e
commit bffd0773be
10 changed files with 9 additions and 377 deletions

View File

@@ -9,9 +9,6 @@ declare global {
created_at: Date;
updated_at: Date;
};
jetstream: {
[key: string]: boolean;
};
errorBags: unknown;
errors: unknown;
}

View File

@@ -33,10 +33,3 @@ export interface Role {
export type JetstreamUser = User & {
two_factor_enabled: boolean;
};
export interface Token {
name: string;
token: string;
abilities: string[];
id: string;
last_used_ago: string;
}