chore(server): filter out some logs (#9059)

This commit is contained in:
darkskygit
2024-12-12 09:19:48 +00:00
parent 69e5997608
commit cdb55a3393
6 changed files with 51 additions and 19 deletions

View File

@@ -285,7 +285,8 @@ export type ErrorDataUnion =
| SubscriptionPlanNotFoundDataType
| UnknownOauthProviderDataType
| UnsupportedSubscriptionPlanDataType
| VersionRejectedDataType;
| VersionRejectedDataType
| WrongSignInCredentialsDataType;
export enum ErrorNames {
ACCESS_DENIED = 'ACCESS_DENIED',
@@ -1408,6 +1409,11 @@ export interface WorkspaceTypePublicPageArgs {
pageId: Scalars['String']['input'];
}
export interface WrongSignInCredentialsDataType {
__typename?: 'WrongSignInCredentialsDataType';
email: Scalars['String']['output'];
}
export interface TokenType {
__typename?: 'tokenType';
refresh: Scalars['String']['output'];