diff --git a/src/index.tsx b/src/index.tsx index f25e819..da13ce1 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -341,20 +341,20 @@ export type VideoFeedGql = { export type VideoGql = { __typename?: 'VideoGQL'; averageTimeBetweenShots?: Maybe; - createdAt: Scalars['DateTime']['output']; + createdAt?: Maybe; elapsedTime?: Maybe; - endTime: Scalars['DateTime']['output']; + endTime?: Maybe; framesPerSecond: Scalars['Int']['output']; id: Scalars['Int']['output']; makePercentage: Scalars['Float']['output']; medianRun?: Maybe; name?: Maybe; shots: Array; - startTime: Scalars['DateTime']['output']; + startTime?: Maybe; stream?: Maybe; totalShots: Scalars['Int']['output']; totalShotsMade: Scalars['Int']['output']; - updatedAt: Scalars['DateTime']['output']; + updatedAt?: Maybe; }; export enum WallTypeEnum { @@ -375,7 +375,7 @@ export type GetFeedQueryVariables = Exact<{ }>; -export type GetFeedQuery = { __typename?: 'Query', getVideoFeedForUser: { __typename?: 'VideoFeedGQL', videos: Array<{ __typename?: 'VideoGQL', id: number, name?: string | null, totalShotsMade: number, totalShots: number, makePercentage: number, medianRun?: number | null, averageTimeBetweenShots?: number | null, createdAt: any, updatedAt: any, startTime: any, endTime: any, elapsedTime?: number | null, shots: Array<{ __typename?: 'ShotGQL', id?: number | null, videoId?: number | null, startFrame?: number | null, endFrame?: number | null, createdAt?: any | null, updatedAt?: any | null }>, stream?: { __typename?: 'UploadStreamGQL', id: string, linksRequested: number, uploadsCompleted: number, isCompleted: boolean, createdAt: any, updatedAt: any } | null }>, pageInfo: { __typename?: 'PageInfoGQL', hasNextPage: boolean, endCursor?: string | null } } }; +export type GetFeedQuery = { __typename?: 'Query', getVideoFeedForUser: { __typename?: 'VideoFeedGQL', videos: Array<{ __typename?: 'VideoGQL', id: number, name?: string | null, totalShotsMade: number, totalShots: number, makePercentage: number, medianRun?: number | null, averageTimeBetweenShots?: number | null, createdAt?: any | null, updatedAt?: any | null, startTime?: any | null, endTime?: any | null, elapsedTime?: number | null, shots: Array<{ __typename?: 'ShotGQL', id?: number | null, videoId?: number | null, startFrame?: number | null, endFrame?: number | null, createdAt?: any | null, updatedAt?: any | null }>, stream?: { __typename?: 'UploadStreamGQL', id: string, linksRequested: number, uploadsCompleted: number, isCompleted: boolean, createdAt: any, updatedAt: any } | null }>, pageInfo: { __typename?: 'PageInfoGQL', hasNextPage: boolean, endCursor?: string | null } } }; export type GetShotsQueryVariables = Exact<{ filterInput?: InputMaybe;