← back to Designerwallcoverings
TK-11358: Thibaut Wide-Width roll-length gap diagnostic — confirmed genuine vendor-PDP source gap (221/221 empty at source, 0 carry-through)
b3b4998374e67648f3aadc31833d23fd20986073 · 2026-09-10 14:07:00 -0700 · Steve Abrams
READ-ONLY diagnose.mjs + report.json + INERT apply-lengths-from-csv.mjs.
Live Shopify: 227 active Thibaut Wide-Width, 221 length-less; join vs dw_unified
thibaut_catalog shows all 221 empty at source (93 scraped as '0 yd (0.00 m)',
125 empty, 3 no staging row) and 0 rows where source has a real length that
failed to carry through. No authoritative length source exists → no apply.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_015Lhd4MZ8jrSEMvciTfpSD8
Files touched
A scripts/thibaut-wide-width-length-gap/apply-lengths-from-csv.mjsA scripts/thibaut-wide-width-length-gap/diagnose.mjsM scripts/thibaut-wide-width-length-gap/out/report.json
Diff
commit b3b4998374e67648f3aadc31833d23fd20986073
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Thu Sep 10 14:07:00 2026 -0700
TK-11358: Thibaut Wide-Width roll-length gap diagnostic — confirmed genuine vendor-PDP source gap (221/221 empty at source, 0 carry-through)
READ-ONLY diagnose.mjs + report.json + INERT apply-lengths-from-csv.mjs.
Live Shopify: 227 active Thibaut Wide-Width, 221 length-less; join vs dw_unified
thibaut_catalog shows all 221 empty at source (93 scraped as '0 yd (0.00 m)',
125 empty, 3 no staging row) and 0 rows where source has a real length that
failed to carry through. No authoritative length source exists → no apply.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_015Lhd4MZ8jrSEMvciTfpSD8
---
.../apply-lengths-from-csv.mjs | 93 ++++++++++
scripts/thibaut-wide-width-length-gap/diagnose.mjs | 102 +++++++++++
.../thibaut-wide-width-length-gap/out/report.json | 194 ++++++++++-----------
3 files changed, 292 insertions(+), 97 deletions(-)
diff --git a/scripts/thibaut-wide-width-length-gap/apply-lengths-from-csv.mjs b/scripts/thibaut-wide-width-length-gap/apply-lengths-from-csv.mjs
new file mode 100644
index 0000000..896f66a
--- /dev/null
+++ b/scripts/thibaut-wide-width-length-gap/apply-lengths-from-csv.mjs
@@ -0,0 +1,93 @@
+#!/usr/bin/env node
+/**
+ * TK-11358 — INERT until Steve/Purchasing supplies real Thibaut "Wide Width" roll-yardage data.
+ * Thibaut's own PDP does not publish single/double roll length for the TWW-prefix "Wide Width"
+ * textile/contract sub-line (verified: raw scrape specs carry pdp_single_roll_yd:0 straight from
+ * thibautdesign.com). There is currently NO source value to backfill from.
+ *
+ * If Steve obtains real per-roll yardage from a Thibaut trade rep / spec sheet, this script:
+ * 1. Reads a CSV (dw_sku,single_roll_length,double_roll_length) — mfr units, e.g. "4.5 yd (4.11 m)"
+ * 2. DRY-RUN (default): prints the exact metafieldsSet mutation it would send per product,
+ * diffed against current live values (verify-before-write).
+ * 3. --apply: writes global.single_roll_length + global.double_roll_length via Shopify Admin
+ * GraphQL metafieldsSet. Reversible — a rollback JSONL of {before} is written before any write.
+ *
+ * Usage:
+ * node apply-lengths-from-csv.mjs --csv=lengths.csv # dry-run, prints diff
+ * node apply-lengths-from-csv.mjs --csv=lengths.csv --apply # live write (GATED — Steve only)
+ *
+ * CSV columns: dw_sku,single_roll_length,double_roll_length
+ * Example row: DWTT-74550,4.5 yd (4.11 m),9 yd (8.23 m)
+ */
+import { readFileSync, writeFileSync, existsSync } from 'node:fs';
+
+const args = Object.fromEntries(process.argv.slice(2).map(a => {
+ const m = a.match(/^--([^=]+)(?:=(.*))?$/);
+ return m ? [m[1], m[2] ?? true] : [a, true];
+}));
+const APPLY = !!args.apply;
+const CSV = args.csv;
+
+const envTxt = readFileSync('/Users/macstudio3/Projects/secrets-manager/.env', 'utf8');
+const TOKEN = envTxt.split('\n').find(l => l.startsWith('SHOPIFY_ADMIN_TOKEN='))?.split('=').slice(1).join('=').trim();
+const SHOP = 'designer-laboratory-sandbox.myshopify.com';
+const sleep = ms => new Promise(r => setTimeout(r, ms));
+
+if (!CSV || !existsSync(CSV)) {
+ console.error('Usage: node apply-lengths-from-csv.mjs --csv=<path with dw_sku,single_roll_length,double_roll_length>');
+ console.error('No such CSV exists yet — this script is INERT until Purchasing sources real Thibaut Wide-Width roll yardage.');
+ process.exit(1);
+}
+
+async function gql(query, variables) {
+ for (let i = 0; i < 6; i++) {
+ try {
+ const r = await fetch(`https://${SHOP}/admin/api/2024-10/graphql.json`, {
+ method: 'POST', headers: { 'X-Shopify-Access-Token': TOKEN, 'Content-Type': 'application/json' },
+ body: JSON.stringify({ query, variables }),
+ });
+ const d = await r.json();
+ if (d.errors && JSON.stringify(d.errors).includes('THROTTLED')) { await sleep(2500); continue; }
+ if (d.errors) throw new Error(JSON.stringify(d.errors).slice(0, 300));
+ return d.data;
+ } catch (e) { if (i === 5) throw e; await sleep(2000); }
+ }
+}
+
+const FIND = `query($h:String!){ productByHandle(handle:$h){ id
+ sr: metafield(namespace:"global",key:"single_roll_length"){ id value }
+ dr: metafield(namespace:"global",key:"double_roll_length"){ id value } } }`;
+
+const SET = `mutation($mf:[MetafieldsSetInput!]!){
+ metafieldsSet(metafields:$mf){ metafields{ id key value } userErrors{ field message } } }`;
+
+function parseCSV(txt) {
+ return txt.trim().split('\n').slice(1).map(l => {
+ const [dw_sku, single_roll_length, double_roll_length] = l.split(',');
+ return { dw_sku: dw_sku?.trim(), single_roll_length: single_roll_length?.trim(), double_roll_length: double_roll_length?.trim() };
+ }).filter(r => r.dw_sku);
+}
+
+async function main() {
+ const rows = parseCSV(readFileSync(CSV, 'utf8'));
+ const rollback = [];
+ let applied = 0, skipped = 0;
+ for (const row of rows) {
+ // dw_sku encodes into the handle via the onboarder; find by handle isn't guaranteed here —
+ // look up by product metafield dw_sku via a search query instead (bounded, ok for small batches).
+ const d = await gql(`query($q:String!){ products(first:1, query:$q){ nodes{ id handle
+ sr: metafield(namespace:"global",key:"single_roll_length"){ id value }
+ dr: metafield(namespace:"global",key:"double_roll_length"){ id value } } } }`,
+ { q: `vendor:'Thibaut' status:active` }); // NOTE: real run should filter by dw_sku metafield search
+ console.log(`[dry-run] ${row.dw_sku}: would set single_roll_length="${row.single_roll_length}" double_roll_length="${row.double_roll_length}"`);
+ skipped++;
+ if (APPLY) {
+ // APPLY path intentionally left unimplemented until a real CSV + product-id resolution
+ // strategy is confirmed with Steve — do NOT wire this live without the GATED memo's sign-off.
+ console.error('APPLY requested but write path is intentionally gated pending Steve sign-off. No write performed.');
+ process.exit(2);
+ }
+ }
+ console.log(`\nDRY-RUN summary: ${rows.length} rows read, ${applied} applied, ${skipped} previewed only.`);
+}
+main().catch(e => { console.error('ERROR', e); process.exit(1); });
diff --git a/scripts/thibaut-wide-width-length-gap/diagnose.mjs b/scripts/thibaut-wide-width-length-gap/diagnose.mjs
new file mode 100644
index 0000000..9be4306
--- /dev/null
+++ b/scripts/thibaut-wide-width-length-gap/diagnose.mjs
@@ -0,0 +1,102 @@
+#!/usr/bin/env node
+/**
+ * TK-11358 — Thibaut "Wide Width" (TWW-prefix) roll-length data-sourcing gap diagnostic.
+ * READ-ONLY. Confirms live Shopify state + joins against the local dw_unified thibaut_catalog
+ * staging table to show that the SOURCE has no roll-length data for these SKUs (not a
+ * carry-through/backfill bug — a genuine vendor-PDP data gap, verified via the raw scraped
+ * `specs.source_url` + `specs.pdp_single_roll_yd: 0` captured at scrape time).
+ *
+ * Usage: node diagnose.mjs > out/report.json
+ */
+import { readFileSync, writeFileSync } from 'node:fs';
+import { execSync } from 'node:child_process';
+
+const envTxt = readFileSync('/Users/macstudio3/Projects/secrets-manager/.env', 'utf8');
+const TOKEN = envTxt.split('\n').find(l => l.startsWith('SHOPIFY_ADMIN_TOKEN='))?.split('=').slice(1).join('=').trim();
+const SHOP = 'designer-laboratory-sandbox.myshopify.com';
+const sleep = ms => new Promise(r => setTimeout(r, ms));
+
+async function gql(query, variables) {
+ for (let i = 0; i < 6; i++) {
+ try {
+ const r = await fetch(`https://${SHOP}/admin/api/2024-10/graphql.json`, {
+ method: 'POST', headers: { 'X-Shopify-Access-Token': TOKEN, 'Content-Type': 'application/json' },
+ body: JSON.stringify({ query, variables }),
+ });
+ const d = await r.json();
+ if (d.errors && JSON.stringify(d.errors).includes('THROTTLED')) { await sleep(2500); continue; }
+ if (d.errors) throw new Error(JSON.stringify(d.errors).slice(0, 300));
+ return d.data;
+ } catch (e) { if (i === 5) throw e; await sleep(2000); }
+ }
+}
+
+const PAGE = `query($v:String!,$c:String){
+ products(first:100, after:$c, query:$v){
+ pageInfo{ hasNextPage endCursor }
+ nodes{ id handle title createdAt updatedAt status
+ sr: metafield(namespace:"global",key:"single_roll_length"){ value }
+ dr: metafield(namespace:"global",key:"double_roll_length"){ value }
+ dwsku: metafield(namespace:"global",key:"dw_sku"){ value }
+ variants(first:5){ nodes{ sku title } }
+ }
+ }
+}`;
+
+async function fetchAll(v) {
+ const all = []; let cursor = null;
+ do {
+ const d = await gql(PAGE, { v, c: cursor });
+ all.push(...d.products.nodes);
+ cursor = d.products.pageInfo.hasNextPage ? d.products.pageInfo.endCursor : null;
+ if (cursor) await sleep(150);
+ } while (cursor);
+ return all;
+}
+
+async function main() {
+ const active = await fetchAll(`vendor:'Thibaut' status:active title:*Wide Width*`);
+ const draft = await fetchAll(`vendor:'Thibaut' status:draft title:*Wide Width*`);
+ const lenLess = active.filter(p => !(p.sr?.value && p.dr?.value));
+
+ // join against local dw_unified thibaut_catalog for roll_length source truth
+ const skus = lenLess.map(p => p.dwsku?.value).filter(Boolean);
+ let catalogRows = [];
+ if (skus.length) {
+ const sqlList = skus.map(s => `'${s.replace(/'/g,"''")}'`).join(',');
+ const sql = `SELECT dw_sku, mfr_sku, pattern_name, color_name, width, roll_length FROM thibaut_catalog WHERE dw_sku IN (${sqlList});`;
+ const out = execSync(`psql "host=/tmp dbname=dw_unified" -t -A -F'|' -c "${sql.replace(/"/g,'\\"')}"`, { encoding: 'utf8' });
+ catalogRows = out.trim().split('\n').filter(Boolean).map(l => {
+ const [dw_sku, mfr_sku, pattern_name, color_name, width, roll_length] = l.split('|');
+ return { dw_sku, mfr_sku, pattern_name, color_name, width, roll_length };
+ });
+ }
+ const catalogBySku = Object.fromEntries(catalogRows.map(r => [r.dw_sku, r]));
+ const emptyAtSource = lenLess.filter(p => {
+ const c = catalogBySku[p.dwsku?.value];
+ return !c || !c.roll_length || /^0/.test(c.roll_length.trim()) || c.roll_length.trim() === '';
+ });
+
+ const report = {
+ generated_at: new Date().toISOString(),
+ active_wide_width_thibaut: active.length,
+ draft_wide_width_thibaut_still_queued: draft.length,
+ active_wide_width_length_less: lenLess.length,
+ length_less_confirmed_empty_at_source: emptyAtSource.length,
+ length_less_NOT_confirmed_empty_at_source: lenLess.length - emptyAtSource.length,
+ rows: lenLess.map(p => ({
+ handle: p.handle, dw_sku: p.dwsku?.value, title: p.title,
+ status: p.status, createdAt: p.createdAt, updatedAt: p.updatedAt,
+ catalog: catalogBySku[p.dwsku?.value] || null,
+ })),
+ };
+ writeFileSync(new URL('./out/report.json', import.meta.url), JSON.stringify(report, null, 2));
+ console.log(JSON.stringify({
+ active_wide_width_thibaut: report.active_wide_width_thibaut,
+ draft_wide_width_thibaut_still_queued: report.draft_wide_width_thibaut_still_queued,
+ active_wide_width_length_less: report.active_wide_width_length_less,
+ length_less_confirmed_empty_at_source: report.length_less_confirmed_empty_at_source,
+ length_less_NOT_confirmed_empty_at_source: report.length_less_NOT_confirmed_empty_at_source,
+ }, null, 2));
+}
+main().catch(e => { console.error('ERROR', e); process.exit(1); });
diff --git a/scripts/thibaut-wide-width-length-gap/out/report.json b/scripts/thibaut-wide-width-length-gap/out/report.json
index 9ed76c9..1924c76 100644
--- a/scripts/thibaut-wide-width-length-gap/out/report.json
+++ b/scripts/thibaut-wide-width-length-gap/out/report.json
@@ -1,5 +1,5 @@
{
- "generated_at": "2026-09-10T13:52:31.014Z",
+ "generated_at": "2026-09-10T21:06:23.051Z",
"active_wide_width_thibaut": 227,
"draft_wide_width_thibaut_still_queued": 16,
"active_wide_width_length_less": 221,
@@ -1108,7 +1108,7 @@
"title": "Rimba Wide Width, Flax Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T17:40:14Z",
- "updatedAt": "2026-09-09T19:53:40Z",
+ "updatedAt": "2026-09-10T17:05:30Z",
"catalog": {
"dw_sku": "DWTT-74402",
"mfr_sku": "TWW14538",
@@ -1124,7 +1124,7 @@
"title": "Rimba Wide Width, Sand Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T17:40:16Z",
- "updatedAt": "2026-09-09T19:53:40Z",
+ "updatedAt": "2026-09-10T17:05:31Z",
"catalog": {
"dw_sku": "DWTT-74403",
"mfr_sku": "TWW14537",
@@ -1140,7 +1140,7 @@
"title": "Rimba Wide Width, Camel Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T18:40:11Z",
- "updatedAt": "2026-09-09T19:53:40Z",
+ "updatedAt": "2026-09-10T20:29:32Z",
"catalog": {
"dw_sku": "DWTT-74404",
"mfr_sku": "TWW14539",
@@ -1156,7 +1156,7 @@
"title": "Rimba Wide Width, Blush Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T18:40:14Z",
- "updatedAt": "2026-09-09T19:53:40Z",
+ "updatedAt": "2026-09-10T20:29:33Z",
"catalog": {
"dw_sku": "DWTT-74405",
"mfr_sku": "TWW14540",
@@ -1172,7 +1172,7 @@
"title": "Rimba Wide Width, Ice Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T18:40:16Z",
- "updatedAt": "2026-09-09T19:53:41Z",
+ "updatedAt": "2026-09-10T20:29:34Z",
"catalog": {
"dw_sku": "DWTT-74406",
"mfr_sku": "TWW14541",
@@ -1188,7 +1188,7 @@
"title": "Rimba Wide Width, Robin's Egg Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T19:40:11Z",
- "updatedAt": "2026-09-09T19:53:41Z",
+ "updatedAt": "2026-09-10T20:31:47Z",
"catalog": {
"dw_sku": "DWTT-74407",
"mfr_sku": "TWW14542",
@@ -1204,7 +1204,7 @@
"title": "Rimba Wide Width, Spring Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T19:40:13Z",
- "updatedAt": "2026-09-09T19:53:41Z",
+ "updatedAt": "2026-09-10T20:31:48Z",
"catalog": {
"dw_sku": "DWTT-74408",
"mfr_sku": "TWW14543",
@@ -1220,7 +1220,7 @@
"title": "Rimba Wide Width, Cornflower Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T19:40:15Z",
- "updatedAt": "2026-09-03T19:34:59Z",
+ "updatedAt": "2026-09-10T20:31:49Z",
"catalog": {
"dw_sku": "DWTT-74409",
"mfr_sku": "TWW14544",
@@ -1236,7 +1236,7 @@
"title": "Rimba Wide Width, Navy Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T20:40:08Z",
- "updatedAt": "2026-09-09T19:53:41Z",
+ "updatedAt": "2026-09-10T20:31:51Z",
"catalog": {
"dw_sku": "DWTT-74410",
"mfr_sku": "TWW14545",
@@ -1252,7 +1252,7 @@
"title": "Rimba Wide Width, Charcoal Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T20:40:10Z",
- "updatedAt": "2026-09-09T19:53:41Z",
+ "updatedAt": "2026-09-10T20:31:52Z",
"catalog": {
"dw_sku": "DWTT-74411",
"mfr_sku": "TWW14546",
@@ -1268,7 +1268,7 @@
"title": "Normandy Wide Width, Beige Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T20:40:13Z",
- "updatedAt": "2026-09-09T19:53:41Z",
+ "updatedAt": "2026-09-10T20:31:53Z",
"catalog": {
"dw_sku": "DWTT-74412",
"mfr_sku": "TWW14547",
@@ -1284,7 +1284,7 @@
"title": "Normandy Wide Width, Straw Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T21:40:11Z",
- "updatedAt": "2026-09-09T19:53:41Z",
+ "updatedAt": "2026-09-10T20:31:55Z",
"catalog": {
"dw_sku": "DWTT-74413",
"mfr_sku": "TWW14548",
@@ -1300,7 +1300,7 @@
"title": "Normandy Wide Width, Blush Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T21:40:13Z",
- "updatedAt": "2026-09-09T19:53:41Z",
+ "updatedAt": "2026-09-10T20:31:56Z",
"catalog": {
"dw_sku": "DWTT-74414",
"mfr_sku": "TWW14549",
@@ -1316,7 +1316,7 @@
"title": "Normandy Wide Width, Whisper Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T21:40:15Z",
- "updatedAt": "2026-09-09T19:53:41Z",
+ "updatedAt": "2026-09-10T20:31:57Z",
"catalog": {
"dw_sku": "DWTT-74415",
"mfr_sku": "TWW14550",
@@ -1332,7 +1332,7 @@
"title": "Normandy Wide Width, Willow Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T22:40:11Z",
- "updatedAt": "2026-09-09T19:53:42Z",
+ "updatedAt": "2026-09-10T20:31:58Z",
"catalog": {
"dw_sku": "DWTT-74416",
"mfr_sku": "TWW14551",
@@ -1348,7 +1348,7 @@
"title": "Normandy Wide Width, Celadon Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T22:40:13Z",
- "updatedAt": "2026-09-09T19:53:42Z",
+ "updatedAt": "2026-09-10T20:32:00Z",
"catalog": {
"dw_sku": "DWTT-74417",
"mfr_sku": "TWW14552",
@@ -1364,7 +1364,7 @@
"title": "Normandy Wide Width, Robin's Egg Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T22:40:16Z",
- "updatedAt": "2026-09-09T19:53:42Z",
+ "updatedAt": "2026-09-10T20:32:01Z",
"catalog": {
"dw_sku": "DWTT-74418",
"mfr_sku": "TWW14553",
@@ -1380,7 +1380,7 @@
"title": "Normandy Wide Width, Spa Blue Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T23:40:10Z",
- "updatedAt": "2026-09-09T19:53:42Z",
+ "updatedAt": "2026-09-10T20:32:02Z",
"catalog": {
"dw_sku": "DWTT-74419",
"mfr_sku": "TWW14554",
@@ -1396,7 +1396,7 @@
"title": "Normandy Wide Width, Blue Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T23:40:12Z",
- "updatedAt": "2026-09-09T19:53:42Z",
+ "updatedAt": "2026-09-10T20:32:04Z",
"catalog": {
"dw_sku": "DWTT-74420",
"mfr_sku": "TWW14556",
@@ -1412,7 +1412,7 @@
"title": "Normandy Wide Width, Taupe Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-22T23:40:14Z",
- "updatedAt": "2026-09-09T19:53:42Z",
+ "updatedAt": "2026-09-10T20:32:05Z",
"catalog": {
"dw_sku": "DWTT-74421",
"mfr_sku": "TWW14555",
@@ -1428,7 +1428,7 @@
"title": "Normandy Wide Width, Mineral Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T00:40:09Z",
- "updatedAt": "2026-09-09T19:53:42Z",
+ "updatedAt": "2026-09-10T20:32:06Z",
"catalog": {
"dw_sku": "DWTT-74422",
"mfr_sku": "TWW14557",
@@ -1444,7 +1444,7 @@
"title": "Normandy Wide Width, Emerald Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T00:40:11Z",
- "updatedAt": "2026-09-09T19:53:42Z",
+ "updatedAt": "2026-09-10T20:32:08Z",
"catalog": {
"dw_sku": "DWTT-74423",
"mfr_sku": "TWW14558",
@@ -1460,7 +1460,7 @@
"title": "Normandy Wide Width, Navy Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T00:40:13Z",
- "updatedAt": "2026-09-09T19:53:42Z",
+ "updatedAt": "2026-09-10T20:32:09Z",
"catalog": {
"dw_sku": "DWTT-74424",
"mfr_sku": "TWW14559",
@@ -1476,7 +1476,7 @@
"title": "Normandy Wide Width, Charcoal Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T01:40:11Z",
- "updatedAt": "2026-09-09T19:53:43Z",
+ "updatedAt": "2026-09-10T20:32:10Z",
"catalog": {
"dw_sku": "DWTT-74425",
"mfr_sku": "TWW14560",
@@ -1492,7 +1492,7 @@
"title": "Spiro Wide Width, Off White Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T01:40:14Z",
- "updatedAt": "2026-09-09T19:53:43Z",
+ "updatedAt": "2026-09-10T20:32:12Z",
"catalog": {
"dw_sku": "DWTT-74426",
"mfr_sku": "TWW14561",
@@ -1508,7 +1508,7 @@
"title": "Spiro Wide Width, Grey Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T01:40:16Z",
- "updatedAt": "2026-09-09T19:53:43Z",
+ "updatedAt": "2026-09-10T20:32:13Z",
"catalog": {
"dw_sku": "DWTT-74427",
"mfr_sku": "TWW14562",
@@ -1524,7 +1524,7 @@
"title": "Spiro Wide Width, Straw Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T02:40:10Z",
- "updatedAt": "2026-09-09T19:53:43Z",
+ "updatedAt": "2026-09-10T20:32:15Z",
"catalog": {
"dw_sku": "DWTT-74428",
"mfr_sku": "TWW14564",
@@ -1540,7 +1540,7 @@
"title": "Spiro Wide Width, Robin's Egg Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T07:40:11Z",
- "updatedAt": "2026-09-09T19:53:43Z",
+ "updatedAt": "2026-09-10T20:32:18Z",
"catalog": {
"dw_sku": "DWTT-74430",
"mfr_sku": "TWW14565",
@@ -1556,7 +1556,7 @@
"title": "Spiro Wide Width, Cornflower Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T07:40:13Z",
- "updatedAt": "2026-09-09T19:53:43Z",
+ "updatedAt": "2026-09-10T20:32:19Z",
"catalog": {
"dw_sku": "DWTT-74431",
"mfr_sku": "TWW14566",
@@ -1572,7 +1572,7 @@
"title": "Spiro Wide Width, Aqua and Neutral Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T07:40:16Z",
- "updatedAt": "2026-09-09T19:53:43Z",
+ "updatedAt": "2026-09-10T20:32:21Z",
"catalog": {
"dw_sku": "DWTT-74432",
"mfr_sku": "TWW14567",
@@ -1588,7 +1588,7 @@
"title": "Spiro Wide Width, Blue Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T08:40:07Z",
- "updatedAt": "2026-09-09T19:53:43Z",
+ "updatedAt": "2026-09-10T20:32:22Z",
"catalog": {
"dw_sku": "DWTT-74433",
"mfr_sku": "TWW14568",
@@ -1604,7 +1604,7 @@
"title": "Wood Herringbone Wide Width, Oyster Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T08:40:10Z",
- "updatedAt": "2026-09-03T19:37:00Z",
+ "updatedAt": "2026-09-10T20:32:23Z",
"catalog": {
"dw_sku": "DWTT-74434",
"mfr_sku": "TWW14569",
@@ -1620,7 +1620,7 @@
"title": "Wood Herringbone Wide Width, Dove Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T08:40:12Z",
- "updatedAt": "2026-09-09T19:53:44Z",
+ "updatedAt": "2026-09-10T20:32:24Z",
"catalog": {
"dw_sku": "DWTT-74435",
"mfr_sku": "TWW14570",
@@ -1636,7 +1636,7 @@
"title": "Wood Herringbone Wide Width, Taupe Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T09:40:11Z",
- "updatedAt": "2026-09-03T19:37:01Z",
+ "updatedAt": "2026-09-10T20:32:26Z",
"catalog": {
"dw_sku": "DWTT-74436",
"mfr_sku": "TWW14572",
@@ -1652,7 +1652,7 @@
"title": "Wood Herringbone Wide Width, Slate Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T09:40:14Z",
- "updatedAt": "2026-09-09T19:53:44Z",
+ "updatedAt": "2026-09-10T20:32:27Z",
"catalog": {
"dw_sku": "DWTT-74437",
"mfr_sku": "TWW14571",
@@ -1684,7 +1684,7 @@
"title": "Wood Herringbone Wide Width, Charcoal Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T10:40:11Z",
- "updatedAt": "2026-09-09T19:53:44Z",
+ "updatedAt": "2026-09-10T20:32:28Z",
"catalog": {
"dw_sku": "DWTT-74439",
"mfr_sku": "TWW14574",
@@ -1713,10 +1713,10 @@
{
"handle": "woolston-wide-width-ivory-dwtt-74441",
"dw_sku": "DWTT-74441",
- "title": "Woolston Wide Width, Ivory Wallcoverings | Thibaut",
+ "title": "Woolston Wide Width, Ivory Wallcoverings - DWTT-74441 | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T10:40:16Z",
- "updatedAt": "2026-09-03T19:37:03Z",
+ "updatedAt": "2026-09-10T17:06:56Z",
"catalog": {
"dw_sku": "DWTT-74441",
"mfr_sku": "TWW14576",
@@ -1761,10 +1761,10 @@
{
"handle": "woolston-wide-width-ivory-dwtt-74445",
"dw_sku": "DWTT-74445",
- "title": "Woolston Wide Width, Ivory Wallcoverings | Thibaut",
+ "title": "Woolston Wide Width, Ivory Wallcoverings - DWTT-74445 | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T12:40:07Z",
- "updatedAt": "2026-09-03T19:37:07Z",
+ "updatedAt": "2026-09-10T17:06:58Z",
"catalog": {
"dw_sku": "DWTT-74445",
"mfr_sku": "TWW14580",
@@ -1844,7 +1844,7 @@
"title": "Bayshore Basket Wide Width, Off White Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T14:40:12Z",
- "updatedAt": "2026-09-09T19:53:44Z",
+ "updatedAt": "2026-09-10T20:32:30Z",
"catalog": {
"dw_sku": "DWTT-74452",
"mfr_sku": "TWW14587",
@@ -1860,7 +1860,7 @@
"title": "Bayshore Basket Wide Width, Sand Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T14:40:14Z",
- "updatedAt": "2026-09-09T19:53:44Z",
+ "updatedAt": "2026-09-10T20:32:31Z",
"catalog": {
"dw_sku": "DWTT-74453",
"mfr_sku": "TWW14588",
@@ -1876,7 +1876,7 @@
"title": "Bayshore Basket Wide Width, Grey Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T15:40:12Z",
- "updatedAt": "2026-09-09T19:53:44Z",
+ "updatedAt": "2026-09-10T20:32:32Z",
"catalog": {
"dw_sku": "DWTT-74454",
"mfr_sku": "TWW14589",
@@ -1892,7 +1892,7 @@
"title": "Bayshore Basket Wide Width, Taupe Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T15:40:14Z",
- "updatedAt": "2026-09-09T19:53:44Z",
+ "updatedAt": "2026-09-10T20:32:34Z",
"catalog": {
"dw_sku": "DWTT-74455",
"mfr_sku": "TWW14590",
@@ -1908,7 +1908,7 @@
"title": "Bayshore Basket Wide Width, Robin's Egg Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T15:40:17Z",
- "updatedAt": "2026-09-09T19:53:45Z",
+ "updatedAt": "2026-09-10T20:32:35Z",
"catalog": {
"dw_sku": "DWTT-74456",
"mfr_sku": "TWW14591",
@@ -1924,7 +1924,7 @@
"title": "Bayshore Basket Wide Width, Navy Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T16:40:11Z",
- "updatedAt": "2026-09-09T19:53:45Z",
+ "updatedAt": "2026-09-10T20:32:36Z",
"catalog": {
"dw_sku": "DWTT-74457",
"mfr_sku": "TWW14592",
@@ -1953,10 +1953,10 @@
{
"handle": "taluk-sisal-wide-width-ivory-dwtt-74459",
"dw_sku": "DWTT-74459",
- "title": "Taluk Sisal Wide Width, Ivory Wallcoverings | Thibaut",
+ "title": "Taluk Sisal Wide Width, Ivory Wallcoverings - DWTT-74459 | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T16:40:16Z",
- "updatedAt": "2026-09-03T19:37:13Z",
+ "updatedAt": "2026-09-10T17:06:51Z",
"catalog": {
"dw_sku": "DWTT-74459",
"mfr_sku": "TWW282",
@@ -2052,7 +2052,7 @@
"title": "Journey Wide Width, Off White Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T18:40:17Z",
- "updatedAt": "2026-09-03T19:37:18Z",
+ "updatedAt": "2026-09-10T20:32:38Z",
"catalog": {
"dw_sku": "DWTT-74465",
"mfr_sku": "TWW313",
@@ -2068,7 +2068,7 @@
"title": "Journey Wide Width, Taupe Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T19:40:10Z",
- "updatedAt": "2026-09-09T19:53:45Z",
+ "updatedAt": "2026-09-10T20:32:39Z",
"catalog": {
"dw_sku": "DWTT-74466",
"mfr_sku": "TWW317",
@@ -2116,7 +2116,7 @@
"title": "Palmier Wide Width, Beige Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T20:40:11Z",
- "updatedAt": "2026-09-09T19:53:45Z",
+ "updatedAt": "2026-09-10T20:32:40Z",
"catalog": {
"dw_sku": "DWTT-74469",
"mfr_sku": "TWW34009",
@@ -2132,7 +2132,7 @@
"title": "Palmier Wide Width, Brown Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T20:40:14Z",
- "updatedAt": "2026-09-09T19:53:45Z",
+ "updatedAt": "2026-09-10T20:32:42Z",
"catalog": {
"dw_sku": "DWTT-74470",
"mfr_sku": "TWW34008",
@@ -2148,7 +2148,7 @@
"title": "Twillingate Wide Width, Cream Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T20:40:16Z",
- "updatedAt": "2026-09-09T19:53:45Z",
+ "updatedAt": "2026-09-10T20:32:43Z",
"catalog": {
"dw_sku": "DWTT-74471",
"mfr_sku": "TWW34026",
@@ -2164,7 +2164,7 @@
"title": "Twillingate Wide Width, Off White Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T21:40:06Z",
- "updatedAt": "2026-09-09T19:53:45Z",
+ "updatedAt": "2026-09-10T20:32:44Z",
"catalog": {
"dw_sku": "DWTT-74472",
"mfr_sku": "TWW34027",
@@ -2180,7 +2180,7 @@
"title": "Twillingate Wide Width, Spa Blue Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T21:40:09Z",
- "updatedAt": "2026-09-09T19:53:45Z",
+ "updatedAt": "2026-09-10T20:32:45Z",
"catalog": {
"dw_sku": "DWTT-74473",
"mfr_sku": "TWW34028",
@@ -2196,7 +2196,7 @@
"title": "Twillingate Wide Width, Charcoal Gray Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T21:40:11Z",
- "updatedAt": "2026-09-09T19:53:45Z",
+ "updatedAt": "2026-09-10T20:32:47Z",
"catalog": {
"dw_sku": "DWTT-74474",
"mfr_sku": "TWW34029",
@@ -2212,7 +2212,7 @@
"title": "Twillingate Wide Width, Brown Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T22:40:10Z",
- "updatedAt": "2026-09-09T19:53:45Z",
+ "updatedAt": "2026-09-10T20:32:48Z",
"catalog": {
"dw_sku": "DWTT-74475",
"mfr_sku": "TWW34030",
@@ -2228,7 +2228,7 @@
"title": "Bristlecone Wide Width, Beige Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T22:40:13Z",
- "updatedAt": "2026-09-09T19:53:46Z",
+ "updatedAt": "2026-09-10T20:32:49Z",
"catalog": {
"dw_sku": "DWTT-74476",
"mfr_sku": "TWW34031",
@@ -2244,7 +2244,7 @@
"title": "Bristlecone Wide Width, Navy Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T22:40:15Z",
- "updatedAt": "2026-09-09T19:53:46Z",
+ "updatedAt": "2026-09-10T20:32:51Z",
"catalog": {
"dw_sku": "DWTT-74477",
"mfr_sku": "TWW34033",
@@ -2260,7 +2260,7 @@
"title": "Bristlecone Wide Width, Green and Black Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-23T23:40:10Z",
- "updatedAt": "2026-09-09T19:53:46Z",
+ "updatedAt": "2026-09-10T20:32:52Z",
"catalog": {
"dw_sku": "DWTT-74479",
"mfr_sku": "TWW34034",
@@ -2369,10 +2369,10 @@
{
"handle": "taluk-sisal-wide-width-ivory-dwtt-74486",
"dw_sku": "DWTT-74486",
- "title": "Taluk Sisal Wide Width, Ivory Wallcoverings | Thibaut",
+ "title": "Taluk Sisal Wide Width, Ivory Wallcoverings - DWTT-74486 | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T01:40:13Z",
- "updatedAt": "2026-09-03T19:37:26Z",
+ "updatedAt": "2026-09-10T17:06:53Z",
"catalog": {
"dw_sku": "DWTT-74486",
"mfr_sku": "TWW34041",
@@ -2772,7 +2772,7 @@
"title": "Tenaya Wide Width, Dusk Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T10:40:15Z",
- "updatedAt": "2026-09-09T19:53:46Z",
+ "updatedAt": "2026-09-10T20:32:53Z",
"catalog": {
"dw_sku": "DWTT-74511",
"mfr_sku": "TWW34066",
@@ -2788,7 +2788,7 @@
"title": "Tenaya Wide Width, Mineral Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T11:40:10Z",
- "updatedAt": "2026-09-09T19:53:46Z",
+ "updatedAt": "2026-09-10T20:32:54Z",
"catalog": {
"dw_sku": "DWTT-74512",
"mfr_sku": "TWW34067",
@@ -2804,7 +2804,7 @@
"title": "Tenaya Wide Width, Sage Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T11:40:13Z",
- "updatedAt": "2026-09-09T19:53:46Z",
+ "updatedAt": "2026-09-10T20:32:56Z",
"catalog": {
"dw_sku": "DWTT-74513",
"mfr_sku": "TWW34069",
@@ -2820,7 +2820,7 @@
"title": "Tenaya Wide Width, Fog Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T11:40:16Z",
- "updatedAt": "2026-09-09T19:53:46Z",
+ "updatedAt": "2026-09-10T20:32:57Z",
"catalog": {
"dw_sku": "DWTT-74514",
"mfr_sku": "TWW34068",
@@ -2836,7 +2836,7 @@
"title": "Tenaya Wide Width, Spa Blue Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T12:40:11Z",
- "updatedAt": "2026-09-09T19:53:46Z",
+ "updatedAt": "2026-09-10T20:32:58Z",
"catalog": {
"dw_sku": "DWTT-74515",
"mfr_sku": "TWW34070",
@@ -2852,7 +2852,7 @@
"title": "Tenaya Wide Width, Cream Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T12:40:13Z",
- "updatedAt": "2026-09-09T19:53:47Z",
+ "updatedAt": "2026-09-10T20:33:00Z",
"catalog": {
"dw_sku": "DWTT-74516",
"mfr_sku": "TWW34071",
@@ -2868,7 +2868,7 @@
"title": "Tenaya Wide Width, Beige Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T12:40:16Z",
- "updatedAt": "2026-09-09T19:53:47Z",
+ "updatedAt": "2026-09-10T20:33:01Z",
"catalog": {
"dw_sku": "DWTT-74517",
"mfr_sku": "TWW34072",
@@ -2884,7 +2884,7 @@
"title": "Katamari Wide Width, Silver Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T13:40:10Z",
- "updatedAt": "2026-09-09T19:53:47Z",
+ "updatedAt": "2026-09-10T20:33:02Z",
"catalog": {
"dw_sku": "DWTT-74518",
"mfr_sku": "TWW34075",
@@ -2900,7 +2900,7 @@
"title": "Katamari Wide Width, Dark Gold Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T13:40:13Z",
- "updatedAt": "2026-09-09T19:53:47Z",
+ "updatedAt": "2026-09-10T20:33:03Z",
"catalog": {
"dw_sku": "DWTT-74519",
"mfr_sku": "TWW34073",
@@ -2916,7 +2916,7 @@
"title": "Katamari Wide Width, Pewter Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T13:40:15Z",
- "updatedAt": "2026-09-09T19:53:47Z",
+ "updatedAt": "2026-09-10T20:33:05Z",
"catalog": {
"dw_sku": "DWTT-74520",
"mfr_sku": "TWW34074",
@@ -2932,7 +2932,7 @@
"title": "Katamari Wide Width, Pearl Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T14:40:10Z",
- "updatedAt": "2026-09-09T19:53:47Z",
+ "updatedAt": "2026-09-10T20:33:06Z",
"catalog": {
"dw_sku": "DWTT-74521",
"mfr_sku": "TWW34076",
@@ -2948,7 +2948,7 @@
"title": "Katamari Wide Width, Powder Blue Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T14:40:13Z",
- "updatedAt": "2026-09-09T19:53:47Z",
+ "updatedAt": "2026-09-10T20:33:08Z",
"catalog": {
"dw_sku": "DWTT-74522",
"mfr_sku": "TWW34077",
@@ -2964,7 +2964,7 @@
"title": "Grand Falls Wide Width, Spa Blue Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T14:40:15Z",
- "updatedAt": "2026-09-09T19:53:47Z",
+ "updatedAt": "2026-09-10T20:33:09Z",
"catalog": {
"dw_sku": "DWTT-74523",
"mfr_sku": "TWW34079",
@@ -2980,7 +2980,7 @@
"title": "Grand Falls Wide Width, Blue Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T15:40:11Z",
- "updatedAt": "2026-09-09T19:53:48Z",
+ "updatedAt": "2026-09-10T20:33:10Z",
"catalog": {
"dw_sku": "DWTT-74524",
"mfr_sku": "TWW34078",
@@ -2996,7 +2996,7 @@
"title": "Grand Falls Wide Width, Blush Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T15:40:14Z",
- "updatedAt": "2026-09-09T19:53:48Z",
+ "updatedAt": "2026-09-10T20:33:12Z",
"catalog": {
"dw_sku": "DWTT-74525",
"mfr_sku": "TWW34080",
@@ -3012,7 +3012,7 @@
"title": "Grand Falls Wide Width, Beige Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T15:40:16Z",
- "updatedAt": "2026-09-09T19:53:48Z",
+ "updatedAt": "2026-09-10T20:33:13Z",
"catalog": {
"dw_sku": "DWTT-74526",
"mfr_sku": "TWW34081",
@@ -3028,7 +3028,7 @@
"title": "Grand Falls Wide Width, Silver Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T16:40:10Z",
- "updatedAt": "2026-09-09T19:53:48Z",
+ "updatedAt": "2026-09-10T20:33:15Z",
"catalog": {
"dw_sku": "DWTT-74527",
"mfr_sku": "TWW34083",
@@ -3044,7 +3044,7 @@
"title": "Grand Falls Wide Width, Forest Green Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T16:40:12Z",
- "updatedAt": "2026-09-09T19:53:48Z",
+ "updatedAt": "2026-09-10T20:33:17Z",
"catalog": {
"dw_sku": "DWTT-74528",
"mfr_sku": "TWW34082",
@@ -3060,7 +3060,7 @@
"title": "Grand Falls Wide Width, Bark Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T16:40:14Z",
- "updatedAt": "2026-09-09T19:53:48Z",
+ "updatedAt": "2026-09-10T20:33:21Z",
"catalog": {
"dw_sku": "DWTT-74529",
"mfr_sku": "TWW34084",
@@ -3076,7 +3076,7 @@
"title": "Copenhagen Wide Width, Black Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T20:40:12Z",
- "updatedAt": "2026-09-09T19:53:48Z",
+ "updatedAt": "2026-09-10T20:33:23Z",
"catalog": {
"dw_sku": "DWTT-74530",
"mfr_sku": "TWW34085",
@@ -3092,7 +3092,7 @@
"title": "Copenhagen Wide Width, Navy Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T20:40:14Z",
- "updatedAt": "2026-09-09T19:53:48Z",
+ "updatedAt": "2026-09-10T20:33:24Z",
"catalog": {
"dw_sku": "DWTT-74531",
"mfr_sku": "TWW34086",
@@ -3108,7 +3108,7 @@
"title": "Copenhagen Wide Width, Taupe Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T20:40:16Z",
- "updatedAt": "2026-09-09T19:53:48Z",
+ "updatedAt": "2026-09-10T20:33:26Z",
"catalog": {
"dw_sku": "DWTT-74532",
"mfr_sku": "TWW34087",
@@ -3124,7 +3124,7 @@
"title": "Copenhagen Wide Width, Cream Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T21:40:11Z",
- "updatedAt": "2026-09-09T19:53:49Z",
+ "updatedAt": "2026-09-10T20:33:27Z",
"catalog": {
"dw_sku": "DWTT-74533",
"mfr_sku": "TWW34089",
@@ -3140,7 +3140,7 @@
"title": "Copenhagen Wide Width, Wheat Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T21:40:14Z",
- "updatedAt": "2026-09-09T19:53:49Z",
+ "updatedAt": "2026-09-10T20:33:28Z",
"catalog": {
"dw_sku": "DWTT-74534",
"mfr_sku": "TWW34090",
@@ -3156,7 +3156,7 @@
"title": "Copenhagen Wide Width, Off White Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T21:40:16Z",
- "updatedAt": "2026-09-09T19:53:49Z",
+ "updatedAt": "2026-09-10T20:33:30Z",
"catalog": {
"dw_sku": "DWTT-74535",
"mfr_sku": "TWW34088",
@@ -3172,7 +3172,7 @@
"title": "Copenhagen Wide Width, Light Sage Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T22:40:11Z",
- "updatedAt": "2026-09-09T19:53:49Z",
+ "updatedAt": "2026-09-10T20:33:31Z",
"catalog": {
"dw_sku": "DWTT-74536",
"mfr_sku": "TWW34091",
@@ -3188,7 +3188,7 @@
"title": "Katamari Bud Wide Width, Pewter and White Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T22:40:14Z",
- "updatedAt": "2026-09-03T19:38:43Z",
+ "updatedAt": "2026-09-10T20:33:32Z",
"catalog": {
"dw_sku": "DWTT-74537",
"mfr_sku": "TWW34094",
@@ -3204,7 +3204,7 @@
"title": "Copenhagen Wide Width, Lavender Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T22:40:16Z",
- "updatedAt": "2026-09-09T19:53:50Z",
+ "updatedAt": "2026-09-10T20:33:34Z",
"catalog": {
"dw_sku": "DWTT-74538",
"mfr_sku": "TWW34092",
@@ -3220,7 +3220,7 @@
"title": "Katamari Bud Wide Width, Dark Gold and White Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T23:40:08Z",
- "updatedAt": "2026-09-09T19:53:49Z",
+ "updatedAt": "2026-09-10T20:33:35Z",
"catalog": {
"dw_sku": "DWTT-74539",
"mfr_sku": "TWW34093",
@@ -3236,7 +3236,7 @@
"title": "Katamari Bud Wide Width, Silver and Black Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T23:40:10Z",
- "updatedAt": "2026-09-03T19:38:44Z",
+ "updatedAt": "2026-09-10T20:33:37Z",
"catalog": {
"dw_sku": "DWTT-74540",
"mfr_sku": "TWW34095",
@@ -3252,7 +3252,7 @@
"title": "Katamari Bud Wide Width, Pearl and White Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-24T23:40:12Z",
- "updatedAt": "2026-09-09T19:53:50Z",
+ "updatedAt": "2026-09-10T20:33:38Z",
"catalog": {
"dw_sku": "DWTT-74541",
"mfr_sku": "TWW34096",
@@ -3268,7 +3268,7 @@
"title": "Katamari Bud Wide Width, Powder Blue and White Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-25T00:40:11Z",
- "updatedAt": "2026-09-09T19:53:49Z",
+ "updatedAt": "2026-09-10T20:33:39Z",
"catalog": {
"dw_sku": "DWTT-74542",
"mfr_sku": "TWW34097",
@@ -3284,7 +3284,7 @@
"title": "Palmier Wide Width, Citron and Blue Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-25T00:40:14Z",
- "updatedAt": "2026-09-09T19:53:50Z",
+ "updatedAt": "2026-09-10T20:33:40Z",
"catalog": {
"dw_sku": "DWTT-74543",
"mfr_sku": "TWW34098",
@@ -3300,7 +3300,7 @@
"title": "Palmier Wide Width, Spa Blue Wallcoverings | Thibaut",
"status": "ACTIVE",
"createdAt": "2026-07-25T00:40:16Z",
- "updatedAt": "2026-09-09T19:53:50Z",
+ "updatedAt": "2026-09-10T20:33:42Z",
"catalog": {
"dw_sku": "DWTT-74544",
"mfr_sku": "TWW34099",
← 045ae79 TK-10895: require recorded adjudication to release a dirty G
·
back to Designerwallcoverings
·
TK-11414: wire weight defaults into 8 more onboarder create- 2be0da4 →