[object Object]

← back to Designer Wallcoverings

Quarantine 205 mispriced (needs-reprice tag); Romo 262 + Thibaut 11 DRAFT imported; schumacher scraper path-fix + login probe

7818ccb4ec0271b90dd7a49b4ab65e554ed18fad · 2026-06-11 09:44:49 -0700 · SteveStudio2

Quarantine: 205 last-72h $4.25-roll products tagged needs-reprice (0 were ACTIVE — no live exposure). Romo 262 + Thibaut 11 created DRAFT under the cost+discount gate (verified). Schumacher cost blocked: vendor WAF + login-gated pricing (priceUsd null anonymous); Kamatera IP WAF-blocked, Mac2 browser segfaults — Browserbase is the path.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>

Files touched

Diff

commit 7818ccb4ec0271b90dd7a49b4ab65e554ed18fad
Author: SteveStudio2 <stevestudio2@SteveStacStudio.lan>
Date:   Thu Jun 11 09:44:49 2026 -0700

    Quarantine 205 mispriced (needs-reprice tag); Romo 262 + Thibaut 11 DRAFT imported; schumacher scraper path-fix + login probe
    
    Quarantine: 205 last-72h $4.25-roll products tagged needs-reprice (0 were ACTIVE — no live exposure). Romo 262 + Thibaut 11 created DRAFT under the cost+discount gate (verified). Schumacher cost blocked: vendor WAF + login-gated pricing (priceUsd null anonymous); Kamatera IP WAF-blocked, Mac2 browser segfaults — Browserbase is the path.
    
    Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
---
 shopify/scripts/cadence/activate-gated.js          | 133 ++++++
 .../cadence/data/activations-2026-06-11.jsonl      | 448 +++++++++++++++++++++
 .../cadence/data/cadence-plan-am-2026-06-11.json   |  76 +---
 shopify/scripts/quarantine-mispriced.js            |  73 ++++
 shopify/scripts/schu-login-probe.js                |  48 +++
 shopify/scripts/schumacher-price-scraper.js        |  10 +-
 6 files changed, 712 insertions(+), 76 deletions(-)

