From 8fe84521c3bbb133cbd1ae7c623ee55b254d44b0 Mon Sep 17 00:00:00 2001 From: Mike Kalange Date: Wed, 19 Mar 2025 14:14:23 -0700 Subject: [PATCH] Add support for video reactions --- src/index.tsx | 24 ++++++++++++++++++++++++ src/schema.gql | 18 ++++++++++++++++++ 2 files changed, 42 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index d7ac0fd..f6e9340 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2153,6 +2153,7 @@ export type Mutation = { getHlsInitUploadLink: GetUploadLinkReturn; getProfileImageUploadLink: GetProfileUploadLinkReturn; getUploadLink: GetUploadLinkReturn; + reactToVideo: Scalars["Boolean"]["output"]; setLoggerLevel: Scalars["Boolean"]["output"]; setSegmentDuration: Scalars["Boolean"]["output"]; unfollowUser: UserGql; @@ -2217,6 +2218,11 @@ export type MutationGetUploadLinkArgs = { videoId: Scalars["Int"]["input"]; }; +export type MutationReactToVideoArgs = { + reaction: ReactionEnum; + videoId: Scalars["Int"]["input"]; +}; + export type MutationSetLoggerLevelArgs = { level: Scalars["String"]["input"]; path: Scalars["String"]["input"]; @@ -2465,6 +2471,23 @@ export type QueryWaitForArgs = { duration: Scalars["Float"]["input"]; }; +export enum ReactionEnum { + Bullseye = "BULLSEYE", + Heart = "HEART", + Hundred = "HUNDRED", + Like = "LIKE", + None = "NONE", +} + +export type ReactionGql = { + __typename?: "ReactionGQL"; + createdAt?: Maybe; + reaction: ReactionEnum; + updatedAt?: Maybe; + user: UserGql; + videoId: Scalars["Int"]["output"]; +}; + export type RequestedMedalsGql = { __typename?: "RequestedMedalsGQL"; dailyMakes50?: Maybe; @@ -2899,6 +2922,7 @@ export type VideoGql = { owner?: Maybe; playlist?: Maybe; private: Scalars["Boolean"]["output"]; + reactions: Array; screenshotUri?: Maybe; shots: Array; startTime?: Maybe; diff --git a/src/schema.gql b/src/schema.gql index 7cdc102..8757260 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -478,6 +478,7 @@ type VideoGQL { currentHomography: HomographyInfoGQL homographyHistory: [HomographyInfoGQL!]! currentProcessing: VideoProcessingGQL + reactions: [ReactionGQL!]! } type UploadStreamGQL { @@ -611,6 +612,22 @@ type VideoProcessingStatusGQL { updatedAt: DateTime } +type ReactionGQL { + videoId: Int! + user: UserGQL! + reaction: ReactionEnum! + createdAt: DateTime + updatedAt: DateTime +} + +enum ReactionEnum { + LIKE + HEART + BULLSEYE + HUNDRED + NONE +} + type RunFeaturesGQL { runId: Int! indexInRun: Int! @@ -797,6 +814,7 @@ type Mutation { ): Boolean! editUploadStream(videoId: Int!, videoMetadata: VideoMetadataInput!): Boolean! deleteVideo(videoId: Int!): Boolean! + reactToVideo(videoId: Int!, reaction: ReactionEnum!): Boolean! } input CreateBucketSetInput {