Merge branch 'master' into mk/add-screenshot-uri
This commit is contained in:
commit
527113a099
@ -498,6 +498,9 @@ export type GetDeployedConfigQuery = {
|
|||||||
getDeployedConfig: {
|
getDeployedConfig: {
|
||||||
__typename?: "DeployedConfigGQL";
|
__typename?: "DeployedConfigGQL";
|
||||||
allowNewUsers: boolean;
|
allowNewUsers: boolean;
|
||||||
|
devMode: boolean;
|
||||||
|
environment: string;
|
||||||
|
firebase: boolean;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@ -635,6 +638,7 @@ export type GetLoggedInUserQuery = {
|
|||||||
firebaseUid: string;
|
firebaseUid: string;
|
||||||
username: string;
|
username: string;
|
||||||
profileImageUri?: string | null;
|
profileImageUri?: string | null;
|
||||||
|
activeVideoId?: number | null;
|
||||||
createdAt?: any | null;
|
createdAt?: any | null;
|
||||||
updatedAt?: any | null;
|
updatedAt?: any | null;
|
||||||
} | null;
|
} | null;
|
||||||
@ -941,6 +945,9 @@ export const GetDeployedConfigDocument = gql`
|
|||||||
query getDeployedConfig {
|
query getDeployedConfig {
|
||||||
getDeployedConfig {
|
getDeployedConfig {
|
||||||
allowNewUsers
|
allowNewUsers
|
||||||
|
devMode
|
||||||
|
environment
|
||||||
|
firebase
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`;
|
`;
|
||||||
@ -1407,6 +1414,7 @@ export const GetLoggedInUserDocument = gql`
|
|||||||
firebaseUid
|
firebaseUid
|
||||||
username
|
username
|
||||||
profileImageUri
|
profileImageUri
|
||||||
|
activeVideoId
|
||||||
createdAt
|
createdAt
|
||||||
updatedAt
|
updatedAt
|
||||||
}
|
}
|
||||||
|
@ -1,5 +1,8 @@
|
|||||||
query getDeployedConfig {
|
query getDeployedConfig {
|
||||||
getDeployedConfig {
|
getDeployedConfig {
|
||||||
allowNewUsers
|
allowNewUsers
|
||||||
|
devMode
|
||||||
|
environment
|
||||||
|
firebase
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,6 +25,7 @@ query getLoggedInUser {
|
|||||||
firebaseUid
|
firebaseUid
|
||||||
username
|
username
|
||||||
profileImageUri
|
profileImageUri
|
||||||
|
activeVideoId
|
||||||
createdAt
|
createdAt
|
||||||
updatedAt
|
updatedAt
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user