Compare commits
2 Commits
15c0849e4c
...
4f1a4c2cc1
Author | SHA1 | Date | |
---|---|---|---|
4f1a4c2cc1 | |||
8fe84521c3 |
@ -2219,7 +2219,7 @@ export type MutationGetUploadLinkArgs = {
|
|||||||
};
|
};
|
||||||
|
|
||||||
export type MutationReactToVideoArgs = {
|
export type MutationReactToVideoArgs = {
|
||||||
reaction?: InputMaybe<ReactionEnum>;
|
reaction: ReactionEnum;
|
||||||
videoId: Scalars["Int"]["input"];
|
videoId: Scalars["Int"]["input"];
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -2476,6 +2476,7 @@ export enum ReactionEnum {
|
|||||||
Heart = "HEART",
|
Heart = "HEART",
|
||||||
Hundred = "HUNDRED",
|
Hundred = "HUNDRED",
|
||||||
Like = "LIKE",
|
Like = "LIKE",
|
||||||
|
None = "NONE",
|
||||||
}
|
}
|
||||||
|
|
||||||
export type ReactionGql = {
|
export type ReactionGql = {
|
||||||
|
@ -625,6 +625,7 @@ enum ReactionEnum {
|
|||||||
HEART
|
HEART
|
||||||
BULLSEYE
|
BULLSEYE
|
||||||
HUNDRED
|
HUNDRED
|
||||||
|
NONE
|
||||||
}
|
}
|
||||||
|
|
||||||
type RunFeaturesGQL {
|
type RunFeaturesGQL {
|
||||||
@ -813,7 +814,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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user