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 <noreply@anthropic.com>
This commit is contained in:
2026-08-05 00:38:42 -07:00
parent 81565b7676
commit 8038ab5ee5
2 changed files with 2 additions and 0 deletions

View File

@@ -4081,6 +4081,7 @@ export type SyncAppleSubscriptionResultGql = {
export type TableStateGql = {
__typename?: "TableStateGQL";
homography?: Maybe<HomographyInfoGql>;
identifierToBox: Array<BoundingBoxGql>;
identifierToColor: Array<Maybe<RgbColorGql>>;
identifierToPosition: Array<Array<Scalars["Float"]["output"]>>;
};

View File

@@ -1716,6 +1716,7 @@ type TableStateGQL {
identifierToPosition: [[Float!]!]!
homography: HomographyInfoGQL
identifierToColor: [RGBColorGQL]!
identifierToBox: [BoundingBoxGQL!]!
}
type TagClassGQL {