add stream to getUploadLink return

This commit is contained in:
Loewy 2024-08-19 12:57:11 -07:00
parent 72b451d322
commit d4cb5cf41a
2 changed files with 10 additions and 0 deletions

View File

@ -2191,6 +2191,10 @@ export type GetUploadLinkMutation = {
value: string;
} | null>;
};
stream?: {
__typename?: "UploadStreamGQL";
uploadCompletionCursor: number;
} | null;
};
};
@ -4140,6 +4144,9 @@ export const GetUploadLinkDocument = gql`
}
}
}
stream {
uploadCompletionCursor
}
}
}
`;

View File

@ -34,6 +34,9 @@ mutation GetUploadLink($videoId: Int!, $segmentIndex: Int!) {
}
}
}
stream {
uploadCompletionCursor
}
}
}