Variable updateUserAtomConst

updateUserAtom: PrimitiveAtom<undefined | UpdateCollectionDocFunction<Partial<{
    _rowy_ref: TableRowRef;
    defaultTableSettings: Partial<{
        automaticallyApplyColumnSizing: boolean;
        automaticallyApplySorts: boolean;
        saveColumnSizingPopupDisabled: boolean;
        saveSortsPopupDisabled: boolean;
    }>;
    favoriteTables: string[];
    roles: string[];
    tableTutorialComplete?: boolean;
    tables: Record<string, Partial<{
        filters: TableFilter[];
        hiddenFields: string[];
        joinOperator: "AND" | "OR";
        sorts: TableSort[];
    }>>;
    theme: Record<"base" | "dark" | "light", ThemeOptions>;
    user: {
        displayName?: string;
        email: string;
        phoneNumber?: string;
        photoURL?: string;
    };
}>>> & WithInitialValue<undefined | UpdateCollectionDocFunction<Partial<{
    _rowy_ref: TableRowRef;
    defaultTableSettings: Partial<{
        automaticallyApplyColumnSizing: boolean;
        automaticallyApplySorts: boolean;
        saveColumnSizingPopupDisabled: boolean;
        saveSortsPopupDisabled: boolean;
    }>;
    favoriteTables: string[];
    roles: string[];
    tableTutorialComplete?: boolean;
    tables: Record<string, Partial<{
        filters: TableFilter[];
        hiddenFields: string[];
        joinOperator: "AND" | "OR";
        sorts: TableSort[];
    }>>;
    theme: Record<"base" | "dark" | "light", ThemeOptions>;
    user: {
        displayName?: string;
        email: string;
        phoneNumber?: string;
        photoURL?: string;
    };
}>>> = ...

Stores a function that updates a user document

Generated using TypeDoc