add average time field to video in feed operation
All checks were successful
Tests / Tests (pull_request) Successful in 8s

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

View File

@ -3047,6 +3047,7 @@ export type GetFeedQuery = {
totalShotsMade: number;
totalShots: number;
makePercentage: number;
averageTimeBetweenShots?: number | null;
createdAt?: any | null;
updatedAt?: any | null;
startTime?: any | null;
@ -3101,6 +3102,7 @@ export type VideoCardFieldsFragment = {
totalShotsMade: number;
totalShots: number;
makePercentage: number;
averageTimeBetweenShots?: number | null;
createdAt?: any | null;
updatedAt?: any | null;
startTime?: any | null;
@ -3158,6 +3160,7 @@ export type GetVideoFeedQuery = {
totalShotsMade: number;
totalShots: number;
makePercentage: number;
averageTimeBetweenShots?: number | null;
createdAt?: any | null;
updatedAt?: any | null;
startTime?: any | null;
@ -4826,6 +4829,7 @@ export const VideoCardFieldsFragmentDoc = gql`
totalShotsMade
totalShots
makePercentage
averageTimeBetweenShots
createdAt
updatedAt
startTime

View File

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