add average difficulty
All checks were successful
Tests / Tests (pull_request) Successful in 7s

This commit is contained in:
Loewy 2025-03-11 13:41:37 -07:00
parent 7ce0c058b7
commit c561ea20ab
2 changed files with 5 additions and 0 deletions

View File

@ -3048,6 +3048,7 @@ export type GetFeedQuery = {
totalShots: number; totalShots: number;
makePercentage: number; makePercentage: number;
averageTimeBetweenShots?: number | null; averageTimeBetweenShots?: number | null;
averageDifficulty?: number | null;
createdAt?: any | null; createdAt?: any | null;
updatedAt?: any | null; updatedAt?: any | null;
startTime?: any | null; startTime?: any | null;
@ -3103,6 +3104,7 @@ export type VideoCardFieldsFragment = {
totalShots: number; totalShots: number;
makePercentage: number; makePercentage: number;
averageTimeBetweenShots?: number | null; averageTimeBetweenShots?: number | null;
averageDifficulty?: number | null;
createdAt?: any | null; createdAt?: any | null;
updatedAt?: any | null; updatedAt?: any | null;
startTime?: any | null; startTime?: any | null;
@ -3161,6 +3163,7 @@ export type GetVideoFeedQuery = {
totalShots: number; totalShots: number;
makePercentage: number; makePercentage: number;
averageTimeBetweenShots?: number | null; averageTimeBetweenShots?: number | null;
averageDifficulty?: number | null;
createdAt?: any | null; createdAt?: any | null;
updatedAt?: any | null; updatedAt?: any | null;
startTime?: any | null; startTime?: any | null;
@ -4830,6 +4833,7 @@ export const VideoCardFieldsFragmentDoc = gql`
totalShots totalShots
makePercentage makePercentage
averageTimeBetweenShots averageTimeBetweenShots
averageDifficulty
createdAt createdAt
updatedAt updatedAt
startTime startTime

View File

@ -28,6 +28,7 @@ fragment VideoCardFields on VideoGQL {
totalShots totalShots
makePercentage makePercentage
averageTimeBetweenShots averageTimeBetweenShots
averageDifficulty
createdAt createdAt
updatedAt updatedAt
startTime startTime