dean/add-challenge-feature #212

Merged
dean merged 9 commits from dean/add-challenge-feature into master 2025-12-10 19:11:19 +00:00
Showing only changes of commit 2d67e076f7 - Show all commits

View File

@@ -2577,6 +2577,7 @@ export enum NotificationTypeEnum {
CommentReply = "COMMENT_REPLY", CommentReply = "COMMENT_REPLY",
Follow = "FOLLOW", Follow = "FOLLOW",
Reaction = "REACTION", Reaction = "REACTION",
ChallengeInvite = "CHALLENGE_INVITE",
} }
export type OtherErrorNeedsNote = { export type OtherErrorNeedsNote = {
@@ -4202,6 +4203,7 @@ export type GetVideoFeedQuery = {
hasNextPage: boolean; hasNextPage: boolean;
endCursor?: string | null; endCursor?: string | null;
}; };
hasFollowing?: boolean | null;
}; };
}; };
@@ -4492,6 +4494,8 @@ export type NotificationFragment = {
id: number; id: number;
notificationType: NotificationTypeEnum; notificationType: NotificationTypeEnum;
videoId?: number | null; videoId?: number | null;
challengeId?: number | null;
challenge?: { __typename?: "Challenge"; name: string } | null;
reactionType?: string | null; reactionType?: string | null;
isRead: boolean; isRead: boolean;
createdAt: any; createdAt: any;