Add two new gql properties to support upload service

This commit is contained in:
Ivan Malison 2024-04-25 11:41:57 -06:00
parent ec1f5afb84
commit d67b413860
2 changed files with 4 additions and 0 deletions

View File

@ -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"];

View File

@ -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