From 9cefc0c9c4d58331e1695d62ceeb01f4c4c78263 Mon Sep 17 00:00:00 2001 From: Joshua Date: Wed, 18 Feb 2026 20:28:57 -0800 Subject: [PATCH] Display offer pacing profile metadata in store preview --- public/store/index.html | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/public/store/index.html b/public/store/index.html index d4f9ccd..ce6149f 100644 --- a/public/store/index.html +++ b/public/store/index.html @@ -322,9 +322,16 @@ offerTitle.textContent = selected.title || selected.offer_id; offerSummary.textContent = selected.summary || 'No summary provided.'; offerPrice.textContent = 'Price: ' + (selected.price || '--') + ' ' + (selected.currency || ''); + let profile = ''; + if (selected.execution_profile && typeof selected.execution_profile === 'object') { + const pace = selected.execution_profile.pacing_tier || 'unknown'; + const surface = selected.execution_profile.connector_surface || 'unknown'; + profile = ', pacing=' + pace + ', surface=' + surface; + } offerPolicy.textContent = 'Policy: member-only=' + Boolean(selected.member_only) + ', workspace-bound=' + Boolean(selected.workspace_bound) + - ', transferable=' + Boolean(selected.transferable); + ', transferable=' + Boolean(selected.transferable) + + profile; } function populateOfferSelect() {