diff --git a/src/index.tsx b/src/index.tsx index 58a5ce8..04f0d51 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -4452,6 +4452,7 @@ export type GetShotsWithMetadataFilterResultQuery = { } | null; playlist?: { __typename?: "HLSPlaylistGQL"; + videoId: number; segmentDurations: Array; } | null; } | null; @@ -4534,6 +4535,7 @@ export type GetShotsWithMetadataQuery = { } | null; playlist?: { __typename?: "HLSPlaylistGQL"; + videoId: number; segmentDurations: Array; } | null; } | null; @@ -4605,6 +4607,7 @@ export type GetShotsByIdsQuery = { } | null; playlist?: { __typename?: "HLSPlaylistGQL"; + videoId: number; segmentDurations: Array; } | null; } | null; @@ -4669,6 +4672,7 @@ export type ShotWithAllFeaturesFragment = { } | null; playlist?: { __typename?: "HLSPlaylistGQL"; + videoId: number; segmentDurations: Array; } | null; } | null; @@ -4750,6 +4754,7 @@ export type EditShotMutation = { } | null; playlist?: { __typename?: "HLSPlaylistGQL"; + videoId: number; segmentDurations: Array; } | null; } | null; @@ -5983,6 +5988,7 @@ export const ShotWithAllFeaturesFragmentDoc = gql` streamSegmentType } playlist { + videoId segmentDurations } } diff --git a/src/operations/shots.gql b/src/operations/shots.gql index c0efa2e..93ae786 100644 --- a/src/operations/shots.gql +++ b/src/operations/shots.gql @@ -192,6 +192,7 @@ fragment ShotWithAllFeatures on ShotGQL { streamSegmentType } playlist { + videoId segmentDurations } }