This commit is contained in:
@@ -1114,6 +1114,7 @@ export type Query = {
|
||||
getShotAnnotationTypes: Array<ShotAnnotationTypeGql>;
|
||||
getShots: Array<ShotGql>;
|
||||
getUser?: Maybe<UserGql>;
|
||||
getUserTags: UserTagsGql;
|
||||
getUserVideos: VideoHistoryGql;
|
||||
getUsernames: Array<Scalars["String"]["output"]>;
|
||||
getVideo: VideoGql;
|
||||
@@ -1141,6 +1142,10 @@ export type QueryGetUserArgs = {
|
||||
userId: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
export type QueryGetUserTagsArgs = {
|
||||
userId: Scalars["Int"]["input"];
|
||||
};
|
||||
|
||||
export type QueryGetUserVideosArgs = {
|
||||
after?: InputMaybe<Scalars["String"]["input"]>;
|
||||
filters?: InputMaybe<VideoFilterInput>;
|
||||
@@ -1229,6 +1234,12 @@ export enum StreamSegmentTypeEnum {
|
||||
RbChunkedMp4 = "RB_CHUNKED_MP4",
|
||||
}
|
||||
|
||||
export type TagGql = {
|
||||
__typename?: "TagGQL";
|
||||
id: Scalars["Int"]["output"];
|
||||
name: Scalars["String"]["output"];
|
||||
};
|
||||
|
||||
export type TargetMetricsGql = {
|
||||
__typename?: "TargetMetricsGQL";
|
||||
averageDifficulty?: Maybe<Scalars["Float"]["output"]>;
|
||||
@@ -1293,6 +1304,11 @@ export type UserPlayTimeGql = {
|
||||
totalSeconds: Scalars["Float"]["output"];
|
||||
};
|
||||
|
||||
export type UserTagsGql = {
|
||||
__typename?: "UserTagsGQL";
|
||||
tags: Array<TagGql>;
|
||||
};
|
||||
|
||||
export type VideoFilterInput = {
|
||||
isStreamCompleted?: InputMaybe<Scalars["Boolean"]["input"]>;
|
||||
requireCursorCompletion?: Scalars["Boolean"]["input"];
|
||||
|
||||
Reference in New Issue
Block a user