Hiyve Components - v1.0.0
    Preparing search index...

    Interface FindConflictsOptions

    Options for checking meeting conflicts

    interface FindConflictsOptions {
        endTime: Date;
        excludeId?: string;
        recurrence?: {
            dayOfMonth?: number;
            daysOfWeek?: number[];
            endDate?: string | Date;
            interval: number;
            occurrences?: number;
            pattern: "daily" | "weekly" | "monthly";
        };
        startTime: Date;
        timezone?: string;
    }
    Index

    Properties

    endTime: Date

    Proposed end time

    excludeId?: string

    Meeting ID to exclude from conflict checks (for edit mode)

    recurrence?: {
        dayOfMonth?: number;
        daysOfWeek?: number[];
        endDate?: string | Date;
        interval: number;
        occurrences?: number;
        pattern: "daily" | "weekly" | "monthly";
    }

    Optional recurrence for the proposed meeting

    startTime: Date

    Proposed start time

    timezone?: string

    Timezone for recurrence expansion