diff --git a/src/index.tsx b/src/index.tsx index 57f6e20..399b9b3 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -498,6 +498,9 @@ export type GetDeployedConfigQuery = { getDeployedConfig: { __typename?: "DeployedConfigGQL"; allowNewUsers: boolean; + devMode: boolean; + environment: string; + firebase: boolean; }; }; @@ -635,6 +638,7 @@ export type GetLoggedInUserQuery = { firebaseUid: string; username: string; profileImageUri?: string | null; + activeVideoId?: number | null; createdAt?: any | null; updatedAt?: any | null; } | null; @@ -941,6 +945,9 @@ export const GetDeployedConfigDocument = gql` query getDeployedConfig { getDeployedConfig { allowNewUsers + devMode + environment + firebase } } `; @@ -1407,6 +1414,7 @@ export const GetLoggedInUserDocument = gql` firebaseUid username profileImageUri + activeVideoId createdAt updatedAt } diff --git a/src/operations/config.gql b/src/operations/config.gql index 5ffe649..8027580 100644 --- a/src/operations/config.gql +++ b/src/operations/config.gql @@ -1,5 +1,8 @@ query getDeployedConfig { getDeployedConfig { allowNewUsers + devMode + environment + firebase } } diff --git a/src/operations/user.gql b/src/operations/user.gql index de477ec..3cf6306 100644 --- a/src/operations/user.gql +++ b/src/operations/user.gql @@ -25,6 +25,7 @@ query getLoggedInUser { firebaseUid username profileImageUri + activeVideoId createdAt updatedAt }