From 77e06213b0befbd6bcd1536d82c4d80f0a0213db Mon Sep 17 00:00:00 2001 From: tonyrewin Date: Sat, 17 Sep 2022 21:27:54 +0300 Subject: [PATCH] codegen --- src/graphql/types.gen.ts | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/graphql/types.gen.ts b/src/graphql/types.gen.ts index 2e356ef4..3ff6ec63 100644 --- a/src/graphql/types.gen.ts +++ b/src/graphql/types.gen.ts @@ -145,12 +145,11 @@ export type Mutation = { refreshSession: AuthResult registerUser: AuthResult removeAuthor: Result - requestPasswordUpdate: Result + sendLink: Result unfollow: Result updateCollection: Result updateCommunity: Result updateMessage: MessageResult - updatePassword: Result updateProfile: Result updateReaction: Result updateShout: Result @@ -160,7 +159,7 @@ export type Mutation = { } export type MutationConfirmEmailArgs = { - token: Scalars['String'] + code: Scalars['String'] } export type MutationCreateChatArgs = { @@ -252,7 +251,7 @@ export type MutationRemoveAuthorArgs = { shout: Scalars['String'] } -export type MutationRequestPasswordUpdateArgs = { +export type MutationSendLinkArgs = { email: Scalars['String'] } @@ -275,11 +274,6 @@ export type MutationUpdateMessageArgs = { id: Scalars['Int'] } -export type MutationUpdatePasswordArgs = { - password: Scalars['String'] - token: Scalars['String'] -} - export type MutationUpdateProfileArgs = { profile: ProfileInput } @@ -356,6 +350,7 @@ export type Query = { signIn: AuthResult signOut: AuthResult topAuthors: Array> + topCommented: Array> topMonth: Array> topOverall: Array> topViewed: Array> @@ -494,6 +489,11 @@ export type QueryTopAuthorsArgs = { offset: Scalars['Int'] } +export type QueryTopCommentedArgs = { + limit: Scalars['Int'] + offset: Scalars['Int'] +} + export type QueryTopMonthArgs = { limit: Scalars['Int'] offset: Scalars['Int']