← back to Dw Gemini Skip TK11321
Record independent publication proof and Gemini-free operational handoff
defee6cfbfc0a47cb68ede3f94ab8c94be69a251 · 2026-09-09 11:15:15 -0700 · Steve Abrams
Files touched
A scripts/deploy-owner-skip.pyA verification/tk11321/REVIEW.mdA verification/tk11321/before/rotate-activate.jsA verification/tk11321/deployment-manifest.jsonA verification/tk11321/e2e-proof.jsonA verification/tk11321/hourly-cap-verified.jsonA verification/tk11321/live-before.jsonA verification/tk11321/live-verified-1.jsonA verification/tk11321/live-verified-21.jsonA verification/tk11321/loaded-schedule.jsonA verification/tk11321/rollback-rehearsal.json
Diff
commit defee6cfbfc0a47cb68ede3f94ab8c94be69a251
Author: Steve Abrams <steve@designerwallcoverings.com>
Date: Wed Sep 9 11:15:15 2026 -0700
Record independent publication proof and Gemini-free operational handoff
---
scripts/deploy-owner-skip.py | 69 +
verification/tk11321/REVIEW.md | 73 +
verification/tk11321/before/rotate-activate.js | 434 +++
verification/tk11321/deployment-manifest.json | 60 +
verification/tk11321/e2e-proof.json | 82 +
verification/tk11321/hourly-cap-verified.json | 12 +
verification/tk11321/live-before.json | 2399 ++++++++++++
verification/tk11321/live-verified-1.json | 1445 +++++++
verification/tk11321/live-verified-21.json | 4825 ++++++++++++++++++++++++
verification/tk11321/loaded-schedule.json | 12 +
verification/tk11321/rollback-rehearsal.json | 6 +
11 files changed, 9417 insertions(+)
diff --git a/scripts/deploy-owner-skip.py b/scripts/deploy-owner-skip.py
new file mode 100644
index 0000000..7a15cfc
--- /dev/null
+++ b/scripts/deploy-owner-skip.py
@@ -0,0 +1,69 @@
+"""TK-11321 reviewed-file deployment with original-byte checks and owned lock."""
+from pathlib import Path
+import datetime
+import hashlib
+import json
+import os
+import subprocess
+import tempfile
+
+source = Path('/Users/macstudio3/Projects/dw-gemini-skip-TK11321')
+target = Path('/Users/macstudio3/Projects/dw-rotation-activator')
+evidence = source / 'verification/tk11321'
+files = ['rotate-activate.js', 'lib/owner-review-policy.js', 'lib/hourly-activation-count.js',
+ 'config/gemini-review-policy.json', 'test/owner-review-policy.test.js', 'test/hourly-activation-count.test.js']
+manifest_path = evidence / 'deployment-manifest.json'
+lock = target / '.drain.lock'
+
+
+def git_blob(repo, revision, name):
+ r = subprocess.run(['git', '-C', str(repo), 'show', f'{revision}:{name}'], capture_output=True)
+ return r.stdout if r.returncode == 0 else None
+
+
+def main():
+ assert not manifest_path.exists(), 'Inspect existing deployment before retry'
+ prepared = []
+ for name in files:
+ before = git_blob(target, 'f9e5125', name)
+ current = (target/name).read_bytes() if (target/name).exists() else None
+ assert current == before, f'Production file drift: {name}'
+ after = git_blob(source, '3d2ba05', name)
+ assert after is not None and (source/name).read_bytes() == after, f'Reviewed file drift: {name}'
+ prepared.append((name, before, after))
+ # Rehearse exact source restoration in a disposable directory before deploy.
+ with tempfile.TemporaryDirectory(prefix='tk11321-rollback-') as directory:
+ scratch = Path(directory)
+ for name, before, after in prepared:
+ p = scratch/name; p.parent.mkdir(parents=True, exist_ok=True); p.write_bytes(after)
+ if before is None: p.unlink()
+ else: p.write_bytes(before)
+ assert (p.read_bytes() if p.exists() else None) == before
+ p.write_bytes(after); assert p.read_bytes() == after
+ (evidence/'rollback-rehearsal.json').write_text(json.dumps({'verdict':'PASS', 'files':len(prepared),
+ 'method':'Disposable-copy restoration of exact preimages followed by exact reviewed-byte reapplication', 'production_mutations':0},indent=2)+'\n')
+ lock.mkdir()
+ (lock/'TK-11321-owner.json').write_text(json.dumps({'ticket':'TK-11321','purpose':'approved Gemini-skip rollout and canary',
+ 'created_at':datetime.datetime.now(datetime.timezone.utc).isoformat()}))
+ manifest = {'ticket':'TK-11321','authorization':'Steve: skip gemeni and go', 'status':'locked', 'lock':str(lock),
+ 'started_at':datetime.datetime.now(datetime.timezone.utc).isoformat(), 'files':[]}
+ for name, before, after in prepared:
+ backup = evidence/'before'/name
+ if before is not None:
+ backup.parent.mkdir(parents=True,exist_ok=True); backup.write_bytes(before)
+ manifest['files'].append({'relative':name,'target':str(target/name),'backup':str(backup) if before is not None else None,
+ 'before_sha256':hashlib.sha256(before).hexdigest() if before is not None else None,'after_sha256':hashlib.sha256(after).hexdigest()})
+ manifest_path.write_text(json.dumps(manifest,indent=2)+'\n')
+ for name, before, after in prepared:
+ destination = target/name
+ assert (destination.read_bytes() if destination.exists() else None) == before, f'Concurrent change: {name}'
+ destination.parent.mkdir(parents=True,exist_ok=True)
+ temporary = destination.with_name(destination.name+'.TK11321-stage')
+ temporary.write_bytes(after); temporary.chmod((source/name).stat().st_mode & 0o777)
+ os.replace(temporary,destination)
+ manifest['status']='installed-awaiting-live-verification'
+ manifest_path.write_text(json.dumps(manifest,indent=2)+'\n')
+ print(json.dumps({'status':manifest['status'],'installed_files':len(prepared),'rollback':'PASS','lock_retained':str(lock)}))
+
+
+if __name__ == '__main__': main()
diff --git a/verification/tk11321/REVIEW.md b/verification/tk11321/REVIEW.md
new file mode 100644
index 0000000..7efde45
--- /dev/null
+++ b/verification/tk11321/REVIEW.md
@@ -0,0 +1,73 @@
+# TK-11321 — owner-authorized activation without Gemini
+
+Steve explicitly instructed **“skip gemeni and go”** after the Gemini dependency
+and depleted-credit blocker were explained. This deployment implements that
+instruction for the current vendor backlog without making or claiming an AI
+image-review verdict. Room settings are not generated or required by this path.
+
+The policy captures 504 product identities from the completed outage-held cohort.
+Historical rotation logs contain earlier explicit BLOCKs for 21 of those products;
+those blocks remain enforced, leaving 483 candidates before fresh checks. Every
+candidate must still match its approved Shopify ID, DW SKU, vendor, title,
+manufacturer code and primary image URL, and pass the existing live product-data,
+private-label, showroom, manufacturer, reintroduction, sample and pricing gates.
+The image reference is bound by URL; it is not a content hash or a visual review.
+
+The active path makes **zero Gemini requests**. It records `SKIPPED_BY_OWNER` and
+TK-11321 on both the activation audit and the Shopify review metafield. An existing
+non-provider hold, malformed review record, known BLOCK, drifted identity or image
+reference, or product outside the captured cohort remains held. The existing
+plain-texture rule remains available. Binding settlement text and AI generators
+are unchanged. This authorization does not establish substantive image clearance.
+
+Manual canaries and scheduled runs now share the same 21-per-hour allowance,
+computed from successful activation audit events. The existing 500/day limit,
+Google publication exclusion, and launchd schedule are unchanged.
+
+## Verification
+
+- 46 installed tests passed, including owner authority, known BLOCK preservation,
+ drift checks, failed metafield writes, retry behavior and hourly accounting.
+- The reintroduction and never-activate vendor guards passed unchanged.
+- Live read-only dry run: 287 examined, 21 projected activations, 21 preserved
+ BLOCKs, zero Gemini calls or attempts.
+- Independent fresh before snapshot: 21 candidates and 23 negative controls,
+ all DRAFT; daily ledger 16.
+- First live canary: DWDX-220551 / August, Lemongrass; DRAFT → ACTIVE, public
+ storefront HTTP 200 with the exact product ID; price, variants, image, title and
+ vendor unchanged; review status `SKIPPED_BY_OWNER`; controls stayed DRAFT;
+ ledger 16 → 17. See `live-verified-1.json`.
+- Source restoration and reapplication were rehearsed in disposable copies.
+- Production runtime commit: `b03419a`; staged source commit: `3d2ba05`.
+
+The full batch is complete: 21 additional products were activated and published,
+bringing the daily ledger from 16 to 37. Independent fresh API reads verified all
+21 products, unchanged prices/variants/images, explicit owner-skip records and
+23 negative controls still DRAFT. First and last public product pages returned
+HTTP 200 with the exact product IDs. See `live-verified-21.json`.
+
+After releasing the owned lock, the actual `drain.sh` entrypoint was exercised.
+It correctly stopped at 21/21 for the hour, left the daily ledger at37, exited0,
+and pruned the 21 newly active items from the staged calendar. The existing
+minute25 launchd job remains loaded. See `hourly-cap-verified.json` and
+`loaded-schedule.json`. No Gemini billing action is needed for this cohort.
+
+## DTD decision: A — bounded product-specific authorization
+
+Confidence: medium. Vote: 2/2 valid voters; panel availability: 2/6.
+
+| Reference | Runtime/model | Vote | Reason |
+| --- | --- | --- | --- |
+| Claude | Anthropic / sonnet | abstain | Disabled by zero-cost policy |
+| Codex | Codex CLI fallback | A | Honor explicit scope; hold changed product identities |
+| Qwen | Mac1 Ollama / qwen3:14b | A | Avoid global bypass; preserve other product checks |
+| Grok | xAI / grok-4.5 | abstain | Unavailable |
+| Kimi | Moonshot / kimi-k2.5 | abstain | Unavailable |
+| Muse | Ollama / muse-spark-1.2 as reported by runner | abstain | Unavailable |
+
+Dissent: none among valid panel votes. The mandatory adversarial review emphasized
+that an outage is not evidence that a design is safe, and a successful canary
+does not substitute for the omitted image review. The defender distinguished
+Steve's authorization to omit Gemini from overriding known restrictions. The
+judge returned **FINAL: KEEP**, contingent on truthful skipped-review records and
+the stated narrow scope. Raw model outputs are retained beside this report.
diff --git a/verification/tk11321/before/rotate-activate.js b/verification/tk11321/before/rotate-activate.js
new file mode 100644
index 0000000..9c3db9b
--- /dev/null
+++ b/verification/tk11321/before/rotate-activate.js
@@ -0,0 +1,434 @@
+#!/usr/bin/env node
+/*
+ * rotate-activate.js — the ROTATION ACTIVATOR.
+ *
+ * Companion to dw-five-field-step0/bulk-fivefield-exec.py. That drain builds the
+ * MISSING Sample/roll variants for the ~5k drafts that need field-fixes. THIS
+ * activator handles the OTHER ~10k drafts that are ALREADY 5-field-complete and
+ * just need to go live — plus any field-fixed product that now passes the gate.
+ *
+ * Each run it takes the next N drafts from the CANONICAL ordered queue
+ * (lib/rotation-order.js — textures-first + vendor round-robin, identical to the
+ * calendar's projection), RE-VERIFIES the 5-field gate LIVE per product
+ * (sample variant + sellable variant + price>0 + description + >=2 tags + width),
+ * and ONLY flips status→ACTIVE + adds the 'New Arrival' tag + publishes to the
+ * Online Store on a PASS. Incomplete products are SKIPPED and logged (never
+ * activate a broken product) — they'll be picked up once the field-fix drain
+ * completes them, and re-tried on the next rotation pass.
+ *
+ * HARD RAILS:
+ * - Never touches Schumacher (excluded at the SQL source — internal-only).
+ * - Never activates without image AND width AND real price AND sample variant.
+ * - Daily activation cap (default 500/day) via its OWN date-stamped ledger
+ * (activation ≠ variant-create, so it does NOT touch budget.cjs; the two
+ * lanes are independent and neither starves the other).
+ * - Idempotent + resumable: already-ACTIVE products fall out of the DRAFT query;
+ * the audit JSONL records every decision.
+ * - Never mass-activate: per-run cap (--max) drives a small per-slot batch.
+ * - GMC exclusion: publishes to all channels EXCEPT Google & YouTube (the $4.25
+ * sample-price-leak rule), mirroring activate-gated.js.
+ *
+ * Store = designer-laboratory-sandbox.myshopify.com (LIVE), API 2024-10.
+ *
+ * Usage:
+ * node rotate-activate.js --dry-run [--max N] # project next N, no writes
+ * node rotate-activate.js --max N --commit # activate up to N gate-passers
+ * node rotate-activate.js --commit # use the daily activation remainder
+ */
+'use strict';
+const https = require('https');
+const fs = require('fs');
+const os = require('os');
+const path = require('path');
+const { execFileSync } = require('child_process');
+const { ROTATION_ORDER_SQL } = require('./lib/rotation-order.js');
+const { SettlementGate } = require('./lib/settlement-gate.js');
+const { fiveFieldExtra } = require('./lib/five-field-extra.js');
+const { mfrGate } = require('./lib/mfr-gate.js');
+const { canonicalProduct, widthFromLive, completeLiveProduct } = require('./lib/live-product-fields.js');
+const { buildRepairReport } = require('./lib/readiness-repairs.js');
+const { confirmedActivation } = require('./lib/activation-result.js');
+const { reusedMfrSet, stagingColorFor } = require('./lib/mfr-gate-resolve.js');
+// Canonical showroom-vendor primitive (list + logic live in fix-live-board/config). Showroom-only
+// vendors are addressable-not-discoverable: never rotate them into the New Arrivals discoverability
+// flow (activate + 'New Arrival' tag + browse-channel publish). Never hardcode a vendor — edit
+// showroom-vendors.json. TK-11186.
+const { isShowroomVendor } = require(path.join(process.env.HOME, 'Projects/fix-live-board/config/showroom-vendor.cjs'));
+const { validateBeforeActivate, toImageList } =
+ require(path.join(os.homedir(), 'Projects/Designer-Wallcoverings/shopify/scripts/lib/validate-before-activate.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 DRY = flag('--dry-run') || !COMMIT; // safe-by-default: no --commit ⇒ dry-run
+const CLI_MAX = val('--max', null);
+
+const STORE = 'designer-laboratory-sandbox.myshopify.com';
+const API = '2024-10';
+const OUTDIR = path.join(__dirname, 'out');
+const TODAY = new Date().toISOString().slice(0, 10);
+const AUDIT = path.join(OUTDIR, `rotation-activations-${TODAY}.jsonl`);
+const REPAIR_REPORT = path.join(OUTDIR, 'current-readiness-repairs.json');
+const runDecisions = [];
+function recordDecision(record) {
+ fs.appendFileSync(AUDIT, JSON.stringify(record) + '\n');
+ runDecisions.push(record);
+}
+// Daily activation ledger — its OWN lane (activation is not a variant-create, so it
+// must not debit budget.cjs). Simple date-stamped counter file.
+const LEDGER = path.join(OUTDIR, `activation-ledger-${TODAY}.json`);
+const DAILY_ACTIVATION_CAP = parseInt(process.env.DW_ACTIVATION_CAP || '500', 10);
+const GOOGLE_PUBLICATION_ID = 'gid://shopify/Publication/29646651457';
+
+fs.mkdirSync(OUTDIR, { recursive: true });
+
+const env = fs.readFileSync(os.homedir() + '/Projects/secrets-manager/.env', 'utf8');
+const TOKEN = (env.match(/^SHOPIFY_ADMIN_TOKEN=(.*)$/m) || [])[1].replace(/['"]/g, '').trim();
+if (!TOKEN) { console.error('no SHOPIFY_ADMIN_TOKEN'); process.exit(1); }
+
+const sleep = (ms) => new Promise((r) => setTimeout(r, ms));
+
+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(300); return r;
+ }
+ return { status: 429, raw: 'throttled' };
+}
+
+// ── daily activation ledger (own lane) ────────────────────────────────────────
+function ledgerUsed() {
+ try { return JSON.parse(fs.readFileSync(LEDGER, 'utf8')).used || 0; } catch { return 0; }
+}
+function ledgerBump(n) {
+ const used = ledgerUsed() + n;
+ try { fs.writeFileSync(LEDGER, JSON.stringify({ date: TODAY, used })); } catch (_) {}
+ return used;
+}
+
+// ── publish helpers (mirror activate-gated.js; GMC-excluded) ──────────────────
+let PUBS = null;
+async function loadPubs() {
+ if (PUBS) return PUBS;
+ const r = await gqlRetry(`{publications(first:50){edges{node{id name}}}}`, {});
+ PUBS = (r.json?.data?.publications?.edges || []).map((e) => e.node)
+ .filter((p) => p.id !== GOOGLE_PUBLICATION_ID);
+ return PUBS;
+}
+async function publishToChannels(pid) {
+ const pubs = await loadPubs();
+ if (!pubs.length) return { published: false, why: 'no-publications-scope' };
+ const input = pubs.map((p) => ({ publicationId: p.id }));
+ const r = await gqlRetry(
+ `mutation($id:ID!,$input:[PublicationInput!]!){publishablePublish(id:$id,input:$input){userErrors{field message}}}`,
+ { id: pid, input });
+ const ue = r.json?.data?.publishablePublish?.userErrors || [];
+ const real = ue.filter((e) => !/already|cannot be published to itself/i.test(e.message || ''));
+ if (real.length) return { published: false, errors: real };
+ return { published: true, channels: pubs.length };
+}
+
+// ── load the canonical ordered DRAFT queue (textures-first + round-robin) ──────
+// Enrich each row from its vendor staging table would be costly across 62 vendors;
+// instead we re-verify the gate from the LIVE Shopify product (images, variants,
+// metafields, body, tags) which is authoritative at activation time. The order
+// and identity come from shopify_products via lib/rotation-order.js.
+function loadQueue() {
+ const raw = psql(ROTATION_ORDER_SQL);
+ if (!raw) return [];
+ return raw.split('\n').map((l) => {
+ const [shopify_id, vendor, dw_sku, title, product_type, mat_tier, rr] = l.split('\t');
+ return { shopify_id, vendor, dw_sku, title, product_type,
+ mat_tier: parseInt(mat_tier, 10), rr: parseInt(rr, 10) };
+ });
+}
+
+const STATUS_Q = `query($ids:[ID!]!){nodes(ids:$ids){... on Product{
+ id status title vendor descriptionHtml tags
+ images(first:50){nodes{url}}
+ variants(first:20){nodes{price sku title} pageInfo{hasNextPage endCursor}}
+ metafields(first:80){nodes{namespace key value} pageInfo{hasNextPage endCursor}}
+}}}`;
+const mfVal = (mfs, ns, key) => { const m = (mfs || []).find((x) => x.namespace === ns && x.key === key); return m ? m.value : ''; };
+const ACTIVATE = `mutation($id:ID!){productUpdate(input:{id:$id,status:ACTIVE}){product{id status} userErrors{field message}}}`;
+const TAGS_ADD = `mutation($id:ID!,$tags:[String!]!){tagsAdd(id:$id,tags:$tags){userErrors{field message}}}`;
+// internal.settlement_hold metafield — marks a DRAFT held by the settlement gate.
+const SET_HOLD = `mutation($mfs:[MetafieldsSetInput!]!){metafieldsSet(metafields:$mfs){userErrors{field message}}}`;
+async function setSettlementHold(pid, verdict, reason) {
+ const value = JSON.stringify({ verdict, reason: String(reason).slice(0, 400),
+ ts: new Date().toISOString(), by: 'dw-rotation-activator' });
+ return gqlRetry(SET_HOLD, { mfs: [{ ownerId: pid, namespace: 'internal', key: 'settlement_hold',
+ type: 'json', value }] });
+}
+// primary image + material from the live product node (reused by the gate).
+function primaryImageUrl(n) { return (n.images?.nodes || [])[0]?.url || ''; }
+function materialFromNode(n) {
+ const mfs = n.metafields?.nodes || [];
+ return mfVal(mfs, 'global', 'material') || mfVal(mfs, 'custom', 'material') || mfVal(mfs, 'specs', 'material') || '';
+}
+// Resolve the manufacturer SKU the same way the go-live-gate canary does: prefer the
+// metafield (dwc/custom/global.manufacturer_sku), fall back to nothing (the mirror's
+// mfr_sku column isn't on the live node — the metafield IS the live truth).
+function resolvedMfrFromNode(n) {
+ const mfs = n.metafields?.nodes || [];
+ return (mfVal(mfs, 'dwc', 'manufacturer_sku') || mfVal(mfs, 'custom', 'manufacturer_sku') ||
+ mfVal(mfs, 'global', 'manufacturer_sku') || '').trim();
+}
+
+function pidToGid(shopify_id) {
+ // shopify_id already looks like gid://shopify/Product/NNN in this table.
+ return shopify_id.startsWith('gid://') ? shopify_id : `gid://shopify/Product/${String(shopify_id).replace(/.*\//, '')}`;
+}
+
+// Build the validate-before-activate shape from the LIVE product node and re-run
+// the SINGLE canonical gate. This is the "re-verify 5-field gate live" step.
+function gateFromLive(n, dwSku, vendor) {
+ return validateBeforeActivate(canonicalProduct(n, dwSku, vendor));
+}
+
+// Extra "5-field" invariants the prompt calls out explicitly, layered on top of
+// the canonical gate: a sellable (non-sample) variant with price>0, a sample
+// variant, and >=2 tags. (The canonical gate already covers width+image+desc+
+// sample+title-guards; this makes the price>0 + sellable-variant + >=2-tags
+// requirement explicit and independent of vendor quote-only exemptions.)
+// ── PRIVATE-LABEL LEAK GUARD ──────────────────────────────────────────────
+// A product must NEVER go customer-facing (DRAFT→ACTIVE) with the upstream SOURCE
+// name in its title or vendor. Durable fix for the 2026-07-21 incident where the
+// activator flipped Greenland cork duplicates ACTIVE with "| Greenland" still in
+// the title (vendor="Greenland" should be "Phillipe Romano"). Fail-safe: this can
+// only BLOCK an activation, never cause one.
+//
+// SELF-CONTAINED COPY of the canonical denylist — kept decoupled by design
+// (DTD verdict B, 2026-07-21: a ~/Projects app must not cross-import a portable
+// ~/.claude/skills dir). CANONICAL SOURCE OF TRUTH:
+// ~/.claude/skills/dw-leak-scanner/denylist.json (+ memory dw-leak-scanner)
+// When that denylist changes, mirror the change here.
+//
+// HARD tokens are never a legitimate pattern/color name → checked in title AND vendor.
+// VENDOR-only tokens can appear as a real pattern/place name (e.g. a "Chesapeake"
+// pattern or a "York"/"Seabrook" motif) → blocked only when they are the VENDOR
+// (the source), never merely a word in the title. ('schumacher' is intentionally
+// omitted — the denylist treats it as a legitimately-shown repped brand, not a leak.)
+// WORD-BOUNDARY matched (\btoken\b), NOT substring — critical so 'versa' matches
+// "Versa Designed Surfaces" (a Momentum leak) but NOT "Versace" (a legit luxury
+// brand DW sells), and 'york' matches the York source but not "Yorkshire".
+const PL_LEAK_HARD = ['wallquest', 'nextwall', 'command54', 'command 54', 'desima', 'carlsten',
+ 'greenland', 'yorkwall', 'lillian august', 'nicolette mayer', 'versa designed surfaces',
+ 'rigo', 'rigowall', 'rigo wallcovering'];
+const PL_LEAK_VENDOR_ONLY = ['chesapeake', 'seabrook', 'brewster', 'york', 'momentum', 'versa'];
+const _wb = (tok) => new RegExp('\\b' + tok.replace(/[.*+?^${}()|[\]\\]/g, '\\$&') + '\\b', 'i');
+const _HARD_RE = PL_LEAK_HARD.map((t) => [t, _wb(t)]); // [token, RegExp] pairs
+const _VENDOR_RE = PL_LEAK_VENDOR_ONLY.map((t) => [t, _wb(t)]); // [token, RegExp] pairs
+function leakGuard(title, vendor) {
+ const t = title || '', v = vendor || '';
+ for (const [tok, re] of _HARD_RE) if (re.test(t) || re.test(v)) return { ok: false, reason: `private-label-leak:${tok}` };
+ for (const [tok, re] of _VENDOR_RE) if (re.test(v)) return { ok: false, reason: `private-label-leak:${tok}` };
+ return { ok: true };
+}
+
+(async () => {
+ const queue = loadQueue();
+ const tier0 = queue.filter((q) => q.mat_tier === 0).length;
+ console.log(`queue: ${queue.length} DRAFTs in canonical order (tier0 textures=${tier0}, rest=${queue.length - tier0})`);
+
+ // SETTLEMENT GATE — construct once (runs lock.sh fail-closed). Plain textures
+ // auto-pass at $0; motif/print/botanical products are Gemini-vision-gated.
+ // MFR-PROVENANCE GATE — load the cross-vendor reused-code set ONCE (the internal-
+ // counter bug class), then per product resolve the live mfr metafield + its staging
+ // color name and BLOCK any DRAFT→ACTIVE whose mfr is blank / reused / fabricated
+ // (Carnegie "Grain 6300 → 63001…" placeholder-color class). TK-11063.
+ const reusedMfrs = reusedMfrSet();
+ console.log(`mfr-gate: ${reusedMfrs.size} mfr code(s) reused across >1 vendor (internal-counter watch)`);
+ let mfrBlocked = 0;
+
+ const settlement = new SettlementGate();
+ const ls = settlement.lockStatus();
+ console.log(`settlement gate: lock=${ls.ok ? 'PASS' : 'FAIL (' + ls.msg + ')'} — ` +
+ `${ls.ok ? 'motif products vision-gated' : 'motif products HELD this run (textures still pass)'}`);
+ let settlementHeld = 0, settlementBlocked = 0;
+
+ // budget: activation lane
+ const used = ledgerUsed();
+ let cap;
+ if (DRY) {
+ cap = CLI_MAX != null ? parseInt(CLI_MAX, 10) : 50;
+ } else {
+ const remaining = Math.max(0, DAILY_ACTIVATION_CAP - used);
+ const want = CLI_MAX != null ? parseInt(CLI_MAX, 10) : remaining;
+ cap = Math.min(want, remaining);
+ if (cap <= 0) {
+ console.log(`[budget] daily activation cap reached (${used}/${DAILY_ACTIVATION_CAP}). Nothing to do this run.`);
+ return;
+ }
+ console.log(`[budget] activation lane: used ${used}/${DAILY_ACTIVATION_CAP} today → activating up to ${cap} this run.`);
+ }
+ console.log(`mode=${DRY ? 'DRY-RUN' : 'COMMIT'} cap_this_run=${cap}\n`);
+
+ let activated = 0, published = 0, skipped = 0, alreadyActive = 0, scanned = 0;
+ const projection = []; // for dry-run reporting
+
+ // We walk the ordered queue, batch-fetching live status 50 at a time, and stop
+ // as soon as we've ACTIVATED (or, in dry-run, projected) `cap` gate-passers.
+ for (let i = 0; i < queue.length; i += 50) {
+ if (activated >= cap) break;
+ const batch = queue.slice(i, i + 50);
+ const byGid = new Map(batch.map((q) => [pidToGid(q.shopify_id), q]));
+ const r = await gqlRetry(STATUS_Q, { ids: [...byGid.keys()] });
+ if (r.status !== 200 || r.json?.errors?.length || !Array.isArray(r.json?.data?.nodes))
+ throw new Error('Shopify product batch read failed; activation stopped');
+ for (const initialNode of r.json.data.nodes) {
+ if (activated >= cap) break;
+ if (!initialNode) continue;
+ let n = initialNode;
+ const q = byGid.get(n.id);
+ scanned++;
+ if (n.status === 'ACTIVE') { alreadyActive++; continue; }
+ if (n.status !== 'DRAFT') { continue; } // ARCHIVED → leave (never un-archive)
+
+ // Showroom-only vendors stay out of the discoverable rotation entirely: this activator's
+ // job is activate + 'New Arrival' tag + browse-channel publish, all discoverability actions
+ // a showroom line must never receive. Leave the product DRAFT for its own showroom flow. TK-11186.
+ if (isShowroomVendor(q && q.vendor)) {
+ skipped++;
+ recordDecision({ ts: new Date().toISOString(), shopify_id: n.id, vendor: q && q.vendor, dw_sku: q && q.dw_sku, action: 'skip-showroom-vendor' });
+ continue;
+ }
+
+ try { n = await completeLiveProduct(n, gqlRetry); }
+ catch (error) {
+ skipped++;
+ recordDecision({ ts: new Date().toISOString(), shopify_id: n.id, vendor: q?.vendor,
+ dw_sku: q?.dw_sku, action: 'skip-read-error', reasons: [error.message] });
+ continue;
+ }
+ const gate = gateFromLive(n, q && q.dw_sku, q && q.vendor);
+ const extra = fiveFieldExtra(n);
+ const leak = leakGuard(n.title, q && q.vendor);
+ // MFR-PROVENANCE gate (TK-11063). Resolve the live mfr metafield, its cross-vendor
+ // reuse flag, and its staging color name, then run the pure gate. Staging lookup is
+ // only worth doing when the code is otherwise present + not reused (the fabricated
+ // class is unique-and-present), so we short-circuit the DB read on blank/reused.
+ const mfrCode = resolvedMfrFromNode(n);
+ const reused = !!mfrCode && reusedMfrs.has(mfrCode);
+ const stagingColor = (mfrCode && !reused) ? stagingColorFor(q && q.vendor, mfrCode) : null;
+ const mfr = mfrGate({ vendor: q && q.vendor, mfr: mfrCode,
+ reusedAcrossVendors: reused, stagingColorName: stagingColor });
+ const passes = gate.ok && extra.ok && leak.ok && mfr.ok;
+ if (!mfr.ok) mfrBlocked++;
+ const rec = { ts: new Date().toISOString(), shopify_id: n.id, vendor: q && q.vendor,
+ dw_sku: q && q.dw_sku, mat_tier: q && q.mat_tier, rr: q && q.rr,
+ title: n.title, passes, mfr_code: mfrCode, width_source: widthFromLive(n).source,
+ reasons: [...(gate.ok ? [] : gate.reasons), ...(extra.ok ? [] : extra.reasons),
+ ...(leak.ok ? [] : [leak.reason]), ...(mfr.ok ? [] : mfr.reasons)] };
+
+ if (!passes) {
+ skipped++;
+ // NEVER activate a broken product — log + skip. It flows through the
+ // field-fix drain and is re-tried on the next rotation pass. If the ONLY
+ // failure is the mfr-provenance gate, tag Needs-MfrSKU so the drain/human
+ // can restore the real code (COMMIT mode only; the tag itself is reversible).
+ if (!DRY && !mfr.ok && gate.ok && extra.ok && leak.ok) {
+ try { await gqlRetry(TAGS_ADD, { id: n.id, tags: ['Needs-MfrSKU'] }); } catch (_) {}
+ }
+ recordDecision({ ...rec, action: 'skip-gate' });
+ continue;
+ }
+
+ // ── SETTLEMENT GATE (runs AFTER the 5-field gate, BEFORE any DRAFT→ACTIVE) ──
+ // Plain textures auto-pass at $0; everything else is Gemini-vision-checked.
+ // Only verdict === 'PASS' may proceed; BLOCK/HELD leave the product DRAFT,
+ // set internal.settlement_hold, and log to the activator + orchestrator audits.
+ const sv = await settlement.evaluate({
+ shopify_id: n.id, title: n.title, vendor: q && q.vendor, dw_sku: q && q.dw_sku,
+ material: materialFromNode(n), imageUrl: primaryImageUrl(n),
+ });
+ rec.settlement = { verdict: sv.verdict, tier: sv.tier, reason: sv.reason, cost: sv.cost,
+ diagnostics: sv.diagnostics || null, retryAt: sv.retryAt || null };
+ if (sv.verdict !== 'PASS') {
+ if (sv.verdict === 'BLOCK') settlementBlocked++; else settlementHeld++;
+ skipped++;
+ // hold + skip. In COMMIT mode set the metafield so the hold is durable on
+ // the product; in DRY mode we only record it (no writes).
+ if (!DRY) { try { await setSettlementHold(n.id, sv.verdict, sv.reason); } catch (_) {} }
+ recordDecision({ ...rec,
+ action: sv.verdict === 'BLOCK' ? 'settlement-block' : 'settlement-hold' });
+ continue;
+ }
+
+ if (DRY) {
+ projection.push(rec);
+ activated++; // count projected activations toward the cap so the dry-run shows the real next-N
+ recordDecision({ ...rec, action: 'dryrun-would-activate' });
+ continue;
+ }
+
+ // COMMIT: flip → ACTIVE, add 'New Arrival', publish to channels (ex-Google).
+ const ar = await gqlRetry(ACTIVATE, { id: n.id });
+ const aue = ar.json?.data?.productUpdate?.userErrors;
+ if (!confirmedActivation(ar, n.id)) {
+ skipped++;
+ recordDecision({ ...rec, action: 'activate-error',
+ errors: aue?.length ? aue : (ar.json?.errors || ['Shopify did not confirm ACTIVE']), httpStatus: ar.status });
+ continue;
+ }
+ activated++;
+ ledgerBump(1);
+ // add 'New Arrival' tag (idempotent — tagsAdd is a no-op if present)
+ await gqlRetry(TAGS_ADD, { id: n.id, tags: ['New Arrival'] });
+ // publish to Online Store (+ others, minus Google)
+ let pub = false;
+ try { const p = await publishToChannels(n.id); pub = !!p.published;
+ if (!pub) console.log(` ⚠ ${q && q.dw_sku} ACTIVE but publish failed: ${JSON.stringify(p.errors || p.why).slice(0, 120)}`);
+ } catch (e) { console.log(` ⚠ ${q && q.dw_sku} publish error: ${String(e.message).slice(0, 120)}`); }
+ if (pub) published++;
+ recordDecision({ ...rec, action: 'activated', published: pub, tag: 'New Arrival' });
+ if (activated % 25 === 0) process.stdout.write(`\r activated ${activated}/${cap}…`);
+ await sleep(350);
+ }
+ await sleep(150);
+ }
+
+ const sstat = settlement.stats();
+ const report = buildRepairReport(runDecisions, { complete: scanned >= queue.length });
+ fs.writeFileSync(REPAIR_REPORT + '.tmp', JSON.stringify(report, null, 2) + '\n');
+ fs.renameSync(REPAIR_REPORT + '.tmp', REPAIR_REPORT);
+ console.log(`current readiness repairs: ${report.products_needing_attention} products; report=${REPAIR_REPORT}`);
+ console.log(`\n=== ROTATION ACTIVATOR ${DRY ? 'DRY-RUN' : 'RUN'} DONE ===`);
+ console.log(`scanned=${scanned} ${DRY ? 'would-activate' : 'activated'}=${activated} published=${published} skipped(gate-fail)=${skipped} alreadyActive=${alreadyActive}`);
+ console.log(`mfr-gate: blocked ${mfrBlocked} product(s) for blank/reused/fabricated mfr provenance`);
+ console.log(`settlement: auto-pass-textures=${sstat.autoPassCount} vision-calls=${sstat.visionCalls} blocked=${settlementBlocked} held=${settlementHeld}`);
+ console.log(`settlement service: configured-keys=${sstat.visionKeysConfigured} attempts=${sstat.visionHttpAttempts} cooldown-skips=${sstat.visionThrottledSkips} retryAt=${sstat.retryAt || 'none'} lastError=${JSON.stringify(sstat.lastVisionError)}`);
+ console.log(`settlement cost: textures $0 (local) + vision ${sstat.visionCalls} calls = $${sstat.visionCostTotal.toFixed(5)} (Gemini 2.5-flash; ~$0.0006/img)`);
+ if (!DRY) console.log(`daily activation ledger: ${ledgerUsed()}/${DAILY_ACTIVATION_CAP}`);
+ console.log(`audit → ${AUDIT}`);
+
+ if (DRY && projection.length) {
+ console.log(`\n--- next ${Math.min(projection.length, 50)} activations (proof: textures lead, vendors interleave) ---`);
+ const pad = (s, n) => String(s == null ? '' : s).padEnd(n).slice(0, n);
+ console.log(pad('#', 4) + pad('tier', 5) + pad('vendor', 24) + 'title');
+ projection.slice(0, 50).forEach((p, idx) =>
+ console.log(pad(idx + 1, 4) + pad(p.mat_tier === 0 ? 'TEX' : '·', 5) + pad(p.vendor, 24) + String(p.title || p.dw_sku || '').slice(0, 44)));
+ }
+})().catch((e) => { console.error('rotate-activate failed:', e.message); process.exit(1); });
diff --git a/verification/tk11321/deployment-manifest.json b/verification/tk11321/deployment-manifest.json
new file mode 100644
index 0000000..a1b04e9
--- /dev/null
+++ b/verification/tk11321/deployment-manifest.json
@@ -0,0 +1,60 @@
+{
+ "ticket": "TK-11321",
+ "authorization": "Steve: skip gemeni and go",
+ "status": "complete",
+ "lock": "/Users/macstudio3/Projects/dw-rotation-activator/.drain.lock",
+ "started_at": "2026-09-09T18:08:16.504647+00:00",
+ "files": [
+ {
+ "relative": "rotate-activate.js",
+ "target": "/Users/macstudio3/Projects/dw-rotation-activator/rotate-activate.js",
+ "backup": "/Users/macstudio3/Projects/dw-gemini-skip-TK11321/verification/tk11321/before/rotate-activate.js",
+ "before_sha256": "45c73d7c50a65d35781b0b5234a4f5d24223e18f7141c2985439d3cd32754275",
+ "after_sha256": "d2820131ae75b09d9442ca3c64f95c0469ed9617c181f3c04437a09c8796fb02"
+ },
+ {
+ "relative": "lib/owner-review-policy.js",
+ "target": "/Users/macstudio3/Projects/dw-rotation-activator/lib/owner-review-policy.js",
+ "backup": null,
+ "before_sha256": null,
+ "after_sha256": "6d71dd12d0583da09efe094abc5917e95d7ed6faf564e73586624b637464a535"
+ },
+ {
+ "relative": "lib/hourly-activation-count.js",
+ "target": "/Users/macstudio3/Projects/dw-rotation-activator/lib/hourly-activation-count.js",
+ "backup": null,
+ "before_sha256": null,
+ "after_sha256": "c87b4dc58eca1c7e664242a6a8c1ad5c6e2a2fba46dc9766ea3ae592e01b24d4"
+ },
+ {
+ "relative": "config/gemini-review-policy.json",
+ "target": "/Users/macstudio3/Projects/dw-rotation-activator/config/gemini-review-policy.json",
+ "backup": null,
+ "before_sha256": null,
+ "after_sha256": "0971824660bbe9eed9eb7a2ba55fca0126b3068033a2b0ae6090270d0f058a7e"
+ },
+ {
+ "relative": "test/owner-review-policy.test.js",
+ "target": "/Users/macstudio3/Projects/dw-rotation-activator/test/owner-review-policy.test.js",
+ "backup": null,
+ "before_sha256": null,
+ "after_sha256": "5fc8f0a35481d9cb2add5ca3fefa6c022149d27ef1b00941fc6ae3b1ca51a1f7"
+ },
+ {
+ "relative": "test/hourly-activation-count.test.js",
+ "target": "/Users/macstudio3/Projects/dw-rotation-activator/test/hourly-activation-count.test.js",
+ "backup": null,
+ "before_sha256": null,
+ "after_sha256": "cc4f56b00b32304006056a0d92923ad1672de79adcc92e71c53d8db907d00374"
+ }
+ ],
+ "production_commit": "b03419a",
+ "newly_activated": 21,
+ "daily_ledger": 37,
+ "gemini_calls": 0,
+ "unlocked_at": "2026-09-09T18:12:42.131826+00:00",
+ "verified_at": "2026-09-09T18:15:15.306027+00:00",
+ "hourly_cap_verified": true,
+ "schedule_loaded": true,
+ "known_block_controls_still_draft": 23
+}
diff --git a/verification/tk11321/e2e-proof.json b/verification/tk11321/e2e-proof.json
new file mode 100644
index 0000000..b983a3a
--- /dev/null
+++ b/verification/tk11321/e2e-proof.json
@@ -0,0 +1,82 @@
+{
+ "ticket": "TK-11321",
+ "timestamp": "2026-09-09T18:15:15.306027+00:00",
+ "risk_tier": "R4",
+ "authorization": "Steve: skip gemeni and go",
+ "verdict": "PASS: owner-authorized no-Gemini rollout, live batch and hourly cap verified",
+ "runtime": "dw-rotation-activator on live designer-laboratory-sandbox Shopify store",
+ "reviewed_commit": "3d2ba05",
+ "scope": {
+ "captured_outage_held": 504,
+ "historical_blocks_preserved_in_cohort": 21,
+ "eligible_before_fresh_checks": 483,
+ "gemini_requests_permitted": 0
+ },
+ "checks": [
+ {
+ "check": "Installed regression tests",
+ "verdict": "PASS",
+ "tests": 46
+ },
+ {
+ "check": "Live dry run",
+ "verdict": "PASS",
+ "scanned": 287,
+ "would_activate": 21,
+ "blocked": 21,
+ "gemini_calls": 0
+ },
+ {
+ "check": "One-product publication and independent verification",
+ "verdict": "PASS",
+ "product": "DWDX-220551",
+ "ledger_before": 16,
+ "ledger_after": 17,
+ "controls_still_draft": 23,
+ "storefront": [
+ {
+ "url": "https://www.designerwallcoverings.com/products/august-lemongrass-dwdx-220551",
+ "status": 200,
+ "product_id_found": true
+ }
+ ]
+ },
+ {
+ "check": "Exact before-file rollback rehearsal",
+ "verdict": "PASS",
+ "evidence": "/Users/macstudio3/Projects/dw-gemini-skip-TK11321/verification/tk11321/rollback-rehearsal.json"
+ },
+ {
+ "check": "Honest skipped-review persistence",
+ "verdict": "PASS",
+ "value": "SKIPPED_BY_OWNER, TK-11321",
+ "review_performed": false
+ },
+ {
+ "check": "Full hourly batch independently verified",
+ "verdict": "PASS",
+ "new_activations": 21,
+ "ledger_before": 16,
+ "ledger_after": 37,
+ "controls_still_draft": 23,
+ "evidence": "/Users/macstudio3/Projects/dw-gemini-skip-TK11321/verification/tk11321/live-verified-21.json"
+ },
+ {
+ "check": "Actual scheduled entrypoint stops at21/hour",
+ "verdict": "PASS",
+ "extra_activations": 0,
+ "exit_code": 0,
+ "evidence": "/Users/macstudio3/Projects/dw-gemini-skip-TK11321/verification/tk11321/hourly-cap-verified.json"
+ }
+ ],
+ "constraints": "21/hour shared by manual and scheduled runs; 500/day; existing Google exclusion and other readiness/vendor/reintroduction guards retained. No binding-text, AI-generator, billing or credentials changes.",
+ "evidence_directory": "/Users/macstudio3/Projects/dw-gemini-skip-TK11321/verification/tk11321",
+ "rollback": "Restore exact prefiles under existing job lock; no automatic product rollback.",
+ "residual": "Owner-authorized products have not received automated image-review clearance. Changed identity/image URL or known blocks remain held.",
+ "production_commit": "b03419a",
+ "newly_activated": 21,
+ "daily_ledger": 37,
+ "gemini_requests": 0,
+ "lock_released_at": "2026-09-09T18:12:42.131826+00:00",
+ "schedule_loaded": true
+}
diff --git a/verification/tk11321/hourly-cap-verified.json b/verification/tk11321/hourly-cap-verified.json
new file mode 100644
index 0000000..a1da2f5
--- /dev/null
+++ b/verification/tk11321/hourly-cap-verified.json
@@ -0,0 +1,12 @@
+{
+ "timestamp": "2026-09-09T18:15:15.298647+00:00",
+ "verdict": "PASS",
+ "command": "/bin/zsh drain.sh",
+ "activation_count_before": 37,
+ "activation_count_after": 37,
+ "hourly_used": 21,
+ "extra_activations": 0,
+ "exit_code": 0,
+ "owned_lock_absent": true,
+ "run_log": "[2026-09-09 11:13:21] rotation-activate start slot_max=21\n\u2705 rotation-order.js: both copies identical\n\u2705 rotation-order.js: re-intro guard present (SQL)\n\u2705 activate-gated.js: re-intro guard present (JS promote loop)\n\u2705 rotation-order.js: mfr_sku near-dupe guard + pre-2025 age gate present\n\u2705 activate-gated.js: mfr_sku near-dupe guard + pre-2025 age gate present\n\u2705 rotation-order.js: never-activate vendor kept excluded \u2014 jeffrey stevens\n\u2705 rotation-order.js: never-activate vendor kept excluded \u2014 phillip jeffries\n\u2705 activate-gated.js: never-activate vendors kept excluded (dwjs/PJ)\n\n\u2705 All daily-activation paths carry the re-introduction guard, copies are in sync, and dwjs/phillip-jeffries stay excluded.\nqueue: 1844 DRAFTs in canonical order (tier0 textures=503, rest=1341)\nmfr-gate: 7290 mfr code(s) reused across >1 vendor (internal-counter watch)\nsettlement gate: lock=PASS \u2014 Gemini disabled by Steve; 504 product authorizations, known BLOCKs preserved\n[budget] activation allowance reached (daily 37/500, hourly 21/21). Nothing to do this run.\n[2026-09-09 11:13:39] rotation-activate end rc=0\nprune-active: 21 of those caught via activator audit before the mirror re-synced (zero-lag).\nprune-active: 21 already-active/non-draft item(s) pruned \u2014 1799 staged items remain.\nprune-active: wrote /Users/macstudio3/Projects/dw-activation-calendar/data/activation-schedule.json (total_items 1820 -> 1799).\n[2026-09-09 11:13:40] cadence prune-active rc=0\n"
+}
diff --git a/verification/tk11321/live-before.json b/verification/tk11321/live-before.json
new file mode 100644
index 0000000..1eb5d80
--- /dev/null
+++ b/verification/tk11321/live-before.json
@@ -0,0 +1,2399 @@
+{
+ "timestamp": "2026-09-09T18:07:03.568Z",
+ "mutations": 0,
+ "predicted": [
+ "gid://shopify/Product/7876272291891",
+ "gid://shopify/Product/7876647125043",
+ "gid://shopify/Product/7879309393971",
+ "gid://shopify/Product/7914094559283",
+ "gid://shopify/Product/7914094592051",
+ "gid://shopify/Product/7914835378227",
+ "gid://shopify/Product/7914835410995",
+ "gid://shopify/Product/7914835443763",
+ "gid://shopify/Product/7914835476531",
+ "gid://shopify/Product/7914835509299",
+ "gid://shopify/Product/7915820023859",
+ "gid://shopify/Product/7915820056627",
+ "gid://shopify/Product/7915820122163",
+ "gid://shopify/Product/7915820187699",
+ "gid://shopify/Product/7916139085875",
+ "gid://shopify/Product/7916139118643",
+ "gid://shopify/Product/7916139184179",
+ "gid://shopify/Product/7916139216947",
+ "gid://shopify/Product/7916513001523",
+ "gid://shopify/Product/7916513034291",
+ "gid://shopify/Product/7916513067059"
+ ],
+ "controls": [
+ "gid://shopify/Product/7799066066995",
+ "gid://shopify/Product/7896894603315",
+ "gid://shopify/Product/7896894636083",
+ "gid://shopify/Product/7898226098227",
+ "gid://shopify/Product/7898226196531",
+ "gid://shopify/Product/7898678231091",
+ "gid://shopify/Product/7898678296627",
+ "gid://shopify/Product/7900061204531",
+ "gid://shopify/Product/7900061237299",
+ "gid://shopify/Product/7900061270067",
+ "gid://shopify/Product/7901072293939",
+ "gid://shopify/Product/7908224401459",
+ "gid://shopify/Product/7911187284019",
+ "gid://shopify/Product/7911187316787",
+ "gid://shopify/Product/7911187349555",
+ "gid://shopify/Product/7911187382323",
+ "gid://shopify/Product/7911187415091",
+ "gid://shopify/Product/7911929053235",
+ "gid://shopify/Product/7911929086003",
+ "gid://shopify/Product/7914094624819",
+ "gid://shopify/Product/7914094657587",
+ "gid://shopify/Product/7923565461555",
+ "gid://shopify/Product/7896454332467"
+ ],
+ "products": [
+ {
+ "id": "gid://shopify/Product/7876272291891",
+ "title": "August, Lemongrass Wallcoverings | Designtex",
+ "vendor": "Designtex",
+ "status": "DRAFT",
+ "handle": "august-lemongrass-dwdx-220551",
+ "tags": [
+ "Designtex",
+ "display_variant",
+ "Lemongrass",
+ "Needs-Description",
+ "Priced Per Yard",
+ "Wallcovering"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/6742501__09641.1722974147.jpg?v=1783143622"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44490391126067",
+ "sku": "DWDX-220551",
+ "title": "Sold Per Yard",
+ "price": "70.59"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44490391158835",
+ "sku": "DWDX-220551-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:38.275Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7876647125043",
+ "title": "Ash, Reed Wallcoverings | Designtex",
+ "vendor": "Designtex",
+ "status": "DRAFT",
+ "handle": "ash-reed-dwdx-220575",
+ "tags": [
+ "Designtex",
+ "display_variant",
+ "Needs-Description",
+ "Priced Per Yard",
+ "Reed",
+ "Wallcovering"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/6740201__46717.1722971758.jpg?v=1783237229"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44491896324147",
+ "sku": "DWDX-220575",
+ "title": "Sold Per Yard",
+ "price": "70.59"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44491896356915",
+ "sku": "DWDX-220575-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:39.524Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7879309393971",
+ "title": "Abbott, Rivergrass Wallcoverings | Designtex",
+ "vendor": "Designtex",
+ "status": "DRAFT",
+ "handle": "abbott-rivergrass-dwdx-220655",
+ "tags": [
+ "Designtex",
+ "display_variant",
+ "Needs-Description",
+ "Priced Per Yard",
+ "Rivergrass",
+ "Wallcovering"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/6732104__05324.1722347808.jpg?v=1783528828"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44501828796467",
+ "sku": "DWDX-220655",
+ "title": "Sold Per Yard",
+ "price": "56.11"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44501828829235",
+ "sku": "DWDX-220655-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:46.891Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914094559283",
+ "title": "Folk Flower, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "folk-flower-pink-wallcoverings-dwrw-361419",
+ "tags": [
+ "Collection: Botanical Gardens",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R22080_interior1.webp?v=1786002012"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44705007730739",
+ "sku": "DWRW-361419",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44705007763507",
+ "sku": "DWRW-361419-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:47.506Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914094592051",
+ "title": "Folk Flower, Yellow Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "folk-flower-yellow-wallcoverings-dwrw-361420",
+ "tags": [
+ "Collection: Botanical Gardens",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural",
+ "Yellow"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R22081_interior1.webp?v=1786002013"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44705007796275",
+ "sku": "DWRW-361420",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44705007829043",
+ "sku": "DWRW-361420-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:48.124Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914835378227",
+ "title": "Forest Animals, Yellow Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-animals-yellow-wallcoverings-dwrw-361430",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural",
+ "Yellow"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19687_interior1.jpg?v=1786088412"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44708414980147",
+ "sku": "DWRW-361430",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44708415012915",
+ "sku": "DWRW-361430-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:50.047Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914835410995",
+ "title": "Forest Birds, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-birds-blue-wallcoverings-dwrw-361432",
+ "tags": [
+ "Blue",
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20210_interior1.jpg?v=1786088413"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44708415045683",
+ "sku": "DWRW-361432",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44708415078451",
+ "sku": "DWRW-361432-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:50.688Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914835443763",
+ "title": "Forest Birds, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-birds-pink-wallcoverings-dwrw-361433",
+ "tags": [
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20211_interior1.webp?v=1786088413"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44708415111219",
+ "sku": "DWRW-361433",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44708415143987",
+ "sku": "DWRW-361433-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:51.323Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914835476531",
+ "title": "Forest Engraving, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-engraving-beige-wallcoverings-dwrw-361434",
+ "tags": [
+ "Beige",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R22120_interior1.jpg?v=1786088416"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44708415176755",
+ "sku": "DWRW-361434",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44708415209523",
+ "sku": "DWRW-361434-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:51.964Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914835509299",
+ "title": "Forest Engraving, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-engraving-blue-wallcoverings-dwrw-361435",
+ "tags": [
+ "Blue",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R22121_interior1.jpg?v=1786088416"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44708415242291",
+ "sku": "DWRW-361435",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44708415275059",
+ "sku": "DWRW-361435-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:53.912Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7915820023859",
+ "title": "Forest Engraving, Green Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-engraving-green-wallcoverings-dwrw-361436",
+ "tags": [
+ "Collection: Pops",
+ "Green",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R22122_interior1.jpg?v=1786207213"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44716885180467",
+ "sku": "DWRW-361436",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44716885213235",
+ "sku": "DWRW-361436-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:54.526Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7915820056627",
+ "title": "Forest Engraving, Vintage Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-engraving-vintage-wallcoverings-dwrw-361437",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Vintage",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R22123_interior1.jpg?v=1786207215"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44716885246003",
+ "sku": "DWRW-361437",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44716885278771",
+ "sku": "DWRW-361437-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:55.223Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7915820122163",
+ "title": "Forest Friends Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-friends-wallcoverings-dwrw-361438",
+ "tags": [
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19911_interior1.jpg?v=1786207216"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44716885344307",
+ "sku": "DWRW-361438",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44716885377075",
+ "sku": "DWRW-361438-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:55.867Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7915820187699",
+ "title": "Forest Memories, Graphite Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-memories-graphite-wallcoverings-dwrw-361442",
+ "tags": [
+ "Collection: Meet a Rebel",
+ "Graphite",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19839_interior1.jpg?v=1786207218"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44716885475379",
+ "sku": "DWRW-361442",
+ "title": "Mural (per m²)",
+ "price": "220.75"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44716885508147",
+ "sku": "DWRW-361442-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:56.508Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916139085875",
+ "title": "Forest of Dreams, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-of-dreams-beige-wallcoverings-dwrw-361443",
+ "tags": [
+ "Beige",
+ "Collection: Sophisticated Luxe",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21993_interior1.webp?v=1786261209"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44718812299315",
+ "sku": "DWRW-361443",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44718812332083",
+ "sku": "DWRW-361443-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:57.128Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916139118643",
+ "title": "Forest of Dreams, Black Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-of-dreams-black-wallcoverings-dwrw-361444",
+ "tags": [
+ "Black",
+ "Collection: Sophisticated Luxe",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21992_interior1.webp?v=1786261211"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44718812364851",
+ "sku": "DWRW-361444",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44718812397619",
+ "sku": "DWRW-361444-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:57.749Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916139184179",
+ "title": "Forest of Dreams, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-of-dreams-pink-wallcoverings-dwrw-361446",
+ "tags": [
+ "Collection: Sophisticated Luxe",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21990_interior2.jpg?v=1786261214"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44718812495923",
+ "sku": "DWRW-361446",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44718812528691",
+ "sku": "DWRW-361446-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:58.372Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916139216947",
+ "title": "Forest Park, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-park-blue-wallcoverings-dwrw-361447",
+ "tags": [
+ "Blue",
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19872_interior1.jpg?v=1786261215"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44718812561459",
+ "sku": "DWRW-361447",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44718812594227",
+ "sku": "DWRW-361447-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:58.991Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916513001523",
+ "title": "Forest Park, Graphite Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-park-graphite-wallcoverings-dwrw-361448",
+ "tags": [
+ "Collection: Shutterstock",
+ "Graphite",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19871_interior1.jpg?v=1786347611"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44722627051571",
+ "sku": "DWRW-361448",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44722627084339",
+ "sku": "DWRW-361448-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:59.608Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916513034291",
+ "title": "Forest Park, Green Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-park-green-wallcoverings-dwrw-361449",
+ "tags": [
+ "Collection: Shutterstock",
+ "Green",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19918_interior1.jpg?v=1786347613"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44722627117107",
+ "sku": "DWRW-361449",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44722627149875",
+ "sku": "DWRW-361449-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:27:00.227Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916513067059",
+ "title": "Forest Poem, Black Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-poem-black-wallcoverings-dwrw-361451",
+ "tags": [
+ "Black",
+ "Collection: Sophisticated Luxe",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21335_interior1.webp?v=1786347613"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44722627182643",
+ "sku": "DWRW-361451",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44722627215411",
+ "sku": "DWRW-361451-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:27:02.135Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7799066066995",
+ "title": "Cheetah Brown Wallcovering | Graduate Collection",
+ "vendor": "Graduate Collection UK",
+ "status": "DRAFT",
+ "handle": "cheetah-brown-wallpaper-graduate-collection",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal Print",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bird",
+ "Botanical",
+ "Boutique Hotel",
+ "Brown",
+ "Cheetah",
+ "Cheetah Brown Wallcovering",
+ "Chocolate",
+ "Commercial",
+ "Contemporary",
+ "Dark Brown",
+ "Dining Room",
+ "display_variant",
+ "Dramatic",
+ "Earth Tones",
+ "Eclectic",
+ "Emerald Green",
+ "Entertainment Room",
+ "Figurative",
+ "Glamorous",
+ "Glamour",
+ "Gold",
+ "Graduate Collection",
+ "Graduate Collection UK",
+ "Illustrative",
+ "Leopard",
+ "Living Room",
+ "Luxurious",
+ "Maximalist",
+ "Metallics",
+ "Natural Fiber",
+ "Neutrals",
+ "Non-woven",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Scenic",
+ "Sophisticated",
+ "Toucan",
+ "Tropical",
+ "Wallcovering",
+ "Warm Tones",
+ "Yellow"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cheetah-brown-wallpaper-graduate-collection-36995078750259.jpg?v=1785452517"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44118802694195",
+ "sku": "DWGC-200002-SAMPLE",
+ "title": "Sample",
+ "price": "5.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44118802726963",
+ "sku": "DWGC-200002",
+ "title": "Sold Per Roll - 20.5\" wide x 11-yds",
+ "price": "205.00"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-http-429\",\"ts\":\"2026-09-09T17:25:24.296Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7896894603315",
+ "title": "Flower Garden, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flower-garden-blue-wallcoverings-dwrw-361343",
+ "tags": [
+ "Blue",
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20373_interior1.jpg?v=1784792422"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44588275499059",
+ "sku": "DWRW-361343",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44588275531827",
+ "sku": "DWRW-361343-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:25.179Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7896894636083",
+ "title": "Flower Garden, Midnight Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flower-garden-midnight-wallcoverings-dwrw-361344",
+ "tags": [
+ "Collection: Shutterstock",
+ "Midnight",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20374_interior1.jpg?v=1784792423"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44588275564595",
+ "sku": "DWRW-361344",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44588275597363",
+ "sku": "DWRW-361344-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:30.433Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7898226098227",
+ "title": "Backwood Birds, Brown Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "backwood-birds-brown-wallcoverings-dwrw-361359",
+ "tags": [
+ "Brown",
+ "Collection: Meet a Rebel",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19261_interior1.webp?v=1784965220"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44592480419891",
+ "sku": "DWRW-361359",
+ "title": "Mural (per m²)",
+ "price": "220.75"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44592480452659",
+ "sku": "DWRW-361359-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:34.835Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7898226196531",
+ "title": "Backwood Birds, Dark Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "backwood-birds-dark-blue-wallcoverings-dwrw-361360",
+ "tags": [
+ "Collection: Meet a Rebel",
+ "Dark Blue",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19836_interior1.jpg?v=1784965221"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44592481435699",
+ "sku": "DWRW-361360",
+ "title": "Mural (per m²)",
+ "price": "220.75"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44592481468467",
+ "sku": "DWRW-361360-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:41.564Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7898678231091",
+ "title": "Backwood Birds, Sand Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "backwood-birds-sand-wallcoverings-dwrw-361361",
+ "tags": [
+ "Collection: Meet a Rebel",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Sand",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19838_interior1.jpg?v=1785051613"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44594638454835",
+ "sku": "DWRW-361361",
+ "title": "Mural (per m²)",
+ "price": "220.75"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44594638487603",
+ "sku": "DWRW-361361-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:46.556Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7898678296627",
+ "title": "Butterflies, Pastel Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "butterflies-pastel-wallcoverings-dwrw-361364",
+ "tags": [
+ "Collection: Cottage Core",
+ "Mural",
+ "Non-Woven",
+ "Pastel",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R18672_interior1.jpg?v=1785051616"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44594638585907",
+ "sku": "DWRW-361364",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44594638618675",
+ "sku": "DWRW-361364-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:52.294Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7900061204531",
+ "title": "Chinoiserie, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "chinoiserie-blue-wallcoverings-dwrw-361367",
+ "tags": [
+ "Blue",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19503_interior1.webp?v=1785138013"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44598076538931",
+ "sku": "DWRW-361367",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44598076571699",
+ "sku": "DWRW-361367-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:57.469Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7900061237299",
+ "title": "Chinoiserie, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "chinoiserie-pink-wallcoverings-dwrw-361368",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19502_interior1.webp?v=1785138015"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44598076604467",
+ "sku": "DWRW-361368",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44598076637235",
+ "sku": "DWRW-361368-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:03.338Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7900061270067",
+ "title": "Chinoiserie, Yellow Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "chinoiserie-yellow-wallcoverings-dwrw-361369",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural",
+ "Yellow"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19504_interior1.webp?v=1785138017"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44598076670003",
+ "sku": "DWRW-361369",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44598076702771",
+ "sku": "DWRW-361369-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:08.182Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7901072293939",
+ "title": "Dreamy Reed, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "dreamy-reed-beige-wallcoverings-dwrw-361373",
+ "tags": [
+ "Beige",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20254_interior1.webp?v=1785224412"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44601581830195",
+ "sku": "DWRW-361373",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44601581862963",
+ "sku": "DWRW-361373-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:12.617Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7908224401459",
+ "title": "Flying Cranes, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-cranes-beige-wallcoverings-dwrw-361401",
+ "tags": [
+ "Beige",
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20944_interior1.jpg?v=1785656422"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44645242241075",
+ "sku": "DWRW-361401",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44645242273843",
+ "sku": "DWRW-361401-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:18.372Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187284019",
+ "title": "Flying Cranes, Black Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-cranes-black-wallcoverings-dwrw-361402",
+ "tags": [
+ "Black",
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20943_interior1.jpg?v=1785742815"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846564403",
+ "sku": "DWRW-361402",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846597171",
+ "sku": "DWRW-361402-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:24.184Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187316787",
+ "title": "Flying Cranes, Green Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-cranes-green-wallcoverings-dwrw-361403",
+ "tags": [
+ "Collection: Shutterstock",
+ "Green",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20942_interior1.jpg?v=1785742816"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846629939",
+ "sku": "DWRW-361403",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846662707",
+ "sku": "DWRW-361403-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:28.693Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187349555",
+ "title": "Flying Cranes, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-cranes-pink-wallcoverings-dwrw-361404",
+ "tags": [
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20941_interior1.jpg?v=1785742818"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846695475",
+ "sku": "DWRW-361404",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846728243",
+ "sku": "DWRW-361404-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:33.704Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187382323",
+ "title": "Flying Kolibri, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-kolibri-beige-wallcoverings-dwrw-361405",
+ "tags": [
+ "Beige",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21884_interior1.jpg?v=1785742820"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846761011",
+ "sku": "DWRW-361405",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846793779",
+ "sku": "DWRW-361405-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:37.588Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187415091",
+ "title": "Flying Kolibri, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-kolibri-blue-wallcoverings-dwrw-361406",
+ "tags": [
+ "Blue",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21885_interior1.jpg?v=1785742820"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846826547",
+ "sku": "DWRW-361406",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846859315",
+ "sku": "DWRW-361406-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:38.923Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911929053235",
+ "title": "Flying Kolibri, Green Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-kolibri-green-wallcoverings-dwrw-361407",
+ "tags": [
+ "Collection: Pops",
+ "Green",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21787_interior1.jpg?v=1785829211"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44662336028723",
+ "sku": "DWRW-361407",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44662336061491",
+ "sku": "DWRW-361407-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:40.175Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911929086003",
+ "title": "Flying Kolibri, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-kolibri-pink-wallcoverings-dwrw-361408",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21786_interior1.jpg?v=1785829212"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44662336094259",
+ "sku": "DWRW-361408",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44662336127027",
+ "sku": "DWRW-361408-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:44.030Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914094624819",
+ "title": "Forest Animals, Dark Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-animals-dark-wallcoverings-dwrw-361428",
+ "tags": [
+ "Collection: Pops",
+ "Dark",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19688_interior1.jpg?v=1786002014"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44705007861811",
+ "sku": "DWRW-361428",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44705007894579",
+ "sku": "DWRW-361428-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:48.786Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914094657587",
+ "title": "Forest Animals, Soft Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-animals-soft-wallcoverings-dwrw-361429",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Soft",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19689_interior1.webp?v=1786002016"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44705007927347",
+ "sku": "DWRW-361429",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44705007960115",
+ "sku": "DWRW-361429-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:49.397Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7923565461555",
+ "title": "Carnegie Alpine 21 Wallcovering",
+ "vendor": "Carnegie",
+ "status": "DRAFT",
+ "handle": "carnegie-alpine-alabaster-1",
+ "tags": [
+ "7362wa21",
+ "7362wa21-wallcoverings",
+ "Alabaster",
+ "Alpine",
+ "Carnegie",
+ "carnegie-split-draft",
+ "display_variant",
+ "Light",
+ "Needs-MfrSKU",
+ "split-batch:TK-10686",
+ "Wallcoverings",
+ "Woven"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/7362a21_swatch_1_8128396b-25f4-4559-94f5-5a3d93f5bd72.jpg?v=1787108045"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44754597019699",
+ "sku": "DWAG-381609",
+ "title": "Fabric",
+ "price": "52.49"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44754597052467",
+ "sku": "DWAG-381609-sample",
+ "title": "Memo Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": null,
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7896454332467",
+ "title": "Linen Madras",
+ "vendor": "Christian Fischbacher",
+ "status": "DRAFT",
+ "handle": "linen-madras",
+ "tags": [
+ "Christian Fischbacher",
+ "Collezione Italia",
+ "Collezione-Italia-Enrichment",
+ "Fabric",
+ "Fischbacher-staged-2026-07",
+ "Needs-Description",
+ "Needs-Specs",
+ "Needs-Width"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/linenmadras_10645_507_1.jpg?v=1784739044"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44585593405491",
+ "sku": "10645.500",
+ "title": "500",
+ "price": "0.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44585593438259",
+ "sku": "10645.505",
+ "title": "505",
+ "price": "0.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44585593471027",
+ "sku": "10645.507",
+ "title": "507",
+ "price": "0.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44585593503795",
+ "sku": "10645.517",
+ "title": "517",
+ "price": "0.00"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": null,
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ }
+ ],
+ "ledger": {
+ "date": "2026-09-09",
+ "used": 16
+ },
+ "audit_offset": 11384259,
+ "audit_path": "/Users/macstudio3/Projects/dw-rotation-activator/out/rotation-activations-2026-09-09.jsonl"
+}
diff --git a/verification/tk11321/live-verified-1.json b/verification/tk11321/live-verified-1.json
new file mode 100644
index 0000000..28dab00
--- /dev/null
+++ b/verification/tk11321/live-verified-1.json
@@ -0,0 +1,1445 @@
+{
+ "timestamp": "2026-09-09T18:08:53.551Z",
+ "verdict": "PASS",
+ "mutations": 0,
+ "newly_activated": 1,
+ "ledger_before": {
+ "date": "2026-09-09",
+ "used": 16
+ },
+ "ledger_after": {
+ "date": "2026-09-09",
+ "used": 17
+ },
+ "controls_still_draft": 23,
+ "activated": [
+ {
+ "ts": "2026-09-09T18:08:34.844Z",
+ "shopify_id": "gid://shopify/Product/7876272291891",
+ "vendor": "Designtex",
+ "dw_sku": "DWDX-220551",
+ "mat_tier": 0,
+ "rr": 100003,
+ "title": "August, Lemongrass Wallcoverings | Designtex",
+ "passes": true,
+ "mfr_code": "6742501",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ }
+ ],
+ "products": [
+ {
+ "id": "gid://shopify/Product/7876272291891",
+ "title": "August, Lemongrass Wallcoverings | Designtex",
+ "vendor": "Designtex",
+ "status": "ACTIVE",
+ "handle": "august-lemongrass-dwdx-220551",
+ "tags": [
+ "Designtex",
+ "display_variant",
+ "Lemongrass",
+ "Needs-Description",
+ "New Arrival",
+ "Priced Per Yard",
+ "Wallcovering"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/6742501__09641.1722974147.jpg?v=1783143622"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44490391126067",
+ "sku": "DWDX-220551",
+ "title": "Sold Per Yard",
+ "price": "70.59"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44490391158835",
+ "sku": "DWDX-220551-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:08:34.845Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7799066066995",
+ "title": "Cheetah Brown Wallcovering | Graduate Collection",
+ "vendor": "Graduate Collection UK",
+ "status": "DRAFT",
+ "handle": "cheetah-brown-wallpaper-graduate-collection",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal Print",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bird",
+ "Botanical",
+ "Boutique Hotel",
+ "Brown",
+ "Cheetah",
+ "Cheetah Brown Wallcovering",
+ "Chocolate",
+ "Commercial",
+ "Contemporary",
+ "Dark Brown",
+ "Dining Room",
+ "display_variant",
+ "Dramatic",
+ "Earth Tones",
+ "Eclectic",
+ "Emerald Green",
+ "Entertainment Room",
+ "Figurative",
+ "Glamorous",
+ "Glamour",
+ "Gold",
+ "Graduate Collection",
+ "Graduate Collection UK",
+ "Illustrative",
+ "Leopard",
+ "Living Room",
+ "Luxurious",
+ "Maximalist",
+ "Metallics",
+ "Natural Fiber",
+ "Neutrals",
+ "Non-woven",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Scenic",
+ "Sophisticated",
+ "Toucan",
+ "Tropical",
+ "Wallcovering",
+ "Warm Tones",
+ "Yellow"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cheetah-brown-wallpaper-graduate-collection-36995078750259.jpg?v=1785452517"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44118802694195",
+ "sku": "DWGC-200002-SAMPLE",
+ "title": "Sample",
+ "price": "5.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44118802726963",
+ "sku": "DWGC-200002",
+ "title": "Sold Per Roll - 20.5\" wide x 11-yds",
+ "price": "205.00"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-http-429\",\"ts\":\"2026-09-09T17:25:24.296Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7896894603315",
+ "title": "Flower Garden, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flower-garden-blue-wallcoverings-dwrw-361343",
+ "tags": [
+ "Blue",
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20373_interior1.jpg?v=1784792422"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44588275499059",
+ "sku": "DWRW-361343",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44588275531827",
+ "sku": "DWRW-361343-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:25.179Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7896894636083",
+ "title": "Flower Garden, Midnight Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flower-garden-midnight-wallcoverings-dwrw-361344",
+ "tags": [
+ "Collection: Shutterstock",
+ "Midnight",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20374_interior1.jpg?v=1784792423"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44588275564595",
+ "sku": "DWRW-361344",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44588275597363",
+ "sku": "DWRW-361344-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:30.433Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7898226098227",
+ "title": "Backwood Birds, Brown Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "backwood-birds-brown-wallcoverings-dwrw-361359",
+ "tags": [
+ "Brown",
+ "Collection: Meet a Rebel",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19261_interior1.webp?v=1784965220"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44592480419891",
+ "sku": "DWRW-361359",
+ "title": "Mural (per m²)",
+ "price": "220.75"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44592480452659",
+ "sku": "DWRW-361359-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:34.835Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7898226196531",
+ "title": "Backwood Birds, Dark Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "backwood-birds-dark-blue-wallcoverings-dwrw-361360",
+ "tags": [
+ "Collection: Meet a Rebel",
+ "Dark Blue",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19836_interior1.jpg?v=1784965221"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44592481435699",
+ "sku": "DWRW-361360",
+ "title": "Mural (per m²)",
+ "price": "220.75"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44592481468467",
+ "sku": "DWRW-361360-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:41.564Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7898678231091",
+ "title": "Backwood Birds, Sand Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "backwood-birds-sand-wallcoverings-dwrw-361361",
+ "tags": [
+ "Collection: Meet a Rebel",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Sand",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19838_interior1.jpg?v=1785051613"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44594638454835",
+ "sku": "DWRW-361361",
+ "title": "Mural (per m²)",
+ "price": "220.75"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44594638487603",
+ "sku": "DWRW-361361-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:46.556Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7898678296627",
+ "title": "Butterflies, Pastel Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "butterflies-pastel-wallcoverings-dwrw-361364",
+ "tags": [
+ "Collection: Cottage Core",
+ "Mural",
+ "Non-Woven",
+ "Pastel",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R18672_interior1.jpg?v=1785051616"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44594638585907",
+ "sku": "DWRW-361364",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44594638618675",
+ "sku": "DWRW-361364-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:52.294Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7900061204531",
+ "title": "Chinoiserie, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "chinoiserie-blue-wallcoverings-dwrw-361367",
+ "tags": [
+ "Blue",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19503_interior1.webp?v=1785138013"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44598076538931",
+ "sku": "DWRW-361367",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44598076571699",
+ "sku": "DWRW-361367-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:25:57.469Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7900061237299",
+ "title": "Chinoiserie, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "chinoiserie-pink-wallcoverings-dwrw-361368",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19502_interior1.webp?v=1785138015"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44598076604467",
+ "sku": "DWRW-361368",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44598076637235",
+ "sku": "DWRW-361368-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:03.338Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7900061270067",
+ "title": "Chinoiserie, Yellow Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "chinoiserie-yellow-wallcoverings-dwrw-361369",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural",
+ "Yellow"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19504_interior1.webp?v=1785138017"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44598076670003",
+ "sku": "DWRW-361369",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44598076702771",
+ "sku": "DWRW-361369-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:08.182Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7901072293939",
+ "title": "Dreamy Reed, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "dreamy-reed-beige-wallcoverings-dwrw-361373",
+ "tags": [
+ "Beige",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20254_interior1.webp?v=1785224412"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44601581830195",
+ "sku": "DWRW-361373",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44601581862963",
+ "sku": "DWRW-361373-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:12.617Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7908224401459",
+ "title": "Flying Cranes, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-cranes-beige-wallcoverings-dwrw-361401",
+ "tags": [
+ "Beige",
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20944_interior1.jpg?v=1785656422"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44645242241075",
+ "sku": "DWRW-361401",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44645242273843",
+ "sku": "DWRW-361401-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:18.372Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187284019",
+ "title": "Flying Cranes, Black Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-cranes-black-wallcoverings-dwrw-361402",
+ "tags": [
+ "Black",
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20943_interior1.jpg?v=1785742815"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846564403",
+ "sku": "DWRW-361402",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846597171",
+ "sku": "DWRW-361402-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:24.184Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187316787",
+ "title": "Flying Cranes, Green Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-cranes-green-wallcoverings-dwrw-361403",
+ "tags": [
+ "Collection: Shutterstock",
+ "Green",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20942_interior1.jpg?v=1785742816"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846629939",
+ "sku": "DWRW-361403",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846662707",
+ "sku": "DWRW-361403-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:28.693Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187349555",
+ "title": "Flying Cranes, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-cranes-pink-wallcoverings-dwrw-361404",
+ "tags": [
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20941_interior1.jpg?v=1785742818"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846695475",
+ "sku": "DWRW-361404",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846728243",
+ "sku": "DWRW-361404-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:33.704Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187382323",
+ "title": "Flying Kolibri, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-kolibri-beige-wallcoverings-dwrw-361405",
+ "tags": [
+ "Beige",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21884_interior1.jpg?v=1785742820"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846761011",
+ "sku": "DWRW-361405",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846793779",
+ "sku": "DWRW-361405-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:37.588Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187415091",
+ "title": "Flying Kolibri, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-kolibri-blue-wallcoverings-dwrw-361406",
+ "tags": [
+ "Blue",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21885_interior1.jpg?v=1785742820"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846826547",
+ "sku": "DWRW-361406",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846859315",
+ "sku": "DWRW-361406-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:38.923Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911929053235",
+ "title": "Flying Kolibri, Green Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-kolibri-green-wallcoverings-dwrw-361407",
+ "tags": [
+ "Collection: Pops",
+ "Green",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21787_interior1.jpg?v=1785829211"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44662336028723",
+ "sku": "DWRW-361407",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44662336061491",
+ "sku": "DWRW-361407-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:40.175Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911929086003",
+ "title": "Flying Kolibri, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-kolibri-pink-wallcoverings-dwrw-361408",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21786_interior1.jpg?v=1785829212"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44662336094259",
+ "sku": "DWRW-361408",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44662336127027",
+ "sku": "DWRW-361408-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:44.030Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914094624819",
+ "title": "Forest Animals, Dark Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-animals-dark-wallcoverings-dwrw-361428",
+ "tags": [
+ "Collection: Pops",
+ "Dark",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19688_interior1.jpg?v=1786002014"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44705007861811",
+ "sku": "DWRW-361428",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44705007894579",
+ "sku": "DWRW-361428-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:48.786Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914094657587",
+ "title": "Forest Animals, Soft Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-animals-soft-wallcoverings-dwrw-361429",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Soft",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19689_interior1.webp?v=1786002016"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44705007927347",
+ "sku": "DWRW-361429",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44705007960115",
+ "sku": "DWRW-361429-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"HELD\",\"reason\":\"vision-rate-limit-cooldown\",\"ts\":\"2026-09-09T17:26:49.397Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7923565461555",
+ "title": "Carnegie Alpine 21 Wallcovering",
+ "vendor": "Carnegie",
+ "status": "DRAFT",
+ "handle": "carnegie-alpine-alabaster-1",
+ "tags": [
+ "7362wa21",
+ "7362wa21-wallcoverings",
+ "Alabaster",
+ "Alpine",
+ "Carnegie",
+ "carnegie-split-draft",
+ "display_variant",
+ "Light",
+ "Needs-MfrSKU",
+ "split-batch:TK-10686",
+ "Wallcoverings",
+ "Woven"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/7362a21_swatch_1_8128396b-25f4-4559-94f5-5a3d93f5bd72.jpg?v=1787108045"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44754597019699",
+ "sku": "DWAG-381609",
+ "title": "Fabric",
+ "price": "52.49"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44754597052467",
+ "sku": "DWAG-381609-sample",
+ "title": "Memo Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": null,
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7896454332467",
+ "title": "Linen Madras",
+ "vendor": "Christian Fischbacher",
+ "status": "DRAFT",
+ "handle": "linen-madras",
+ "tags": [
+ "Christian Fischbacher",
+ "Collezione Italia",
+ "Collezione-Italia-Enrichment",
+ "Fabric",
+ "Fischbacher-staged-2026-07",
+ "Needs-Description",
+ "Needs-Specs",
+ "Needs-Width"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/linenmadras_10645_507_1.jpg?v=1784739044"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44585593405491",
+ "sku": "10645.500",
+ "title": "500",
+ "price": "0.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44585593438259",
+ "sku": "10645.505",
+ "title": "505",
+ "price": "0.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44585593471027",
+ "sku": "10645.507",
+ "title": "507",
+ "price": "0.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44585593503795",
+ "sku": "10645.517",
+ "title": "517",
+ "price": "0.00"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": null,
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ }
+ ],
+ "storefront": [
+ {
+ "url": "https://www.designerwallcoverings.com/products/august-lemongrass-dwdx-220551",
+ "status": 200,
+ "product_id_found": true
+ }
+ ],
+ "independent_verifier": "Separate read-only Admin API2026-07 and public PDP reads; no activation imports"
+}
diff --git a/verification/tk11321/live-verified-21.json b/verification/tk11321/live-verified-21.json
new file mode 100644
index 0000000..5888a44
--- /dev/null
+++ b/verification/tk11321/live-verified-21.json
@@ -0,0 +1,4825 @@
+{
+ "timestamp": "2026-09-09T18:12:26.931Z",
+ "verdict": "PASS",
+ "mutations": 0,
+ "newly_activated": 21,
+ "ledger_before": {
+ "date": "2026-09-09",
+ "used": 16
+ },
+ "ledger_after": {
+ "date": "2026-09-09",
+ "used": 37
+ },
+ "controls_still_draft": 23,
+ "activated": [
+ {
+ "ts": "2026-09-09T18:08:34.844Z",
+ "shopify_id": "gid://shopify/Product/7876272291891",
+ "vendor": "Designtex",
+ "dw_sku": "DWDX-220551",
+ "mat_tier": 0,
+ "rr": 100003,
+ "title": "August, Lemongrass Wallcoverings | Designtex",
+ "passes": true,
+ "mfr_code": "6742501",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:09:57.570Z",
+ "shopify_id": "gid://shopify/Product/7876647125043",
+ "vendor": "Designtex",
+ "dw_sku": "DWDX-220575",
+ "mat_tier": 0,
+ "rr": 200003,
+ "title": "Ash, Reed Wallcoverings | Designtex",
+ "passes": true,
+ "mfr_code": "6740201",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:10:03.198Z",
+ "shopify_id": "gid://shopify/Product/7879309393971",
+ "vendor": "Designtex",
+ "dw_sku": "DWDX-220655",
+ "mat_tier": 0,
+ "rr": 300003,
+ "title": "Abbott, Rivergrass Wallcoverings | Designtex",
+ "passes": true,
+ "mfr_code": "6732104",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:10:29.498Z",
+ "shopify_id": "gid://shopify/Product/7914094559283",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361419",
+ "mat_tier": 0,
+ "rr": 1900014,
+ "title": "Folk Flower, Pink Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R22080",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:10:33.195Z",
+ "shopify_id": "gid://shopify/Product/7914094592051",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361420",
+ "mat_tier": 0,
+ "rr": 2000014,
+ "title": "Folk Flower, Yellow Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R22081",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:10:39.191Z",
+ "shopify_id": "gid://shopify/Product/7914835378227",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361430",
+ "mat_tier": 0,
+ "rr": 2300014,
+ "title": "Forest Animals, Yellow Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R19687",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:10:42.729Z",
+ "shopify_id": "gid://shopify/Product/7914835410995",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361432",
+ "mat_tier": 0,
+ "rr": 2400014,
+ "title": "Forest Birds, Blue Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R20210",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:10:46.359Z",
+ "shopify_id": "gid://shopify/Product/7914835443763",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361433",
+ "mat_tier": 0,
+ "rr": 2500014,
+ "title": "Forest Birds, Pink Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R20211",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:10:49.949Z",
+ "shopify_id": "gid://shopify/Product/7914835476531",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361434",
+ "mat_tier": 0,
+ "rr": 2600014,
+ "title": "Forest Engraving, Beige Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R22120",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:10:53.700Z",
+ "shopify_id": "gid://shopify/Product/7914835509299",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361435",
+ "mat_tier": 0,
+ "rr": 2700014,
+ "title": "Forest Engraving, Blue Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R22121",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:10:57.448Z",
+ "shopify_id": "gid://shopify/Product/7915820023859",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361436",
+ "mat_tier": 0,
+ "rr": 2800014,
+ "title": "Forest Engraving, Green Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R22122",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:11:01.229Z",
+ "shopify_id": "gid://shopify/Product/7915820056627",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361437",
+ "mat_tier": 0,
+ "rr": 2900014,
+ "title": "Forest Engraving, Vintage Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R22123",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:11:06.694Z",
+ "shopify_id": "gid://shopify/Product/7915820122163",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361438",
+ "mat_tier": 0,
+ "rr": 3000014,
+ "title": "Forest Friends Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R19911",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:11:10.263Z",
+ "shopify_id": "gid://shopify/Product/7915820187699",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361442",
+ "mat_tier": 0,
+ "rr": 3100014,
+ "title": "Forest Memories, Graphite Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R19839",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:11:13.908Z",
+ "shopify_id": "gid://shopify/Product/7916139085875",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361443",
+ "mat_tier": 0,
+ "rr": 3200014,
+ "title": "Forest of Dreams, Beige Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R21993",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:11:17.630Z",
+ "shopify_id": "gid://shopify/Product/7916139118643",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361444",
+ "mat_tier": 0,
+ "rr": 3300014,
+ "title": "Forest of Dreams, Black Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R21992",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:11:21.277Z",
+ "shopify_id": "gid://shopify/Product/7916139184179",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361446",
+ "mat_tier": 0,
+ "rr": 3400014,
+ "title": "Forest of Dreams, Pink Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R21990",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:11:25.789Z",
+ "shopify_id": "gid://shopify/Product/7916139216947",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361447",
+ "mat_tier": 0,
+ "rr": 3500014,
+ "title": "Forest Park, Blue Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R19872",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:11:30.093Z",
+ "shopify_id": "gid://shopify/Product/7916513001523",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361448",
+ "mat_tier": 0,
+ "rr": 3600014,
+ "title": "Forest Park, Graphite Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R19871",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:11:33.599Z",
+ "shopify_id": "gid://shopify/Product/7916513034291",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361449",
+ "mat_tier": 0,
+ "rr": 3700014,
+ "title": "Forest Park, Green Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R19918",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ },
+ {
+ "ts": "2026-09-09T18:11:37.187Z",
+ "shopify_id": "gid://shopify/Product/7916513067059",
+ "vendor": "Rebel Walls",
+ "dw_sku": "DWRW-361451",
+ "mat_tier": 0,
+ "rr": 3800014,
+ "title": "Forest Poem, Black Wallcoverings | Rebel Walls",
+ "passes": true,
+ "mfr_code": "R21335",
+ "width_source": "global.width",
+ "reasons": [],
+ "settlement": {
+ "verdict": "SKIPPED_BY_OWNER",
+ "tier": "owner-authorized-vendor",
+ "reason": "owner-authorized-no-gemini:TK-11321",
+ "cost": 0,
+ "diagnostics": null,
+ "retryAt": null,
+ "review_performed": false,
+ "authorization": {
+ "ticket": "TK-11321",
+ "approved_by": "Steve",
+ "instruction": "skip gemeni and go"
+ }
+ },
+ "action": "activated",
+ "published": true,
+ "tag": "New Arrival"
+ }
+ ],
+ "products": [
+ {
+ "id": "gid://shopify/Product/7876272291891",
+ "title": "August, Lemongrass Wallcoverings | Designtex",
+ "vendor": "Designtex",
+ "status": "ACTIVE",
+ "handle": "august-lemongrass-dwdx-220551",
+ "tags": [
+ "Designtex",
+ "display_variant",
+ "Lemongrass",
+ "Needs-Description",
+ "New Arrival",
+ "Priced Per Yard",
+ "Wallcovering"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/6742501__09641.1722974147.jpg?v=1783143622"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44490391126067",
+ "sku": "DWDX-220551",
+ "title": "Sold Per Yard",
+ "price": "70.59"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44490391158835",
+ "sku": "DWDX-220551-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:08:34.845Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7876647125043",
+ "title": "Ash, Reed Wallcoverings | Designtex",
+ "vendor": "Designtex",
+ "status": "ACTIVE",
+ "handle": "ash-reed-dwdx-220575",
+ "tags": [
+ "Designtex",
+ "display_variant",
+ "Needs-Description",
+ "New Arrival",
+ "Priced Per Yard",
+ "Reed",
+ "Wallcovering"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/6740201__46717.1722971758.jpg?v=1783237229"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44491896324147",
+ "sku": "DWDX-220575",
+ "title": "Sold Per Yard",
+ "price": "70.59"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44491896356915",
+ "sku": "DWDX-220575-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:09:57.570Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7879309393971",
+ "title": "Abbott, Rivergrass Wallcoverings | Designtex",
+ "vendor": "Designtex",
+ "status": "ACTIVE",
+ "handle": "abbott-rivergrass-dwdx-220655",
+ "tags": [
+ "Designtex",
+ "display_variant",
+ "Needs-Description",
+ "New Arrival",
+ "Priced Per Yard",
+ "Rivergrass",
+ "Wallcovering"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/6732104__05324.1722347808.jpg?v=1783528828"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44501828796467",
+ "sku": "DWDX-220655",
+ "title": "Sold Per Yard",
+ "price": "56.11"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44501828829235",
+ "sku": "DWDX-220655-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:10:03.198Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914094559283",
+ "title": "Folk Flower, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "folk-flower-pink-wallcoverings-dwrw-361419",
+ "tags": [
+ "Collection: Botanical Gardens",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R22080_interior1.webp?v=1786002012"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44705007730739",
+ "sku": "DWRW-361419",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44705007763507",
+ "sku": "DWRW-361419-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:10:29.498Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914094592051",
+ "title": "Folk Flower, Yellow Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "folk-flower-yellow-wallcoverings-dwrw-361420",
+ "tags": [
+ "Collection: Botanical Gardens",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural",
+ "Yellow"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R22081_interior1.webp?v=1786002013"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44705007796275",
+ "sku": "DWRW-361420",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44705007829043",
+ "sku": "DWRW-361420-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:10:33.195Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914835378227",
+ "title": "Forest Animals, Yellow Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-animals-yellow-wallcoverings-dwrw-361430",
+ "tags": [
+ "Collection: Pops",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural",
+ "Yellow"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19687_interior1.jpg?v=1786088412"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44708414980147",
+ "sku": "DWRW-361430",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44708415012915",
+ "sku": "DWRW-361430-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:10:39.191Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914835410995",
+ "title": "Forest Birds, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-birds-blue-wallcoverings-dwrw-361432",
+ "tags": [
+ "Blue",
+ "Collection: Shutterstock",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20210_interior1.jpg?v=1786088413"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44708415045683",
+ "sku": "DWRW-361432",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44708415078451",
+ "sku": "DWRW-361432-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:10:42.729Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914835443763",
+ "title": "Forest Birds, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-birds-pink-wallcoverings-dwrw-361433",
+ "tags": [
+ "Collection: Shutterstock",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20211_interior1.webp?v=1786088413"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44708415111219",
+ "sku": "DWRW-361433",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44708415143987",
+ "sku": "DWRW-361433-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:10:46.360Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914835476531",
+ "title": "Forest Engraving, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-engraving-beige-wallcoverings-dwrw-361434",
+ "tags": [
+ "Beige",
+ "Collection: Pops",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R22120_interior1.jpg?v=1786088416"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44708415176755",
+ "sku": "DWRW-361434",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44708415209523",
+ "sku": "DWRW-361434-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:10:49.949Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914835509299",
+ "title": "Forest Engraving, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-engraving-blue-wallcoverings-dwrw-361435",
+ "tags": [
+ "Blue",
+ "Collection: Pops",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R22121_interior1.jpg?v=1786088416"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44708415242291",
+ "sku": "DWRW-361435",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44708415275059",
+ "sku": "DWRW-361435-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:10:53.700Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7915820023859",
+ "title": "Forest Engraving, Green Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-engraving-green-wallcoverings-dwrw-361436",
+ "tags": [
+ "Collection: Pops",
+ "display_variant",
+ "Green",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R22122_interior1.jpg?v=1786207213"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44716885180467",
+ "sku": "DWRW-361436",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44716885213235",
+ "sku": "DWRW-361436-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:10:57.449Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7915820056627",
+ "title": "Forest Engraving, Vintage Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-engraving-vintage-wallcoverings-dwrw-361437",
+ "tags": [
+ "Collection: Pops",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Vintage",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R22123_interior1.jpg?v=1786207215"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44716885246003",
+ "sku": "DWRW-361437",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44716885278771",
+ "sku": "DWRW-361437-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:11:01.229Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7915820122163",
+ "title": "Forest Friends Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-friends-wallcoverings-dwrw-361438",
+ "tags": [
+ "Collection: Shutterstock",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19911_interior1.jpg?v=1786207216"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44716885344307",
+ "sku": "DWRW-361438",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44716885377075",
+ "sku": "DWRW-361438-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:11:06.694Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7915820187699",
+ "title": "Forest Memories, Graphite Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-memories-graphite-wallcoverings-dwrw-361442",
+ "tags": [
+ "Collection: Meet a Rebel",
+ "display_variant",
+ "Graphite",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19839_interior1.jpg?v=1786207218"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44716885475379",
+ "sku": "DWRW-361442",
+ "title": "Mural (per m²)",
+ "price": "220.75"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44716885508147",
+ "sku": "DWRW-361442-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:11:10.263Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916139085875",
+ "title": "Forest of Dreams, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-of-dreams-beige-wallcoverings-dwrw-361443",
+ "tags": [
+ "Beige",
+ "Collection: Sophisticated Luxe",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21993_interior1.webp?v=1786261209"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44718812299315",
+ "sku": "DWRW-361443",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44718812332083",
+ "sku": "DWRW-361443-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:11:13.908Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916139118643",
+ "title": "Forest of Dreams, Black Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-of-dreams-black-wallcoverings-dwrw-361444",
+ "tags": [
+ "Black",
+ "Collection: Sophisticated Luxe",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21992_interior1.webp?v=1786261211"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44718812364851",
+ "sku": "DWRW-361444",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44718812397619",
+ "sku": "DWRW-361444-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:11:17.630Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916139184179",
+ "title": "Forest of Dreams, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-of-dreams-pink-wallcoverings-dwrw-361446",
+ "tags": [
+ "Collection: Sophisticated Luxe",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21990_interior2.jpg?v=1786261214"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44718812495923",
+ "sku": "DWRW-361446",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44718812528691",
+ "sku": "DWRW-361446-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:11:21.277Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916139216947",
+ "title": "Forest Park, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-park-blue-wallcoverings-dwrw-361447",
+ "tags": [
+ "Blue",
+ "Collection: Shutterstock",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19872_interior1.jpg?v=1786261215"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44718812561459",
+ "sku": "DWRW-361447",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44718812594227",
+ "sku": "DWRW-361447-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:11:25.789Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916513001523",
+ "title": "Forest Park, Graphite Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-park-graphite-wallcoverings-dwrw-361448",
+ "tags": [
+ "Collection: Shutterstock",
+ "display_variant",
+ "Graphite",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19871_interior1.jpg?v=1786347611"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44722627051571",
+ "sku": "DWRW-361448",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44722627084339",
+ "sku": "DWRW-361448-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:11:30.093Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916513034291",
+ "title": "Forest Park, Green Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-park-green-wallcoverings-dwrw-361449",
+ "tags": [
+ "Collection: Shutterstock",
+ "display_variant",
+ "Green",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19918_interior1.jpg?v=1786347613"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44722627117107",
+ "sku": "DWRW-361449",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44722627149875",
+ "sku": "DWRW-361449-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:11:33.599Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7916513067059",
+ "title": "Forest Poem, Black Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "ACTIVE",
+ "handle": "forest-poem-black-wallcoverings-dwrw-361451",
+ "tags": [
+ "Black",
+ "Collection: Sophisticated Luxe",
+ "display_variant",
+ "Mural",
+ "New Arrival",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21335_interior1.webp?v=1786347613"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44722627182643",
+ "sku": "DWRW-361451",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44722627215411",
+ "sku": "DWRW-361451-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"SKIPPED_BY_OWNER\",\"reason\":\"owner-authorized-no-gemini:TK-11321\",\"ts\":\"2026-09-09T18:11:37.187Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22208643184",
+ "name": "Online Store"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/22497296496",
+ "name": "Buy Button"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29739483201",
+ "name": "Facebook & Instagram"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/29776969793",
+ "name": "Houzz"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/37904089153",
+ "name": "Point of Sale"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/43657658419",
+ "name": "Fabricut"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44234276915",
+ "name": "Pinterest"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317474867",
+ "name": "Rakuten Ichiba (JP)"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/44317507635",
+ "name": "Shop"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/71898464307",
+ "name": "Inbox"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/115856375859",
+ "name": "TikTok"
+ }
+ },
+ {
+ "isPublished": true,
+ "publication": {
+ "id": "gid://shopify/Publication/140027723827",
+ "name": "DWAutoPostBlog"
+ }
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7799066066995",
+ "title": "Cheetah Brown Wallcovering | Graduate Collection",
+ "vendor": "Graduate Collection UK",
+ "status": "DRAFT",
+ "handle": "cheetah-brown-wallpaper-graduate-collection",
+ "tags": [
+ "AI-Analyzed-v2",
+ "Animal Print",
+ "Animal/Insects",
+ "Architectural",
+ "Bedroom",
+ "Beige",
+ "Bird",
+ "Botanical",
+ "Boutique Hotel",
+ "Brown",
+ "Cheetah",
+ "Cheetah Brown Wallcovering",
+ "Chocolate",
+ "Commercial",
+ "Contemporary",
+ "Dark Brown",
+ "Dining Room",
+ "display_variant",
+ "Dramatic",
+ "Earth Tones",
+ "Eclectic",
+ "Emerald Green",
+ "Entertainment Room",
+ "Figurative",
+ "Glamorous",
+ "Glamour",
+ "Gold",
+ "Graduate Collection",
+ "Graduate Collection UK",
+ "Illustrative",
+ "Leopard",
+ "Living Room",
+ "Luxurious",
+ "Maximalist",
+ "Metallics",
+ "Natural Fiber",
+ "Neutrals",
+ "Non-woven",
+ "Paper",
+ "Pattern",
+ "Peach",
+ "Scenic",
+ "Sophisticated",
+ "Toucan",
+ "Tropical",
+ "Wallcovering",
+ "Warm Tones",
+ "Yellow"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/cheetah-brown-wallpaper-graduate-collection-36995078750259.jpg?v=1785452517"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44118802694195",
+ "sku": "DWGC-200002-SAMPLE",
+ "title": "Sample",
+ "price": "5.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44118802726963",
+ "sku": "DWGC-200002",
+ "title": "Sold Per Roll - 20.5\" wide x 11-yds",
+ "price": "205.00"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:09:55.477Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7896894603315",
+ "title": "Flower Garden, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flower-garden-blue-wallcoverings-dwrw-361343",
+ "tags": [
+ "Blue",
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20373_interior1.jpg?v=1784792422"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44588275499059",
+ "sku": "DWRW-361343",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44588275531827",
+ "sku": "DWRW-361343-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:09:56.328Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7896894636083",
+ "title": "Flower Garden, Midnight Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flower-garden-midnight-wallcoverings-dwrw-361344",
+ "tags": [
+ "Collection: Shutterstock",
+ "Midnight",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20374_interior1.jpg?v=1784792423"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44588275564595",
+ "sku": "DWRW-361344",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44588275597363",
+ "sku": "DWRW-361344-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:01.967Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7898226098227",
+ "title": "Backwood Birds, Brown Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "backwood-birds-brown-wallcoverings-dwrw-361359",
+ "tags": [
+ "Brown",
+ "Collection: Meet a Rebel",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19261_interior1.webp?v=1784965220"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44592480419891",
+ "sku": "DWRW-361359",
+ "title": "Mural (per m²)",
+ "price": "220.75"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44592480452659",
+ "sku": "DWRW-361359-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:06.823Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7898226196531",
+ "title": "Backwood Birds, Dark Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "backwood-birds-dark-blue-wallcoverings-dwrw-361360",
+ "tags": [
+ "Collection: Meet a Rebel",
+ "Dark Blue",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19836_interior1.jpg?v=1784965221"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44592481435699",
+ "sku": "DWRW-361360",
+ "title": "Mural (per m²)",
+ "price": "220.75"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44592481468467",
+ "sku": "DWRW-361360-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:09.838Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7898678231091",
+ "title": "Backwood Birds, Sand Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "backwood-birds-sand-wallcoverings-dwrw-361361",
+ "tags": [
+ "Collection: Meet a Rebel",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Sand",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19838_interior1.jpg?v=1785051613"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44594638454835",
+ "sku": "DWRW-361361",
+ "title": "Mural (per m²)",
+ "price": "220.75"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44594638487603",
+ "sku": "DWRW-361361-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:11.645Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7898678296627",
+ "title": "Butterflies, Pastel Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "butterflies-pastel-wallcoverings-dwrw-361364",
+ "tags": [
+ "Collection: Cottage Core",
+ "Mural",
+ "Non-Woven",
+ "Pastel",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R18672_interior1.jpg?v=1785051616"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44594638585907",
+ "sku": "DWRW-361364",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44594638618675",
+ "sku": "DWRW-361364-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:13.451Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7900061204531",
+ "title": "Chinoiserie, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "chinoiserie-blue-wallcoverings-dwrw-361367",
+ "tags": [
+ "Blue",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19503_interior1.webp?v=1785138013"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44598076538931",
+ "sku": "DWRW-361367",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44598076571699",
+ "sku": "DWRW-361367-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:15.332Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7900061237299",
+ "title": "Chinoiserie, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "chinoiserie-pink-wallcoverings-dwrw-361368",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19502_interior1.webp?v=1785138015"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44598076604467",
+ "sku": "DWRW-361368",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44598076637235",
+ "sku": "DWRW-361368-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:17.797Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7900061270067",
+ "title": "Chinoiserie, Yellow Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "chinoiserie-yellow-wallcoverings-dwrw-361369",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural",
+ "Yellow"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19504_interior1.webp?v=1785138017"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44598076670003",
+ "sku": "DWRW-361369",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44598076702771",
+ "sku": "DWRW-361369-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:19.057Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7901072293939",
+ "title": "Dreamy Reed, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "dreamy-reed-beige-wallcoverings-dwrw-361373",
+ "tags": [
+ "Beige",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20254_interior1.webp?v=1785224412"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44601581830195",
+ "sku": "DWRW-361373",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44601581862963",
+ "sku": "DWRW-361373-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:20.285Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7908224401459",
+ "title": "Flying Cranes, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-cranes-beige-wallcoverings-dwrw-361401",
+ "tags": [
+ "Beige",
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20944_interior1.jpg?v=1785656422"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44645242241075",
+ "sku": "DWRW-361401",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44645242273843",
+ "sku": "DWRW-361401-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:21.538Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187284019",
+ "title": "Flying Cranes, Black Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-cranes-black-wallcoverings-dwrw-361402",
+ "tags": [
+ "Black",
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20943_interior1.jpg?v=1785742815"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846564403",
+ "sku": "DWRW-361402",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846597171",
+ "sku": "DWRW-361402-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:22.737Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187316787",
+ "title": "Flying Cranes, Green Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-cranes-green-wallcoverings-dwrw-361403",
+ "tags": [
+ "Collection: Shutterstock",
+ "Green",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20942_interior1.jpg?v=1785742816"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846629939",
+ "sku": "DWRW-361403",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846662707",
+ "sku": "DWRW-361403-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:25.112Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187349555",
+ "title": "Flying Cranes, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-cranes-pink-wallcoverings-dwrw-361404",
+ "tags": [
+ "Collection: Shutterstock",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R20941_interior1.jpg?v=1785742818"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846695475",
+ "sku": "DWRW-361404",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846728243",
+ "sku": "DWRW-361404-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:26.327Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187382323",
+ "title": "Flying Kolibri, Beige Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-kolibri-beige-wallcoverings-dwrw-361405",
+ "tags": [
+ "Beige",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21884_interior1.jpg?v=1785742820"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846761011",
+ "sku": "DWRW-361405",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846793779",
+ "sku": "DWRW-361405-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:26.955Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911187415091",
+ "title": "Flying Kolibri, Blue Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-kolibri-blue-wallcoverings-dwrw-361406",
+ "tags": [
+ "Blue",
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21885_interior1.jpg?v=1785742820"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44658846826547",
+ "sku": "DWRW-361406",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44658846859315",
+ "sku": "DWRW-361406-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:27.588Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911929053235",
+ "title": "Flying Kolibri, Green Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-kolibri-green-wallcoverings-dwrw-361407",
+ "tags": [
+ "Collection: Pops",
+ "Green",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21787_interior1.jpg?v=1785829211"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44662336028723",
+ "sku": "DWRW-361407",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44662336061491",
+ "sku": "DWRW-361407-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:28.210Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7911929086003",
+ "title": "Flying Kolibri, Pink Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "flying-kolibri-pink-wallcoverings-dwrw-361408",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Pink",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R21786_interior1.jpg?v=1785829212"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44662336094259",
+ "sku": "DWRW-361408",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44662336127027",
+ "sku": "DWRW-361408-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:28.856Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914094624819",
+ "title": "Forest Animals, Dark Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-animals-dark-wallcoverings-dwrw-361428",
+ "tags": [
+ "Collection: Pops",
+ "Dark",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19688_interior1.jpg?v=1786002014"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44705007861811",
+ "sku": "DWRW-361428",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44705007894579",
+ "sku": "DWRW-361428-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:37.977Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7914094657587",
+ "title": "Forest Animals, Soft Wallcoverings | Rebel Walls",
+ "vendor": "Rebel Walls",
+ "status": "DRAFT",
+ "handle": "forest-animals-soft-wallcoverings-dwrw-361429",
+ "tags": [
+ "Collection: Pops",
+ "Mural",
+ "Non-Woven",
+ "Priced Per Square Meter",
+ "Rebel Walls",
+ "Soft",
+ "Wall Mural"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/R19689_interior1.webp?v=1786002016"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44705007927347",
+ "sku": "DWRW-361429",
+ "title": "Mural (per m²)",
+ "price": "191.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44705007960115",
+ "sku": "DWRW-361429-Sample",
+ "title": "Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": {
+ "value": "{\"verdict\":\"BLOCK\",\"reason\":\"historical-settlement-block\",\"ts\":\"2026-09-09T18:10:38.589Z\",\"by\":\"dw-rotation-activator\"}"
+ },
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7923565461555",
+ "title": "Carnegie Alpine 21 Wallcovering",
+ "vendor": "Carnegie",
+ "status": "DRAFT",
+ "handle": "carnegie-alpine-alabaster-1",
+ "tags": [
+ "7362wa21",
+ "7362wa21-wallcoverings",
+ "Alabaster",
+ "Alpine",
+ "Carnegie",
+ "carnegie-split-draft",
+ "display_variant",
+ "Light",
+ "Needs-MfrSKU",
+ "split-batch:TK-10686",
+ "Wallcoverings",
+ "Woven"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/7362a21_swatch_1_8128396b-25f4-4559-94f5-5a3d93f5bd72.jpg?v=1787108045"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44754597019699",
+ "sku": "DWAG-381609",
+ "title": "Fabric",
+ "price": "52.49"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44754597052467",
+ "sku": "DWAG-381609-sample",
+ "title": "Memo Sample",
+ "price": "4.25"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": null,
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ },
+ {
+ "id": "gid://shopify/Product/7896454332467",
+ "title": "Linen Madras",
+ "vendor": "Christian Fischbacher",
+ "status": "DRAFT",
+ "handle": "linen-madras",
+ "tags": [
+ "Christian Fischbacher",
+ "Collezione Italia",
+ "Collezione-Italia-Enrichment",
+ "Fabric",
+ "Fischbacher-staged-2026-07",
+ "Needs-Description",
+ "Needs-Specs",
+ "Needs-Width"
+ ],
+ "images": {
+ "nodes": [
+ {
+ "url": "https://cdn.shopify.com/s/files/1/0015/4117/7456/files/linenmadras_10645_507_1.jpg?v=1784739044"
+ }
+ ]
+ },
+ "variants": {
+ "nodes": [
+ {
+ "id": "gid://shopify/ProductVariant/44585593405491",
+ "sku": "10645.500",
+ "title": "500",
+ "price": "0.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44585593438259",
+ "sku": "10645.505",
+ "title": "505",
+ "price": "0.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44585593471027",
+ "sku": "10645.507",
+ "title": "507",
+ "price": "0.00"
+ },
+ {
+ "id": "gid://shopify/ProductVariant/44585593503795",
+ "sku": "10645.517",
+ "title": "517",
+ "price": "0.00"
+ }
+ ],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ },
+ "review": null,
+ "googlePublished": false,
+ "resourcePublicationsV2": {
+ "nodes": [],
+ "pageInfo": {
+ "hasNextPage": false
+ }
+ }
+ }
+ ],
+ "storefront": [
+ {
+ "url": "https://www.designerwallcoverings.com/products/august-lemongrass-dwdx-220551",
+ "status": 200,
+ "product_id_found": true
+ },
+ {
+ "url": "https://www.designerwallcoverings.com/products/forest-poem-black-wallcoverings-dwrw-361451",
+ "status": 200,
+ "product_id_found": true
+ }
+ ],
+ "independent_verifier": "Separate read-only Admin API2026-07 and public PDP reads; no activation imports"
+}
diff --git a/verification/tk11321/loaded-schedule.json b/verification/tk11321/loaded-schedule.json
new file mode 100644
index 0000000..d8a42db
--- /dev/null
+++ b/verification/tk11321/loaded-schedule.json
@@ -0,0 +1,12 @@
+{
+ "loaded": true,
+ "selected_fields": [
+ "state = not running",
+ "runs = 554",
+ "last exit code = 0",
+ "\"Minute\" => 25",
+ "state = active",
+ "state = active"
+ ],
+ "unchanged": true
+}
diff --git a/verification/tk11321/rollback-rehearsal.json b/verification/tk11321/rollback-rehearsal.json
new file mode 100644
index 0000000..32a0465
--- /dev/null
+++ b/verification/tk11321/rollback-rehearsal.json
@@ -0,0 +1,6 @@
+{
+ "verdict": "PASS",
+ "files": 6,
+ "method": "Disposable-copy restoration of exact preimages followed by exact reviewed-byte reapplication",
+ "production_mutations": 0
+}
← 3d2ba05 Skip Gemini for Steve-authorized vendor drafts while preserv
·
back to Dw Gemini Skip TK11321
·
(newest)