supastash
Version:
Offline-first sync engine for Supabase in React Native using SQLite
16 lines (15 loc) • 451 B
JavaScript
const DEFAULT_LAST_DELETED_AT = "2000-01-01T00:00:00Z";
/**
* Gets the last deleted timestamp for a given table
* @deprecated Use getSupastashSyncStatus instead
*/
export async function getLastDeletedInfo(table) {
return DEFAULT_LAST_DELETED_AT;
}
/**
* Updates the last deleted timestamp for a given table
* @deprecated Use setSupastashSyncStatus instead
*/
export async function updateLastDeletedInfo(table, lastDeletedAt) {
return;
}