Add two new gql properties to support upload service
This commit is contained in:
parent
ec1f5afb84
commit
d67b413860
@ -119,6 +119,7 @@ export type DeployedConfigGql = {
|
||||
__typename?: "DeployedConfigGQL";
|
||||
allowNewUsers: Scalars["Boolean"]["output"];
|
||||
devMode: Scalars["Boolean"]["output"];
|
||||
environment: Scalars["String"]["output"];
|
||||
firebase: Scalars["Boolean"]["output"];
|
||||
};
|
||||
|
||||
@ -384,6 +385,7 @@ export type UploadStreamMetadataInput = {
|
||||
|
||||
export type UserGql = {
|
||||
__typename?: "UserGQL";
|
||||
activeVideoId?: Maybe<Scalars["Int"]["output"]>;
|
||||
createdAt?: Maybe<Scalars["DateTime"]["output"]>;
|
||||
firebaseUid: Scalars["String"]["output"];
|
||||
id: Scalars["Int"]["output"];
|
||||
|
@ -124,6 +124,7 @@ type DeployedConfigGQL {
|
||||
allowNewUsers: Boolean!
|
||||
firebase: Boolean!
|
||||
devMode: Boolean!
|
||||
environment: String!
|
||||
}
|
||||
|
||||
type MakePercentageIntervalGQL {
|
||||
@ -177,6 +178,7 @@ type UserGQL {
|
||||
id: Int!
|
||||
firebaseUid: String!
|
||||
username: String!
|
||||
activeVideoId: Int
|
||||
profileImageUri: String
|
||||
createdAt: DateTime
|
||||
updatedAt: DateTime
|
||||
|
Loading…
Reference in New Issue
Block a user