Upload Service Class (#436)
CLOSES #400 Reviewed-on: railbird/railbird-mobile#436 Reviewed-by: Ivan Malison <ivanmalison@gmail.com> Co-authored-by: Loewy <loewymalkov@gmail.com> Co-committed-by: Loewy <loewymalkov@gmail.com>
This commit is contained in:
parent
b74fb2b1d7
commit
6d8f5d5d65
@ -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
|
||||
}
|
||||
|
@ -1,5 +1,8 @@
|
||||
query getDeployedConfig {
|
||||
getDeployedConfig {
|
||||
allowNewUsers
|
||||
devMode
|
||||
environment
|
||||
firebase
|
||||
}
|
||||
}
|
||||
|
@ -25,6 +25,7 @@ query getLoggedInUser {
|
||||
firebaseUid
|
||||
username
|
||||
profileImageUri
|
||||
activeVideoId
|
||||
createdAt
|
||||
updatedAt
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user