Compare commits

..

1 Commits

3 changed files with 0 additions and 9 deletions

View File

@@ -2723,7 +2723,6 @@ export type PlayerClusterShotGql = {
export type PlayerSummaryGql = {
__typename?: "PlayerSummaryGQL";
clusterId: Scalars["Int"]["output"];
longestRun: Scalars["Int"]["output"];
makePercentage: Scalars["Float"]["output"];
profileImageUri?: Maybe<Scalars["String"]["output"]>;
representativeFullFrameUrl?: Maybe<Scalars["String"]["output"]>;
@@ -4207,7 +4206,6 @@ export type GetFeedQuery = {
totalShotsMade: number;
makePercentage: number;
score?: number | null;
longestRun: number;
}>;
currentProcessing?: {
__typename?: "VideoProcessingGQL";
@@ -4309,7 +4307,6 @@ export type VideoCardFieldsFragment = {
totalShotsMade: number;
makePercentage: number;
score?: number | null;
longestRun: number;
}>;
currentProcessing?: {
__typename?: "VideoProcessingGQL";
@@ -4425,7 +4422,6 @@ export type GetVideoFeedQuery = {
totalShotsMade: number;
makePercentage: number;
score?: number | null;
longestRun: number;
}>;
currentProcessing?: {
__typename?: "VideoProcessingGQL";
@@ -5008,7 +5004,6 @@ export type PlayerSummaryFieldsFragment = {
totalShotsMade: number;
makePercentage: number;
score?: number | null;
longestRun: number;
};
export type PlayerClusterShotFieldsFragment = {
@@ -6051,7 +6046,6 @@ export type GetVideoDetailsQuery = {
totalShotsMade: number;
makePercentage: number;
score?: number | null;
longestRun: number;
}>;
};
};
@@ -6721,7 +6715,6 @@ export const PlayerSummaryFieldsFragmentDoc = gql`
totalShotsMade
makePercentage
score
longestRun
}
`;
export const UserSocialsFieldsFragmentDoc = gql`

View File

@@ -8,7 +8,6 @@ fragment PlayerSummaryFields on PlayerSummaryGQL {
totalShotsMade
makePercentage
score
longestRun
}
fragment PlayerClusterShotFields on PlayerClusterShotGQL {

View File

@@ -676,7 +676,6 @@ type PlayerSummaryGQL {
totalShotsMade: Int!
makePercentage: Float!
score: Int
longestRun: Int!
}
type DeployedConfigGQL {