Extract product sync queue db calls into Queue Service methods

This commit is contained in:
Dominic Ferrando
2026-07-11 15:42:16 -04:00
parent a09d11e8e4
commit da3c9e588e
2 changed files with 47 additions and 57 deletions
@@ -3,7 +3,7 @@
import { onMount } from "svelte";
import { api } from "$lib/api.js";
type SyncStatus = "queued" | "active" | "failed" | "succeeded" | "none";
type SyncStatus = "queued" | "active" | "failed" | "fulfilled" | "none";
const { data } = $props();