add private field to video endpoints
All checks were successful
Tests / Tests (pull_request) Successful in 16s

This commit is contained in:
Loewy 2024-12-05 15:30:16 -08:00
parent 54fd741670
commit 68a4c064f3
2 changed files with 6 additions and 0 deletions

View File

@ -3786,6 +3786,7 @@ export type GetVideoUpdatePageDetailsQuery = {
makePercentage: number; makePercentage: number;
elapsedTime?: number | null; elapsedTime?: number | null;
tableSize: number; tableSize: number;
private: boolean;
tags: Array<{ tags: Array<{
__typename?: "VideoTag"; __typename?: "VideoTag";
name: string; name: string;
@ -3825,6 +3826,7 @@ export type GetVideoDetailsQuery = {
createdAt?: any | null; createdAt?: any | null;
updatedAt?: any | null; updatedAt?: any | null;
tableSize: number; tableSize: number;
private: boolean;
owner?: { owner?: {
__typename?: "UserGQL"; __typename?: "UserGQL";
id: number; id: number;
@ -6750,6 +6752,7 @@ export const GetVideoUpdatePageDetailsDocument = gql`
makePercentage makePercentage
elapsedTime elapsedTime
tableSize tableSize
private
tags { tags {
tagClasses { tagClasses {
name name
@ -6890,6 +6893,7 @@ export const GetVideoDetailsDocument = gql`
createdAt createdAt
updatedAt updatedAt
tableSize tableSize
private
owner { owner {
id id
firebaseUid firebaseUid

View File

@ -36,6 +36,7 @@ query GetVideoUpdatePageDetails($videoId: Int!) {
makePercentage makePercentage
elapsedTime elapsedTime
tableSize tableSize
private
tags { tags {
tagClasses { tagClasses {
name name
@ -65,6 +66,7 @@ query GetVideoDetails($videoId: Int!) {
createdAt createdAt
updatedAt updatedAt
tableSize tableSize
private
owner { owner {
id id
firebaseUid firebaseUid