diff --git a/src/index.tsx b/src/index.tsx index 96e799a..27ce3f7 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -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; createdAt?: Maybe; firebaseUid: Scalars["String"]["output"]; id: Scalars["Int"]["output"]; diff --git a/src/schema.gql b/src/schema.gql index eaccd7f..f5ff58d 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -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