fix: make display_name an Option so parsing doesn't fail
Some checks failed
FanslySync Build & Test / FanslySync Test Runner (push) Failing after 24m12s
Some checks failed
FanslySync Build & Test / FanslySync Test Runner (push) Failing after 24m12s
This commit is contained in:
@ -53,7 +53,7 @@ export interface AccountInfoResponse {
|
||||
export interface AccountInfo {
|
||||
id: string;
|
||||
username: string;
|
||||
displayName: string;
|
||||
displayName: string | null;
|
||||
flags: number;
|
||||
version: number;
|
||||
createdAt: number;
|
||||
@ -76,8 +76,6 @@ export interface AccountInfo {
|
||||
banner: Avatar;
|
||||
postLikes: number;
|
||||
streaming: Streaming;
|
||||
subscriptionTiers: SubscriptionTier[];
|
||||
profileAccess: boolean;
|
||||
}
|
||||
|
||||
export interface SubscriptionTier {
|
||||
|
Reference in New Issue
Block a user