|
|
|
@@ -237,6 +237,7 @@ export type EditShotReturn = {
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type EditUserInputGql = {
|
|
|
|
|
agreesToMarketing?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
|
|
|
fargoRating?: InputMaybe<Scalars["Int"]["input"]>;
|
|
|
|
|
username?: InputMaybe<Scalars["String"]["input"]>;
|
|
|
|
|
videosPrivateByDefault?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
|
|
@@ -3112,6 +3113,7 @@ export type UploadStreamGql = {
|
|
|
|
|
export type UserGql = {
|
|
|
|
|
__typename?: "UserGQL";
|
|
|
|
|
activeVideoId?: Maybe<Scalars["Int"]["output"]>;
|
|
|
|
|
agreesToMarketing?: Maybe<Scalars["Boolean"]["output"]>;
|
|
|
|
|
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
|
|
|
|
fargoRating?: Maybe<Scalars["Int"]["output"]>;
|
|
|
|
|
firebaseUid?: Maybe<Scalars["String"]["output"]>;
|
|
|
|
@@ -4663,6 +4665,7 @@ export type EditProfileImageUriMutation = {
|
|
|
|
|
createdAt?: any | null;
|
|
|
|
|
updatedAt?: any | null;
|
|
|
|
|
videosPrivateByDefault?: boolean | null;
|
|
|
|
|
agreesToMarketing?: boolean | null;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@@ -4682,6 +4685,7 @@ export type GetLoggedInUserQuery = {
|
|
|
|
|
createdAt?: any | null;
|
|
|
|
|
updatedAt?: any | null;
|
|
|
|
|
videosPrivateByDefault?: boolean | null;
|
|
|
|
|
agreesToMarketing?: boolean | null;
|
|
|
|
|
} | null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@@ -4703,6 +4707,7 @@ export type GetUserQuery = {
|
|
|
|
|
createdAt?: any | null;
|
|
|
|
|
updatedAt?: any | null;
|
|
|
|
|
videosPrivateByDefault?: boolean | null;
|
|
|
|
|
agreesToMarketing?: boolean | null;
|
|
|
|
|
} | null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@@ -4851,6 +4856,7 @@ export type EditUserMutationVariables = Exact<{
|
|
|
|
|
username?: InputMaybe<Scalars["String"]["input"]>;
|
|
|
|
|
fargoRating?: InputMaybe<Scalars["Int"]["input"]>;
|
|
|
|
|
videosPrivateByDefault?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
|
|
|
agreesToMarketing?: InputMaybe<Scalars["Boolean"]["input"]>;
|
|
|
|
|
}>;
|
|
|
|
|
|
|
|
|
|
export type EditUserMutation = {
|
|
|
|
@@ -4863,6 +4869,7 @@ export type EditUserMutation = {
|
|
|
|
|
fargoRating?: number | null;
|
|
|
|
|
updatedAt?: any | null;
|
|
|
|
|
videosPrivateByDefault?: boolean | null;
|
|
|
|
|
agreesToMarketing?: boolean | null;
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
@@ -4885,6 +4892,7 @@ export type UserFragmentFragment = {
|
|
|
|
|
createdAt?: any | null;
|
|
|
|
|
updatedAt?: any | null;
|
|
|
|
|
videosPrivateByDefault?: boolean | null;
|
|
|
|
|
agreesToMarketing?: boolean | null;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export type GetStreamMonitoringDetailsQueryVariables = Exact<{
|
|
|
|
@@ -5847,6 +5855,7 @@ export const UserFragmentFragmentDoc = gql`
|
|
|
|
|
createdAt
|
|
|
|
|
updatedAt
|
|
|
|
|
videosPrivateByDefault
|
|
|
|
|
agreesToMarketing
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
|
export const VideoStreamMetadataFragmentDoc = gql`
|
|
|
|
@@ -9259,12 +9268,14 @@ export const EditUserDocument = gql`
|
|
|
|
|
$username: String
|
|
|
|
|
$fargoRating: Int
|
|
|
|
|
$videosPrivateByDefault: Boolean
|
|
|
|
|
$agreesToMarketing: Boolean
|
|
|
|
|
) {
|
|
|
|
|
editUser(
|
|
|
|
|
input: {
|
|
|
|
|
username: $username
|
|
|
|
|
fargoRating: $fargoRating
|
|
|
|
|
videosPrivateByDefault: $videosPrivateByDefault
|
|
|
|
|
agreesToMarketing: $agreesToMarketing
|
|
|
|
|
}
|
|
|
|
|
) {
|
|
|
|
|
id
|
|
|
|
@@ -9273,6 +9284,7 @@ export const EditUserDocument = gql`
|
|
|
|
|
fargoRating
|
|
|
|
|
updatedAt
|
|
|
|
|
videosPrivateByDefault
|
|
|
|
|
agreesToMarketing
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
`;
|
|
|
|
@@ -9297,6 +9309,7 @@ export type EditUserMutationFn = Apollo.MutationFunction<
|
|
|
|
|
* username: // value for 'username'
|
|
|
|
|
* fargoRating: // value for 'fargoRating'
|
|
|
|
|
* videosPrivateByDefault: // value for 'videosPrivateByDefault'
|
|
|
|
|
* agreesToMarketing: // value for 'agreesToMarketing'
|
|
|
|
|
* },
|
|
|
|
|
* });
|
|
|
|
|
*/
|
|
|
|
|