From 1f33ba2531bc7ee48a028345604b4cc887c26bc8 Mon Sep 17 00:00:00 2001 From: Mike Kalange Date: Fri, 21 Mar 2025 11:15:29 -0700 Subject: [PATCH 1/2] Add support for video reaction --- src/index.tsx | 23 +++++++++++++++++++++++ src/schema.gql | 17 +++++++++++++++++ 2 files changed, 40 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 95064c0..d9ac5ea 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2240,6 +2240,7 @@ export type Mutation = { getProfileImageUploadLink: GetProfileUploadLinkReturn; getUploadLink: GetUploadLinkReturn; retireTags: Scalars["Boolean"]["output"]; + reactToVideo: Scalars["Boolean"]["output"]; setLoggerLevel: Scalars["Boolean"]["output"]; setSegmentDuration: Scalars["Boolean"]["output"]; unfollowUser: UserGql; @@ -2311,6 +2312,11 @@ export type MutationGetUploadLinkArgs = { export type MutationRetireTagsArgs = { tagIds: Array; +} + +export type MutationReactToVideoArgs = { + reaction?: InputMaybe; + videoId: Scalars["Int"]["input"]; }; export type MutationSetLoggerLevelArgs = { @@ -2565,6 +2571,22 @@ export type QueryWaitForArgs = { duration: Scalars["Float"]["input"]; }; +export enum ReactionEnum { + Bullseye = "BULLSEYE", + Heart = "HEART", + Hundred = "HUNDRED", + Like = "LIKE", +} + +export type ReactionGql = { + __typename?: "ReactionGQL"; + createdAt?: Maybe; + reaction: ReactionEnum; + updatedAt?: Maybe; + user: UserGql; + videoId: Scalars["Int"]["output"]; +}; + export type RequestedMedalsGql = { __typename?: "RequestedMedalsGQL"; dailyMakes50?: Maybe; @@ -3000,6 +3022,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 7628db6..58f45b6 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -479,6 +479,7 @@ type VideoGQL { currentHomography: HomographyInfoGQL homographyHistory: [HomographyInfoGQL!]! currentProcessing: VideoProcessingGQL + reactions: [ReactionGQL!]! } type UploadStreamGQL { @@ -612,6 +613,21 @@ type VideoProcessingStatusGQL { updatedAt: DateTime } +type ReactionGQL { + videoId: Int! + user: UserGQL! + reaction: ReactionEnum! + createdAt: DateTime + updatedAt: DateTime +} + +enum ReactionEnum { + LIKE + HEART + BULLSEYE + HUNDRED +} + type RunFeaturesGQL { runId: Int! indexInRun: Int! @@ -801,6 +817,7 @@ type Mutation { editUploadStream(videoId: Int!, videoMetadata: VideoMetadataInput!): Boolean! deleteVideo(videoId: Int!): Boolean! deleteTags(videoId: Int!, tagsToDelete: [VideoTagInput!]!): Boolean! + reactToVideo(videoId: Int!, reaction: ReactionEnum): Boolean! } input CreateBucketSetInput { -- 2.47.2 From d6b9d5e9c5c85ce4ea579256e66915c2369dff42 Mon Sep 17 00:00:00 2001 From: Loewy Date: Mon, 31 Mar 2025 14:25:39 -0700 Subject: [PATCH 2/2] merge --- src/index.tsx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/index.tsx b/src/index.tsx index d9ac5ea..803f048 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2239,8 +2239,8 @@ export type Mutation = { getHlsInitUploadLink: GetUploadLinkReturn; getProfileImageUploadLink: GetProfileUploadLinkReturn; getUploadLink: GetUploadLinkReturn; - retireTags: Scalars["Boolean"]["output"]; reactToVideo: Scalars["Boolean"]["output"]; + retireTags: Scalars["Boolean"]["output"]; setLoggerLevel: Scalars["Boolean"]["output"]; setSegmentDuration: Scalars["Boolean"]["output"]; unfollowUser: UserGql; @@ -2310,15 +2310,15 @@ export type MutationGetUploadLinkArgs = { videoId: Scalars["Int"]["input"]; }; -export type MutationRetireTagsArgs = { - tagIds: Array; -} - export type MutationReactToVideoArgs = { reaction?: InputMaybe; videoId: Scalars["Int"]["input"]; }; +export type MutationRetireTagsArgs = { + tagIds: Array; +}; + export type MutationSetLoggerLevelArgs = { level: Scalars["String"]["input"]; path: Scalars["String"]["input"]; -- 2.47.2