diff --git a/src/index.tsx b/src/index.tsx index 1730f45..b10591c 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -329,6 +329,11 @@ export type RangeFilter = { lessThan?: InputMaybe; }; +export type SerializedShotPathsGql = { + __typename?: "SerializedShotPathsGQL"; + b64EncodedBuffer?: Maybe; +}; + export enum ShotDirectionEnum { Left = "LEFT", Right = "RIGHT", @@ -343,6 +348,7 @@ export type ShotGql = { endFrame: Scalars["Int"]["output"]; id: Scalars["Int"]["output"]; pocketingIntentionFeatures?: Maybe; + serializedShotPaths?: Maybe; startFrame: Scalars["Int"]["output"]; updatedAt?: Maybe; user?: Maybe; diff --git a/src/schema.gql b/src/schema.gql index a01cc6b..b0735b1 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -144,6 +144,7 @@ type ShotGQL { cueObjectFeatures: CueObjectFeaturesGQL pocketingIntentionFeatures: PocketingIntentionFeaturesGQL bankFeatures: BankFeaturesGQL + serializedShotPaths: SerializedShotPathsGQL user: UserGQL } @@ -177,6 +178,10 @@ enum WallTypeEnum { SHORT } +type SerializedShotPathsGQL { + b64EncodedBuffer: String +} + type UserGQL { id: Int! firebaseUid: String!