diff --git a/src/index.tsx b/src/index.tsx index 0a2352a..453eeea 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -124,14 +124,6 @@ export enum DeviceTypeEnum { Ios = "IOS", } -export type EnumFilterBool = { - equals?: InputMaybe; -}; - -export type EnumFilterString = { - equals?: InputMaybe; -}; - export type FilterInput = { andFilters?: InputMaybe; cueBallSpeed?: InputMaybe; @@ -173,11 +165,11 @@ export type IntPoint2D = { }; export type IntendedPocketTypeInput = { - value: EnumFilterString; + value: ValueFilterString; }; export type MakeInputGql = { - value: EnumFilterBool; + value: ValueFilterBool; }; export type MakePercentageIntervalGql = { @@ -313,7 +305,7 @@ export enum ShotDirectionEnum { } export type ShotDirectionInput = { - value: EnumFilterString; + value: ValueFilterString; }; export type ShotFeaturesGql = { @@ -409,6 +401,14 @@ export type UserStatisticsGql = { totalShotsMade: Scalars["Int"]["output"]; }; +export type ValueFilterBool = { + equals?: InputMaybe; +}; + +export type ValueFilterString = { + equals?: InputMaybe; +}; + export type VideoFeedGql = { __typename?: "VideoFeedGQL"; pageInfo: PageInfoGql; diff --git a/src/schema.gql b/src/schema.gql index d8cb851..ce2bc85 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -95,22 +95,22 @@ input CueBallSpeedInput { } input IntendedPocketTypeInput { - value: EnumFilterString! + value: ValueFilterString! } -input EnumFilterString { +input ValueFilterString { equals: String = null } input ShotDirectionInput { - value: EnumFilterString! + value: ValueFilterString! } input MakeInputGQL { - value: EnumFilterBool! + value: ValueFilterBool! } -input EnumFilterBool { +input ValueFilterBool { equals: String = null }