/** Real, trimmed slices of live Wright pages (captured 2026-09-08) shared by the wright and lama unit tests. */ /** https://www.wright20.com/auctions/2026/08/design — 3 of 199 items (two sold, one unsold `result: false`). */ export const SESSION_JSON = { component: 'SessionIndexPage', props: { auctions: { '1467': { id: 1467, title: 'Design', date: '2026-08-13T16:00:00.000000Z', auction_house: 1 } }, sessions: { '2884': { fd_key: 2884, alias: '/auctions/2026/08/design', title: 'Design', start_date: 1786636800, sale_status: 'POSTSALE', show_results: 1, results_are_preliminary: 0, archive_auction: 1, timezone: 'America/Chicago' } }, items: { '413032': { id: 413032, fd_key: 413032, alias: 'auctions/2026/08/design/100', artist_name: 'After Alexander Calder', name: 'Turquoise tapestry', lot_number: 100, estimate_low: 15000, estimate_high: 20000, result: 57600, bid_count: 14, primary_index_image: 'https://www.wright20.com/items/index/220/100_1_design_august_2026_after_alexander_calder_turquoise_tapestry__wright_auction.jpg?t=1785522868', location: 'Los Angeles', is_record_result: 0, buy_now: 0, starting_bid: '10000' }, '415958': { id: 415958, fd_key: 415958, alias: 'auctions/2026/08/design/101', artist_name: 'Kenny Scharf', name: 'Object to Enjoy', lot_number: 101, estimate_low: 1000, estimate_high: 1500, result: 2816, bid_count: 11, primary_index_image: 'https://www.wright20.com/items/index/220/101_1_design_august_2026_kenny_scharf_object_to_enjoy__wright_auction.jpg?t=1785425385', location: 'Chicago', is_record_result: 0, buy_now: 0, starting_bid: '100' }, '412274': { id: 412274, fd_key: 412274, alias: 'auctions/2026/08/design/110', artist_name: 'After Joan Miró', name: 'Montage low-pile carpet', lot_number: 110, estimate_low: 2000, estimate_high: 3000, result: false, bid_count: 0, primary_index_image: 'https://www.wright20.com/items/index/220/110_1_design_august_2026_after_joan_miro_montage_low_pile_carpet__wright_auction.jpg?t=1785425345', location: 'Lambertville', is_record_result: 0, buy_now: 0, starting_bid: '1500' }, }, session: { fd_key: 2884, results_are_preliminary: 0, archive_auction: true, sale_status: 'POSTSALE' }, }, }; /** https://www.wright20.com/auctions/2026/08/design/info — the module → item → session slice we read. */ export const INFO_JSON = { component: 'x', props: { modules: [{ data: { item: { session: { ended_at: '2026-08-13T18:58:44.000000Z', style: { show_results_with_premium: 1 } } } } }] } }; /** Re-encode a page object exactly as the site does (Inertia `data-page` attribute, entity-escaped). */ export function asInertiaHtml(page: unknown): string { const enc = JSON.stringify(page).replace(/&/g, '&').replace(/"/g, '"'); return `
`; }