|
|
|
@@ -1918,11 +1918,13 @@ export type Mutation = {
|
|
|
|
|
editProfileImageUri: UserGql;
|
|
|
|
|
editUploadStream: Scalars["Boolean"]["output"];
|
|
|
|
|
editUser: UserGql;
|
|
|
|
|
followUser: UserGql;
|
|
|
|
|
getHlsInitUploadLink: GetUploadLinkReturn;
|
|
|
|
|
getProfileImageUploadLink: GetProfileUploadLinkReturn;
|
|
|
|
|
getUploadLink: GetUploadLinkReturn;
|
|
|
|
|
setLoggerLevel: Scalars["Boolean"]["output"];
|
|
|
|
|
setSegmentDuration: Scalars["Boolean"]["output"];
|
|
|
|
|
unfollowUser: UserGql;
|
|
|
|
|
updateShotAnnotations: UpdateShotAnnotationReturn;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@@ -1957,6 +1959,10 @@ export type MutationEditUserArgs = {
|
|
|
|
|
input: EditUserInputGql;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type MutationFollowUserArgs = {
|
|
|
|
|
followedUserId: Scalars["Int"]["input"];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type MutationGetHlsInitUploadLinkArgs = {
|
|
|
|
|
videoId: Scalars["Int"]["input"];
|
|
|
|
|
};
|
|
|
|
@@ -1981,6 +1987,10 @@ export type MutationSetSegmentDurationArgs = {
|
|
|
|
|
videoId: Scalars["Int"]["input"];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type MutationUnfollowUserArgs = {
|
|
|
|
|
followedUserId: Scalars["Int"]["input"];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type MutationUpdateShotAnnotationsArgs = {
|
|
|
|
|
annotations: Array<UpdateAnnotationInputGql>;
|
|
|
|
|
shotId: Scalars["Int"]["input"];
|
|
|
|
@@ -2412,6 +2422,8 @@ export type UserGql = {
|
|
|
|
|
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
|
|
|
|
fargoRating?: Maybe<Scalars["Int"]["output"]>;
|
|
|
|
|
firebaseUid: Scalars["String"]["output"];
|
|
|
|
|
followers?: Maybe<Array<Scalars["Int"]["output"]>>;
|
|
|
|
|
following?: Maybe<Array<Scalars["Int"]["output"]>>;
|
|
|
|
|
id: Scalars["Int"]["output"];
|
|
|
|
|
isAdmin: Scalars["Boolean"]["output"];
|
|
|
|
|
profileImageUri?: Maybe<Scalars["String"]["output"]>;
|
|
|
|
|