Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .changeset/inventory-list-targeting-sandbox-fixture.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
---

fix(compliance): inventory_list_targeting — add `sandbox: true` to account fixtures

The 5 account blocks across this scenario use the brand+operator natural-key variant of `AccountReference` but omit the `sandbox` flag. Sellers whose `accounts.resolve` has separate code paths for sandbox vs production refs end up routing `create_media_buy` and `get_media_buys` through different account-id namespaces, which breaks `mediaBuyStore` backfill of `targeting_overlay` and fails `verify_create_persisted` / `verify_update_persisted`.

Setting `sandbox: true` on every account block keeps both create and get on the sandbox path, the round-trip becomes consistent, and the storyboard exercises what it intended to: targeting persistence across the create / get / update lifecycle.

Non-protocol (storyboard fixture only). No version bump.

Refs: adcp-client#1487 — follow-up to fix the underlying enricher asymmetry upstream so future storyboard authors don't trip the same wire.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ phases:
brand:
domain: "acmeoutdoor.example"
operator: "pinnacle-agency.example"
sandbox: true

context:
correlation_id: "inventory_list_targeting--get_products_brief"
Expand Down Expand Up @@ -112,6 +113,7 @@ phases:
brand:
domain: "acmeoutdoor.example"
operator: "pinnacle-agency.example"
sandbox: true
idempotency_key: "inventory-list-targeting-create-v1"
start_time: "2026-07-01T00:00:00Z"
end_time: "2026-09-30T23:59:59Z"
Expand Down Expand Up @@ -169,6 +171,7 @@ phases:
brand:
domain: "acmeoutdoor.example"
operator: "pinnacle-agency.example"
sandbox: true
media_buy_ids:
- "$context.media_buy_id"

Expand Down Expand Up @@ -212,6 +215,7 @@ phases:
brand:
domain: "acmeoutdoor.example"
operator: "pinnacle-agency.example"
sandbox: true
media_buy_id: "$context.media_buy_id"
packages:
- package_id: "$context.package_id"
Expand Down Expand Up @@ -248,6 +252,7 @@ phases:
brand:
domain: "acmeoutdoor.example"
operator: "pinnacle-agency.example"
sandbox: true
media_buy_ids:
- "$context.media_buy_id"

Expand Down
Loading