diff --git a/src/index.tsx b/src/index.tsx index 5e02db9..6d7e3be 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -652,6 +652,7 @@ export type Query = { getDeployedConfig: DeployedConfigGql; getLoggedInUser?: Maybe; getPlayTime: UserPlayTimeGql; + getShotAnnotationTypes: Array; getShots: Array; getUser?: Maybe; getUserVideos: VideoHistoryGql; @@ -714,6 +715,12 @@ export type ShotAnnotationInput = { name: Scalars["String"]["input"]; }; +export type ShotAnnotationTypeGql = { + __typename?: "ShotAnnotationTypeGQL"; + id: Scalars["Int"]["output"]; + name: Scalars["String"]["output"]; +}; + export enum ShotDirectionEnum { Left = "LEFT", Right = "RIGHT", diff --git a/src/schema.gql b/src/schema.gql index 4bfb34e..67552d4 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -9,6 +9,7 @@ type Query { intervalDuration: Int! = 300 ): [MakePercentageIntervalGQL!]! getShots(filterInput: FilterInput!): [ShotGQL!]! + getShotAnnotationTypes: [ShotAnnotationTypeGQL!]! getUser(userId: Int!): UserGQL getLoggedInUser: UserGQL getPlayTime(userId: Int!): UserPlayTimeGQL! @@ -194,6 +195,11 @@ type UserGQL { updatedAt: DateTime } +type ShotAnnotationTypeGQL { + id: Int! + name: String! +} + type UserPlayTimeGQL { totalSeconds: Float! }