add private field to video endpoints
All checks were successful
Tests / Tests (pull_request) Successful in 16s
All checks were successful
Tests / Tests (pull_request) Successful in 16s
This commit is contained in:
parent
54fd741670
commit
68a4c064f3
@ -3786,6 +3786,7 @@ export type GetVideoUpdatePageDetailsQuery = {
|
||||
makePercentage: number;
|
||||
elapsedTime?: number | null;
|
||||
tableSize: number;
|
||||
private: boolean;
|
||||
tags: Array<{
|
||||
__typename?: "VideoTag";
|
||||
name: string;
|
||||
@ -3825,6 +3826,7 @@ export type GetVideoDetailsQuery = {
|
||||
createdAt?: any | null;
|
||||
updatedAt?: any | null;
|
||||
tableSize: number;
|
||||
private: boolean;
|
||||
owner?: {
|
||||
__typename?: "UserGQL";
|
||||
id: number;
|
||||
@ -6750,6 +6752,7 @@ export const GetVideoUpdatePageDetailsDocument = gql`
|
||||
makePercentage
|
||||
elapsedTime
|
||||
tableSize
|
||||
private
|
||||
tags {
|
||||
tagClasses {
|
||||
name
|
||||
@ -6890,6 +6893,7 @@ export const GetVideoDetailsDocument = gql`
|
||||
createdAt
|
||||
updatedAt
|
||||
tableSize
|
||||
private
|
||||
owner {
|
||||
id
|
||||
firebaseUid
|
||||
|
@ -36,6 +36,7 @@ query GetVideoUpdatePageDetails($videoId: Int!) {
|
||||
makePercentage
|
||||
elapsedTime
|
||||
tableSize
|
||||
private
|
||||
tags {
|
||||
tagClasses {
|
||||
name
|
||||
@ -65,6 +66,7 @@ query GetVideoDetails($videoId: Int!) {
|
||||
createdAt
|
||||
updatedAt
|
||||
tableSize
|
||||
private
|
||||
owner {
|
||||
id
|
||||
firebaseUid
|
||||
|
Loading…
Reference in New Issue
Block a user