fix: Remove API Tokens from User APIs (#4985)

This commit is contained in:
Michael Genson
2025-01-29 13:52:12 -06:00
committed by GitHub
parent f2eadd2908
commit cb05adeb48
5 changed files with 41 additions and 4 deletions

View File

@@ -93,6 +93,12 @@ export interface GroupSummary {
slug: string;
preferences?: ReadGroupPreferences | null;
}
export interface LongLiveTokenCreateResponse {
name: string;
id: number;
createdAt?: string | null;
token: string;
}
export interface LongLiveTokenIn {
name: string;
integrationId?: string;
@@ -130,7 +136,6 @@ export interface PrivateUser {
lockedAt?: string | null;
}
export interface LongLiveTokenOut {
token: string;
name: string;
id: number;
createdAt?: string | null;