From 6d8f5d5d657189542fbd1672ab5ba820549786c8 Mon Sep 17 00:00:00 2001 From: Loewy Date: Thu, 25 Apr 2024 17:32:52 -0600 Subject: [PATCH] Upload Service Class (#436) CLOSES #400 Reviewed-on: https://dev.railbird.ai/railbird/railbird-mobile/pulls/436 Reviewed-by: Ivan Malison Co-authored-by: Loewy Co-committed-by: Loewy --- src/index.tsx | 8 ++++++++ src/operations/config.gql | 3 +++ src/operations/user.gql | 1 + 3 files changed, 12 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index c1d487a..7a0ffa9 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -497,6 +497,9 @@ export type GetDeployedConfigQuery = { getDeployedConfig: { __typename?: "DeployedConfigGQL"; allowNewUsers: boolean; + devMode: boolean; + environment: string; + firebase: boolean; }; }; @@ -633,6 +636,7 @@ export type GetLoggedInUserQuery = { firebaseUid: string; username: string; profileImageUri?: string | null; + activeVideoId?: number | null; createdAt?: any | null; updatedAt?: any | null; } | null; @@ -938,6 +942,9 @@ export const GetDeployedConfigDocument = gql` query getDeployedConfig { getDeployedConfig { allowNewUsers + devMode + environment + firebase } } `; @@ -1403,6 +1410,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 }