From e6960038f2d7535573d377a5737bdab06119484c Mon Sep 17 00:00:00 2001 From: Loewy Date: Mon, 18 Nov 2024 23:11:47 -0800 Subject: [PATCH] add difficulty to pocketingIntentionFeatures in ShotWithAllFeatures --- src/index.tsx | 5 +++++ src/operations/shots.gql | 1 + 2 files changed, 6 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index e406c13..21669ae 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3195,6 +3195,7 @@ export type GetShotsWithMetadataFilterResultQuery = { targetPocketAngleDirection?: ShotDirectionEnum | null; marginOfErrorInDegrees?: number | null; intendedPocketType?: PocketEnum | null; + difficulty?: number | null; } | null; pocketingIntentionInfo?: { __typename?: "PocketingIntentionInfoGQL"; @@ -3261,6 +3262,7 @@ export type GetShotsWithMetadataQuery = { targetPocketAngleDirection?: ShotDirectionEnum | null; marginOfErrorInDegrees?: number | null; intendedPocketType?: PocketEnum | null; + difficulty?: number | null; } | null; pocketingIntentionInfo?: { __typename?: "PocketingIntentionInfoGQL"; @@ -3320,6 +3322,7 @@ export type GetShotsByIdsQuery = { targetPocketAngleDirection?: ShotDirectionEnum | null; marginOfErrorInDegrees?: number | null; intendedPocketType?: PocketEnum | null; + difficulty?: number | null; } | null; pocketingIntentionInfo?: { __typename?: "PocketingIntentionInfoGQL"; @@ -3368,6 +3371,7 @@ export type ShotWithAllFeaturesFragment = { targetPocketAngleDirection?: ShotDirectionEnum | null; marginOfErrorInDegrees?: number | null; intendedPocketType?: PocketEnum | null; + difficulty?: number | null; } | null; pocketingIntentionInfo?: { __typename?: "PocketingIntentionInfoGQL"; @@ -4333,6 +4337,7 @@ export const ShotWithAllFeaturesFragmentDoc = gql` targetPocketAngleDirection marginOfErrorInDegrees intendedPocketType + difficulty } pocketingIntentionInfo { ballId diff --git a/src/operations/shots.gql b/src/operations/shots.gql index 811938c..6d28054 100644 --- a/src/operations/shots.gql +++ b/src/operations/shots.gql @@ -159,6 +159,7 @@ fragment ShotWithAllFeatures on ShotGQL { targetPocketAngleDirection marginOfErrorInDegrees intendedPocketType + difficulty } pocketingIntentionInfo { ballId -- 2.46.1