diff --git a/shopify/scripts/cadence/activate-gated.js b/shopify/scripts/cadence/activate-gated.js
new file mode 100644
index 00000000..48800991
--- /dev/null
+++ b/shopify/scripts/cadence/activate-gated.js
@@ -0,0 +1,133 @@
+#!/usr/bin/env node
+/**
+ * Gated activation pass — DTD verdict B (2026-06-11, unanimous).
+ *
+ * The cadence importer creates every product DRAFT ("never ACTIVE on create").
+ * This pass PROMOTES only complete, clean DRAFT products to ACTIVE — re-running
+ * the FULL gate at promotion time, which is the checkpoint the logo-image
+ * incident proved we need (a vendor site-logo passed image+width+price and went
+ * live). Create is a data op; publish is a customer-facing commitment — kept
+ * separate, explicit, and audit-logged.
+ *
+ * Gate (all required to promote DRAFT -> ACTIVE):
+ *   - a REAL product image (image_url present AND not a logo/sprite/placeholder)
+ *   - a width spec present
+ *   - a real price > the $4.25 sample fallback
+ *
+ * Only flips products currently in DRAFT. ACTIVE/ARCHIVED are left untouched
+ * (so manually-archived items stay archived; already-live items are no-ops).
+ *
+ * Usage:
+ *   node activate-gated.js                      # DRY-RUN (default) — list what would promote
+ *   node activate-gated.js --commit             # promote on Shopify
+ *   node activate-gated.js --vendor Designtex --limit 200 --commit
+ *
+ * Reads the SAME vendor set as the cadence importer (vendors.js) so it covers
+ * exactly what cadence creates. Idempotent + resumable.
+ */
+const https = require('https');
+const fs = require('fs');
+const os = require('os');
+const path = require('path');
+const { execFileSync } = require('child_process');
+const VENDORS = require('./vendors.js');
+
+const args = process.argv.slice(2);
+const flag = n => args.includes(n);
+const val = (n, d) => { const i = args.indexOf(n); return i >= 0 ? args[i + 1] : d; };
+const COMMIT = flag('--commit');
+const ONLY = val('--vendor', null);
+const LIMIT = parseInt(val('--limit', '1000'), 10);
+const TODAY = new Date().toISOString().slice(0, 10);
+
+const env = fs.readFileSync(os.homedir() + '/Projects/secrets-manager/.env', 'utf8');
+const TOKEN = (env.match(/^SHOPIFY_ADMIN_TOKEN=(.*)$/m) || [])[1].replace(/['"]/g, '').trim();
+const STORE = 'designer-laboratory-sandbox.myshopify.com', API = '2024-10';
+const DATADIR = path.join(__dirname, 'data');
+const AUDIT = path.join(DATADIR, `activations-${TODAY}.jsonl`);
+const sleep = ms => new Promise(r => setTimeout(r, ms));
+
+// JUNK-IMAGE guard — same denylist as the catalog-direct importer.
+const JUNK = `(logo|sprite|placeholder|/icons?/|/site/|/theme/|no[-_]?image)`;
+
+function psql(sql) {
+  return execFileSync('psql', ['-At', '-F', '\t', '-d', 'dw_unified', '-c', sql], { encoding: 'utf8', maxBuffer: 1 << 28 }).trim();
+}
+function gql(query, variables) {
+  return new Promise(res => {
+    const data = JSON.stringify({ query, variables });
+    const req = https.request({ host: STORE, path: `/admin/api/${API}/graphql.json`, method: 'POST',
+      headers: { 'X-Shopify-Access-Token': TOKEN, 'Content-Type': 'application/json', 'Content-Length': Buffer.byteLength(data) } },
+      r => { let d=''; r.on('data',c=>d+=c); r.on('end',()=>{ try{res({status:r.statusCode,json:JSON.parse(d)})}catch{res({status:r.statusCode,raw:d.slice(0,400)})} }); });
+    req.on('error', e => res({ status: 0, err: e.message }));
+    req.write(data); req.end();
+  });
+}
+async function gqlRetry(q, v) {
+  for (let a=0;a<5;a++){ const r=await gql(q,v); const t=r.json&&r.json.errors&&JSON.stringify(r.json.errors).includes('THROTTLED');
+    if (r.status===429||t){await sleep(2000*(a+1));continue;} await sleep(400); return r; }
+  return { status: 429, raw: 'throttled' };
+}
+
+// IMAGE+WIDTH gate from PG (clean source image, has width); the PRICE gate is
+// applied against Shopify's actual per-unit variant price below (the true listed
+// price — robust to per-vendor catalog price-column differences).
+function candidates(table, limit) {
+  const sql = `SELECT dw_sku, shopify_product_id
+    FROM ${table}
+    WHERE coalesce(shopify_product_id::text,'') <> ''
+      AND image_url ~ '^https?://'
+      AND image_url !~* '${JUNK}'
+      AND COALESCE(width,'') <> ''
+    ORDER BY dw_sku LIMIT ${limit};`;
+  const out = psql(sql);
+  if (!out) return [];
+  return out.split('\n').map(l => { const [dw_sku, pid] = l.split('\t'); return { dw_sku, pid }; });
+}
+
+const STATUS_Q = `query($ids:[ID!]!){nodes(ids:$ids){... on Product{id status variants(first:6){nodes{price}}}}}`;
+const ACTIVATE = `mutation($id:ID!){productUpdate(input:{id:$id,status:ACTIVE}){product{id status} userErrors{field message}}}`;
+
+(async () => {
+  if (!TOKEN) { console.error('no SHOPIFY_ADMIN_TOKEN'); process.exit(1); }
+  fs.mkdirSync(DATADIR, { recursive: true });
+  const tables = Object.entries(VENDORS).filter(([v]) => !ONLY || v.toLowerCase() === ONLY.toLowerCase());
+  let promoted = 0, alreadyActive = 0, skippedArchived = 0, totalCand = 0;
+
+  for (const [vendor, cfg] of tables) {
+    let cands;
+    try { cands = candidates(cfg.table, LIMIT); }
+    catch (e) { console.log(`  ⚠ ${vendor}: gate query failed — ${String(e.message).slice(0,80)}`); continue; }
+    if (!cands.length) { console.log(`  ·  ${vendor}: 0 gate-passing on-Shopify rows`); continue; }
+    totalCand += cands.length;
+    // batch-check current status (50/req)
+    const byGid = new Map(cands.map(c => [`gid://shopify/Product/${String(c.pid).replace(/.*\//,'')}`, c]));
+    const ids = [...byGid.keys()];
+    const drafts = [];
+    for (let i=0;i<ids.length;i+=50){
+      const r = await gqlRetry(STATUS_Q, { ids: ids.slice(i,i+50) });
+      for (const n of (r.json?.data?.nodes || [])) {
+        if (!n) continue;
+        if (n.status === 'ACTIVE') { alreadyActive++; continue; }
+        if (n.status !== 'DRAFT') { skippedArchived++; continue; } // ARCHIVED → leave
+        // PRICE gate on the live product: a real per-unit price > the $4.25 sample
+        const hasRealPrice = (n.variants?.nodes || []).some(v => parseFloat(v.price) > 4.25);
+        if (hasRealPrice) drafts.push(n.id); else skippedArchived++;
+      }
+    }
+    console.log(`  ${vendor}: ${cands.length} gate-pass · ${drafts.length} DRAFT to promote · ${alreadyActive} already ACTIVE`);
+    for (const gid of drafts) {
+      const c = byGid.get(gid);
+      if (!COMMIT) { console.log(`    · would ACTIVATE ${c.dw_sku}`); continue; }
+      const r = await gqlRetry(ACTIVATE, { id: gid });
+      const ue = r.json?.data?.productUpdate?.userErrors;
+      if (ue && ue.length) { console.log(`    ✗ ${c.dw_sku}: ${JSON.stringify(ue).slice(0,120)}`); continue; }
+      promoted++;
+      fs.appendFileSync(AUDIT, JSON.stringify({ ts: new Date().toISOString(), vendor, dw_sku: c.dw_sku, product_id: gid, from: 'DRAFT', to: 'ACTIVE' }) + '\n');
+      if (promoted % 10 === 0) process.stdout.write(`\r    promoted ${promoted}…`);
+    }
+  }
+  console.log(`\n${COMMIT ? `PROMOTED ${promoted} DRAFT→ACTIVE` : `DRY-RUN: ${totalCand} gate-passing rows scanned`}, ${alreadyActive} already active, ${skippedArchived} archived/other skipped.`);
+  if (COMMIT && promoted) console.log(`audit → ${AUDIT}`);
+  if (!COMMIT) console.log('Re-run with --commit to promote.');
+})();
diff --git a/shopify/scripts/cadence/data/activations-2026-06-11.jsonl b/shopify/scripts/cadence/data/activations-2026-06-11.jsonl
new file mode 100644
index 00000000..51f12432
--- /dev/null
+++ b/shopify/scripts/cadence/data/activations-2026-06-11.jsonl
@@ -0,0 +1,448 @@
+{"ts":"2026-06-11T16:29:27.462Z","vendor":"Thibaut","dw_sku":"DWTT-70420","product_id":"gid://shopify/Product/7858573410355","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:29:28.245Z","vendor":"Thibaut","dw_sku":"DWTT-70680","product_id":"gid://shopify/Product/7858575605811","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:29:29.033Z","vendor":"Thibaut","dw_sku":"DWTT-70800","product_id":"gid://shopify/Product/7858575638579","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:29:29.824Z","vendor":"Thibaut","dw_sku":"DWTT-70810","product_id":"gid://shopify/Product/7858575671347","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:29:30.626Z","vendor":"Thibaut","dw_sku":"DWTT-70820","product_id":"gid://shopify/Product/7858575704115","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:29:31.543Z","vendor":"Thibaut","dw_sku":"DWTT-70880","product_id":"gid://shopify/Product/7858575736883","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:29:32.408Z","vendor":"Thibaut","dw_sku":"DWTT-71120","product_id":"gid://shopify/Product/7858575769651","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:29:33.224Z","vendor":"Thibaut","dw_sku":"DWTT-71320","product_id":"gid://shopify/Product/7858575802419","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:29:34.112Z","vendor":"Thibaut","dw_sku":"DWTT-71340","product_id":"gid://shopify/Product/7858575835187","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:29:34.909Z","vendor":"Thibaut","dw_sku":"DWTT-71370","product_id":"gid://shopify/Product/7858575900723","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:29:35.665Z","vendor":"Thibaut","dw_sku":"DWTT-71380","product_id":"gid://shopify/Product/7858575933491","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:29:36.461Z","vendor":"Thibaut","dw_sku":"DWTT-71410","product_id":"gid://shopify/Product/7858582519859","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:11.493Z","vendor":"WallQuest","dw_sku":"DWQW-59358","product_id":"gid://shopify/Product/7822307459123","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:13.019Z","vendor":"WallQuest","dw_sku":"DWQW-59359","product_id":"gid://shopify/Product/7822307491891","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:14.667Z","vendor":"WallQuest","dw_sku":"DWQW-59373","product_id":"gid://shopify/Product/7822307950643","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:16.722Z","vendor":"WallQuest","dw_sku":"DWQW-59424","product_id":"gid://shopify/Product/7822309687347","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:18.482Z","vendor":"WallQuest","dw_sku":"DWQW-59425","product_id":"gid://shopify/Product/7822309720115","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:20.464Z","vendor":"WallQuest","dw_sku":"DWQW-59426","product_id":"gid://shopify/Product/7822309752883","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:22.155Z","vendor":"WallQuest","dw_sku":"DWQW-59427","product_id":"gid://shopify/Product/7822309785651","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:24.032Z","vendor":"WallQuest","dw_sku":"DWQW-59428","product_id":"gid://shopify/Product/7822309818419","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:25.556Z","vendor":"WallQuest","dw_sku":"DWQW-59429","product_id":"gid://shopify/Product/7822309851187","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:27.178Z","vendor":"WallQuest","dw_sku":"DWQW-59430","product_id":"gid://shopify/Product/7822309883955","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:28.976Z","vendor":"WallQuest","dw_sku":"DWQW-59431","product_id":"gid://shopify/Product/7822309916723","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:30.571Z","vendor":"WallQuest","dw_sku":"DWQW-59432","product_id":"gid://shopify/Product/7822309949491","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:33.618Z","vendor":"WallQuest","dw_sku":"DWQW-59433","product_id":"gid://shopify/Product/7822309982259","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:35.552Z","vendor":"WallQuest","dw_sku":"DWQW-59434","product_id":"gid://shopify/Product/7822310015027","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:37.759Z","vendor":"WallQuest","dw_sku":"DWQW-59435","product_id":"gid://shopify/Product/7822310047795","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:39.285Z","vendor":"WallQuest","dw_sku":"DWQW-59436","product_id":"gid://shopify/Product/7822310080563","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:40.878Z","vendor":"WallQuest","dw_sku":"DWQW-59437","product_id":"gid://shopify/Product/7822310113331","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:42.661Z","vendor":"WallQuest","dw_sku":"DWQW-59438","product_id":"gid://shopify/Product/7822310146099","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:44.235Z","vendor":"WallQuest","dw_sku":"DWQW-59439","product_id":"gid://shopify/Product/7822310178867","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:46.177Z","vendor":"WallQuest","dw_sku":"DWQW-59440","product_id":"gid://shopify/Product/7822310211635","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:47.775Z","vendor":"WallQuest","dw_sku":"DWQW-59441","product_id":"gid://shopify/Product/7822310244403","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:49.594Z","vendor":"WallQuest","dw_sku":"DWQW-59442","product_id":"gid://shopify/Product/7822310277171","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:51.469Z","vendor":"WallQuest","dw_sku":"DWQW-59443","product_id":"gid://shopify/Product/7822310309939","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:52.851Z","vendor":"WallQuest","dw_sku":"DWQW-59444","product_id":"gid://shopify/Product/7822310342707","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:55.121Z","vendor":"WallQuest","dw_sku":"DWQW-59445","product_id":"gid://shopify/Product/7822310375475","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:56.876Z","vendor":"WallQuest","dw_sku":"DWQW-59446","product_id":"gid://shopify/Product/7822310441011","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:30:58.510Z","vendor":"WallQuest","dw_sku":"DWQW-59447","product_id":"gid://shopify/Product/7822310473779","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:00.113Z","vendor":"WallQuest","dw_sku":"DWQW-59448","product_id":"gid://shopify/Product/7822310506547","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:01.712Z","vendor":"WallQuest","dw_sku":"DWQW-59449","product_id":"gid://shopify/Product/7822310539315","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:03.332Z","vendor":"WallQuest","dw_sku":"DWQW-59450","product_id":"gid://shopify/Product/7822310572083","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:04.930Z","vendor":"WallQuest","dw_sku":"DWQW-59451","product_id":"gid://shopify/Product/7822310604851","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:06.455Z","vendor":"WallQuest","dw_sku":"DWQW-59452","product_id":"gid://shopify/Product/7822310637619","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:08.235Z","vendor":"WallQuest","dw_sku":"DWQW-59453","product_id":"gid://shopify/Product/7822310670387","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:09.885Z","vendor":"WallQuest","dw_sku":"DWQW-59454","product_id":"gid://shopify/Product/7822310703155","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:12.117Z","vendor":"WallQuest","dw_sku":"DWQW-59455","product_id":"gid://shopify/Product/7822310735923","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:18.726Z","vendor":"WallQuest","dw_sku":"DWQW-59456","product_id":"gid://shopify/Product/7822310801459","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:23.191Z","vendor":"WallQuest","dw_sku":"DWQW-59457","product_id":"gid://shopify/Product/7822310834227","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:29.653Z","vendor":"WallQuest","dw_sku":"DWQW-59458","product_id":"gid://shopify/Product/7822310866995","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:31.310Z","vendor":"WallQuest","dw_sku":"DWQW-59459","product_id":"gid://shopify/Product/7822310899763","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:32.899Z","vendor":"WallQuest","dw_sku":"DWQW-59460","product_id":"gid://shopify/Product/7822310932531","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:34.561Z","vendor":"WallQuest","dw_sku":"DWQW-59461","product_id":"gid://shopify/Product/7822310965299","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:36.436Z","vendor":"WallQuest","dw_sku":"DWQW-59462","product_id":"gid://shopify/Product/7822310998067","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:38.078Z","vendor":"WallQuest","dw_sku":"DWQW-59463","product_id":"gid://shopify/Product/7822311030835","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:39.628Z","vendor":"WallQuest","dw_sku":"DWQW-59464","product_id":"gid://shopify/Product/7822311063603","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:41.209Z","vendor":"WallQuest","dw_sku":"DWQW-59465","product_id":"gid://shopify/Product/7822311096371","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:43.394Z","vendor":"WallQuest","dw_sku":"DWQW-59466","product_id":"gid://shopify/Product/7822311129139","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:49.979Z","vendor":"WallQuest","dw_sku":"DWQW-59467","product_id":"gid://shopify/Product/7822311161907","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:52.900Z","vendor":"WallQuest","dw_sku":"DWQW-59468","product_id":"gid://shopify/Product/7822311194675","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:31:59.764Z","vendor":"WallQuest","dw_sku":"DWQW-59469","product_id":"gid://shopify/Product/7822311227443","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:01.460Z","vendor":"WallQuest","dw_sku":"DWQW-59470","product_id":"gid://shopify/Product/7822311260211","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:03.548Z","vendor":"WallQuest","dw_sku":"DWQW-59471","product_id":"gid://shopify/Product/7822311292979","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:05.229Z","vendor":"WallQuest","dw_sku":"DWQW-59472","product_id":"gid://shopify/Product/7822311325747","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:06.764Z","vendor":"WallQuest","dw_sku":"DWQW-59473","product_id":"gid://shopify/Product/7822311358515","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:08.338Z","vendor":"WallQuest","dw_sku":"DWQW-59474","product_id":"gid://shopify/Product/7822311391283","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:10.512Z","vendor":"WallQuest","dw_sku":"DWQW-59475","product_id":"gid://shopify/Product/7822311424051","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:12.138Z","vendor":"WallQuest","dw_sku":"DWQW-59476","product_id":"gid://shopify/Product/7822311456819","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:14.633Z","vendor":"WallQuest","dw_sku":"DWQW-59477","product_id":"gid://shopify/Product/7822311489587","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:17.112Z","vendor":"WallQuest","dw_sku":"DWQW-59478","product_id":"gid://shopify/Product/7822311522355","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:21.035Z","vendor":"WallQuest","dw_sku":"DWQW-59479","product_id":"gid://shopify/Product/7822311555123","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:27.574Z","vendor":"WallQuest","dw_sku":"DWQW-59480","product_id":"gid://shopify/Product/7822311587891","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:31.456Z","vendor":"WallQuest","dw_sku":"DWQW-59481","product_id":"gid://shopify/Product/7822311620659","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:33.088Z","vendor":"WallQuest","dw_sku":"DWQW-59482","product_id":"gid://shopify/Product/7822311653427","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:35.111Z","vendor":"WallQuest","dw_sku":"DWQW-59483","product_id":"gid://shopify/Product/7822311686195","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:36.777Z","vendor":"WallQuest","dw_sku":"DWQW-59484","product_id":"gid://shopify/Product/7822311718963","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:44.114Z","vendor":"WallQuest","dw_sku":"DWQW-59485","product_id":"gid://shopify/Product/7822311751731","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:45.588Z","vendor":"WallQuest","dw_sku":"DWQW-59486","product_id":"gid://shopify/Product/7822311784499","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:47.343Z","vendor":"WallQuest","dw_sku":"DWQW-59487","product_id":"gid://shopify/Product/7822311817267","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:48.870Z","vendor":"WallQuest","dw_sku":"DWQW-59488","product_id":"gid://shopify/Product/7822311850035","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:50.350Z","vendor":"WallQuest","dw_sku":"DWQW-59489","product_id":"gid://shopify/Product/7822311882803","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:51.929Z","vendor":"WallQuest","dw_sku":"DWQW-59490","product_id":"gid://shopify/Product/7822311948339","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:53.516Z","vendor":"WallQuest","dw_sku":"DWQW-59491","product_id":"gid://shopify/Product/7822311981107","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:55.041Z","vendor":"WallQuest","dw_sku":"DWQW-59492","product_id":"gid://shopify/Product/7822312013875","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:56.762Z","vendor":"WallQuest","dw_sku":"DWQW-59493","product_id":"gid://shopify/Product/7822312046643","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:32:58.381Z","vendor":"WallQuest","dw_sku":"DWQW-59613","product_id":"gid://shopify/Product/7822316175411","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:01.571Z","vendor":"WallQuest","dw_sku":"DWQW-59614","product_id":"gid://shopify/Product/7822316208179","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:07.211Z","vendor":"WallQuest","dw_sku":"DWQW-59615","product_id":"gid://shopify/Product/7822316240947","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:08.661Z","vendor":"WallQuest","dw_sku":"DWQW-59616","product_id":"gid://shopify/Product/7822316273715","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:10.390Z","vendor":"WallQuest","dw_sku":"DWQW-59617","product_id":"gid://shopify/Product/7822316306483","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:12.001Z","vendor":"WallQuest","dw_sku":"DWQW-59618","product_id":"gid://shopify/Product/7822316339251","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:16.529Z","vendor":"WallQuest","dw_sku":"DWQW-59619","product_id":"gid://shopify/Product/7822316372019","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:18.270Z","vendor":"WallQuest","dw_sku":"DWQW-59620","product_id":"gid://shopify/Product/7822316404787","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:19.822Z","vendor":"WallQuest","dw_sku":"DWQW-59621","product_id":"gid://shopify/Product/7822316437555","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:21.315Z","vendor":"WallQuest","dw_sku":"DWQW-59622","product_id":"gid://shopify/Product/7822316470323","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:22.869Z","vendor":"WallQuest","dw_sku":"DWQW-59623","product_id":"gid://shopify/Product/7822316503091","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:24.359Z","vendor":"WallQuest","dw_sku":"DWQW-59624","product_id":"gid://shopify/Product/7822316535859","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:25.878Z","vendor":"WallQuest","dw_sku":"DWQW-59625","product_id":"gid://shopify/Product/7822316568627","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:27.700Z","vendor":"WallQuest","dw_sku":"DWQW-59626","product_id":"gid://shopify/Product/7822316601395","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:30.859Z","vendor":"WallQuest","dw_sku":"DWQW-59627","product_id":"gid://shopify/Product/7822316634163","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:34.172Z","vendor":"WallQuest","dw_sku":"DWQW-59628","product_id":"gid://shopify/Product/7822316666931","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:36.742Z","vendor":"WallQuest","dw_sku":"DWQW-59629","product_id":"gid://shopify/Product/7822316699699","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:38.170Z","vendor":"WallQuest","dw_sku":"DWQW-59630","product_id":"gid://shopify/Product/7822316732467","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:39.830Z","vendor":"WallQuest","dw_sku":"DWQW-59631","product_id":"gid://shopify/Product/7822316765235","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:41.462Z","vendor":"WallQuest","dw_sku":"DWQW-59632","product_id":"gid://shopify/Product/7822316798003","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:43.072Z","vendor":"WallQuest","dw_sku":"DWQW-59633","product_id":"gid://shopify/Product/7822316830771","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:45.037Z","vendor":"WallQuest","dw_sku":"DWQW-59634","product_id":"gid://shopify/Product/7822316863539","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:46.598Z","vendor":"WallQuest","dw_sku":"DWQW-59635","product_id":"gid://shopify/Product/7822316929075","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:48.304Z","vendor":"WallQuest","dw_sku":"DWQW-59636","product_id":"gid://shopify/Product/7822316961843","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:50.075Z","vendor":"WallQuest","dw_sku":"DWQW-59637","product_id":"gid://shopify/Product/7822317027379","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:51.659Z","vendor":"WallQuest","dw_sku":"DWQW-59638","product_id":"gid://shopify/Product/7822317125683","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:53.264Z","vendor":"WallQuest","dw_sku":"DWQW-59639","product_id":"gid://shopify/Product/7822317223987","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:54.826Z","vendor":"WallQuest","dw_sku":"DWQW-59640","product_id":"gid://shopify/Product/7822317355059","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:56.412Z","vendor":"WallQuest","dw_sku":"DWQW-59641","product_id":"gid://shopify/Product/7822317453363","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:33:58.203Z","vendor":"WallQuest","dw_sku":"DWQW-59642","product_id":"gid://shopify/Product/7822317518899","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:00.313Z","vendor":"WallQuest","dw_sku":"DWQW-59643","product_id":"gid://shopify/Product/7822317617203","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:01.852Z","vendor":"WallQuest","dw_sku":"DWQW-59644","product_id":"gid://shopify/Product/7822317715507","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:03.789Z","vendor":"WallQuest","dw_sku":"DWQW-59645","product_id":"gid://shopify/Product/7822317846579","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:05.359Z","vendor":"WallQuest","dw_sku":"DWQW-59646","product_id":"gid://shopify/Product/7822317944883","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:06.932Z","vendor":"WallQuest","dw_sku":"DWQW-59647","product_id":"gid://shopify/Product/7822318043187","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:08.940Z","vendor":"WallQuest","dw_sku":"DWQW-59648","product_id":"gid://shopify/Product/7822318075955","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:10.499Z","vendor":"WallQuest","dw_sku":"DWQW-59649","product_id":"gid://shopify/Product/7822318108723","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:12.295Z","vendor":"WallQuest","dw_sku":"DWQW-59650","product_id":"gid://shopify/Product/7822318141491","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:13.817Z","vendor":"WallQuest","dw_sku":"DWQW-59651","product_id":"gid://shopify/Product/7822318174259","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:15.358Z","vendor":"WallQuest","dw_sku":"DWQW-59652","product_id":"gid://shopify/Product/7822318207027","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:16.934Z","vendor":"WallQuest","dw_sku":"DWQW-59653","product_id":"gid://shopify/Product/7822318239795","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:18.621Z","vendor":"WallQuest","dw_sku":"DWQW-59654","product_id":"gid://shopify/Product/7822318272563","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:20.255Z","vendor":"WallQuest","dw_sku":"DWQW-59655","product_id":"gid://shopify/Product/7822318305331","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:21.916Z","vendor":"WallQuest","dw_sku":"DWQW-59656","product_id":"gid://shopify/Product/7822318338099","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:23.509Z","vendor":"WallQuest","dw_sku":"DWQW-59657","product_id":"gid://shopify/Product/7822318370867","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:25.057Z","vendor":"WallQuest","dw_sku":"DWQW-59658","product_id":"gid://shopify/Product/7822318403635","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:26.597Z","vendor":"WallQuest","dw_sku":"DWQW-59659","product_id":"gid://shopify/Product/7822318436403","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:28.013Z","vendor":"WallQuest","dw_sku":"DWQW-59660","product_id":"gid://shopify/Product/7822318469171","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:29.548Z","vendor":"WallQuest","dw_sku":"DWQW-59661","product_id":"gid://shopify/Product/7822318501939","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:31.153Z","vendor":"WallQuest","dw_sku":"DWQW-59662","product_id":"gid://shopify/Product/7822318534707","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:32.824Z","vendor":"WallQuest","dw_sku":"DWQW-59663","product_id":"gid://shopify/Product/7822318567475","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:34.343Z","vendor":"WallQuest","dw_sku":"DWQW-59664","product_id":"gid://shopify/Product/7822318600243","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:35.950Z","vendor":"WallQuest","dw_sku":"DWQW-59665","product_id":"gid://shopify/Product/7822318633011","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:37.385Z","vendor":"WallQuest","dw_sku":"DWQW-59666","product_id":"gid://shopify/Product/7822318665779","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:38.863Z","vendor":"WallQuest","dw_sku":"DWQW-59667","product_id":"gid://shopify/Product/7822318698547","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:40.308Z","vendor":"WallQuest","dw_sku":"DWQW-59668","product_id":"gid://shopify/Product/7822318731315","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:41.881Z","vendor":"WallQuest","dw_sku":"DWQW-59669","product_id":"gid://shopify/Product/7822318796851","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:43.317Z","vendor":"WallQuest","dw_sku":"DWQW-59670","product_id":"gid://shopify/Product/7822318862387","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:45.014Z","vendor":"WallQuest","dw_sku":"DWQW-59671","product_id":"gid://shopify/Product/7822318895155","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:46.690Z","vendor":"WallQuest","dw_sku":"DWQW-59672","product_id":"gid://shopify/Product/7822318927923","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:48.194Z","vendor":"WallQuest","dw_sku":"DWQW-59673","product_id":"gid://shopify/Product/7822318960691","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:49.933Z","vendor":"WallQuest","dw_sku":"DWQW-59674","product_id":"gid://shopify/Product/7822318993459","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:51.542Z","vendor":"WallQuest","dw_sku":"DWQW-59675","product_id":"gid://shopify/Product/7822319026227","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:53.287Z","vendor":"WallQuest","dw_sku":"DWQW-59676","product_id":"gid://shopify/Product/7822319091763","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:54.881Z","vendor":"WallQuest","dw_sku":"DWQW-59677","product_id":"gid://shopify/Product/7822319124531","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:56.440Z","vendor":"WallQuest","dw_sku":"DWQW-59678","product_id":"gid://shopify/Product/7822319157299","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:57.978Z","vendor":"WallQuest","dw_sku":"DWQW-59679","product_id":"gid://shopify/Product/7822319190067","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:34:59.502Z","vendor":"WallQuest","dw_sku":"DWQW-59680","product_id":"gid://shopify/Product/7822319222835","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:01.052Z","vendor":"WallQuest","dw_sku":"DWQW-59681","product_id":"gid://shopify/Product/7822319255603","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:02.610Z","vendor":"WallQuest","dw_sku":"DWQW-59682","product_id":"gid://shopify/Product/7822319288371","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:04.121Z","vendor":"WallQuest","dw_sku":"DWQW-59683","product_id":"gid://shopify/Product/7822319321139","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:05.680Z","vendor":"WallQuest","dw_sku":"DWQW-59684","product_id":"gid://shopify/Product/7822319353907","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:07.205Z","vendor":"WallQuest","dw_sku":"DWQW-59685","product_id":"gid://shopify/Product/7822319386675","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:08.742Z","vendor":"WallQuest","dw_sku":"DWQW-59686","product_id":"gid://shopify/Product/7822319419443","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:10.477Z","vendor":"WallQuest","dw_sku":"DWQW-59687","product_id":"gid://shopify/Product/7822319452211","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:12.091Z","vendor":"WallQuest","dw_sku":"DWQW-59688","product_id":"gid://shopify/Product/7822319484979","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:13.957Z","vendor":"WallQuest","dw_sku":"DWQW-59689","product_id":"gid://shopify/Product/7822319517747","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:15.573Z","vendor":"WallQuest","dw_sku":"DWQW-59690","product_id":"gid://shopify/Product/7822319550515","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:17.080Z","vendor":"WallQuest","dw_sku":"DWQW-59691","product_id":"gid://shopify/Product/7822319583283","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:18.633Z","vendor":"WallQuest","dw_sku":"DWQW-59692","product_id":"gid://shopify/Product/7822319616051","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:20.243Z","vendor":"WallQuest","dw_sku":"DWQW-59693","product_id":"gid://shopify/Product/7822319648819","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:21.782Z","vendor":"WallQuest","dw_sku":"DWQW-59694","product_id":"gid://shopify/Product/7822319681587","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:23.344Z","vendor":"WallQuest","dw_sku":"DWQW-59695","product_id":"gid://shopify/Product/7822319714355","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:24.938Z","vendor":"WallQuest","dw_sku":"DWQW-59696","product_id":"gid://shopify/Product/7822319747123","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:26.445Z","vendor":"WallQuest","dw_sku":"DWQW-59697","product_id":"gid://shopify/Product/7822319779891","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:28.162Z","vendor":"WallQuest","dw_sku":"DWQW-59698","product_id":"gid://shopify/Product/7822319812659","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:29.731Z","vendor":"WallQuest","dw_sku":"DWQW-59699","product_id":"gid://shopify/Product/7822319845427","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:31.445Z","vendor":"WallQuest","dw_sku":"DWQW-59700","product_id":"gid://shopify/Product/7822319878195","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:33.043Z","vendor":"WallQuest","dw_sku":"DWQW-59701","product_id":"gid://shopify/Product/7822319910963","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:34.802Z","vendor":"WallQuest","dw_sku":"DWQW-59702","product_id":"gid://shopify/Product/7822319943731","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:36.771Z","vendor":"WallQuest","dw_sku":"DWQW-59703","product_id":"gid://shopify/Product/7822319976499","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:38.400Z","vendor":"WallQuest","dw_sku":"DWQW-59704","product_id":"gid://shopify/Product/7822320009267","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:40.365Z","vendor":"WallQuest","dw_sku":"DWQW-59705","product_id":"gid://shopify/Product/7822320042035","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:41.919Z","vendor":"WallQuest","dw_sku":"DWQW-59706","product_id":"gid://shopify/Product/7822320074803","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:44.038Z","vendor":"WallQuest","dw_sku":"DWQW-59707","product_id":"gid://shopify/Product/7822320107571","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:45.559Z","vendor":"WallQuest","dw_sku":"DWQW-59708","product_id":"gid://shopify/Product/7822320140339","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:47.117Z","vendor":"WallQuest","dw_sku":"DWQW-59709","product_id":"gid://shopify/Product/7822320173107","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:49.218Z","vendor":"WallQuest","dw_sku":"DWQW-59710","product_id":"gid://shopify/Product/7822320205875","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:50.927Z","vendor":"WallQuest","dw_sku":"DWQW-59711","product_id":"gid://shopify/Product/7822320238643","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:52.501Z","vendor":"WallQuest","dw_sku":"DWQW-59712","product_id":"gid://shopify/Product/7822320271411","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:54.166Z","vendor":"WallQuest","dw_sku":"DWQW-59713","product_id":"gid://shopify/Product/7822320304179","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:55.684Z","vendor":"WallQuest","dw_sku":"DWQW-59714","product_id":"gid://shopify/Product/7822320336947","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:57.268Z","vendor":"WallQuest","dw_sku":"DWQW-59715","product_id":"gid://shopify/Product/7822320369715","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:35:58.984Z","vendor":"WallQuest","dw_sku":"DWQW-59716","product_id":"gid://shopify/Product/7822320402483","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:00.853Z","vendor":"WallQuest","dw_sku":"DWQW-59717","product_id":"gid://shopify/Product/7822320435251","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:02.398Z","vendor":"WallQuest","dw_sku":"DWQW-59718","product_id":"gid://shopify/Product/7822320468019","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:03.967Z","vendor":"WallQuest","dw_sku":"DWQW-59719","product_id":"gid://shopify/Product/7822320500787","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:05.554Z","vendor":"WallQuest","dw_sku":"DWQW-59720","product_id":"gid://shopify/Product/7822320533555","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:07.150Z","vendor":"WallQuest","dw_sku":"DWQW-59721","product_id":"gid://shopify/Product/7822320566323","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:08.679Z","vendor":"WallQuest","dw_sku":"DWQW-59722","product_id":"gid://shopify/Product/7822320599091","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:10.215Z","vendor":"WallQuest","dw_sku":"DWQW-59723","product_id":"gid://shopify/Product/7822320631859","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:11.719Z","vendor":"WallQuest","dw_sku":"DWQW-59724","product_id":"gid://shopify/Product/7822320664627","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:13.714Z","vendor":"WallQuest","dw_sku":"DWQW-59725","product_id":"gid://shopify/Product/7822320697395","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:15.259Z","vendor":"WallQuest","dw_sku":"DWQW-59726","product_id":"gid://shopify/Product/7822320730163","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:16.827Z","vendor":"WallQuest","dw_sku":"DWQW-59727","product_id":"gid://shopify/Product/7822320762931","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:18.420Z","vendor":"WallQuest","dw_sku":"DWQW-59728","product_id":"gid://shopify/Product/7822320795699","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:19.987Z","vendor":"WallQuest","dw_sku":"DWQW-59729","product_id":"gid://shopify/Product/7822320828467","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:21.510Z","vendor":"WallQuest","dw_sku":"DWQW-59730","product_id":"gid://shopify/Product/7822320861235","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:23.160Z","vendor":"WallQuest","dw_sku":"DWQW-59731","product_id":"gid://shopify/Product/7822320894003","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:24.624Z","vendor":"WallQuest","dw_sku":"DWQW-59732","product_id":"gid://shopify/Product/7822320926771","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:26.087Z","vendor":"WallQuest","dw_sku":"DWQW-59733","product_id":"gid://shopify/Product/7822320959539","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:27.782Z","vendor":"WallQuest","dw_sku":"DWQW-59734","product_id":"gid://shopify/Product/7822320992307","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:29.273Z","vendor":"WallQuest","dw_sku":"DWQW-59735","product_id":"gid://shopify/Product/7822321025075","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:30.722Z","vendor":"WallQuest","dw_sku":"DWQW-59736","product_id":"gid://shopify/Product/7822321057843","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:32.232Z","vendor":"WallQuest","dw_sku":"DWQW-59737","product_id":"gid://shopify/Product/7822321090611","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:33.807Z","vendor":"WallQuest","dw_sku":"DWQW-59738","product_id":"gid://shopify/Product/7822321123379","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:35.392Z","vendor":"WallQuest","dw_sku":"DWQW-59739","product_id":"gid://shopify/Product/7822321156147","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:37.023Z","vendor":"WallQuest","dw_sku":"DWQW-59740","product_id":"gid://shopify/Product/7822321188915","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:38.593Z","vendor":"WallQuest","dw_sku":"DWQW-59741","product_id":"gid://shopify/Product/7822321221683","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:40.400Z","vendor":"WallQuest","dw_sku":"DWQW-59742","product_id":"gid://shopify/Product/7822321254451","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:41.882Z","vendor":"WallQuest","dw_sku":"DWQW-59743","product_id":"gid://shopify/Product/7822321287219","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:43.999Z","vendor":"WallQuest","dw_sku":"DWQW-59744","product_id":"gid://shopify/Product/7822321319987","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:45.540Z","vendor":"WallQuest","dw_sku":"DWQW-59745","product_id":"gid://shopify/Product/7822321385523","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:47.139Z","vendor":"WallQuest","dw_sku":"DWQW-59746","product_id":"gid://shopify/Product/7822321418291","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:48.596Z","vendor":"WallQuest","dw_sku":"DWQW-59747","product_id":"gid://shopify/Product/7822321451059","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:50.096Z","vendor":"WallQuest","dw_sku":"DWQW-59749","product_id":"gid://shopify/Product/7822321516595","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:51.787Z","vendor":"WallQuest","dw_sku":"DWQW-59750","product_id":"gid://shopify/Product/7822321549363","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:53.352Z","vendor":"WallQuest","dw_sku":"DWQW-59751","product_id":"gid://shopify/Product/7822321582131","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:54.898Z","vendor":"WallQuest","dw_sku":"DWQW-59752","product_id":"gid://shopify/Product/7822321614899","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:57.027Z","vendor":"WallQuest","dw_sku":"DWQW-59753","product_id":"gid://shopify/Product/7822321647667","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:36:58.755Z","vendor":"WallQuest","dw_sku":"DWQW-59754","product_id":"gid://shopify/Product/7822321680435","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:00.270Z","vendor":"WallQuest","dw_sku":"DWQW-59755","product_id":"gid://shopify/Product/7822321713203","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:01.913Z","vendor":"WallQuest","dw_sku":"DWQW-59756","product_id":"gid://shopify/Product/7822321745971","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:03.480Z","vendor":"WallQuest","dw_sku":"DWQW-59757","product_id":"gid://shopify/Product/7822321778739","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:05.082Z","vendor":"WallQuest","dw_sku":"DWQW-59758","product_id":"gid://shopify/Product/7822321811507","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:06.670Z","vendor":"WallQuest","dw_sku":"DWQW-59759","product_id":"gid://shopify/Product/7822321844275","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:08.192Z","vendor":"WallQuest","dw_sku":"DWQW-59760","product_id":"gid://shopify/Product/7822321877043","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:09.784Z","vendor":"WallQuest","dw_sku":"DWQW-59761","product_id":"gid://shopify/Product/7822321909811","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:11.252Z","vendor":"WallQuest","dw_sku":"DWQW-59762","product_id":"gid://shopify/Product/7822321942579","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:13.148Z","vendor":"WallQuest","dw_sku":"DWQW-59763","product_id":"gid://shopify/Product/7822321975347","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:14.661Z","vendor":"WallQuest","dw_sku":"DWQW-59764","product_id":"gid://shopify/Product/7822322008115","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:16.123Z","vendor":"WallQuest","dw_sku":"DWQW-59765","product_id":"gid://shopify/Product/7822322040883","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:17.690Z","vendor":"WallQuest","dw_sku":"DWQW-59766","product_id":"gid://shopify/Product/7822322073651","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:19.297Z","vendor":"WallQuest","dw_sku":"DWQW-59767","product_id":"gid://shopify/Product/7822322106419","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:20.947Z","vendor":"WallQuest","dw_sku":"DWQW-59768","product_id":"gid://shopify/Product/7822322139187","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:22.931Z","vendor":"WallQuest","dw_sku":"DWQW-59769","product_id":"gid://shopify/Product/7822322171955","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:24.489Z","vendor":"WallQuest","dw_sku":"DWQW-59770","product_id":"gid://shopify/Product/7822322204723","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:26.030Z","vendor":"WallQuest","dw_sku":"DWQW-59771","product_id":"gid://shopify/Product/7822322237491","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:27.670Z","vendor":"WallQuest","dw_sku":"DWQW-59772","product_id":"gid://shopify/Product/7822322270259","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:29.203Z","vendor":"WallQuest","dw_sku":"DWQW-59773","product_id":"gid://shopify/Product/7822322303027","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:30.602Z","vendor":"WallQuest","dw_sku":"DWQW-59774","product_id":"gid://shopify/Product/7822322335795","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:32.183Z","vendor":"WallQuest","dw_sku":"DWQW-59775","product_id":"gid://shopify/Product/7822322368563","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:33.759Z","vendor":"WallQuest","dw_sku":"DWQW-59776","product_id":"gid://shopify/Product/7822322401331","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:35.467Z","vendor":"WallQuest","dw_sku":"DWQW-59777","product_id":"gid://shopify/Product/7822322434099","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:37.017Z","vendor":"WallQuest","dw_sku":"DWQW-59778","product_id":"gid://shopify/Product/7822322466867","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:38.795Z","vendor":"WallQuest","dw_sku":"DWQW-59779","product_id":"gid://shopify/Product/7822322499635","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:40.737Z","vendor":"WallQuest","dw_sku":"DWQW-59780","product_id":"gid://shopify/Product/7822322532403","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:42.853Z","vendor":"WallQuest","dw_sku":"DWQW-59781","product_id":"gid://shopify/Product/7822322565171","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:44.432Z","vendor":"WallQuest","dw_sku":"DWQW-59782","product_id":"gid://shopify/Product/7822322597939","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:45.931Z","vendor":"WallQuest","dw_sku":"DWQW-59783","product_id":"gid://shopify/Product/7822322630707","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:47.429Z","vendor":"WallQuest","dw_sku":"DWQW-59784","product_id":"gid://shopify/Product/7822322663475","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:49.049Z","vendor":"WallQuest","dw_sku":"DWQW-59785","product_id":"gid://shopify/Product/7822322696243","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:50.527Z","vendor":"WallQuest","dw_sku":"DWQW-59786","product_id":"gid://shopify/Product/7822322729011","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:52.077Z","vendor":"WallQuest","dw_sku":"DWQW-59787","product_id":"gid://shopify/Product/7822322761779","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:53.662Z","vendor":"WallQuest","dw_sku":"DWQW-59788","product_id":"gid://shopify/Product/7822322794547","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:55.097Z","vendor":"WallQuest","dw_sku":"DWQW-59789","product_id":"gid://shopify/Product/7822322827315","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:37:57.170Z","vendor":"WallQuest","dw_sku":"DWQW-59790","product_id":"gid://shopify/Product/7822322860083","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:01.473Z","vendor":"WallQuest","dw_sku":"DWQW-59791","product_id":"gid://shopify/Product/7822322892851","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:03.480Z","vendor":"WallQuest","dw_sku":"DWQW-59792","product_id":"gid://shopify/Product/7822322925619","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:05.501Z","vendor":"WallQuest","dw_sku":"DWQW-59793","product_id":"gid://shopify/Product/7822322958387","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:07.192Z","vendor":"WallQuest","dw_sku":"DWQW-59794","product_id":"gid://shopify/Product/7822322991155","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:08.801Z","vendor":"WallQuest","dw_sku":"DWQW-59795","product_id":"gid://shopify/Product/7822323023923","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:10.397Z","vendor":"WallQuest","dw_sku":"DWQW-59796","product_id":"gid://shopify/Product/7822323056691","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:11.974Z","vendor":"WallQuest","dw_sku":"DWQW-59797","product_id":"gid://shopify/Product/7822323089459","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:13.578Z","vendor":"WallQuest","dw_sku":"DWQW-59798","product_id":"gid://shopify/Product/7822323122227","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:15.148Z","vendor":"WallQuest","dw_sku":"DWQW-59799","product_id":"gid://shopify/Product/7822323154995","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:16.997Z","vendor":"WallQuest","dw_sku":"DWQW-59800","product_id":"gid://shopify/Product/7822323187763","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:20.131Z","vendor":"WallQuest","dw_sku":"DWQW-59801","product_id":"gid://shopify/Product/7822323220531","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:22.253Z","vendor":"WallQuest","dw_sku":"DWQW-59802","product_id":"gid://shopify/Product/7822323253299","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:24.662Z","vendor":"WallQuest","dw_sku":"DWQW-59803","product_id":"gid://shopify/Product/7822323286067","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:26.271Z","vendor":"WallQuest","dw_sku":"DWQW-59804","product_id":"gid://shopify/Product/7822323318835","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:27.808Z","vendor":"WallQuest","dw_sku":"DWQW-59805","product_id":"gid://shopify/Product/7822323351603","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:29.394Z","vendor":"WallQuest","dw_sku":"DWQW-59806","product_id":"gid://shopify/Product/7822323417139","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:30.874Z","vendor":"WallQuest","dw_sku":"DWQW-59807","product_id":"gid://shopify/Product/7822323449907","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:32.526Z","vendor":"WallQuest","dw_sku":"DWQW-59808","product_id":"gid://shopify/Product/7822323482675","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:34.053Z","vendor":"WallQuest","dw_sku":"DWQW-59809","product_id":"gid://shopify/Product/7822323515443","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:35.755Z","vendor":"WallQuest","dw_sku":"DWQW-59810","product_id":"gid://shopify/Product/7822323548211","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:37.454Z","vendor":"WallQuest","dw_sku":"DWQW-59811","product_id":"gid://shopify/Product/7822323580979","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:38.999Z","vendor":"WallQuest","dw_sku":"DWQW-59812","product_id":"gid://shopify/Product/7822323613747","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:40.672Z","vendor":"WallQuest","dw_sku":"DWQW-59813","product_id":"gid://shopify/Product/7822323646515","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:42.257Z","vendor":"WallQuest","dw_sku":"DWQW-59814","product_id":"gid://shopify/Product/7822323679283","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:43.907Z","vendor":"WallQuest","dw_sku":"DWQW-59815","product_id":"gid://shopify/Product/7822323712051","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:45.830Z","vendor":"WallQuest","dw_sku":"DWQW-59816","product_id":"gid://shopify/Product/7822323744819","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:47.366Z","vendor":"WallQuest","dw_sku":"DWQW-59817","product_id":"gid://shopify/Product/7822323777587","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:49.250Z","vendor":"WallQuest","dw_sku":"DWQW-59818","product_id":"gid://shopify/Product/7822323810355","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:50.797Z","vendor":"WallQuest","dw_sku":"DWQW-59819","product_id":"gid://shopify/Product/7822323843123","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:52.237Z","vendor":"WallQuest","dw_sku":"DWQW-59820","product_id":"gid://shopify/Product/7822323875891","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:54.073Z","vendor":"WallQuest","dw_sku":"DWQW-59821","product_id":"gid://shopify/Product/7822323908659","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:55.595Z","vendor":"WallQuest","dw_sku":"DWQW-59822","product_id":"gid://shopify/Product/7822323941427","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:57.024Z","vendor":"WallQuest","dw_sku":"DWQW-59823","product_id":"gid://shopify/Product/7822323974195","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:38:58.730Z","vendor":"WallQuest","dw_sku":"DWQW-59824","product_id":"gid://shopify/Product/7822324006963","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:00.212Z","vendor":"WallQuest","dw_sku":"DWQW-59825","product_id":"gid://shopify/Product/7822324039731","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:01.771Z","vendor":"WallQuest","dw_sku":"DWQW-59826","product_id":"gid://shopify/Product/7822324072499","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:03.171Z","vendor":"WallQuest","dw_sku":"DWQW-59827","product_id":"gid://shopify/Product/7822324105267","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:04.759Z","vendor":"WallQuest","dw_sku":"DWQW-59828","product_id":"gid://shopify/Product/7822324138035","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:06.320Z","vendor":"WallQuest","dw_sku":"DWQW-59829","product_id":"gid://shopify/Product/7822324170803","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:08.013Z","vendor":"WallQuest","dw_sku":"DWQW-59830","product_id":"gid://shopify/Product/7822324203571","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:09.818Z","vendor":"WallQuest","dw_sku":"DWQW-59831","product_id":"gid://shopify/Product/7822324236339","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:11.377Z","vendor":"WallQuest","dw_sku":"DWQW-59832","product_id":"gid://shopify/Product/7822324269107","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:13.013Z","vendor":"WallQuest","dw_sku":"DWQW-59833","product_id":"gid://shopify/Product/7822324301875","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:14.465Z","vendor":"WallQuest","dw_sku":"DWQW-59834","product_id":"gid://shopify/Product/7822324334643","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:16.208Z","vendor":"WallQuest","dw_sku":"DWQW-59835","product_id":"gid://shopify/Product/7822324367411","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:17.782Z","vendor":"WallQuest","dw_sku":"DWQW-59836","product_id":"gid://shopify/Product/7822324400179","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:19.377Z","vendor":"WallQuest","dw_sku":"DWQW-59837","product_id":"gid://shopify/Product/7822324432947","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:21.237Z","vendor":"WallQuest","dw_sku":"DWQW-59838","product_id":"gid://shopify/Product/7822324465715","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:22.920Z","vendor":"WallQuest","dw_sku":"DWQW-59839","product_id":"gid://shopify/Product/7822324498483","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:24.837Z","vendor":"WallQuest","dw_sku":"DWQW-59840","product_id":"gid://shopify/Product/7822324531251","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:26.324Z","vendor":"WallQuest","dw_sku":"DWQW-59841","product_id":"gid://shopify/Product/7822324564019","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:27.963Z","vendor":"WallQuest","dw_sku":"DWQW-59842","product_id":"gid://shopify/Product/7822324596787","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:30.256Z","vendor":"WallQuest","dw_sku":"DWQW-59843","product_id":"gid://shopify/Product/7822324629555","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:32.113Z","vendor":"WallQuest","dw_sku":"DWQW-59844","product_id":"gid://shopify/Product/7822324662323","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:33.807Z","vendor":"WallQuest","dw_sku":"DWQW-59846","product_id":"gid://shopify/Product/7822324727859","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:35.883Z","vendor":"WallQuest","dw_sku":"DWQW-59847","product_id":"gid://shopify/Product/7822324760627","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:37.727Z","vendor":"WallQuest","dw_sku":"DWQW-59848","product_id":"gid://shopify/Product/7822324793395","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:39.280Z","vendor":"WallQuest","dw_sku":"DWQW-59849","product_id":"gid://shopify/Product/7822324826163","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:41.200Z","vendor":"WallQuest","dw_sku":"DWQW-59850","product_id":"gid://shopify/Product/7822324858931","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:43.162Z","vendor":"WallQuest","dw_sku":"DWQW-59851","product_id":"gid://shopify/Product/7822324891699","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:45.380Z","vendor":"WallQuest","dw_sku":"DWQW-59852","product_id":"gid://shopify/Product/7822324924467","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:47.135Z","vendor":"WallQuest","dw_sku":"DWQW-59853","product_id":"gid://shopify/Product/7822324957235","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:48.626Z","vendor":"WallQuest","dw_sku":"DWQW-59854","product_id":"gid://shopify/Product/7822324990003","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:50.173Z","vendor":"WallQuest","dw_sku":"DWQW-59855","product_id":"gid://shopify/Product/7822325022771","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:52.003Z","vendor":"WallQuest","dw_sku":"DWQW-59856","product_id":"gid://shopify/Product/7822325055539","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:53.423Z","vendor":"WallQuest","dw_sku":"DWQW-59857","product_id":"gid://shopify/Product/7822325088307","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:55.023Z","vendor":"WallQuest","dw_sku":"DWQW-59858","product_id":"gid://shopify/Product/7822325121075","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:56.643Z","vendor":"WallQuest","dw_sku":"DWQW-59859","product_id":"gid://shopify/Product/7822325153843","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:39:58.465Z","vendor":"WallQuest","dw_sku":"DWQW-59860","product_id":"gid://shopify/Product/7822325186611","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:00.076Z","vendor":"WallQuest","dw_sku":"DWQW-59861","product_id":"gid://shopify/Product/7822325219379","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:01.683Z","vendor":"WallQuest","dw_sku":"DWQW-59862","product_id":"gid://shopify/Product/7822325252147","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:03.318Z","vendor":"WallQuest","dw_sku":"DWQW-59863","product_id":"gid://shopify/Product/7822325284915","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:05.306Z","vendor":"WallQuest","dw_sku":"DWQW-59864","product_id":"gid://shopify/Product/7822325317683","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:06.832Z","vendor":"WallQuest","dw_sku":"DWQW-59865","product_id":"gid://shopify/Product/7822325350451","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:08.497Z","vendor":"WallQuest","dw_sku":"DWQW-59866","product_id":"gid://shopify/Product/7822325383219","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:10.136Z","vendor":"WallQuest","dw_sku":"DWQW-59867","product_id":"gid://shopify/Product/7822325448755","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:11.792Z","vendor":"WallQuest","dw_sku":"DWQW-59868","product_id":"gid://shopify/Product/7822325481523","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:13.657Z","vendor":"WallQuest","dw_sku":"DWQW-59869","product_id":"gid://shopify/Product/7822325514291","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:15.138Z","vendor":"WallQuest","dw_sku":"DWQW-59870","product_id":"gid://shopify/Product/7822325547059","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:16.660Z","vendor":"WallQuest","dw_sku":"DWQW-59871","product_id":"gid://shopify/Product/7822325579827","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:18.243Z","vendor":"WallQuest","dw_sku":"DWQW-59872","product_id":"gid://shopify/Product/7822325612595","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:20.112Z","vendor":"WallQuest","dw_sku":"DWQW-59873","product_id":"gid://shopify/Product/7822325645363","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:21.696Z","vendor":"WallQuest","dw_sku":"DWQW-59874","product_id":"gid://shopify/Product/7822325678131","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:23.729Z","vendor":"WallQuest","dw_sku":"DWQW-59875","product_id":"gid://shopify/Product/7822325710899","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:25.165Z","vendor":"WallQuest","dw_sku":"DWQW-59876","product_id":"gid://shopify/Product/7822325743667","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:26.707Z","vendor":"WallQuest","dw_sku":"DWQW-59877","product_id":"gid://shopify/Product/7822325776435","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:28.616Z","vendor":"WallQuest","dw_sku":"DWQW-59878","product_id":"gid://shopify/Product/7822325809203","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:30.231Z","vendor":"WallQuest","dw_sku":"DWQW-59879","product_id":"gid://shopify/Product/7822325841971","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:31.804Z","vendor":"WallQuest","dw_sku":"DWQW-59880","product_id":"gid://shopify/Product/7822325874739","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:33.443Z","vendor":"WallQuest","dw_sku":"DWQW-59881","product_id":"gid://shopify/Product/7822325907507","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:35.194Z","vendor":"WallQuest","dw_sku":"DWQW-59882","product_id":"gid://shopify/Product/7822325940275","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:36.797Z","vendor":"WallQuest","dw_sku":"DWQW-59883","product_id":"gid://shopify/Product/7822325973043","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:38.330Z","vendor":"WallQuest","dw_sku":"DWQW-59884","product_id":"gid://shopify/Product/7822326005811","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:39.921Z","vendor":"WallQuest","dw_sku":"DWQW-59885","product_id":"gid://shopify/Product/7822326038579","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:41.841Z","vendor":"WallQuest","dw_sku":"DWQW-59886","product_id":"gid://shopify/Product/7822326071347","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:43.472Z","vendor":"WallQuest","dw_sku":"DWQW-59887","product_id":"gid://shopify/Product/7822326104115","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:45.297Z","vendor":"WallQuest","dw_sku":"DWQW-59888","product_id":"gid://shopify/Product/7822326136883","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:47.222Z","vendor":"WallQuest","dw_sku":"DWQW-59889","product_id":"gid://shopify/Product/7822326169651","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:48.885Z","vendor":"WallQuest","dw_sku":"DWQW-59890","product_id":"gid://shopify/Product/7822326202419","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:50.753Z","vendor":"WallQuest","dw_sku":"DWQW-59891","product_id":"gid://shopify/Product/7822326235187","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:52.264Z","vendor":"WallQuest","dw_sku":"DWQW-59892","product_id":"gid://shopify/Product/7822326267955","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:53.796Z","vendor":"WallQuest","dw_sku":"DWQW-59893","product_id":"gid://shopify/Product/7822326300723","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:55.309Z","vendor":"WallQuest","dw_sku":"DWQW-59894","product_id":"gid://shopify/Product/7822326333491","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:57.447Z","vendor":"WallQuest","dw_sku":"DWQW-59895","product_id":"gid://shopify/Product/7822326366259","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:40:59.122Z","vendor":"WallQuest","dw_sku":"DWQW-59896","product_id":"gid://shopify/Product/7822326399027","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:00.711Z","vendor":"WallQuest","dw_sku":"DWQW-59897","product_id":"gid://shopify/Product/7822326431795","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:02.243Z","vendor":"WallQuest","dw_sku":"DWQW-59898","product_id":"gid://shopify/Product/7822326464563","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:04.910Z","vendor":"WallQuest","dw_sku":"DWQW-59899","product_id":"gid://shopify/Product/7822326497331","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:06.740Z","vendor":"WallQuest","dw_sku":"DWQW-59900","product_id":"gid://shopify/Product/7822326530099","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:08.447Z","vendor":"WallQuest","dw_sku":"DWQW-59901","product_id":"gid://shopify/Product/7822326562867","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:10.098Z","vendor":"WallQuest","dw_sku":"DWQW-59902","product_id":"gid://shopify/Product/7822326595635","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:11.660Z","vendor":"WallQuest","dw_sku":"DWQW-59903","product_id":"gid://shopify/Product/7822326628403","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:13.374Z","vendor":"WallQuest","dw_sku":"DWQW-59904","product_id":"gid://shopify/Product/7822326661171","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:15.033Z","vendor":"WallQuest","dw_sku":"DWQW-59905","product_id":"gid://shopify/Product/7822326693939","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:16.537Z","vendor":"WallQuest","dw_sku":"DWQW-59906","product_id":"gid://shopify/Product/7822326726707","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:18.132Z","vendor":"WallQuest","dw_sku":"DWQW-59907","product_id":"gid://shopify/Product/7822326759475","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:19.670Z","vendor":"WallQuest","dw_sku":"DWQW-59908","product_id":"gid://shopify/Product/7822326792243","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:21.205Z","vendor":"WallQuest","dw_sku":"DWQW-59909","product_id":"gid://shopify/Product/7822326825011","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:22.760Z","vendor":"WallQuest","dw_sku":"DWQW-59910","product_id":"gid://shopify/Product/7822326857779","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:24.551Z","vendor":"WallQuest","dw_sku":"DWQW-59911","product_id":"gid://shopify/Product/7822326890547","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:26.039Z","vendor":"WallQuest","dw_sku":"DWQW-59912","product_id":"gid://shopify/Product/7822326923315","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:27.719Z","vendor":"WallQuest","dw_sku":"DWQW-59913","product_id":"gid://shopify/Product/7822326956083","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:29.374Z","vendor":"WallQuest","dw_sku":"DWQW-59914","product_id":"gid://shopify/Product/7822326988851","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:31.149Z","vendor":"WallQuest","dw_sku":"DWQW-59915","product_id":"gid://shopify/Product/7822327021619","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:32.639Z","vendor":"WallQuest","dw_sku":"DWQW-59916","product_id":"gid://shopify/Product/7822327054387","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:34.251Z","vendor":"WallQuest","dw_sku":"DWQW-59917","product_id":"gid://shopify/Product/7822327087155","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:35.830Z","vendor":"WallQuest","dw_sku":"DWQW-59918","product_id":"gid://shopify/Product/7822327119923","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:37.334Z","vendor":"WallQuest","dw_sku":"DWQW-59919","product_id":"gid://shopify/Product/7822327152691","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:38.995Z","vendor":"WallQuest","dw_sku":"DWQW-59920","product_id":"gid://shopify/Product/7822327185459","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:40.593Z","vendor":"WallQuest","dw_sku":"DWQW-59921","product_id":"gid://shopify/Product/7822327218227","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:42.170Z","vendor":"WallQuest","dw_sku":"DWQW-59922","product_id":"gid://shopify/Product/7822327250995","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:43.771Z","vendor":"WallQuest","dw_sku":"DWQW-59923","product_id":"gid://shopify/Product/7822327283763","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:45.244Z","vendor":"WallQuest","dw_sku":"DWQW-59924","product_id":"gid://shopify/Product/7822327316531","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:47.583Z","vendor":"WallQuest","dw_sku":"DWQW-59925","product_id":"gid://shopify/Product/7822327349299","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:49.269Z","vendor":"WallQuest","dw_sku":"DWQW-59926","product_id":"gid://shopify/Product/7822327382067","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:50.848Z","vendor":"WallQuest","dw_sku":"DWQW-59927","product_id":"gid://shopify/Product/7822327414835","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:52.422Z","vendor":"WallQuest","dw_sku":"DWQW-59928","product_id":"gid://shopify/Product/7822327447603","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:54.034Z","vendor":"WallQuest","dw_sku":"DWQW-59929","product_id":"gid://shopify/Product/7822327480371","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:55.604Z","vendor":"WallQuest","dw_sku":"DWQW-59930","product_id":"gid://shopify/Product/7822327513139","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:57.086Z","vendor":"WallQuest","dw_sku":"DWQW-59931","product_id":"gid://shopify/Product/7822327545907","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:41:58.622Z","vendor":"WallQuest","dw_sku":"DWQW-59932","product_id":"gid://shopify/Product/7822327578675","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:00.104Z","vendor":"WallQuest","dw_sku":"DWQW-59933","product_id":"gid://shopify/Product/7822327611443","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:01.694Z","vendor":"WallQuest","dw_sku":"DWQW-59934","product_id":"gid://shopify/Product/7822327644211","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:03.230Z","vendor":"WallQuest","dw_sku":"DWQW-59935","product_id":"gid://shopify/Product/7822327676979","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:04.754Z","vendor":"WallQuest","dw_sku":"DWQW-59936","product_id":"gid://shopify/Product/7822327709747","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:06.337Z","vendor":"WallQuest","dw_sku":"DWQW-59937","product_id":"gid://shopify/Product/7822327742515","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:07.918Z","vendor":"WallQuest","dw_sku":"DWQW-59938","product_id":"gid://shopify/Product/7822327775283","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:10.106Z","vendor":"WallQuest","dw_sku":"DWQW-59939","product_id":"gid://shopify/Product/7822327808051","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:11.678Z","vendor":"WallQuest","dw_sku":"DWQW-59940","product_id":"gid://shopify/Product/7822327840819","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:13.269Z","vendor":"WallQuest","dw_sku":"DWQW-59941","product_id":"gid://shopify/Product/7822327873587","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:14.794Z","vendor":"WallQuest","dw_sku":"DWQW-59942","product_id":"gid://shopify/Product/7822327906355","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:16.333Z","vendor":"WallQuest","dw_sku":"DWQW-59943","product_id":"gid://shopify/Product/7822327939123","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:18.347Z","vendor":"WallQuest","dw_sku":"DWQW-59944","product_id":"gid://shopify/Product/7822327971891","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:20.344Z","vendor":"WallQuest","dw_sku":"DWQW-59945","product_id":"gid://shopify/Product/7822328004659","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:21.966Z","vendor":"WallQuest","dw_sku":"DWQW-59946","product_id":"gid://shopify/Product/7822328037427","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:24.200Z","vendor":"WallQuest","dw_sku":"DWQW-59947","product_id":"gid://shopify/Product/7822328070195","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:25.788Z","vendor":"WallQuest","dw_sku":"DWQW-59948","product_id":"gid://shopify/Product/7822328102963","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:27.309Z","vendor":"WallQuest","dw_sku":"DWQW-59949","product_id":"gid://shopify/Product/7822328135731","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:29.176Z","vendor":"WallQuest","dw_sku":"DWQW-59950","product_id":"gid://shopify/Product/7822328168499","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:30.870Z","vendor":"WallQuest","dw_sku":"DWQW-59951","product_id":"gid://shopify/Product/7822328201267","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:33.032Z","vendor":"WallQuest","dw_sku":"DWQW-59952","product_id":"gid://shopify/Product/7822328234035","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:34.713Z","vendor":"WallQuest","dw_sku":"DWQW-59953","product_id":"gid://shopify/Product/7822328266803","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:37.565Z","vendor":"WallQuest","dw_sku":"DWQW-59954","product_id":"gid://shopify/Product/7822328299571","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:39.531Z","vendor":"WallQuest","dw_sku":"DWQW-59955","product_id":"gid://shopify/Product/7822328332339","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:41.024Z","vendor":"WallQuest","dw_sku":"DWQW-59956","product_id":"gid://shopify/Product/7822328365107","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:42.820Z","vendor":"WallQuest","dw_sku":"DWQW-59957","product_id":"gid://shopify/Product/7822328397875","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:44.283Z","vendor":"WallQuest","dw_sku":"DWQW-59958","product_id":"gid://shopify/Product/7822328430643","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:46.210Z","vendor":"WallQuest","dw_sku":"DWQW-59959","product_id":"gid://shopify/Product/7822328463411","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:47.759Z","vendor":"WallQuest","dw_sku":"DWQW-59960","product_id":"gid://shopify/Product/7822328496179","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:49.306Z","vendor":"WallQuest","dw_sku":"DWQW-59961","product_id":"gid://shopify/Product/7822328528947","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:51.070Z","vendor":"WallQuest","dw_sku":"DWQW-59962","product_id":"gid://shopify/Product/7822328561715","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:52.704Z","vendor":"WallQuest","dw_sku":"DWQW-59963","product_id":"gid://shopify/Product/7822328594483","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:54.590Z","vendor":"WallQuest","dw_sku":"DWQW-59964","product_id":"gid://shopify/Product/7822328627251","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:56.138Z","vendor":"WallQuest","dw_sku":"DWQW-59965","product_id":"gid://shopify/Product/7822328660019","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:57.690Z","vendor":"WallQuest","dw_sku":"DWQW-59966","product_id":"gid://shopify/Product/7822328692787","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:42:59.209Z","vendor":"WallQuest","dw_sku":"DWQW-59967","product_id":"gid://shopify/Product/7822328725555","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:43:00.714Z","vendor":"WallQuest","dw_sku":"DWQW-59968","product_id":"gid://shopify/Product/7822328758323","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:43:02.411Z","vendor":"WallQuest","dw_sku":"DWQW-59969","product_id":"gid://shopify/Product/7822328791091","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:43:03.983Z","vendor":"WallQuest","dw_sku":"DWQW-59970","product_id":"gid://shopify/Product/7822328823859","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:43:05.518Z","vendor":"WallQuest","dw_sku":"DWQW-59971","product_id":"gid://shopify/Product/7822328856627","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:43:07.143Z","vendor":"WallQuest","dw_sku":"DWQW-59972","product_id":"gid://shopify/Product/7822328889395","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:43:08.662Z","vendor":"WallQuest","dw_sku":"DWQW-59973","product_id":"gid://shopify/Product/7822328954931","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:43:10.387Z","vendor":"WallQuest","dw_sku":"DWQW-59974","product_id":"gid://shopify/Product/7822328987699","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:43:11.825Z","vendor":"WallQuest","dw_sku":"DWQW-59975","product_id":"gid://shopify/Product/7822329020467","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:43:13.414Z","vendor":"WallQuest","dw_sku":"DWQW-59976","product_id":"gid://shopify/Product/7822329053235","from":"DRAFT","to":"ACTIVE"}
+{"ts":"2026-06-11T16:43:15.002Z","vendor":"WallQuest","dw_sku":"DWQW-59977","product_id":"gid://shopify/Product/7822329086003","from":"DRAFT","to":"ACTIVE"}
diff --git a/shopify/scripts/cadence/data/cadence-plan-am-2026-06-11.json b/shopify/scripts/cadence/data/cadence-plan-am-2026-06-11.json
index d9d7bff1..135bb43a 100644
--- a/shopify/scripts/cadence/data/cadence-plan-am-2026-06-11.json
+++ b/shopify/scripts/cadence/data/cadence-plan-am-2026-06-11.json
@@ -1,82 +1,10 @@
 [
  {
   "vendor": "Thibaut",
-  "dw_sku": "DWTT-70680",
-  "cost": 80.1,
-  "retail": 144.98,
-  "sample": "4.25",
-  "title": "Cornwall, Blush Wallcoverings | Thibaut"
- },
- {
-  "vendor": "Thibaut",
-  "dw_sku": "DWTT-70800",
-  "cost": 129.6,
-  "retail": 234.57,
-  "sample": "4.25",
-  "title": "Sachon Basket, Navy Wallcoverings | Thibaut"
- },
- {
-  "vendor": "Thibaut",
-  "dw_sku": "DWTT-70810",
-  "cost": 96.3,
-  "retail": 174.3,
-  "sample": "4.25",
-  "title": "Portage, Light Blue Wallcoverings | Thibaut"
- },
- {
-  "vendor": "Thibaut",
-  "dw_sku": "DWTT-70820",
-  "cost": 118.8,
-  "retail": 215.02,
-  "sample": "4.25",
-  "title": "Sutton, Metallic Gold Wallcoverings | Thibaut"
- },
- {
-  "vendor": "Thibaut",
-  "dw_sku": "DWTT-70880",
-  "cost": 35.1,
-  "retail": 63.53,
-  "sample": "4.25",
-  "title": "Cabo Raffia Wallcoverings | Thibaut"
- },
- {
-  "vendor": "Thibaut",
-  "dw_sku": "DWTT-71120",
-  "cost": 69.3,
-  "retail": 125.43,
-  "sample": "4.25",
-  "title": "Taluk Sisal Wallcoverings | Thibaut"
- },
- {
-  "vendor": "Thibaut",
-  "dw_sku": "DWTT-71320",
-  "cost": 69.3,
-  "retail": 125.43,
-  "sample": "4.25",
-  "title": "Woolston, Flax Wallcoverings | Thibaut"
- },
- {
-  "vendor": "Thibaut",
-  "dw_sku": "DWTT-71340",
+  "dw_sku": "DWTT-71490",
   "cost": 170.1,
   "retail": 307.87,
   "sample": "4.25",
-  "title": "Tabacon Abaca, Cream Wallcoverings | Thibaut"
- },
- {
-  "vendor": "Thibaut",
-  "dw_sku": "DWTT-71370",
-  "cost": 69.3,
-  "retail": 125.43,
-  "sample": "4.25",
-  "title": "Kendari Grass, Light Grey Wallcoverings | Thibaut"
- },
- {
-  "vendor": "Thibaut",
-  "dw_sku": "DWTT-71380",
-  "cost": 69.3,
-  "retail": 125.43,
-  "sample": "4.25",
-  "title": "Taluk Sisal Wallcoverings | Thibaut"
+  "title": "Tabacon Abaca, Robin's Egg Wallcoverings | Thibaut"
  }
 ]
\ No newline at end of file
diff --git a/shopify/scripts/quarantine-mispriced.js b/shopify/scripts/quarantine-mispriced.js
new file mode 100644
index 00000000..d151ea23
--- /dev/null
+++ b/shopify/scripts/quarantine-mispriced.js
@@ -0,0 +1,73 @@
+#!/usr/bin/env node
+/**
+ * Quarantine mispriced products: last-N-hours products whose MAIN/roll variant
+ * price == $4.25 (the sample price leaked onto the roll). Set status=DRAFT +
+ * add tag 'needs-reprice'. Excludes correctly-priced products (roll != 4.25)
+ * and never touches the Sample variant ($4.25 is correct there).
+ *
+ *   node quarantine-mispriced.js                 # DRY-RUN (default), 72h window
+ *   node quarantine-mispriced.js --commit        # apply
+ *   node quarantine-mispriced.js --window 96 --commit
+ */
+const https = require('https');
+const fs = require('fs');
+const os = require('os');
+const path = require('path');
+const args = process.argv.slice(2);
+const COMMIT = args.includes('--commit');
+const wIdx = args.indexOf('--window');
+const WINDOW_HOURS = wIdx >= 0 ? parseFloat(args[wIdx + 1]) : 72;
+const BAD = '4.25';
+const TOKEN = (fs.readFileSync(os.homedir() + '/Projects/secrets-manager/.env', 'utf8').match(/^SHOPIFY_ADMIN_TOKEN=(.*)$/m) || [])[1].replace(/['"]/g, '').trim();
+const STORE = 'designer-laboratory-sandbox.myshopify.com', API = '2024-10';
+const sleep = ms => new Promise(r => setTimeout(r, ms));
+const OUT = path.join(__dirname, 'quarantine-manifest.json');
+
+function gql(query, variables) {
+  return new Promise(res => {
+    const data = JSON.stringify({ query, variables });
+    const req = https.request({ host: STORE, path: `/admin/api/${API}/graphql.json`, method: 'POST',
+      headers: { 'X-Shopify-Access-Token': TOKEN, 'Content-Type': 'application/json', 'Content-Length': Buffer.byteLength(data) } },
+      r => { let d=''; r.on('data',c=>d+=c); r.on('end',()=>{ try{res({status:r.statusCode,json:JSON.parse(d)})}catch{res({status:r.statusCode,raw:d.slice(0,300)})} }); });
+    req.on('error', e => res({ status:0, err:e.message })); req.write(data); req.end();
+  });
+}
+async function gqlRetry(q, v) { for (let a=0;a<5;a++){ const r=await gql(q,v); const t=r.json&&r.json.errors&&JSON.stringify(r.json.errors).includes('THROTTLED'); if(r.status===429||t){await sleep(2000*(a+1));continue;} await sleep(450); return r; } return {status:429}; }
+
+(async () => {
+  if (!TOKEN) { console.error('no token'); process.exit(1); }
+  const since = new Date(Date.now() - WINDOW_HOURS*3600*1000).toISOString();
+  console.log(`window: created_at > ${since} (${WINDOW_HOURS}h) ; quarantine where a non-Sample variant price == $${BAD}`);
+  const q = `query($q:String!,$after:String){products(first:100,query:$q,after:$after){pageInfo{hasNextPage endCursor} edges{node{id title status tags variants(first:30){edges{node{sku price}}}}}}}`;
+  let after=null, pages=0; const targets=[], skipped=[];
+  do {
+    const r = await gqlRetry(q, { q:`created_at:>${since}`, after });
+    if (r.status!==200||!r.json?.data){ console.error('fetch fail', r.status, r.raw||JSON.stringify(r.json).slice(0,200)); process.exit(1); }
+    const p=r.json.data.products;
+    for (const e of p.edges) {
+      const n=e.node;
+      const rollBad = n.variants.edges.some(v => !/-sample$/i.test(v.node.sku||'') && String(v.node.price)===BAD);
+      if (rollBad) targets.push(n); else skipped.push(n);
+    }
+    after=p.pageInfo.hasNextPage?p.pageInfo.endCursor:null; pages++;
+    process.stdout.write(`\r  scanned ${targets.length+skipped.length} (page ${pages})…`);
+  } while (after && pages<60);
+  console.log(`\nMATCH (roll==$${BAD}): ${targets.length}   ·   OK (correctly priced, skipped): ${skipped.length}`);
+  console.log('sample targets:'); targets.slice(0,8).forEach(n=>console.log(`  ${n.status}  ${n.title.slice(0,55)}`));
+
+  if (!COMMIT) { fs.writeFileSync(OUT, JSON.stringify(targets.map(t=>({id:t.id,title:t.title})),null,1)); console.log(`\nDRY-RUN — ${targets.length} would be set DRAFT + tagged needs-reprice. Re-run with --commit.`); return; }
+
+  const mUpd=`mutation($input:ProductInput!){productUpdate(input:$input){product{id status} userErrors{field message}}}`;
+  const mTag=`mutation($id:ID!,$tags:[String!]!){tagsAdd(id:$id,tags:$tags){userErrors{field message}}}`;
+  let ok=0,fail=0,drafted=0;
+  for (const n of targets) {
+    let err=null;
+    // only ACTIVE->DRAFT (leave ARCHIVED/DRAFT state as-is); always tag needs-reprice
+    if (n.status==='ACTIVE') { const r1=await gqlRetry(mUpd,{input:{id:n.id,status:'DRAFT'}}); const e1=r1.json?.data?.productUpdate?.userErrors; if(e1&&e1.length)err=e1; else drafted++; }
+    const r2=await gqlRetry(mTag,{id:n.id,tags:['needs-reprice']});
+    const e2=r2.json?.data?.tagsAdd?.userErrors; if(e2&&e2.length)err=err||e2;
+    if (err){ fail++; console.log(`  ✗ ${n.id} ${JSON.stringify(err).slice(0,120)}`); }
+    else { ok++; if(ok%25===0) process.stdout.write(`\r  quarantined ${ok}/${targets.length}…`); }
+  }
+  console.log(`\nQUARANTINE done. tagged: ${ok}  (ACTIVE→DRAFT: ${drafted})  failed: ${fail}`);
+})();
diff --git a/shopify/scripts/schu-login-probe.js b/shopify/scripts/schu-login-probe.js
new file mode 100644
index 00000000..21a1025c
--- /dev/null
+++ b/shopify/scripts/schu-login-probe.js
@@ -0,0 +1,48 @@
+#!/usr/bin/env node
+/* Schumacher login PROBE — runs on Kamatera (working Chromium).
+ * Loads /sign-in, dumps the real form fields, captures the auth network POST,
+ * logs in, then reads priceUsd from a product's __NEXT_DATA__ to prove the
+ * session unlocks pricing. Output → /tmp/schu-probe-out.json */
+const path = require('path');
+const NM = '/root/Projects/Designer-Wallcoverings/DW-Programming/ImportNewSkufromURL/node_modules';
+const { chromium } = require(path.join(NM, 'playwright'));
+const fs = require('fs');
+const EMAIL = 'info@designerwallcoverings.com', PW = '*Schumacheraccess911*';
+const out = { inputs: [], buttons: [], authPosts: [], priceUsd: null, loggedIn: false, err: null };
+
+(async () => {
+  const b = await chromium.launch({ headless: true, args: ['--no-sandbox','--disable-dev-shm-usage'] });
+  try {
+    const ctx = await b.newContext({ userAgent: 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/149.0.0.0 Safari/537.36' });
+    const page = await ctx.newPage();
+    page.on('request', r => { if (r.method()==='POST' && /sign|login|auth|token|customer|session|graphql/i.test(r.url())) out.authPosts.push({ url: r.url(), postData: (r.postData()||'').slice(0,300) }); });
+    await page.goto('https://www.schumacher.com/sign-in', { waitUntil: 'networkidle', timeout: 45000 });
+    await page.waitForTimeout(4000);
+    out.inputs = await page.$$eval('input', els => els.map(e => ({ name:e.name, type:e.type, id:e.id, ph:e.placeholder, aria:e.getAttribute('aria-label') })));
+    out.buttons = await page.$$eval('button,[role=button],a', els => els.slice(0,40).map(e => (e.innerText||e.getAttribute('aria-label')||'').trim()).filter(Boolean));
+    // try to fill using best-guess selectors
+    const emailSel = 'input[type=email], input[name*=email i], input[id*=email i], input[autocomplete=username]';
+    const pwSel = 'input[type=password], input[name*=pass i], input[id*=pass i]';
+    try {
+      await page.fill(emailSel, EMAIL, { timeout: 8000 });
+      await page.fill(pwSel, PW, { timeout: 8000 });
+      // submit: click a button whose text mentions sign in / log in, else press Enter
+      const btn = await page.$('button[type=submit]') || await page.$('button:has-text("Sign In")') || await page.$('button:has-text("Log In")');
+      if (btn) await btn.click(); else await page.keyboard.press('Enter');
+      await page.waitForTimeout(6000);
+      const url = page.url();
+      out.loggedIn = !/sign-in/i.test(url);
+      out.postLoginUrl = url;
+    } catch (e) { out.fillErr = e.message.split('\n')[0]; }
+    // check price now (with whatever session we have)
+    try {
+      await page.goto('https://www.schumacher.com/catalog/products/1462', { waitUntil: 'domcontentloaded', timeout: 30000 });
+      await page.waitForTimeout(2500);
+      const nd = await page.$eval('#__NEXT_DATA__', e => e.textContent).catch(()=>null);
+      if (nd) { const mm = nd.match(/"itemNumber":"1462","priceUsd":([^,}]+)/); out.priceUsd = mm ? mm[1] : 'field-not-found'; }
+    } catch (e) { out.priceErr = e.message.split('\n')[0]; }
+  } catch (e) { out.err = e.message.split('\n')[0]; }
+  await b.close();
+  fs.writeFileSync('/tmp/schu-probe-out.json', JSON.stringify(out, null, 1));
+  console.log(JSON.stringify(out, null, 1));
+})();
diff --git a/shopify/scripts/schumacher-price-scraper.js b/shopify/scripts/schumacher-price-scraper.js
index f704057f..a5601e61 100644
--- a/shopify/scripts/schumacher-price-scraper.js
+++ b/shopify/scripts/schumacher-price-scraper.js
@@ -15,8 +15,14 @@
 
 const path = require('path');
 const fs = require('fs');
-const { chromium } = require(path.join('/root/Projects/Designer-Wallcoverings/DW-Programming/ImportNewSkufromURL/node_modules/playwright'));
-const { Pool } = require(path.join('/root/Projects/Designer-Wallcoverings/DW-Programming/ImportNewSkufromURL/node_modules/pg'));
+// machine-agnostic node_modules base: Kamatera (/root) or Mac2 (~/Projects)
+const _NM = (() => {
+  const k = '/root/Projects/Designer-Wallcoverings/DW-Programming/ImportNewSkufromURL/node_modules';
+  const m = require('os').homedir() + '/Projects/Designer-Wallcoverings/DW-Programming/ImportNewSkufromURL/node_modules';
+  return fs.existsSync(k) ? k : m;
+})();
+const { chromium } = require(path.join(_NM, 'playwright'));
+const { Pool } = require(path.join(_NM, 'pg'));
 
 // ─── Configuration ───────────────────────────────────────────────────────────
 

← 950348b5 cadence: Romo cost basis = total_price_per_roll (DTD-B, incl  ·  back to Designer Wallcoverings  ·  Schumacher cost via Browserbase scraper (residential IP, rea 6a69015d →