Compare commits

..

1 Commits

Author SHA1 Message Date
15c0849e4c Add support for video reaction
All checks were successful
Tests / Tests (pull_request) Successful in 6s
2025-03-21 11:15:29 -07:00
2 changed files with 2 additions and 4 deletions

View File

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

View File

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