Add separate return to profile image #40

Merged
countablecloud merged 2 commits from mk/add-separate-return-to-image-upload-link into master 2024-08-19 15:58:16 -06:00
2 changed files with 10 additions and 0 deletions
Showing only changes of commit 16e79ed608 - Show all commits

View File

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

View File

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