Add average time field to video in feed operation #164

Merged
loewy merged 2 commits from loewy/add-average-time-per-shot-in-feed-operation into master 2025-03-11 14:42:25 -06:00
2 changed files with 5 additions and 0 deletions
Showing only changes of commit 7ce0c058b7 - Show all commits

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