← back to Dw Wallpaper Cleanup
add revert_all.py — reverse this session's Wallcovering cleanup back to Wallpaper (Steve reversed)
a4746193596432fba71174e83bec7afbe6a8f01a · 2026-06-22 12:16:28 -0700 · Steve
Files touched
A __pycache__/revert_all.cpython-314.pycA revert_all.pyA revert_plan.json
Diff
commit a4746193596432fba71174e83bec7afbe6a8f01a
Author: Steve <steve@designerwallcoverings.com>
Date: Mon Jun 22 12:16:28 2026 -0700
add revert_all.py — reverse this session's Wallcovering cleanup back to Wallpaper (Steve reversed)
---
__pycache__/revert_all.cpython-314.pyc | Bin 0 -> 17672 bytes
revert_all.py | 265 ++
revert_plan.json | 6730 ++++++++++++++++++++++++++++++++
3 files changed, 6995 insertions(+)
diff --git a/__pycache__/revert_all.cpython-314.pyc b/__pycache__/revert_all.cpython-314.pyc
new file mode 100644
index 0000000..a382e1d
Binary files /dev/null and b/__pycache__/revert_all.cpython-314.pyc differ
diff --git a/revert_all.py b/revert_all.py
new file mode 100644
index 0000000..65a002e
--- /dev/null
+++ b/revert_all.py
@@ -0,0 +1,265 @@
+#!/usr/bin/env python3
+"""REVERT — Steve reversed the banned-word cleanup. Keep "Wallpaper".
+
+Reverses EXACTLY what THIS session's Job 1 (tags) and Job 2 (generic vendors +
+coupled smart-collection VENDOR rules) changed. DTD verdict A (2026-06-22):
+full revert so ZERO "...Wallcoverings" survives for the generic vendors, in
+BOTH Postgres (source of truth) AND Shopify, PG-first.
+
+Surgical scope:
+ TAGS — only the tokens Job 1 added, reversed per-product from
+ job1_apply-rest.json + job1_canary.json (238 products).
+ VENDOR — the 5 generic vendors only:
+ PS Removable Wallcoverings -> PS Removable Wallpaper (no coupled coll)
+ DW Exclusive Wallcoverings -> DW Exclusive Wallpaper (no coupled coll)
+ Apartment Wallcoverings -> Apartment Wallpaper (2 coupled colls)
+ Wallcovering NYC -> Wallpaper NYC (1 coupled coll)
+ Malibu Wallcoverings -> Malibu Wallpaper (1 coupled coll, disjunctive)
+ HELD — Scalamandre/Roberto Cavalli/Laura Ashley/Missoni/MC Escher Wallpaper:
+ never touched, never touched here.
+
+PG-first, then Shopify. ACTIVE-and-all-status (matches how they were renamed).
+Vendor/tag edits create NO variants. Idempotent + synchronous + rate-limited.
+$0 (free Shopify Admin API + local psql).
+"""
+import json, re, sys, time, subprocess, urllib.request, urllib.error
+from collections import Counter
+
+TOKEN = subprocess.check_output(
+ "grep -E '^SHOPIFY_ADMIN_TOKEN=' ~/Projects/secrets-manager/.env | cut -d= -f2",
+ shell=True, text=True).strip()
+DOMAIN = "designer-laboratory-sandbox.myshopify.com"
+URL = f"https://{DOMAIN}/admin/api/2024-10/graphql.json"
+HERE = "/Users/stevestudio2/Projects/dw-wallpaper-cleanup"
+
+# ---- generic vendor reverts: new(current) -> old(restore) ----
+VENDOR_REVERT = {
+ "PS Removable Wallcoverings": "PS Removable Wallpaper",
+ "DW Exclusive Wallcoverings": "DW Exclusive Wallpaper",
+ "Apartment Wallcoverings": "Apartment Wallpaper",
+ "Wallcovering NYC": "Wallpaper NYC",
+ "Malibu Wallcoverings": "Malibu Wallpaper",
+}
+# coupled smart-collection VENDOR rule reverts: collection gid -> (current_cond -> restore_cond)
+COUPLED = {
+ "gid://shopify/Collection/298970972211": ("Apartment Wallcoverings", "Apartment Wallpaper"),
+ "gid://shopify/Collection/299533828147": ("Apartment Wallcoverings", "Apartment Wallpaper"),
+ "gid://shopify/Collection/298971430963": ("Wallcovering NYC", "Wallpaper NYC"),
+ "gid://shopify/Collection/298507403315": ("Malibu Wallcoverings", "Malibu Wallpaper"),
+}
+HELD = ["Scalamandre Wallpaper", "Roberto Cavalli Wallpaper", "Laura Ashley Wallpaper",
+ "Missoni Wallpaper", "MC Escher Wallpaper"]
+
+
+def gql(q, v=None):
+ body = {"query": q}
+ if v is not None:
+ body["variables"] = v
+ req = urllib.request.Request(URL, data=json.dumps(body).encode(),
+ headers={"X-Shopify-Access-Token": TOKEN, "Content-Type": "application/json"})
+ for a in range(8):
+ try:
+ d = json.load(urllib.request.urlopen(req, timeout=60))
+ cost = d.get("extensions", {}).get("cost", {}).get("throttleStatus", {})
+ if cost.get("currentlyAvailable", 4000) < 400:
+ time.sleep(2)
+ return d
+ except urllib.error.HTTPError as e:
+ if e.code == 429:
+ time.sleep(3 * (a + 1)); continue
+ time.sleep(2 * (a + 1))
+ except Exception:
+ time.sleep(2 * (a + 1))
+ raise RuntimeError("gql failed")
+
+
+def psql(sql):
+ subprocess.run(["psql", "-d", "dw_unified", "-v", "ON_ERROR_STOP=1", "-c", sql],
+ check=True, capture_output=True, text=True)
+
+
+def vcount_all(v):
+ return gql('{ productsCount(query:%s){count} }' % json.dumps('vendor:"%s"' % v))["data"]["productsCount"]["count"]
+
+
+# ============================ JOB 1 REVERT: TAGS ============================
+TAGS_ADD = """mutation($id:ID!,$tags:[String!]!){ tagsAdd(id:$id, tags:$tags){ userErrors{field message} } }"""
+TAGS_REMOVE = """mutation($id:ID!,$tags:[String!]!){ tagsRemove(id:$id, tags:$tags){ userErrors{field message} } }"""
+
+
+def load_tag_changes():
+ """Merge canary(3) + apply-rest(235) = 238 per-product Job-1 records."""
+ recs = []
+ for fn in ("job1_canary.json", "job1_apply-rest.json"):
+ recs += json.load(open(f"{HERE}/{fn}"))
+ # only APPLIED records carry a real add/remove to reverse
+ out = []
+ for r in recs:
+ if r.get("status") != "APPLIED":
+ continue
+ out.append(r)
+ return out
+
+
+def fetch_tags(pid):
+ q = '{ product(id:"%s"){ id status tags } }' % pid
+ return gql(q)["data"]["product"]
+
+
+def _revert_one_tag(c, apply=False, gap=0.6):
+ pid = c["id"]
+ to_remove = c["added"]
+ to_add = c["removed"]
+ node = fetch_tags(pid)
+ if not node:
+ return {"id": pid, "status": "NOT_FOUND"}
+ cur = set(node["tags"])
+ still_added = [t for t in to_remove if t in cur]
+ already = all(t in cur for t in to_add) and not still_added
+ if already:
+ return {"id": pid, "handle": c.get("handle"), "status": "ALREADY_REVERTED"}
+ final = [t for t in node["tags"] if t not in to_remove]
+ for t in to_add:
+ if t not in final:
+ final.append(t)
+ rec = {"id": pid, "handle": c.get("handle"),
+ "remove": to_remove, "add": to_add, "final": final, "status": "PLANNED"}
+ if apply:
+ num = pid.rsplit("/", 1)[-1]
+ gid = f"gid://shopify/Product/{num}"
+ tagstr = ", ".join(final).replace("'", "''")
+ psql("UPDATE shopify_products SET tags='%s' WHERE shopify_id='%s' OR shopify_id='%s';"
+ % (tagstr, num, gid))
+ ra = gql(TAGS_ADD, {"id": pid, "tags": to_add})["data"]["tagsAdd"]["userErrors"]
+ rr = gql(TAGS_REMOVE, {"id": pid, "tags": to_remove})["data"]["tagsRemove"]["userErrors"]
+ rec["status"] = "REVERTED" if not ra and not rr else "ERROR"
+ if ra or rr:
+ rec["errors"] = {"add": ra, "remove": rr}
+ time.sleep(gap)
+ return rec
+
+
+def revert_tags(apply=False, gap=0.6):
+ changes = load_tag_changes()
+ results = []
+ for i, c in enumerate(changes):
+ results.append(_revert_one_tag(c, apply=apply, gap=gap))
+ if (i + 1) % 25 == 0:
+ sys.stderr.write(f" tags {i+1}/{len(changes)}\n")
+ return results
+
+
+# ====================== JOB 2 REVERT: VENDORS + RULES ======================
+PROD_UPDATE = """mutation($input:ProductInput!){ productUpdate(input:$input){ product{id vendor} userErrors{field message} } }"""
+COLL_RULE_Q = """{ collection(id:"%s"){ id title ruleSet{ appliedDisjunctively rules{ column relation condition } } } }"""
+COLL_UPDATE = """mutation($input:CollectionInput!){ collectionUpdate(input:$input){ collection{id title} userErrors{field message} } }"""
+
+
+def revert_collection_rule(gid, cur_cond, restore_cond, apply=False):
+ c = gql(COLL_RULE_Q % gid)["data"]["collection"]
+ rs = c.get("ruleSet")
+ if not rs:
+ return {"coll": gid, "action": "NO_RULESET"}
+ rules = rs["rules"]
+ has_cur = any(r["column"] == "VENDOR" and r["relation"] == "EQUALS" and r["condition"] == cur_cond for r in rules)
+ has_restore = any(r["column"] == "VENDOR" and r["relation"] == "EQUALS" and r["condition"] == restore_cond for r in rules)
+ if has_restore and not has_cur:
+ return {"coll": c["title"], "action": "ALREADY_REVERTED"}
+ if not has_cur:
+ return {"coll": c["title"], "action": "CUR_RULE_NOT_FOUND"}
+ new_rules = []
+ for r in rules:
+ if r["column"] == "VENDOR" and r["relation"] == "EQUALS" and r["condition"] == cur_cond:
+ if not has_restore:
+ new_rules.append({"column": "VENDOR", "relation": "EQUALS", "condition": restore_cond})
+ # if restore already present, drop the cur (dedup)
+ else:
+ new_rules.append({"column": r["column"], "relation": r["relation"], "condition": r["condition"]})
+ if not apply:
+ return {"coll": c["title"], "action": "PLANNED"}
+ inp = {"id": gid, "ruleSet": {"appliedDisjunctively": rs["appliedDisjunctively"], "rules": new_rules}}
+ res = gql(COLL_UPDATE, {"input": inp})["data"]["collectionUpdate"]
+ return {"coll": c["title"], "action": "RULE_REVERTED" if not res["userErrors"] else "RULE_ERROR",
+ "errors": res["userErrors"]}
+
+
+def fetch_all_status(vendor):
+ out = []; cursor = None
+ while True:
+ after = ', after:"%s"' % cursor if cursor else ''
+ q = ('{ products(first:250, query:%s%s){ pageInfo{hasNextPage endCursor} edges{node{id vendor}} } }') % (
+ json.dumps('vendor:"%s"' % vendor), after)
+ d = gql(q)["data"]["products"]
+ for e in d["edges"]:
+ if e["node"]["vendor"] == vendor:
+ out.append(e["node"]["id"])
+ if not d["pageInfo"]["hasNextPage"]:
+ break
+ cursor = d["pageInfo"]["endCursor"]
+ return out
+
+
+def revert_vendor(cur, restore, apply=False, gap=0.5):
+ rec = {"current": cur, "restore": restore}
+ rec["before"] = {"cur_all": vcount_all(cur), "restore_all": vcount_all(restore)}
+ # coupled rules for this vendor (restore FIRST so membership preserved)
+ rec["rule_actions"] = []
+ for gid, (ccur, crestore) in COUPLED.items():
+ if ccur == cur:
+ a = revert_collection_rule(gid, ccur, crestore, apply=apply)
+ rec["rule_actions"].append({"gid": gid, **a})
+ time.sleep(0.4)
+ if apply:
+ # PG FIRST — all statuses
+ psql("UPDATE shopify_products SET vendor='%s' WHERE vendor='%s';"
+ % (restore.replace("'", "''"), cur.replace("'", "''")))
+ rec["pg"] = "OK"
+ ids = fetch_all_status(cur)
+ rec["to_revert"] = len(ids)
+ reverted = 0; errors = []
+ for i, pid in enumerate(ids):
+ res = gql(PROD_UPDATE, {"input": {"id": pid, "vendor": restore}})["data"]["productUpdate"]
+ if res["userErrors"]:
+ errors.append({"id": pid, "errs": res["userErrors"]})
+ else:
+ reverted += 1
+ time.sleep(gap)
+ if (i + 1) % 50 == 0:
+ sys.stderr.write(f" {cur}: {i+1}/{len(ids)} reverted\n")
+ rec["reverted"] = reverted; rec["errors"] = errors
+ time.sleep(3)
+ rec["after"] = {"cur_all": vcount_all(cur), "restore_all": vcount_all(restore)}
+ rec["status"] = "OK" if (rec["after"]["cur_all"] == 0 and not errors) else "CHECK"
+ return rec
+
+
+# ================================ MAIN ================================
+if __name__ == "__main__":
+ mode = sys.argv[1] if len(sys.argv) > 1 else "plan"
+ apply = mode in ("apply", "tags-only", "vendors-only", "canary-tags")
+
+ out = {"mode": mode}
+
+ if mode in ("plan", "apply", "tags-only", "canary-tags"):
+ if mode == "canary-tags":
+ n = int(sys.argv[2]) if len(sys.argv) > 2 else 3
+ changes = load_tag_changes()[:n]
+ out["tags"] = [_revert_one_tag(c, apply=True) for c in changes]
+ else:
+ out["tags"] = revert_tags(apply=(mode in ("apply", "tags-only")))
+
+ if mode in ("plan", "apply", "vendors-only"):
+ out["vendors"] = []
+ for cur, restore in VENDOR_REVERT.items():
+ out["vendors"].append(revert_vendor(cur, restore, apply=(mode in ("apply", "vendors-only"))))
+
+ json.dump(out, open(f"{HERE}/revert_{mode}.json", "w"), indent=2)
+ if "tags" in out:
+ print("TAGS:", dict(Counter(r.get("status") for r in out["tags"])))
+ if "vendors" in out:
+ for v in out["vendors"]:
+ print(f"VENDOR {v['current']} -> {v['restore']}: status={v.get('status','PLAN')} "
+ f"reverted={v.get('reverted','-')} after_cur={v.get('after',{}).get('cur_all','-')} "
+ f"after_restore={v.get('after',{}).get('restore_all','-')} "
+ f"rules={[a.get('action') for a in v['rule_actions']]}")
+ print("AUDIT:", f"{HERE}/revert_{mode}.json")
diff --git a/revert_plan.json b/revert_plan.json
new file mode 100644
index 0000000..1e54630
--- /dev/null
+++ b/revert_plan.json
@@ -0,0 +1,6730 @@
+{
+ "mode": "plan",
+ "tags": [
+ {
+ "id": "gid://shopify/Product/7863628103731",
+ "handle": "grimaud-arabesques-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "baroque",
+ "beige",
+ "black",
+ "blue",
+ "classical",
+ "display_variant",
+ "elegant",
+ "FallingStar Studio",
+ "FS-DP-W1017-01",
+ "Grimaud",
+ "Hand-Painted",
+ "ornate",
+ "red",
+ "vintage",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863628136499",
+ "handle": "grimaud-arcanes-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "classical",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1016-01",
+ "gold",
+ "Grimaud",
+ "Hand-Painted",
+ "mythological",
+ "ornate",
+ "renaissance",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863628169267",
+ "handle": "grimaud-damier-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "blue",
+ "classic",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1018-01",
+ "geometric",
+ "Grimaud",
+ "Hand-Painted",
+ "playful",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863629905971",
+ "handle": "umbrellas-midnight-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "blue",
+ "dark blue",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1021-04",
+ "geometric",
+ "grey",
+ "Hand-Painted",
+ "minimalist",
+ "modern",
+ "Umbrellas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863629938739",
+ "handle": "umbrellas-dusk-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1021-03",
+ "grey",
+ "Hand-Painted",
+ "minimalist",
+ "orange",
+ "playful",
+ "Umbrellas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863629971507",
+ "handle": "umbrellas-twelve-noon-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "contemporary",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1021-02",
+ "graphic",
+ "grey",
+ "Hand-Painted",
+ "minimalist",
+ "playful",
+ "Umbrellas",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630037043",
+ "handle": "umbrellas-morning-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1021-01",
+ "geometric",
+ "grey",
+ "Hand-Painted",
+ "minimalist",
+ "Umbrellas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630069811",
+ "handle": "medals-plaster-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "artistic",
+ "beige",
+ "cream",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1014-04",
+ "Hand-Painted",
+ "Medals",
+ "neoclassical",
+ "sculptural",
+ "textured",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630102579",
+ "handle": "medals-petal-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "classical",
+ "display_variant",
+ "eclectic",
+ "FallingStar Studio",
+ "FS-DP-W1014-03",
+ "Hand-Painted",
+ "Medals",
+ "pink",
+ "romantic",
+ "shabby chic",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630135347",
+ "handle": "medals-kiln-blue-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "artistic",
+ "beige",
+ "blue",
+ "classical",
+ "display_variant",
+ "eclectic",
+ "FallingStar Studio",
+ "FS-DP-W1014-02",
+ "Hand-Painted",
+ "Medals",
+ "textured",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630233651",
+ "handle": "hors-d-oeuvres-ossetra-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "black",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1013-01",
+ "Hand-Painted",
+ "Hors d\u2019Oeuvres",
+ "illustrative",
+ "monochromatic",
+ "nautical",
+ "playful",
+ "whimsical",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630299187",
+ "handle": "hors-d-oeuvres-salmon-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "display_variant",
+ "eclectic",
+ "FallingStar Studio",
+ "FS-DP-W1013-02",
+ "graphic",
+ "Hand-Painted",
+ "Hors d\u2019Oeuvres",
+ "nautical",
+ "pink",
+ "playful",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630331955",
+ "handle": "hors-d-oeuvres-marine-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "blue",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1013-03",
+ "Hand-Painted",
+ "Hors d\u2019Oeuvres",
+ "nautical",
+ "playful",
+ "retro",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630364723",
+ "handle": "willow-small-charcoal-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "chinoiserie",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1007-05",
+ "grey",
+ "Hand-Painted",
+ "neutral",
+ "ornate",
+ "scenic",
+ "sketchy",
+ "traditional",
+ "Willow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630397491",
+ "handle": "willow-large-charcoal-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "chinoiserie",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1006-05",
+ "grey",
+ "Hand-Painted",
+ "neutral",
+ "oriental",
+ "scenic",
+ "sketchy",
+ "traditional",
+ "Willow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630463027",
+ "handle": "willow-small-ochre-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "chinoiserie",
+ "cream",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1007-03",
+ "Hand-Painted",
+ "oriental",
+ "ornate",
+ "toile",
+ "traditional",
+ "Willow",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630495795",
+ "handle": "willow-small-cobalt-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "chinoiserie",
+ "classic",
+ "cream",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1007-01",
+ "Hand-Painted",
+ "oriental",
+ "toile",
+ "traditional",
+ "Willow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630528563",
+ "handle": "willow-small-mist-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "chinoiserie",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1007-02",
+ "grey",
+ "Hand-Painted",
+ "neutral",
+ "oriental",
+ "toile",
+ "traditional",
+ "Willow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630561331",
+ "handle": "willow-small-moss-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "chinoiserie",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1007-04",
+ "green",
+ "Hand-Painted",
+ "oriental",
+ "scenic",
+ "toile",
+ "traditional",
+ "Willow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630594099",
+ "handle": "willow-large-moss-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "chinoiserie",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-DP-W1006-04",
+ "green",
+ "Hand-Painted",
+ "oriental",
+ "scenic",
+ "toile",
+ "traditional",
+ "Willow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863630626867",
+ "handle": "coral-saint-john-wallcovering-fallingstar-studio",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "coastal",
+ "contemporary",
+ "Coral",
+ "display_variant",
+ "FallingStar Studio",
+ "FS-W1003-02",
+ "grey",
+ "Hand-Painted",
+ "minimalist",
+ "organic",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633313843",
+ "handle": "executives-copper-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "artistic",
+ "beige",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "DWTB-11492",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633379379",
+ "handle": "executives-brick-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "artistic",
+ "beige",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "DWTB-11491",
+ "earth tones",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "urban",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633412147",
+ "handle": "executives-lilac-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "artistic",
+ "contemporary",
+ "display_variant",
+ "DWTB-11490",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "playful",
+ "purple",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633444915",
+ "handle": "executives-plus-sky-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "artistic",
+ "blue",
+ "display_variant",
+ "DWTB-11489",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "playful",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633477683",
+ "handle": "executives-sky-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "artistic",
+ "blue",
+ "display_variant",
+ "DWTB-11488",
+ "Made in Spain",
+ "minimalist",
+ "modern",
+ "navy",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "urban",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633510451",
+ "handle": "executives-park-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "artistic",
+ "beige",
+ "contemporary",
+ "display_variant",
+ "DWTB-11487",
+ "green",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "urban",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633543219",
+ "handle": "executives-plus-park-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "artistic",
+ "contemporary",
+ "display_variant",
+ "DWTB-11486",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "urban",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633575987",
+ "handle": "executives-stone-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "artistic",
+ "black",
+ "contemporary",
+ "display_variant",
+ "DWTB-11485",
+ "grey",
+ "Made in Spain",
+ "minimalist",
+ "monochromatic",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633608755",
+ "handle": "speed-stone-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "DWTB-11484",
+ "geometric",
+ "grey",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633641523",
+ "handle": "speed-copper-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "DWTB-11483",
+ "gold",
+ "Made in Spain",
+ "minimalist",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "peach",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633674291",
+ "handle": "speed-park-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "contemporary",
+ "display_variant",
+ "DWTB-11482",
+ "geometric",
+ "green",
+ "grey",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "transitional",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633707059",
+ "handle": "speed-sky-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "brown",
+ "display_variant",
+ "DWTB-11481",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "ombre",
+ "textured",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633739827",
+ "handle": "speed-silver-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "brown",
+ "contemporary",
+ "cream",
+ "display_variant",
+ "DWTB-11480",
+ "grey",
+ "Made in Spain",
+ "minimalist",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "subtle",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633772595",
+ "handle": "speed-candy-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "contemporary",
+ "display_variant",
+ "DWTB-11479",
+ "geometric",
+ "grey",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "pink",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633805363",
+ "handle": "subway-stone-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "dark green",
+ "display_variant",
+ "DWTB-11478",
+ "geometric",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "pink",
+ "playful",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633870899",
+ "handle": "subway-silver-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "brown",
+ "classic",
+ "display_variant",
+ "DWTB-11477",
+ "geometric",
+ "grey",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "pink",
+ "plaid",
+ "subtle",
+ "traditional",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633903667",
+ "handle": "subway-sky-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "blue",
+ "display_variant",
+ "DWTB-11476",
+ "geometric",
+ "green",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "plaid",
+ "red",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633936435",
+ "handle": "subway-copper-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "brown",
+ "classic",
+ "display_variant",
+ "DWTB-11475",
+ "green",
+ "heritage",
+ "Made in Spain",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "preppy",
+ "red",
+ "traditional",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863633969203",
+ "handle": "subway-park-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "blue",
+ "classic",
+ "display_variant",
+ "DWTB-11474",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "preppy",
+ "purple",
+ "rustic",
+ "traditional",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634001971",
+ "handle": "subway-lilac-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "black",
+ "classic",
+ "display_variant",
+ "DWTB-11473",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "plaid",
+ "preppy",
+ "purple",
+ "subtle",
+ "textured",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634034739",
+ "handle": "buildings-copper-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "DWTB-11472",
+ "geometric",
+ "grey",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634067507",
+ "handle": "buildings-steel-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "contemporary",
+ "display_variant",
+ "DWTB-11471",
+ "geometric",
+ "green",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "purple",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634100275",
+ "handle": "buildings-brick-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "bold",
+ "contemporary",
+ "display_variant",
+ "DWTB-11470",
+ "geometric",
+ "green",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "purple",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634133043",
+ "handle": "buildings-sky-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "brown",
+ "cubist",
+ "display_variant",
+ "DWTB-11469",
+ "geometric",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634165811",
+ "handle": "buildings-park-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "blue",
+ "cream",
+ "cubist",
+ "display_variant",
+ "DWTB-11468",
+ "geometric",
+ "green",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634198579",
+ "handle": "buildings-lilac-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "brown",
+ "cubist",
+ "display_variant",
+ "DWTB-11467",
+ "geometric",
+ "grey",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634231347",
+ "handle": "vibes-park-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "blue",
+ "bohemian",
+ "display_variant",
+ "DWTB-11466",
+ "ethnic",
+ "green",
+ "grey",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "tribal",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634329651",
+ "handle": "vibes-copper-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11465",
+ "geometric",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634362419",
+ "handle": "vibes-silver-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "display_variant",
+ "DWTB-11464",
+ "geometric",
+ "grey",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "textured",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634395187",
+ "handle": "vibes-concrete-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "bohemian",
+ "brown",
+ "cream",
+ "display_variant",
+ "DWTB-11463",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "rustic",
+ "textured",
+ "Tres Tintas",
+ "tribal",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634427955",
+ "handle": "vibes-sky-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11462",
+ "ethnic",
+ "global",
+ "grey",
+ "ikat",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "textured",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634460723",
+ "handle": "vibes-brick-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "bohemian",
+ "display_variant",
+ "DWTB-11461",
+ "ethnic",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "pink",
+ "red",
+ "textured",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634493491",
+ "handle": "pipelines-stone-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "brown",
+ "display_variant",
+ "DWTB-11460",
+ "geometric",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "organic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634526259",
+ "handle": "pipelines-brick-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11459",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634559027",
+ "handle": "pipelines-sky-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "blue",
+ "cream",
+ "display_variant",
+ "DWTB-11458",
+ "fluid",
+ "Made in Spain",
+ "modern",
+ "navy",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634591795",
+ "handle": "pipelines-concrete-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "display_variant",
+ "DWTB-11457",
+ "green",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "playful",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634624563",
+ "handle": "pipelines-copper-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "brown",
+ "display_variant",
+ "DWTB-11456",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "retro",
+ "Tres Tintas",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863634657331",
+ "handle": "pipelines-park-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "brown",
+ "display_variant",
+ "DWTB-11455",
+ "green",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "retro",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635279923",
+ "handle": "bananeira-ebano-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "dark green",
+ "display_variant",
+ "DWTB-10181",
+ "gray",
+ "Made in Spain",
+ "minimalist",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "textured",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635312691",
+ "handle": "bananeira-arena-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "brown",
+ "display_variant",
+ "DWTB-10180",
+ "earth tones",
+ "Made in Spain",
+ "minimalist",
+ "natural",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "rustic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635345459",
+ "handle": "bananeira-rosa-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "DWTB-10179",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "pink",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635378227",
+ "handle": "bananeira-cobalto-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "blue",
+ "display_variant",
+ "DWTB-10178",
+ "geometric",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "textured",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635410995",
+ "handle": "bananeira-lima-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "dark green",
+ "display_variant",
+ "DWTB-10177",
+ "green",
+ "Made in Spain",
+ "natural",
+ "Needs-Width",
+ "Non-Woven",
+ "olive",
+ "organic",
+ "rustic",
+ "textured",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635443763",
+ "handle": "tropicalia-naranja-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-10176",
+ "green",
+ "Made in Spain",
+ "maximalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "red",
+ "Tres Tintas",
+ "tropical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635476531",
+ "handle": "tropicalia-cobalto-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "blue",
+ "botanical",
+ "display_variant",
+ "DWTB-10175",
+ "eclectic",
+ "green",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "purple",
+ "red",
+ "Tres Tintas",
+ "tropical",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635509299",
+ "handle": "tropicalia-arena-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "blue",
+ "bohemian",
+ "display_variant",
+ "DWTB-10174",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "retro",
+ "Tres Tintas",
+ "tropical",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635574835",
+ "handle": "tropicalia-verde-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "bold",
+ "display_variant",
+ "DWTB-10173",
+ "green",
+ "grey",
+ "Made in Spain",
+ "maximalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "purple",
+ "red",
+ "retro",
+ "Tres Tintas",
+ "tropical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635607603",
+ "handle": "ipanema-cobalto-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "blue",
+ "display_variant",
+ "DWTB-10172",
+ "green",
+ "isometric",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "purple",
+ "retro",
+ "summery",
+ "Tres Tintas",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635640371",
+ "handle": "ipanema-rosa-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "brown",
+ "display_variant",
+ "DWTB-10171",
+ "green",
+ "illustrative",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "pink",
+ "playful",
+ "retro",
+ "summery",
+ "Tres Tintas",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635673139",
+ "handle": "ipanema-verde-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-10170",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635705907",
+ "handle": "ipanema-arena-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "blue",
+ "brown",
+ "display_variant",
+ "DWTB-10169",
+ "illustrative",
+ "Made in Spain",
+ "mid-century",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "retro",
+ "Tres Tintas",
+ "whimsical",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635738675",
+ "handle": "guanabana-ebano-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "botanical",
+ "brown",
+ "display_variant",
+ "DWTB-10168",
+ "green",
+ "Made in Spain",
+ "maximalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "pink",
+ "red",
+ "Tres Tintas",
+ "tropical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635771443",
+ "handle": "guanabana-perla-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "botanical",
+ "display_variant",
+ "DWTB-10167",
+ "green",
+ "hand-drawn",
+ "Made in Spain",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "tropical",
+ "vintage",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635804211",
+ "handle": "guanabana-lima-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "botanical",
+ "display_variant",
+ "DWTB-10166",
+ "eclectic",
+ "green",
+ "Made in Spain",
+ "maximalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "tropical",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635836979",
+ "handle": "guanabana-terracota-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "art nouveau",
+ "botanical",
+ "display_variant",
+ "DWTB-10165",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "purple",
+ "red",
+ "Tres Tintas",
+ "tropical",
+ "vibrant",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635869747",
+ "handle": "guanabana-arena-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "botanical",
+ "brown",
+ "display_variant",
+ "DWTB-10164",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "Tres Tintas",
+ "tropical",
+ "vintage",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635935283",
+ "handle": "guanabana-turquesa-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "art nouveau",
+ "botanical",
+ "cream",
+ "display_variant",
+ "DWTB-10163",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "pink",
+ "purple",
+ "red",
+ "Tres Tintas",
+ "tropical",
+ "vibrant",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863635968051",
+ "handle": "guacamayos-ebano-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "art nouveau",
+ "blue",
+ "brown",
+ "dark",
+ "decorative",
+ "display_variant",
+ "DWTB-10162",
+ "exotic",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "tropical",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636000819",
+ "handle": "guacamayos-turquesa-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "artistic",
+ "display_variant",
+ "DWTB-10161",
+ "green",
+ "Made in Spain",
+ "nature-inspired",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "pink",
+ "purple",
+ "Tres Tintas",
+ "tropical",
+ "whimsical",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636033587",
+ "handle": "guacamayos-arena-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "artistic",
+ "beige",
+ "botanical",
+ "brown",
+ "display_variant",
+ "DWTB-10160",
+ "green",
+ "Made in Spain",
+ "natural",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "rustic",
+ "Tres Tintas",
+ "tropical",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636066355",
+ "handle": "guacamayos-cobalto-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "bohemian",
+ "display_variant",
+ "DWTB-10159",
+ "green",
+ "Made in Spain",
+ "maximalist",
+ "Needs-Width",
+ "Non-Woven",
+ "pink",
+ "purple",
+ "Tres Tintas",
+ "tropical",
+ "whimsical",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636099123",
+ "handle": "copacabana-arena-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "brown",
+ "display_variant",
+ "DWTB-10158",
+ "geometric",
+ "Made in Spain",
+ "mid-century modern",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "retro",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636131891",
+ "handle": "copacabana-indigo-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "bold",
+ "display_variant",
+ "DWTB-10157",
+ "geometric",
+ "grey",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "Non-Woven",
+ "playful",
+ "red",
+ "retro",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636164659",
+ "handle": "copacabana-cobalto-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "bold",
+ "display_variant",
+ "DWTB-10156",
+ "geometric",
+ "green",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "Non-Woven",
+ "playful",
+ "purple",
+ "retro",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636197427",
+ "handle": "copacabana-ebano-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "blue",
+ "bold",
+ "display_variant",
+ "DWTB-10155",
+ "geometric",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "retro",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636230195",
+ "handle": "copacabana-terracota-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "brown",
+ "display_variant",
+ "DWTB-10154",
+ "geometric",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "red",
+ "retro",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636262963",
+ "handle": "monstera-ebano-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "bold",
+ "botanical",
+ "display_variant",
+ "DWTB-10153",
+ "green",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "tropical",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636295731",
+ "handle": "monstera-lima-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "blue",
+ "botanical",
+ "display_variant",
+ "DWTB-10152",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "playful",
+ "retro",
+ "Tres Tintas",
+ "tropical",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636328499",
+ "handle": "monstera-indigo-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "bohemian",
+ "brown",
+ "cream",
+ "display_variant",
+ "DWTB-10151",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "retro",
+ "Tres Tintas",
+ "tropical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636361267",
+ "handle": "monstera-naranja-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "bold",
+ "display_variant",
+ "DWTB-10150",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "playful",
+ "purple",
+ "Tres Tintas",
+ "tropical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636426803",
+ "handle": "monstera-verde-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "botanical",
+ "display_variant",
+ "DWTB-10149",
+ "green",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "pink",
+ "playful",
+ "Tres Tintas",
+ "tropical",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636459571",
+ "handle": "monstera-arena-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "bohemian",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "DWTB-10148",
+ "Made in Spain",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "organic",
+ "Tres Tintas",
+ "tropical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636492339",
+ "handle": "postal-black-and-white-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "display_variant",
+ "DWTB-11416",
+ "folk art",
+ "grayscale",
+ "grey",
+ "illustrative",
+ "Made in Spain",
+ "monochrome",
+ "Needs-Width",
+ "Non-Woven",
+ "patchwork",
+ "rustic",
+ "Tres Tintas",
+ "whimsical",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636525107",
+ "handle": "postal-beige-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "brown",
+ "collage",
+ "display_variant",
+ "DWTB-11415",
+ "folk art",
+ "green",
+ "grey",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "whimsical",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636557875",
+ "handle": "postal-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "display_variant",
+ "DWTB-11414",
+ "earth tones",
+ "folk art",
+ "green",
+ "illustrative",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "patchwork",
+ "terracotta",
+ "Tres Tintas",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636590643",
+ "handle": "postal-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "display_variant",
+ "DWTB-11413",
+ "earth tones",
+ "folk art",
+ "green",
+ "illustrative",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "patchwork",
+ "Tres Tintas",
+ "whimsical",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636656179",
+ "handle": "jaleo-grey-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "display_variant",
+ "DWTB-11412",
+ "grey",
+ "layered",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "typographic",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636688947",
+ "handle": "jaleo-mazarine-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "bold",
+ "cream",
+ "display_variant",
+ "DWTB-11411",
+ "expressive",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "red",
+ "Tres Tintas",
+ "typographic",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636721715",
+ "handle": "jaleo-turquoise-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "artistic",
+ "blue",
+ "bohemian",
+ "cream",
+ "display_variant",
+ "DWTB-11410",
+ "eclectic",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "vintage",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636754483",
+ "handle": "jaleo-yellow-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "botanical",
+ "contemporary",
+ "display_variant",
+ "DWTB-11409",
+ "graphic",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "textual",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636787251",
+ "handle": "jaleo-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "botanical",
+ "display_variant",
+ "DWTB-11408",
+ "green",
+ "layered",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "red",
+ "rustic",
+ "textural",
+ "Tres Tintas",
+ "vintage",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636820019",
+ "handle": "jaleo-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "botanical",
+ "contemporary",
+ "display_variant",
+ "DWTB-11407",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "pink",
+ "Tres Tintas",
+ "tropical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636852787",
+ "handle": "souvenirs-black-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "cultural",
+ "display_variant",
+ "DWTB-11406",
+ "eclectic",
+ "illustrative",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "playful",
+ "Tres Tintas",
+ "whimsical",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636885555",
+ "handle": "souvenirs-scarlet-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "cultural",
+ "display_variant",
+ "DWTB-11405",
+ "eclectic",
+ "hand-drawn",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "Tres Tintas",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636918323",
+ "handle": "souvenirs-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11404",
+ "eclectic",
+ "green",
+ "hand-drawn",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "pink",
+ "playful",
+ "retro",
+ "Tres Tintas",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636951091",
+ "handle": "souvenirs-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "blue",
+ "display_variant",
+ "DWTB-11403",
+ "eclectic",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "playful",
+ "sketchy",
+ "Tres Tintas",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863636983859",
+ "handle": "souvenirs-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "cultural",
+ "display_variant",
+ "DWTB-11402",
+ "eclectic",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "red",
+ "Tres Tintas",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637016627",
+ "handle": "souvenirs-yellow-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "brown",
+ "display_variant",
+ "DWTB-11401",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "rustic",
+ "Tres Tintas",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637049395",
+ "handle": "fajalauzas-grey-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "brown",
+ "decorative",
+ "display_variant",
+ "DWTB-11400",
+ "grey",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "ornate",
+ "rustic",
+ "traditional",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637082163",
+ "handle": "fajalauzas-garnet-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "cream",
+ "display_variant",
+ "DWTB-11399",
+ "green",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "ornate",
+ "purple",
+ "red",
+ "rustic",
+ "traditional",
+ "Tres Tintas",
+ "vintage",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637114931",
+ "handle": "fajalauzas-yellow-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "cream",
+ "decorative",
+ "display_variant",
+ "DWTB-11398",
+ "folkloric",
+ "green",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "ornate",
+ "red",
+ "traditional",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637147699",
+ "handle": "fajalauzas-mazarine-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "blue",
+ "brown",
+ "display_variant",
+ "DWTB-11397",
+ "Made in Spain",
+ "Mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "ornate",
+ "rustic",
+ "traditional",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637180467",
+ "handle": "fajalauzas-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "blue",
+ "ceramic",
+ "decorative",
+ "display_variant",
+ "DWTB-11396",
+ "green",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "ornate",
+ "red",
+ "traditional",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637213235",
+ "handle": "fajalauzas-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "blue",
+ "ceramic",
+ "decorative",
+ "display_variant",
+ "DWTB-11395",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "ornate",
+ "traditional",
+ "Tres Tintas",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637278771",
+ "handle": "clavelitos-neutral-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "botanical",
+ "display_variant",
+ "DWTB-11394",
+ "green",
+ "grey",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "red",
+ "Tres Tintas",
+ "watercolor",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637377075",
+ "handle": "clavelitos-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "art nouveau",
+ "beige",
+ "black",
+ "botanical",
+ "decorative",
+ "display_variant",
+ "DWTB-11393",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "red",
+ "Tres Tintas",
+ "vintage",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637475379",
+ "handle": "clavelitos-mazarine-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "botanical",
+ "contemporary",
+ "display_variant",
+ "DWTB-11392",
+ "green",
+ "illustrative",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "vibrant",
+ "whimsical",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637540915",
+ "handle": "clavelitos-grey-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "art nouveau",
+ "blue",
+ "botanical",
+ "display_variant",
+ "DWTB-11391",
+ "grey",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "vintage",
+ "watercolor",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637639219",
+ "handle": "clavelitos-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "blue",
+ "botanical",
+ "contemporary",
+ "display_variant",
+ "DWTB-11390",
+ "green",
+ "illustrative",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637671987",
+ "handle": "clavelitos-white-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "black",
+ "botanical",
+ "contemporary",
+ "display_variant",
+ "DWTB-11389",
+ "expressive",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "watercolor",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637737523",
+ "handle": "vermut-white-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "bohemian",
+ "casual",
+ "display_variant",
+ "DWTB-11388",
+ "green",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "Tres Tintas",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637770291",
+ "handle": "vermut-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "bohemian",
+ "display_variant",
+ "DWTB-11387",
+ "green",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "summery",
+ "Tres Tintas",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637803059",
+ "handle": "vermut-yellow-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11386",
+ "eclectic",
+ "green",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "pink",
+ "red",
+ "rustic",
+ "Tres Tintas",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637835827",
+ "handle": "vermut-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "casual",
+ "display_variant",
+ "DWTB-11385",
+ "festive",
+ "green",
+ "Made in Spain",
+ "Mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "purple",
+ "red",
+ "Tres Tintas",
+ "vibrant",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637868595",
+ "handle": "vermut-cobalt-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "casual",
+ "display_variant",
+ "DWTB-11384",
+ "eclectic",
+ "green",
+ "Made in Spain",
+ "Mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "summery",
+ "Tres Tintas",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637901363",
+ "handle": "vermut-clay-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "bohemian",
+ "casual",
+ "display_variant",
+ "DWTB-11383",
+ "green",
+ "Made in Spain",
+ "mediterranean",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "red",
+ "rustic",
+ "terracotta",
+ "Tres Tintas",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637934131",
+ "handle": "terraceo-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "brown",
+ "display_variant",
+ "DWTB-11382",
+ "Made in Spain",
+ "mid-century modern",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "retro",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637966899",
+ "handle": "terraceo-black-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "contemporary",
+ "display_variant",
+ "DWTB-11381",
+ "gold",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863637999667",
+ "handle": "terraceo-grey-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11380",
+ "graphic",
+ "grey",
+ "Made in Spain",
+ "mid-century modern",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863638032435",
+ "handle": "terraceo-white-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "contemporary",
+ "display_variant",
+ "DWTB-11379",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "Tres Tintas",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863638065203",
+ "handle": "terraceo-garnet-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "display_variant",
+ "DWTB-11378",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "red",
+ "Tres Tintas",
+ "whimsical",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863638097971",
+ "handle": "terraceo-beige-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "black",
+ "contemporary",
+ "display_variant",
+ "DWTB-11377",
+ "grey",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "Tres Tintas",
+ "whimsical",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863638130739",
+ "handle": "terraceo-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "display_variant",
+ "DWTB-11376",
+ "green",
+ "Made in Spain",
+ "mid-century",
+ "Needs-Width",
+ "Non-Woven",
+ "pink",
+ "playful",
+ "retro",
+ "Tres Tintas",
+ "whimsical",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863638163507",
+ "handle": "terraceo-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "blue",
+ "display_variant",
+ "DWTB-11375",
+ "graphic",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "retro",
+ "Tres Tintas",
+ "whimsical",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863638851635",
+ "handle": "linear-footprints-black-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "cream",
+ "display_variant",
+ "DWTB-11194",
+ "Made in Spain",
+ "minimalist",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "tribal",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863638884403",
+ "handle": "linear-footprints-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "bohemian",
+ "display_variant",
+ "DWTB-11193",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "rustic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863638917171",
+ "handle": "linear-footprints-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "bohemian",
+ "display_variant",
+ "DWTB-11192",
+ "ethnic",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "rustic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863638949939",
+ "handle": "linear-footprints-ocher-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11191",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "rustic",
+ "tan",
+ "Tres Tintas",
+ "tribal",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863638982707",
+ "handle": "linear-footprints-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "blue",
+ "bohemian",
+ "cream",
+ "display_variant",
+ "DWTB-11190",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "rustic",
+ "Tres Tintas",
+ "tribal",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639015475",
+ "handle": "linear-footprints-beige-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "bohemian",
+ "cream",
+ "display_variant",
+ "DWTB-11189",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "tan",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639048243",
+ "handle": "prehistoric-creatures-black-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "blue",
+ "display_variant",
+ "DWTB-11188",
+ "folk art",
+ "green",
+ "Made in Spain",
+ "minimalist",
+ "nature-inspired",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "whimsical",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639081011",
+ "handle": "prehistoric-creatures-beige-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "brown",
+ "display_variant",
+ "DWTB-11187",
+ "folk art",
+ "grey",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639146547",
+ "handle": "prehistoric-creatures-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "bohemian",
+ "display_variant",
+ "DWTB-11186",
+ "green",
+ "grey",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "pink",
+ "playful",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639179315",
+ "handle": "prehistoric-creatures-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11185",
+ "Made in Spain",
+ "mid-century modern",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "pink",
+ "playful",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639212083",
+ "handle": "prehistoric-creatures-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "blue",
+ "display_variant",
+ "DWTB-11184",
+ "Made in Spain",
+ "mid-century",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "playful",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639244851",
+ "handle": "prehistoric-creatures-ocher-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "display_variant",
+ "DWTB-11183",
+ "earth tones",
+ "Made in Spain",
+ "mid-century modern",
+ "minimalist",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "organic",
+ "playful",
+ "Tres Tintas",
+ "warm",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639310387",
+ "handle": "pacific-blooming-mallow-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "botanical",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "DWTB-11182",
+ "grey",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639343155",
+ "handle": "pacific-blooming-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11181",
+ "folk art",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "pink",
+ "rustic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639375923",
+ "handle": "pacific-blooming-ocher-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "botanical",
+ "cream",
+ "display_variant",
+ "DWTB-11180",
+ "earth tones",
+ "folk art",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "rustic",
+ "traditional",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639408691",
+ "handle": "pacific-blooming-black-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "blue",
+ "bohemian",
+ "display_variant",
+ "DWTB-11179",
+ "folk art",
+ "green",
+ "hand-drawn",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "rustic",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639441459",
+ "handle": "pacific-blooming-beige-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "botanical",
+ "display_variant",
+ "DWTB-11178",
+ "folkloric",
+ "green",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "orange",
+ "rustic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639474227",
+ "handle": "pacific-blooming-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "botanical",
+ "brown",
+ "display_variant",
+ "DWTB-11177",
+ "green",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "rustic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639506995",
+ "handle": "tribal-tongue-beige-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "brown",
+ "display_variant",
+ "DWTB-11176",
+ "grey",
+ "Made in Spain",
+ "minimalist",
+ "modern",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "organic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639539763",
+ "handle": "tribal-tongue-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "blue",
+ "brown",
+ "display_variant",
+ "DWTB-11175",
+ "green",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "playful",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639572531",
+ "handle": "tribal-tongue-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "display_variant",
+ "DWTB-11174",
+ "geometric",
+ "green",
+ "grey",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639605299",
+ "handle": "tribal-tongue-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11173",
+ "Made in Spain",
+ "minimalist",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639638067",
+ "handle": "tribal-tongue-white-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "blue",
+ "display_variant",
+ "DWTB-11172",
+ "graphic",
+ "green",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639670835",
+ "handle": "tribal-tongue-black-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "brown",
+ "display_variant",
+ "DWTB-11171",
+ "geometric",
+ "green",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "Non-Woven",
+ "pink",
+ "playful",
+ "Tres Tintas",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639703603",
+ "handle": "archaeological-forms-grey-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "bohemian",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "DWTB-11170",
+ "green",
+ "grey",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639736371",
+ "handle": "archaeological-forms-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11169",
+ "Made in Spain",
+ "mid-century",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639769139",
+ "handle": "archaeological-forms-black-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11168",
+ "Made in Spain",
+ "mid-century modern",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "pink",
+ "teal",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639801907",
+ "handle": "archaeological-forms-ocher-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11167",
+ "green",
+ "Made in Spain",
+ "mid-century modern",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639834675",
+ "handle": "archaeological-forms-beige-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "brown",
+ "display_variant",
+ "DWTB-11166",
+ "graphic",
+ "green",
+ "Made in Spain",
+ "mid-century modern",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639932979",
+ "handle": "archaeological-forms-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "black",
+ "blue",
+ "display_variant",
+ "DWTB-11165",
+ "geometric",
+ "grey",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "playful",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639965747",
+ "handle": "fresh-lemons-white-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "contemporary",
+ "cream",
+ "display_variant",
+ "DWTB-11164",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "playful",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863639998515",
+ "handle": "fresh-lemons-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "beige",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11163",
+ "earthy",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863640064051",
+ "handle": "fresh-lemons-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "blue",
+ "display_variant",
+ "DWTB-11162",
+ "grey",
+ "Made in Spain",
+ "mid-century modern",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863640096819",
+ "handle": "fresh-lemons-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "botanical",
+ "contemporary",
+ "cream",
+ "display_variant",
+ "DWTB-11161",
+ "green",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863640129587",
+ "handle": "fresh-lemons-black-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "botanical",
+ "brown",
+ "contemporary",
+ "dark",
+ "display_variant",
+ "DWTB-11160",
+ "green",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863640162355",
+ "handle": "fresh-lemons-beige-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "contemporary",
+ "cream",
+ "display_variant",
+ "DWTB-11159",
+ "Made in Spain",
+ "minimalist",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "playful",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863640195123",
+ "handle": "tahiti-expression-white-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "display_variant",
+ "DWTB-11158",
+ "geometric",
+ "grey",
+ "Made in Spain",
+ "minimalist",
+ "modern",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863640227891",
+ "handle": "tahiti-expression-mallow-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "brown",
+ "display_variant",
+ "DWTB-11157",
+ "earth tones",
+ "geometric",
+ "green",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "pastels",
+ "pink",
+ "purple",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863640260659",
+ "handle": "tahiti-expression-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11156",
+ "geometric",
+ "green",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "red",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863640293427",
+ "handle": "tahiti-expression-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "brown",
+ "display_variant",
+ "DWTB-11155",
+ "earth tones",
+ "geometric",
+ "green",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "organic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863640326195",
+ "handle": "tahiti-expression-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "blue",
+ "display_variant",
+ "DWTB-11154",
+ "earth tones",
+ "geometric",
+ "Made in Spain",
+ "mid-century modern",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863640358963",
+ "handle": "tahiti-expression-orange-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "art deco",
+ "brown",
+ "cream",
+ "display_variant",
+ "DWTB-11153",
+ "earth tones",
+ "geometric",
+ "green",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "organic",
+ "red",
+ "teal",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863641243699",
+ "handle": "hidden-fruits-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "blue",
+ "botanical",
+ "contemporary",
+ "display_variant",
+ "DWTB-11304",
+ "eclectic",
+ "green",
+ "grey",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "red",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863641276467",
+ "handle": "hidden-fruits-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "botanical",
+ "brown",
+ "display_variant",
+ "DWTB-11303",
+ "eclectic",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "red",
+ "rustic",
+ "Tres Tintas",
+ "vintage",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863641309235",
+ "handle": "hidden-fruits-ocher-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "blue",
+ "botanical",
+ "display_variant",
+ "DWTB-11302",
+ "eclectic",
+ "green",
+ "grey",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "red",
+ "Tres Tintas",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863641342003",
+ "handle": "hidden-fruits-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "black",
+ "botanical",
+ "display_variant",
+ "DWTB-11301",
+ "geometric",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "red",
+ "Tres Tintas",
+ "tropical",
+ "vintage",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863641374771",
+ "handle": "broken-poppies-black-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "artistic",
+ "beige",
+ "black",
+ "bohemian",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "DWTB-11300",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863641407539",
+ "handle": "broken-poppies-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "contemporary",
+ "display_variant",
+ "DWTB-11299",
+ "expressive",
+ "floral",
+ "green",
+ "Made in Spain",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "painterly",
+ "Tres Tintas",
+ "white",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863641440307",
+ "handle": "broken-poppies-tobacco-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11298",
+ "Made in Spain",
+ "Needs-Width",
+ "neutral",
+ "Non-Woven",
+ "orange",
+ "painterly",
+ "purple",
+ "retro",
+ "Tres Tintas",
+ "yellow",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863641505843",
+ "handle": "broken-poppies-ocher-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "artistic",
+ "beige",
+ "black",
+ "bohemian",
+ "brown",
+ "display_variant",
+ "DWTB-11297",
+ "expressive",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "red",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863641538611",
+ "handle": "broken-poppies-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "blue",
+ "brown",
+ "display_variant",
+ "DWTB-11296",
+ "expressive",
+ "gold",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "painterly",
+ "red",
+ "Tres Tintas",
+ "white",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863641571379",
+ "handle": "broken-poppies-red-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "blue",
+ "bohemian",
+ "brown",
+ "contemporary",
+ "display_variant",
+ "DWTB-11295",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "orange",
+ "painterly",
+ "pink",
+ "red",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863641604147",
+ "handle": "map-xylography-fuchsia-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "black",
+ "display_variant",
+ "DWTB-11294",
+ "graphic",
+ "green",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "playful",
+ "purple",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7863641669683",
+ "handle": "map-xylography-tobacco-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "abstract",
+ "beige",
+ "blue",
+ "brown",
+ "display_variant",
+ "DWTB-11293",
+ "Made in Spain",
+ "modern",
+ "Needs-Width",
+ "Non-Woven",
+ "organic",
+ "tan",
+ "topographic",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865416941619",
+ "handle": "malmaison-damask-old-gold-wallcovering-zoffany-1",
+ "remove": [
+ "Constantina Damask Wallcoverings",
+ "Rotary Printed Wallcovering"
+ ],
+ "add": [
+ "Constantina Damask Wallpapers",
+ "Rotary Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color Steel Blue",
+ "color:Steel Blue",
+ "Damask",
+ "display_variant",
+ "DWZF-187031",
+ "Malmaison Damask",
+ "Needs-Width",
+ "New Arrival",
+ "Slate Gray",
+ "Steel Blue",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Wallcovering",
+ "Zoffany",
+ "Constantina Damask Wallpapers",
+ "Rotary Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865416974387",
+ "handle": "chintz-bluestone-blue-stone-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Digital Printed Wallcovering Wide Width"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Digital Printed Wallpaper Wide Width"
+ ],
+ "final": [
+ "Background Color light blue",
+ "blue",
+ "Botanical",
+ "Chinoiserie",
+ "Chintz Bluestone",
+ "color:light blue",
+ "display_variant",
+ "DWZF-187372",
+ "Floral",
+ "gray",
+ "green",
+ "light blue",
+ "Needs-Width",
+ "New Arrival",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Wallcovering",
+ "white",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Digital Printed Wallpaper Wide Width"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865417039923",
+ "handle": "french-marble-empire-grey-perfect-white-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Rotary Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Rotary Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Abstract",
+ "Background Color Steel Blue",
+ "color:Steel Blue",
+ "Contemporary",
+ "Dark Slate Gray",
+ "display_variant",
+ "DWZF-187036",
+ "French Marble",
+ "Needs-Width",
+ "New Arrival",
+ "Slate Gray",
+ "Steel Blue",
+ "Tan",
+ "Trending Wallcovering Collection 2026",
+ "Wallcovering",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Rotary Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865417072691",
+ "handle": "french-marble-reign-blue-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Rotary Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Rotary Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Abstract",
+ "Background Color blue",
+ "beige",
+ "blue",
+ "brown",
+ "Chinoiserie",
+ "color:blue",
+ "display_variant",
+ "DWZF-187373",
+ "French Marble",
+ "gold",
+ "Needs-Width",
+ "New Arrival",
+ "red",
+ "Scenic",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Wallcovering",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Rotary Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865417138227",
+ "handle": "french-marble-empire-grey-perfect-white-empire-grey-perfect-white-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Rotary Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Rotary Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Abstract",
+ "Background Color blue",
+ "beige",
+ "blue",
+ "color:blue",
+ "Contemporary",
+ "dark blue",
+ "display_variant",
+ "DWZF-187374",
+ "French Marble Empire Grey/ Perfect White",
+ "Needs-Width",
+ "New Arrival",
+ "Trending Wallcovering Collection 2026",
+ "Wallcovering",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Rotary Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865417170995",
+ "handle": "grand-paisley-indigo-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Digital Printed Wallcovering Wide Width"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Digital Printed Wallpaper Wide Width"
+ ],
+ "final": [
+ "Background Color light gray",
+ "color:light gray",
+ "display_variant",
+ "DWZF-187375",
+ "Grand Paisley",
+ "gray",
+ "light gray",
+ "Medallion",
+ "Needs-Width",
+ "New Arrival",
+ "Paisley",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Wallcovering",
+ "white",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Digital Printed Wallpaper Wide Width"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865417269299",
+ "handle": "marsden-s-palm-damask-blue-stone-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Rotary Printed Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Rotary Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color beige",
+ "beige",
+ "blue",
+ "Botanical",
+ "color:beige",
+ "Contemporary",
+ "display_variant",
+ "DWZF-187377",
+ "Geometric",
+ "gray",
+ "green",
+ "Marsden`s Palm Damask",
+ "Needs-Width",
+ "New Arrival",
+ "Transitional",
+ "Trending Wallcovering Collection 2026",
+ "Wallcovering",
+ "white",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Rotary Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865417334835",
+ "handle": "marsden-s-palm-damask-pale-poisen-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Rotary Printed Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Rotary Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color beige",
+ "beige",
+ "blue",
+ "Botanical",
+ "brown",
+ "color:beige",
+ "Contemporary",
+ "display_variant",
+ "DWZF-187378",
+ "Geometric",
+ "gray",
+ "green",
+ "Marsden`s Palm Damask",
+ "Needs-Width",
+ "New Arrival",
+ "Transitional",
+ "Trending Wallcovering Collection 2026",
+ "Wallcovering",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Rotary Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865417400371",
+ "handle": "marsden-s-palm-damask-tigers-eye-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Rotary Printed Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Rotary Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color gray",
+ "beige",
+ "black",
+ "brown",
+ "color:gray",
+ "Damask",
+ "display_variant",
+ "DWZF-187379",
+ "gray",
+ "Marsden`S Palm Damask",
+ "Needs-Width",
+ "New Arrival",
+ "Paisley",
+ "Traditional",
+ "Transitional",
+ "Trending Wallcovering Collection 2026",
+ "Wallcovering",
+ "yellow",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Rotary Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865417498675",
+ "handle": "nootka-poison-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Surflex-Printed Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Surflex-Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color dark teal",
+ "Botanical",
+ "Coastal",
+ "color:dark teal",
+ "dark teal",
+ "display_variant",
+ "DWZF-187381",
+ "Leaf",
+ "light green",
+ "Needs-Width",
+ "New Arrival",
+ "Nootka",
+ "Trending Wallcovering Collection 2026",
+ "Tropical",
+ "Wallcovering",
+ "white",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Surflex-Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865417531443",
+ "handle": "nootka-quartz-grey-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Surflex-Printed Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Surflex-Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color dark green",
+ "Botanical",
+ "color:dark green",
+ "dark green",
+ "display_variant",
+ "DWZF-187382",
+ "Leaf",
+ "light green",
+ "Needs-Width",
+ "New Arrival",
+ "Nootka",
+ "Trending Wallcovering Collection 2026",
+ "Tropical",
+ "Wallcovering",
+ "white",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Surflex-Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865417629747",
+ "handle": "nostell-priory-lazuli-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Gravure - Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Gravure - Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color blue",
+ "blue",
+ "Botanical",
+ "Chinoiserie",
+ "color:blue",
+ "display_variant",
+ "DWZF-187384",
+ "Floral",
+ "gray",
+ "Needs-Width",
+ "New Arrival",
+ "Nostell Priory",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Wallcovering",
+ "white",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Gravure - Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865417662515",
+ "handle": "phaedra-prussian-blue-wallcovering-zoffany-1",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Digital Printed Wallcovering Wide Width"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Digital Printed Wallpaper Wide Width"
+ ],
+ "final": [
+ "Background Color Beige",
+ "Beige",
+ "Botanical",
+ "Chinoiserie",
+ "color:Beige",
+ "display_variant",
+ "DWZF-187013",
+ "Floral",
+ "Gray",
+ "Light Beige",
+ "Navy",
+ "Needs-Width",
+ "New Arrival",
+ "Phaedra",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Wallcovering",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Digital Printed Wallpaper Wide Width"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7865417728051",
+ "handle": "pompadour-print-indigo-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Laminate Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Laminate Wallpaper"
+ ],
+ "final": [
+ "Background Color Off-white",
+ "Chinoiserie",
+ "color:Off-white",
+ "Cornflower Blue",
+ "display_variant",
+ "DWZF-187037",
+ "Floral",
+ "Needs-Width",
+ "New Arrival",
+ "Off-white",
+ "Pompadour Print",
+ "Toile",
+ "Traditional",
+ "Trending Wallcovering Collection 2026",
+ "Wallcovering",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Laminate Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101432371",
+ "handle": "pompadour-print-mineral-wallcovering-zoffany",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Laminate Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Laminate Wallpaper"
+ ],
+ "final": [
+ "Background Color off-white",
+ "Chinoiserie",
+ "color:off-white",
+ "display_variant",
+ "DWZF-187386",
+ "Floral",
+ "light blue",
+ "off-white",
+ "Pompadour Print",
+ "Toile",
+ "Traditional",
+ "Wallcovering",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Laminate Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101465139",
+ "handle": "romey-s-garden-blossom-wallcovering-zoffany-1",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Gravure - Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Gravure - Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color Light Beige",
+ "Botanical",
+ "Chinoiserie",
+ "color:Sage Green",
+ "Dark Brown",
+ "display_variant",
+ "DWZF-187054",
+ "Light Beige",
+ "Romey`s Garden",
+ "Sage Green",
+ "Steel Blue",
+ "Toile",
+ "Traditional",
+ "Wallcovering",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Gravure - Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101497907",
+ "handle": "romey-s-garden-sea-green-wallcovering-zoffany-1",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Gravure - Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Gravure - Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color Pale Green",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "color:Pale Green",
+ "display_variant",
+ "DWZF-187009",
+ "Pale Green",
+ "Romey`s Garden",
+ "Teal",
+ "Toile",
+ "Traditional",
+ "Wallcovering",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Gravure - Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101530675",
+ "handle": "romey-s-garden-silver-wallcovering-zoffany-1",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Gravure - Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Gravure - Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color Pale Green",
+ "Beige",
+ "Botanical",
+ "Brown",
+ "Chinoiserie",
+ "color:Pale Green",
+ "display_variant",
+ "DWZF-187053",
+ "Pale Green",
+ "Romey`s Garden",
+ "Teal",
+ "Toile",
+ "Traditional",
+ "Wallcovering",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Gravure - Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101563443",
+ "handle": "verdure-310430-lead-blue-wallcovering-zoffany-1",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Digital Print Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Digital Print Wallpaper"
+ ],
+ "final": [
+ "Background Color Light Beige",
+ "Botanical",
+ "Chinoiserie",
+ "color:Sage Green",
+ "display_variant",
+ "DWZF-187051",
+ "Light Beige",
+ "Sage Green",
+ "Steel Blue",
+ "Tan",
+ "Toile",
+ "Traditional",
+ "Verdure 310430",
+ "Wallcovering",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Digital Print Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101596211",
+ "handle": "verdure-310431-tapestry-green-wallcovering-zoffany-1",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Digital Print Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Digital Print Wallpaper"
+ ],
+ "final": [
+ "Background Color Light Beige",
+ "Beige",
+ "Brown",
+ "color:Sage Green",
+ "display_variant",
+ "DWZF-187052",
+ "Light Blue",
+ "Sage Green",
+ "Toile",
+ "Traditional",
+ "Verdure 310431",
+ "Wallcovering",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Digital Print Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101628979",
+ "handle": "woodville-la-seine-wallcovering-zoffany-1",
+ "remove": [
+ "Cotswolds Manor Wallcoverings",
+ "Rotary/Gravure Wallcovering"
+ ],
+ "add": [
+ "Cotswolds Manor Wallpapers",
+ "Rotary/Gravure Wallpaper"
+ ],
+ "final": [
+ "Background Color Beige",
+ "Beige",
+ "Botanical",
+ "Chinoiserie",
+ "color:Beige",
+ "display_variant",
+ "DWZF-187008",
+ "Floral",
+ "Light Gray",
+ "Off-white",
+ "Pale Pink",
+ "Traditional",
+ "Wallcovering",
+ "Woodville",
+ "Zoffany",
+ "Cotswolds Manor Wallpapers",
+ "Rotary/Gravure Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101694515",
+ "handle": "ebru-ii-snow-wallcovering-zoffany-1",
+ "remove": [
+ "Darnley Wallcoverings",
+ "Gravure - Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Darnley Wallpapers",
+ "Gravure - Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Abstract",
+ "Background Color Off-white",
+ "Beige",
+ "color:Beige",
+ "display_variant",
+ "DWZF-187038",
+ "Ebru II",
+ "Light Beige",
+ "Off-white",
+ "Pale Gold",
+ "Traditional",
+ "Wallcovering",
+ "Zoffany",
+ "Darnley Wallpapers",
+ "Gravure - Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101727283",
+ "handle": "highclere-paris-grey-wallcovering-zoffany-1",
+ "remove": [
+ "Darnley Wallcoverings",
+ "Rotary/Gravure Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Darnley Wallpapers",
+ "Rotary/Gravure Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color Off-white",
+ "Botanical",
+ "color:Off-white",
+ "display_variant",
+ "DWZF-187039",
+ "Highclere",
+ "Off-white",
+ "Taupe",
+ "Wallcovering",
+ "Zoffany",
+ "Darnley Wallpapers",
+ "Rotary/Gravure Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101760051",
+ "handle": "mitford-damask-empire-grey-wallcovering-zoffany-1",
+ "remove": [
+ "Darnley Wallcoverings",
+ "Rotary Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Darnley Wallpapers",
+ "Rotary Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color Ochre",
+ "Beige",
+ "color:Ochre",
+ "Damask",
+ "display_variant",
+ "DWZF-187022",
+ "Floral",
+ "Mitford Damask",
+ "Ochre",
+ "Traditional",
+ "Victorian",
+ "Wallcovering",
+ "Zoffany",
+ "Darnley Wallpapers",
+ "Rotary Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101792819",
+ "handle": "ormonde-stone-chalk-wallcovering-zoffany-1",
+ "remove": [
+ "Darnley Wallcoverings",
+ "Rotary Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Darnley Wallpapers",
+ "Rotary Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color Light Gray",
+ "color:Light Gray",
+ "Contemporary",
+ "display_variant",
+ "DWZF-187002",
+ "Gray",
+ "Light Blue Gray",
+ "Light Gray",
+ "Minimalist",
+ "Ormonde",
+ "Steel Blue",
+ "Stripe",
+ "Textured",
+ "Wallcovering",
+ "Zoffany",
+ "Darnley Wallpapers",
+ "Rotary Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101825587",
+ "handle": "richmond-park-evergreen-wallcovering-zoffany-1",
+ "remove": [
+ "Darnley Wallcoverings",
+ "Surflex-Printed Wallcovering"
+ ],
+ "add": [
+ "Darnley Wallpapers",
+ "Surflex-Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color Pale Beige",
+ "Botanical",
+ "color:Pale Beige",
+ "Dark Gray",
+ "display_variant",
+ "DWZF-187026",
+ "Gray",
+ "Light Gray",
+ "Pale Beige",
+ "Richmond Park",
+ "Traditional",
+ "Wallcovering",
+ "Zoffany",
+ "Darnley Wallpapers",
+ "Surflex-Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101858355",
+ "handle": "wallis-paris-grey-wallcovering-zoffany-1",
+ "remove": [
+ "Darnley Wallcoverings",
+ "Rotary/Gravure Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Darnley Wallpapers",
+ "Rotary/Gravure Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Abstract",
+ "Background Color Beige",
+ "Beige",
+ "color:Beige",
+ "display_variant",
+ "DWZF-187025",
+ "Light Beige",
+ "Pale Brown",
+ "Tan",
+ "Traditional",
+ "Wallcovering",
+ "Wallis",
+ "Zoffany",
+ "Darnley Wallpapers",
+ "Rotary/Gravure Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101891123",
+ "handle": "domino-paper-paris-grey-wallcovering-zoffany-1",
+ "remove": [
+ "Flexo-Printed Wallcovering"
+ ],
+ "add": [
+ "Flexo-Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color Celadon",
+ "Celadon",
+ "color:Celadon",
+ "display_variant",
+ "Domino Paper",
+ "DWZF-187030",
+ "Endpapers Wallcoverings",
+ "Geometric",
+ "Light Gray",
+ "Pale Green",
+ "Sage",
+ "Textured",
+ "Traditional",
+ "Wallcovering",
+ "Zoffany",
+ "Flexo-Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101923891",
+ "handle": "tallulah-plain-antique-copper-wallcovering-zoffany",
+ "remove": [
+ "Rotary Wide Width Printed Wallcovering"
+ ],
+ "add": [
+ "Rotary Wide Width Printed Wallpaper"
+ ],
+ "final": [
+ "Background Color beige",
+ "beige",
+ "color:beige",
+ "Contemporary",
+ "display_variant",
+ "DWZF-187387",
+ "Folio",
+ "Geometric",
+ "light brown",
+ "Tallulah Plain",
+ "Textured",
+ "Wallcovering",
+ "Zoffany",
+ "Rotary Wide Width Printed Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866101956659",
+ "handle": "eleonora-guv08002-celadon-cream-wallcovering-zoffany",
+ "remove": [
+ "Gravure Printed Wallcovering",
+ "Gustavus Wallcoverings"
+ ],
+ "add": [
+ "Gravure Printed Wallpaper",
+ "Gustavus Wallpapers"
+ ],
+ "final": [
+ "Background Color Light Beige",
+ "Beige",
+ "Brown",
+ "color:Sage Green",
+ "display_variant",
+ "DWZF-187047",
+ "Eleonora Guv08002",
+ "Light Blue",
+ "Sage Green",
+ "Toile",
+ "Traditional",
+ "Wallcovering",
+ "Zoffany",
+ "Gravure Printed Wallpaper",
+ "Gustavus Wallpapers"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866102022195",
+ "handle": "eleonora-guv08003-jade-rose-wallcovering-zoffany",
+ "remove": [
+ "Gravure Printed Wallcovering",
+ "Gustavus Wallcoverings"
+ ],
+ "add": [
+ "Gravure Printed Wallpaper",
+ "Gustavus Wallpapers"
+ ],
+ "final": [
+ "Background Color Light Beige",
+ "Botanical",
+ "Chinoiserie",
+ "color:Sage Green",
+ "Dark Brown",
+ "display_variant",
+ "DWZF-187048",
+ "Eleonora Guv08003",
+ "Light Beige",
+ "Sage Green",
+ "Steel Blue",
+ "Toile",
+ "Traditional",
+ "Wallcovering",
+ "Zoffany",
+ "Gravure Printed Wallpaper",
+ "Gustavus Wallpapers"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866102054963",
+ "handle": "artisan-palampore-primrose-wallcovering-zoffany-1",
+ "remove": [
+ "Digital Printed Wallcovering Wide Width"
+ ],
+ "add": [
+ "Digital Printed Wallpaper Wide Width"
+ ],
+ "final": [
+ "Artisan Palampore",
+ "Background Color Off-white",
+ "Botanical",
+ "Chinoiserie",
+ "color:Coral",
+ "Coral",
+ "display_variant",
+ "Dusty Rose",
+ "DWZF-187033",
+ "Floral",
+ "Indienne Wallcoverings",
+ "Olive Green",
+ "Sage Green",
+ "Traditional",
+ "Wallcovering",
+ "Zoffany",
+ "Digital Printed Wallpaper Wide Width"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866102087731",
+ "handle": "jaipur-plain-red-wallcovering-zoffany",
+ "remove": [
+ "Jaipur Wallcoverings",
+ "Rotary/Gravure Wallcovering"
+ ],
+ "add": [
+ "Jaipur Wallpapers",
+ "Rotary/Gravure Wallpaper"
+ ],
+ "final": [
+ "Abstract",
+ "Background Color Pale Pink",
+ "Beige",
+ "color:Pale Pink",
+ "display_variant",
+ "DWZF-187010",
+ "Jaipur Plain",
+ "Light Gray",
+ "Pale Pink",
+ "Rose",
+ "Traditional",
+ "Wallcovering",
+ "Zoffany",
+ "Jaipur Wallpapers",
+ "Rotary/Gravure Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866122666035",
+ "handle": "map-xylography-grey-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11292",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866122698803",
+ "handle": "map-xylography-black-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11291",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866122731571",
+ "handle": "map-xylography-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11290",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866122797107",
+ "handle": "map-xylography-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11289",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866122862643",
+ "handle": "blooming-damask-fuchsia-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11288",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866122928179",
+ "handle": "blooming-damask-tobacco-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11287",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866122960947",
+ "handle": "blooming-damask-grey-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11286",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866122993715",
+ "handle": "blooming-damask-white-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11285",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866123059251",
+ "handle": "blooming-damask-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11284",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866123255859",
+ "handle": "blooming-damask-black-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11283",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866123288627",
+ "handle": "moire-screen-coral-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11282",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866123321395",
+ "handle": "moire-screen-green-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11281",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866123354163",
+ "handle": "moire-screen-violet-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11280",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866123386931",
+ "handle": "moire-screen-khaki-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11279",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866123550771",
+ "handle": "moire-screen-black-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11278",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ },
+ {
+ "id": "gid://shopify/Product/7866123583539",
+ "handle": "moire-screen-blue-wallcovering-tres-tintas",
+ "remove": [
+ "Wallcovering"
+ ],
+ "add": [
+ "Wallpaper"
+ ],
+ "final": [
+ "display_variant",
+ "DWTB-11277",
+ "Made in Spain",
+ "Non-Woven",
+ "Tres Tintas",
+ "Wallpaper"
+ ],
+ "status": "PLANNED"
+ }
+ ],
+ "vendors": [
+ {
+ "current": "PS Removable Wallcoverings",
+ "restore": "PS Removable Wallpaper",
+ "before": {
+ "cur_all": 736,
+ "restore_all": 1
+ },
+ "rule_actions": []
+ },
+ {
+ "current": "DW Exclusive Wallcoverings",
+ "restore": "DW Exclusive Wallpaper",
+ "before": {
+ "cur_all": 1,
+ "restore_all": 0
+ },
+ "rule_actions": []
+ },
+ {
+ "current": "Apartment Wallcoverings",
+ "restore": "Apartment Wallpaper",
+ "before": {
+ "cur_all": 101,
+ "restore_all": 0
+ },
+ "rule_actions": [
+ {
+ "gid": "gid://shopify/Collection/298970972211",
+ "coll": "Apartment Wallcovering",
+ "action": "PLANNED"
+ },
+ {
+ "gid": "gid://shopify/Collection/299533828147",
+ "coll": "Apartment Wallcovering",
+ "action": "PLANNED"
+ }
+ ]
+ },
+ {
+ "current": "Wallcovering NYC",
+ "restore": "Wallpaper NYC",
+ "before": {
+ "cur_all": 95,
+ "restore_all": 0
+ },
+ "rule_actions": [
+ {
+ "gid": "gid://shopify/Collection/298971430963",
+ "coll": "Wallcovering NYC",
+ "action": "PLANNED"
+ }
+ ]
+ },
+ {
+ "current": "Malibu Wallcoverings",
+ "restore": "Malibu Wallpaper",
+ "before": {
+ "cur_all": 761,
+ "restore_all": 3270
+ },
+ "rule_actions": [
+ {
+ "gid": "gid://shopify/Collection/298507403315",
+ "coll": "Malibu",
+ "action": "PLANNED"
+ }
+ ]
+ }
+ ]
+}
\ No newline at end of file
← fbb8075 auto-save: 2026-06-22T12:05:49 (4 files) — job2_done_Apartme
·
back to Dw Wallpaper Cleanup
·
auto-save: 2026-06-22T12:36:01 (1 files) — revert_canary-tag 0827d1e →