export interface FastCommentsAPISubscription { id: string; tenantId: string; /** With SSO, the user id is in the format `:`. **/ userId: string; anonUserId?: string; urlId: string; url?: string; pageTitle?: string; createdAt: string; } export type FastCommentsAPISubscriptionCreate = FastCommentsAPISubscription;