import { gql } from '@apollo/client'; import * as Apollo from '@apollo/client'; export type Maybe = T | null; export type InputMaybe = Maybe; export type Exact = { [K in keyof T]: T[K] }; export type MakeOptional = Omit & { [SubKey in K]?: Maybe }; export type MakeMaybe = Omit & { [SubKey in K]: Maybe }; export type MakeEmpty = { [_ in K]?: never }; export type Incremental = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never }; const defaultOptions = {} as const; /** All built-in and custom scalars, mapped to their actual values */ export type Scalars = { ID: { input: string; output: string; } String: { input: string; output: string; } Boolean: { input: boolean; output: boolean; } Int: { input: number; output: number; } Float: { input: number; output: number; } /** Date with time (isoformat) */ DateTime: { input: any; output: any; } /** Decimal (fixed-point) */ Decimal: { input: any; output: any; } }; export type AggregateResultGql = { __typename?: 'AggregateResultGQL'; featureBuckets: Array; targetMetrics: Array; }; export type AndFilter = { filters: Array; }; export type BankFeaturesGql = { __typename?: 'BankFeaturesGQL'; bankAngle: Scalars['Float']['output']; distance: Scalars['Float']['output']; wallsHit: Array; }; export type BucketGql = { __typename?: 'BucketGQL'; lowerBound: Scalars['Float']['output']; rangeKey: Scalars['String']['output']; }; export type BucketInputGql = { lowerBound: Scalars['Float']['input']; rangeKey: Scalars['String']['input']; }; export type BucketSetGql = { __typename?: 'BucketSetGQL'; buckets: Array; feature: Scalars['String']['output']; keyName: Scalars['String']['output']; }; export type BucketSetInputGql = { buckets: Array; feature: Scalars['String']['input']; }; export type CreateBucketSetInput = { buckets: Array; feature: Scalars['String']['input']; keyName: Scalars['String']['input']; }; export type CreateUploadStreamReturn = { __typename?: 'CreateUploadStreamReturn'; videoId: Scalars['Int']['output']; }; export type CueBallSpeedInput = { value: RangeFilter; }; export type CueObjectAngleInput = { value: RangeFilter; }; export type CueObjectDistanceInput = { value: RangeFilter; }; export type CueObjectFeaturesGql = { __typename?: 'CueObjectFeaturesGQL'; cueBallSpeed?: Maybe; cueObjectAngle?: Maybe; cueObjectDistance?: Maybe; shotDirection?: Maybe; }; export enum DeviceTypeEnum { Android = 'ANDROID', Browser = 'BROWSER', Ios = 'IOS' } export type EnumFilter = { equals?: InputMaybe; }; export type FilterInput = { andFilters?: InputMaybe; cueBallSpeed?: InputMaybe; cueObjectAngle?: InputMaybe; cueObjectDistance?: InputMaybe; intendedPocketType?: InputMaybe; orFilters?: InputMaybe; shotDirection?: InputMaybe; targetPocketDistance?: InputMaybe; }; export type GetUploadLinkReturn = { __typename?: 'GetUploadLinkReturn'; linksRequested: Scalars['Int']['output']; uploadUrl: Scalars['String']['output']; uploadsCompleted: Scalars['Int']['output']; }; export type IntendedPocketTypeInput = { value: EnumFilter; }; export type Mutation = { __typename?: 'Mutation'; createBucketSet: BucketSetGql; createUploadStream: CreateUploadStreamReturn; getUploadLink: GetUploadLinkReturn; processVideoSource: ProcessVideoSourceReturn; terminateUploadStream: Scalars['Boolean']['output']; }; export type MutationCreateBucketSetArgs = { params: CreateBucketSetInput; }; export type MutationCreateUploadStreamArgs = { uploadMetadata?: InputMaybe; videoName?: InputMaybe; }; export type MutationGetUploadLinkArgs = { chunkIndex: Scalars['Int']['input']; videoId: Scalars['Int']['input']; }; export type MutationProcessVideoSourceArgs = { input: ProcessVideoSourceInput; }; export type MutationTerminateUploadStreamArgs = { videoId: Scalars['Int']['input']; }; export type OrFilter = { filters: Array; }; export enum PocketEnum { Corner = 'CORNER', Side = 'SIDE' } export type PocketingIntentionFeaturesGql = { __typename?: 'PocketingIntentionFeaturesGQL'; intendedPocketType?: Maybe; make?: Maybe; targetPocketDistance?: Maybe; }; export type ProcessVideoSourceInput = { val: Scalars['Int']['input']; }; export type ProcessVideoSourceReturn = { __typename?: 'ProcessVideoSourceReturn'; val: Scalars['Int']['output']; }; export type Query = { __typename?: 'Query'; getAggregateShots: Array; getBucketSet?: Maybe; getShots: Array; getUser?: Maybe; getVideo: VideoGql; }; export type QueryGetAggregateShotsArgs = { bucketSets: Array; }; export type QueryGetBucketSetArgs = { keyName: Scalars['String']['input']; }; export type QueryGetShotsArgs = { filterInput?: InputMaybe; }; export type QueryGetUserArgs = { userId: Scalars['Int']['input']; }; export type QueryGetVideoArgs = { videoId: Scalars['Int']['input']; }; export type RangeFilter = { greaterThanEqualTo?: InputMaybe; lessThan?: InputMaybe; }; export enum ShotDirectionEnum { Left = 'LEFT', Right = 'RIGHT', Straight = 'STRAIGHT' } export type ShotDirectionInput = { value: EnumFilter; }; export type ShotFeaturesGql = { __typename?: 'ShotFeaturesGQL'; bank?: Maybe; cueBallSpeed?: Maybe; cueObjectAngle?: Maybe; cueObjectDistance?: Maybe; intendedPocket?: Maybe; shotDirection?: Maybe; targetPocketDistance?: Maybe; }; export type ShotGql = { __typename?: 'ShotGQL'; createdAt?: Maybe; cueObjectFeatures?: Maybe; endFrame?: Maybe; features?: Maybe; id?: Maybe; pocketingIntentionFeatures?: Maybe; startFrame?: Maybe; updatedAt?: Maybe; videoId?: Maybe; }; export type TargetFloatFeatureGql = { __typename?: 'TargetFloatFeatureGQL'; average?: Maybe; featureName: Scalars['String']['output']; median?: Maybe; }; export type TargetMetricGql = { __typename?: 'TargetMetricGQL'; count?: Maybe; floatFeature?: Maybe; makePercentage?: Maybe; }; export type TargetPocketDistanceInput = { value: RangeFilter; }; export type UploadMetadataInput = { appVersion?: InputMaybe; browserName?: InputMaybe; browserVersion?: InputMaybe; deviceType?: InputMaybe; ipAddress?: InputMaybe; locale?: InputMaybe; networkType?: InputMaybe; osVersion?: InputMaybe; timezone?: InputMaybe; }; export type UploadStreamGql = { __typename?: 'UploadStreamGQL'; createdAt: Scalars['DateTime']['output']; id: Scalars['ID']['output']; isCompleted: Scalars['Boolean']['output']; linksRequested: Scalars['Int']['output']; updatedAt: Scalars['DateTime']['output']; uploadMetadata: UploadStreamMetadata; uploadsCompleted: Scalars['Int']['output']; }; export type UploadStreamMetadata = { __typename?: 'UploadStreamMetadata'; appVersion?: Maybe; browserName?: Maybe; browserVersion?: Maybe; deviceType?: Maybe; ipAddress?: Maybe; locale?: Maybe; networkType?: Maybe; osVersion?: Maybe; timezone?: Maybe; }; export type UserGql = { __typename?: 'UserGQL'; createdAt?: Maybe; id: Scalars['Int']['output']; statistics: UserStatisticsGql; updatedAt?: Maybe; username: Scalars['String']['output']; }; export type UserStatisticsGql = { __typename?: 'UserStatisticsGQL'; averageTimeBetweenShots: Scalars['Decimal']['output']; makePercentage: Scalars['Decimal']['output']; medianRun?: Maybe; timeSpentPlaying: Scalars['Decimal']['output']; totalShots: Scalars['Int']['output']; totalShotsMade: Scalars['Int']['output']; }; export type VideoGql = { __typename?: 'VideoGQL'; averageTimeBetweenShots?: Maybe; createdAt: Scalars['DateTime']['output']; elapsedTime: Scalars['Decimal']['output']; endTime: Scalars['DateTime']['output']; framesPerSecond: Scalars['Int']['output']; id: Scalars['Int']['output']; makePercentage: Scalars['Decimal']['output']; medianRun: Scalars['Decimal']['output']; shots: Array; startTime: Scalars['DateTime']['output']; stream?: Maybe; totalFrames: Scalars['Int']['output']; totalShots: Scalars['Int']['output']; totalShotsMade: Scalars['Int']['output']; updatedAt: Scalars['DateTime']['output']; }; export enum WallTypeEnum { Long = 'LONG', Short = 'SHORT' } export type CreateUploadStreamMutationVariables = Exact<{ videoName: Scalars['String']['input']; deviceType?: InputMaybe; osVersion?: InputMaybe; appVersion?: InputMaybe; browserName?: InputMaybe; browserVersion?: InputMaybe; locale?: InputMaybe; timezone?: InputMaybe; networkType?: InputMaybe; ipAddress?: InputMaybe; }>; export type CreateUploadStreamMutation = { __typename?: 'Mutation', createUploadStream: { __typename?: 'CreateUploadStreamReturn', videoId: number } }; export type GetUploadLinkMutationVariables = Exact<{ videoId: Scalars['Int']['input']; chunkIndex: Scalars['Int']['input']; }>; export type GetUploadLinkMutation = { __typename?: 'Mutation', getUploadLink: { __typename?: 'GetUploadLinkReturn', uploadUrl: string, linksRequested: number } }; export type TerminateUploadStreamMutationVariables = Exact<{ videoId: Scalars['Int']['input']; }>; export type TerminateUploadStreamMutation = { __typename?: 'Mutation', terminateUploadStream: boolean }; export const CreateUploadStreamDocument = gql` mutation CreateUploadStream($videoName: String!, $deviceType: DeviceTypeEnum, $osVersion: String, $appVersion: String, $browserName: String, $browserVersion: String, $locale: String, $timezone: String, $networkType: String, $ipAddress: String) { createUploadStream( videoName: $videoName uploadMetadata: {deviceType: $deviceType, osVersion: $osVersion, appVersion: $appVersion, browserName: $browserName, browserVersion: $browserVersion, locale: $locale, timezone: $timezone, networkType: $networkType, ipAddress: $ipAddress} ) { videoId } } `; export type CreateUploadStreamMutationFn = Apollo.MutationFunction; /** * __useCreateUploadStreamMutation__ * * To run a mutation, you first call `useCreateUploadStreamMutation` within a React component and pass it any options that fit your needs. * When your component renders, `useCreateUploadStreamMutation` returns a tuple that includes: * - A mutate function that you can call at any time to execute the mutation * - An object with fields that represent the current status of the mutation's execution * * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; * * @example * const [createUploadStreamMutation, { data, loading, error }] = useCreateUploadStreamMutation({ * variables: { * videoName: // value for 'videoName' * deviceType: // value for 'deviceType' * osVersion: // value for 'osVersion' * appVersion: // value for 'appVersion' * browserName: // value for 'browserName' * browserVersion: // value for 'browserVersion' * locale: // value for 'locale' * timezone: // value for 'timezone' * networkType: // value for 'networkType' * ipAddress: // value for 'ipAddress' * }, * }); */ export function useCreateUploadStreamMutation(baseOptions?: Apollo.MutationHookOptions) { const options = {...defaultOptions, ...baseOptions} return Apollo.useMutation(CreateUploadStreamDocument, options); } export type CreateUploadStreamMutationHookResult = ReturnType; export type CreateUploadStreamMutationResult = Apollo.MutationResult; export type CreateUploadStreamMutationOptions = Apollo.BaseMutationOptions; export const GetUploadLinkDocument = gql` mutation GetUploadLink($videoId: Int!, $chunkIndex: Int!) { getUploadLink(videoId: $videoId, chunkIndex: $chunkIndex) { uploadUrl linksRequested } } `; export type GetUploadLinkMutationFn = Apollo.MutationFunction; /** * __useGetUploadLinkMutation__ * * To run a mutation, you first call `useGetUploadLinkMutation` within a React component and pass it any options that fit your needs. * When your component renders, `useGetUploadLinkMutation` returns a tuple that includes: * - A mutate function that you can call at any time to execute the mutation * - An object with fields that represent the current status of the mutation's execution * * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; * * @example * const [getUploadLinkMutation, { data, loading, error }] = useGetUploadLinkMutation({ * variables: { * videoId: // value for 'videoId' * chunkIndex: // value for 'chunkIndex' * }, * }); */ export function useGetUploadLinkMutation(baseOptions?: Apollo.MutationHookOptions) { const options = {...defaultOptions, ...baseOptions} return Apollo.useMutation(GetUploadLinkDocument, options); } export type GetUploadLinkMutationHookResult = ReturnType; export type GetUploadLinkMutationResult = Apollo.MutationResult; export type GetUploadLinkMutationOptions = Apollo.BaseMutationOptions; export const TerminateUploadStreamDocument = gql` mutation TerminateUploadStream($videoId: Int!) { terminateUploadStream(videoId: $videoId) } `; export type TerminateUploadStreamMutationFn = Apollo.MutationFunction; /** * __useTerminateUploadStreamMutation__ * * To run a mutation, you first call `useTerminateUploadStreamMutation` within a React component and pass it any options that fit your needs. * When your component renders, `useTerminateUploadStreamMutation` returns a tuple that includes: * - A mutate function that you can call at any time to execute the mutation * - An object with fields that represent the current status of the mutation's execution * * @param baseOptions options that will be passed into the mutation, supported options are listed on: https://www.apollographql.com/docs/react/api/react-hooks/#options-2; * * @example * const [terminateUploadStreamMutation, { data, loading, error }] = useTerminateUploadStreamMutation({ * variables: { * videoId: // value for 'videoId' * }, * }); */ export function useTerminateUploadStreamMutation(baseOptions?: Apollo.MutationHookOptions) { const options = {...defaultOptions, ...baseOptions} return Apollo.useMutation(TerminateUploadStreamDocument, options); } export type TerminateUploadStreamMutationHookResult = ReturnType; export type TerminateUploadStreamMutationResult = Apollo.MutationResult; export type TerminateUploadStreamMutationOptions = Apollo.BaseMutationOptions;