Circle V2 API Docs
    Preparing search index...
    syncAdmissions: MutationProcedure<
        {
            input: {
                dry_run?: boolean;
                end_date?: string;
                integration_id: string;
                start_date?: string;
            };
            meta: object;
            output: {
                error: null;
                patients?: { first_name: string; id: number; last_name: string }[];
                stats?: {
                    date_range?: { end?: string; start?: string };
                    records_fetched: number;
                    records_upserted?: number;
                };
                success: true;
            };
        },
    > = ...