diff --git a/src/index.tsx b/src/index.tsx index 2e4efd5..58a5ce8 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -3275,6 +3275,7 @@ export type VideoGql = { name?: Maybe; owner?: Maybe; playlist?: Maybe; + pocketSize?: Maybe; private: Scalars["Boolean"]["output"]; reactions: Array; screenshotUri?: Maybe; @@ -3303,6 +3304,7 @@ export type VideoMetadataInput = { /** @deprecated `game_type` is deprecated. Use `tags` instead. */ gameType?: InputMaybe; lastIntendedSegmentBound?: InputMaybe; + pocketSize?: InputMaybe; private?: InputMaybe; resolution?: InputMaybe; startTime?: InputMaybe; @@ -5103,6 +5105,7 @@ export type GetVideoUpdatePageDetailsQuery = { makePercentage: number; elapsedTime?: number | null; tableSize: number; + pocketSize?: number | null; private: boolean; tags: Array<{ __typename?: "VideoTag"; @@ -5143,6 +5146,7 @@ export type GetVideoDetailsQuery = { createdAt?: any | null; updatedAt?: any | null; tableSize: number; + pocketSize?: number | null; private: boolean; owner?: { __typename?: "UserGQL"; @@ -9961,6 +9965,7 @@ export const GetVideoUpdatePageDetailsDocument = gql` makePercentage elapsedTime tableSize + pocketSize private tags { tagClasses { @@ -10102,6 +10107,7 @@ export const GetVideoDetailsDocument = gql` createdAt updatedAt tableSize + pocketSize private owner { id diff --git a/src/operations/video.gql b/src/operations/video.gql index b95df20..1ab115e 100644 --- a/src/operations/video.gql +++ b/src/operations/video.gql @@ -36,6 +36,7 @@ query GetVideoUpdatePageDetails($videoId: Int!) { makePercentage elapsedTime tableSize + pocketSize private tags { tagClasses { @@ -66,6 +67,7 @@ query GetVideoDetails($videoId: Int!) { createdAt updatedAt tableSize + pocketSize private owner { id diff --git a/src/schema.gql b/src/schema.gql index 1db3355..fbf2053 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -348,6 +348,7 @@ type VideoGQL { elapsedTime: Float framesPerSecond: Float! tableSize: Float! + pocketSize: Float private: Boolean! stream: UploadStreamGQL playlist: HLSPlaylistGQL @@ -1124,6 +1125,7 @@ input VideoMetadataInput { """ tags: [VideoTagInput!] = null tableSize: Float = null + pocketSize: Float = null lastIntendedSegmentBound: Int = null streamSegmentType: StreamSegmentTypeEnum = null private: Boolean = null