diff --git a/src/index.tsx b/src/index.tsx index aaafb8c..a7817d3 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3191,6 +3191,7 @@ export type GetFeedQuery = { id: string; lastIntendedSegmentBound?: number | null; isCompleted: boolean; + streamSegmentType: StreamSegmentTypeEnum; } | null; tags: Array<{ __typename?: "VideoTag"; @@ -3264,6 +3265,7 @@ export type VideoCardFieldsFragment = { id: string; lastIntendedSegmentBound?: number | null; isCompleted: boolean; + streamSegmentType: StreamSegmentTypeEnum; } | null; tags: Array<{ __typename?: "VideoTag"; @@ -3340,6 +3342,7 @@ export type GetVideoFeedQuery = { id: string; lastIntendedSegmentBound?: number | null; isCompleted: boolean; + streamSegmentType: StreamSegmentTypeEnum; } | null; tags: Array<{ __typename?: "VideoTag"; @@ -3831,6 +3834,15 @@ export type GetShotsWithMetadataFilterResultQuery = { name: string; }; }>; + video?: { + __typename?: "VideoGQL"; + id: number; + stream?: { + __typename?: "UploadStreamGQL"; + id: string; + streamSegmentType: StreamSegmentTypeEnum; + } | null; + } | null; }>; }; }; @@ -3900,6 +3912,15 @@ export type GetShotsWithMetadataQuery = { name: string; }; }>; + video?: { + __typename?: "VideoGQL"; + id: number; + stream?: { + __typename?: "UploadStreamGQL"; + id: string; + streamSegmentType: StreamSegmentTypeEnum; + } | null; + } | null; }>; }; }; @@ -3958,6 +3979,15 @@ export type GetShotsByIdsQuery = { notes: string; type: { __typename?: "ShotAnnotationTypeGQL"; id: number; name: string }; }>; + video?: { + __typename?: "VideoGQL"; + id: number; + stream?: { + __typename?: "UploadStreamGQL"; + id: string; + streamSegmentType: StreamSegmentTypeEnum; + } | null; + } | null; }>; }; @@ -4009,6 +4039,15 @@ export type ShotWithAllFeaturesFragment = { notes: string; type: { __typename?: "ShotAnnotationTypeGQL"; id: number; name: string }; }>; + video?: { + __typename?: "VideoGQL"; + id: number; + stream?: { + __typename?: "UploadStreamGQL"; + id: string; + streamSegmentType: StreamSegmentTypeEnum; + } | null; + } | null; }; export type EditShotMutationVariables = Exact<{ @@ -4077,6 +4116,15 @@ export type EditShotMutation = { name: string; }; }>; + video?: { + __typename?: "VideoGQL"; + id: number; + stream?: { + __typename?: "UploadStreamGQL"; + id: string; + streamSegmentType: StreamSegmentTypeEnum; + } | null; + } | null; } | null; }; }; @@ -5100,6 +5148,7 @@ export const VideoCardFieldsFragmentDoc = gql` id lastIntendedSegmentBound isCompleted + streamSegmentType } tableSize tags { @@ -5205,6 +5254,13 @@ export const ShotWithAllFeaturesFragmentDoc = gql` } notes } + video { + id + stream { + id + streamSegmentType + } + } } `; export const UserFragmentFragmentDoc = gql` diff --git a/src/operations/feed.gql b/src/operations/feed.gql index 419e064..cb270f3 100644 --- a/src/operations/feed.gql +++ b/src/operations/feed.gql @@ -40,6 +40,7 @@ fragment VideoCardFields on VideoGQL { id lastIntendedSegmentBound isCompleted + streamSegmentType } tableSize tags { diff --git a/src/operations/shots.gql b/src/operations/shots.gql index 8b8ef88..0790651 100644 --- a/src/operations/shots.gql +++ b/src/operations/shots.gql @@ -185,6 +185,13 @@ fragment ShotWithAllFeatures on ShotGQL { } notes } + video { + id + stream { + id + streamSegmentType + } + } } mutation EditShot($shotId: Int!, $fieldsToEdit: EditableShotFieldInputGQL!) {