Compare commits

..

2 Commits

2 changed files with 4 additions and 2 deletions

@ -2219,7 +2219,7 @@ export type MutationGetUploadLinkArgs = {
};
export type MutationReactToVideoArgs = {
reaction?: InputMaybe<ReactionEnum>;
reaction: ReactionEnum;
videoId: Scalars["Int"]["input"];
};
@ -2476,6 +2476,7 @@ export enum ReactionEnum {
Heart = "HEART",
Hundred = "HUNDRED",
Like = "LIKE",
None = "NONE",
}
export type ReactionGql = {

@ -625,6 +625,7 @@ enum ReactionEnum {
HEART
BULLSEYE
HUNDRED
NONE
}
type RunFeaturesGQL {
@ -813,7 +814,7 @@ type Mutation {
): Boolean!
editUploadStream(videoId: Int!, videoMetadata: VideoMetadataInput!): Boolean!
deleteVideo(videoId: Int!): Boolean!
reactToVideo(videoId: Int!, reaction: ReactionEnum): Boolean!
reactToVideo(videoId: Int!, reaction: ReactionEnum!): Boolean!
}
input CreateBucketSetInput {