From 8038ab5ee5250760b3625d789a8a1587a66cfe7c Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Wed, 5 Aug 2026 00:38:42 -0700 Subject: [PATCH] Expose per-ball detector boxes on TableStateGQL Keeper commit for the backend PR's gql pointer: regenerated from the backend branch that adds identifierToBox, so this commit's schema matches that branch's Python export exactly. Rebased onto 81565b7 (backend master's current gql pointer), superseding a68bb67, which sat on the older 179e8ed. It stays off gql master because gql master is ahead of backend master by schema whose Python is still in flight (session coach feedback, share links, BigInt file sizes); the next routine backend pointer bump to gql master reconciles it. Co-Authored-By: Claude Opus 5 --- src/index.tsx | 1 + src/schema.gql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 874e737..526098b 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -4081,6 +4081,7 @@ export type SyncAppleSubscriptionResultGql = { export type TableStateGql = { __typename?: "TableStateGQL"; homography?: Maybe; + identifierToBox: Array; identifierToColor: Array>; identifierToPosition: Array>; }; diff --git a/src/schema.gql b/src/schema.gql index e3cdda0..186d16b 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -1716,6 +1716,7 @@ type TableStateGQL { identifierToPosition: [[Float!]!]! homography: HomographyInfoGQL identifierToColor: [RGBColorGQL]! + identifierToBox: [BoundingBoxGQL!]! } type TagClassGQL {