* feat: add areCalendarEventsEnabled to PlatformOAuthClient table * feat: areCalendarEvents enabled in handleNewBooking and v2 * feat: v2 handle areCalendarEventsEnabled * feat: toggle areCalendarEventsEnabled on frontend * feat: enable areCalendarEventsEnabled for recurring,confirm,paid * refactor: use placeholder calendar event * remove merge conflicts * chore: bump libraries * chore: bump libraries
6 lines
180 B
TypeScript
6 lines
180 B
TypeScript
import type { PlatformOAuthClient } from "@prisma/client";
|
|
|
|
export interface IPlatformOAuthClientRepository {
|
|
getByUserId(userId: number): Promise<PlatformOAuthClient | null>;
|
|
}
|