@@ -43,8 +43,6 @@ public sealed partial class FakeApiClient : IApiClient
4343
4444 #region Emails
4545
46- public Task ActivateEmailAsync ( EmailActivation body , CancellationToken cancellationToken ) => ActivateEmailAsync ( body ) ;
47-
4846 public Task < long > CountEmailsAsync ( CancellationToken cancellationToken ) => CountEmailsAsync ( ) ;
4947
5048 public Task < Email > CreateEmailAsync ( bool ? customDeepLinks , EmailCreation body , CancellationToken cancellationToken ) => CreateEmailAsync ( customDeepLinks , body ) ;
@@ -55,6 +53,8 @@ public sealed partial class FakeApiClient : IApiClient
5553
5654 public Task SetMainEmailAsync ( Guid id , CancellationToken cancellationToken ) => SetMainEmailAsync ( id ) ;
5755
56+ public Task VerifyEmailAsync ( EmailVerification body , CancellationToken cancellationToken ) => VerifyEmailAsync ( body ) ;
57+
5858 #endregion
5959
6060 #region Posts
@@ -210,11 +210,6 @@ public Task SetCommentReportedAsync(Guid id, int position, ReportUpdate body)
210210
211211 public sealed partial class FakeApiClient
212212 {
213- public Task ActivateEmailAsync ( EmailActivation body )
214- {
215- throw new NotImplementedException ( ) ;
216- }
217-
218213 public async Task < long > CountEmailsAsync ( ) => ( await ListEmailsAsync ( null ) ) . Count ;
219214
220215 public Task < Email > CreateEmailAsync ( bool ? customDeepLinks , EmailCreation body )
@@ -238,6 +233,11 @@ public Task SetMainEmailAsync(Guid id)
238233 throw new NotImplementedException ( ) ;
239234 }
240235
236+ public Task VerifyEmailAsync ( EmailVerification body )
237+ {
238+ throw new NotImplementedException ( ) ;
239+ }
240+
241241 private static Email MakeEmail ( bool main = false , bool verified = true )
242242 {
243243 var id = new Guid ( ) ;
0 commit comments