fix: incorrect type for SyncData.followers
All checks were successful
FanslySync Build & Test / FanslySync Test Runner (push) Successful in 12m23s

This commit is contained in:
Sticks 2025-04-23 19:57:58 -04:00
parent 22259a3e8f
commit f4565ab580

View File

@ -10,7 +10,7 @@ export type Config = {
}; };
export interface SyncData { export interface SyncData {
followers: Follower[]; followers: string[];
subscribers: Subscriber[]; subscribers: Subscriber[];
sync_data_url: string; sync_data_url: string;
} }
@ -45,10 +45,6 @@ interface Subscriber {
promoEndsAt: null | number; promoEndsAt: null | number;
} }
interface Follower {
followerId: string;
}
export interface AccountInfoResponse { export interface AccountInfoResponse {
success: boolean; success: boolean;
response: AccountInfo[]; response: AccountInfo[];