@tsonic/aspnetcore 10.0.2 → 10.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (137) hide show
  1. package/Microsoft.AspNetCore.Antiforgery/internal/index.d.ts +12 -0
  2. package/Microsoft.AspNetCore.Authentication/internal/index.d.ts +70 -2
  3. package/Microsoft.AspNetCore.Authentication.Cookies/internal/index.d.ts +12 -0
  4. package/Microsoft.AspNetCore.Authentication.OAuth/internal/index.d.ts +5 -0
  5. package/Microsoft.AspNetCore.Authentication.OAuth.Claims/internal/index.d.ts +3 -0
  6. package/Microsoft.AspNetCore.Authorization/internal/index.d.ts +40 -0
  7. package/Microsoft.AspNetCore.Authorization.Infrastructure/internal/index.d.ts +19 -0
  8. package/Microsoft.AspNetCore.Authorization.Policy/internal/index.d.ts +6 -0
  9. package/Microsoft.AspNetCore.Builder/internal/index.d.ts +40 -2
  10. package/Microsoft.AspNetCore.Components/internal/index.d.ts +74 -1
  11. package/Microsoft.AspNetCore.Components.Authorization/internal/index.d.ts +18 -1
  12. package/Microsoft.AspNetCore.Components.Endpoints/internal/index.d.ts +4 -0
  13. package/Microsoft.AspNetCore.Components.Forms/internal/index.d.ts +110 -5
  14. package/Microsoft.AspNetCore.Components.Forms.Mapping/internal/index.d.ts +2 -0
  15. package/Microsoft.AspNetCore.Components.Forms.Mapping.d.ts +3 -0
  16. package/Microsoft.AspNetCore.Components.HtmlRendering.Infrastructure/internal/index.d.ts +3 -0
  17. package/Microsoft.AspNetCore.Components.Infrastructure.d.ts +3 -0
  18. package/Microsoft.AspNetCore.Components.RenderTree/internal/index.d.ts +9 -0
  19. package/Microsoft.AspNetCore.Components.Rendering/internal/index.d.ts +4 -0
  20. package/Microsoft.AspNetCore.Components.Routing/internal/index.d.ts +28 -3
  21. package/Microsoft.AspNetCore.Components.Sections/internal/index.d.ts +8 -2
  22. package/Microsoft.AspNetCore.Components.Server/internal/index.d.ts +9 -0
  23. package/Microsoft.AspNetCore.Components.Web/internal/index.d.ts +30 -0
  24. package/Microsoft.AspNetCore.Components.Web.Internal/internal/index.d.ts +2 -0
  25. package/Microsoft.AspNetCore.Components.Web.Virtualization/internal/index.d.ts +7 -1
  26. package/Microsoft.AspNetCore.Connections/internal/index.d.ts +54 -1
  27. package/Microsoft.AspNetCore.Connections.Abstractions/internal/index.d.ts +2 -0
  28. package/Microsoft.AspNetCore.Connections.Features/internal/index.d.ts +44 -0
  29. package/Microsoft.AspNetCore.Cors/internal/index.d.ts +9 -0
  30. package/Microsoft.AspNetCore.Cors.Infrastructure/internal/index.d.ts +16 -0
  31. package/Microsoft.AspNetCore.DataProtection/internal/index.d.ts +19 -0
  32. package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption/internal/index.d.ts +12 -0
  33. package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel/internal/index.d.ts +20 -0
  34. package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.d.ts +3 -0
  35. package/Microsoft.AspNetCore.DataProtection.Infrastructure/internal/index.d.ts +2 -0
  36. package/Microsoft.AspNetCore.DataProtection.Internal/internal/index.d.ts +2 -0
  37. package/Microsoft.AspNetCore.DataProtection.KeyManagement/internal/index.d.ts +11 -0
  38. package/Microsoft.AspNetCore.DataProtection.KeyManagement.Internal/internal/index.d.ts +10 -0
  39. package/Microsoft.AspNetCore.DataProtection.Repositories/internal/index.d.ts +12 -0
  40. package/Microsoft.AspNetCore.DataProtection.XmlEncryption/internal/index.d.ts +24 -0
  41. package/Microsoft.AspNetCore.Diagnostics/internal/index.d.ts +21 -0
  42. package/Microsoft.AspNetCore.Hosting/internal/index.d.ts +32 -0
  43. package/Microsoft.AspNetCore.Hosting.Builder/internal/index.d.ts +4 -0
  44. package/Microsoft.AspNetCore.Hosting.Infrastructure/internal/index.d.ts +4 -0
  45. package/Microsoft.AspNetCore.Hosting.Server/internal/index.d.ts +10 -0
  46. package/Microsoft.AspNetCore.Hosting.Server.Abstractions/internal/index.d.ts +2 -0
  47. package/Microsoft.AspNetCore.Hosting.Server.Features/internal/index.d.ts +4 -0
  48. package/Microsoft.AspNetCore.Html/internal/index.d.ts +16 -0
  49. package/Microsoft.AspNetCore.Http/internal/index.d.ts +136 -1
  50. package/Microsoft.AspNetCore.Http.Connections/internal/index.d.ts +2 -0
  51. package/Microsoft.AspNetCore.Http.Connections.Features/internal/index.d.ts +4 -0
  52. package/Microsoft.AspNetCore.Http.Extensions/internal/index.d.ts +3 -0
  53. package/Microsoft.AspNetCore.Http.Features/internal/index.d.ts +113 -1
  54. package/Microsoft.AspNetCore.Http.Features.Authentication/internal/index.d.ts +4 -0
  55. package/Microsoft.AspNetCore.Http.HttpResults/internal/index.d.ts +207 -2
  56. package/Microsoft.AspNetCore.Http.Metadata/internal/index.d.ts +46 -0
  57. package/Microsoft.AspNetCore.Http.Timeouts/internal/index.d.ts +2 -0
  58. package/Microsoft.AspNetCore.HttpLogging/internal/index.d.ts +2 -0
  59. package/Microsoft.AspNetCore.Identity/internal/index.d.ts +153 -0
  60. package/Microsoft.AspNetCore.Identity.UI.Services/internal/index.d.ts +4 -0
  61. package/Microsoft.AspNetCore.Localization/internal/index.d.ts +16 -0
  62. package/Microsoft.AspNetCore.Localization.Routing/internal/index.d.ts +2 -0
  63. package/Microsoft.AspNetCore.Mvc/internal/index.d.ts +348 -1
  64. package/Microsoft.AspNetCore.Mvc.Abstractions/internal/index.d.ts +6 -0
  65. package/Microsoft.AspNetCore.Mvc.ActionConstraints/internal/index.d.ts +14 -0
  66. package/Microsoft.AspNetCore.Mvc.ApiExplorer/internal/index.d.ts +22 -0
  67. package/Microsoft.AspNetCore.Mvc.ApplicationModels/internal/index.d.ts +97 -0
  68. package/Microsoft.AspNetCore.Mvc.ApplicationParts/internal/index.d.ts +14 -0
  69. package/Microsoft.AspNetCore.Mvc.Authorization/internal/index.d.ts +9 -0
  70. package/Microsoft.AspNetCore.Mvc.Controllers/internal/index.d.ts +19 -0
  71. package/Microsoft.AspNetCore.Mvc.Core.Infrastructure/internal/index.d.ts +2 -0
  72. package/Microsoft.AspNetCore.Mvc.Cors/internal/index.d.ts +5 -0
  73. package/Microsoft.AspNetCore.Mvc.DataAnnotations/internal/index.d.ts +17 -0
  74. package/Microsoft.AspNetCore.Mvc.Diagnostics/internal/index.d.ts +259 -0
  75. package/Microsoft.AspNetCore.Mvc.Filters/internal/index.d.ts +64 -0
  76. package/Microsoft.AspNetCore.Mvc.Formatters/internal/index.d.ts +71 -0
  77. package/Microsoft.AspNetCore.Mvc.Formatters.Xml/internal/index.d.ts +36 -3
  78. package/Microsoft.AspNetCore.Mvc.Formatters.Xml.d.ts +3 -0
  79. package/Microsoft.AspNetCore.Mvc.Infrastructure/internal/index.d.ts +70 -0
  80. package/Microsoft.AspNetCore.Mvc.Localization/internal/index.d.ts +21 -0
  81. package/Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.d.ts +171 -1
  82. package/Microsoft.AspNetCore.Mvc.ModelBinding.Binders/internal/index.d.ts +81 -0
  83. package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata/internal/index.d.ts +32 -0
  84. package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.d.ts +3 -0
  85. package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.d.ts +29 -0
  86. package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation.d.ts +3 -0
  87. package/Microsoft.AspNetCore.Mvc.Razor/internal/index.d.ts +35 -0
  88. package/Microsoft.AspNetCore.Mvc.Razor.Compilation/internal/index.d.ts +4 -0
  89. package/Microsoft.AspNetCore.Mvc.Razor.TagHelpers/internal/index.d.ts +19 -0
  90. package/Microsoft.AspNetCore.Mvc.RazorPages/internal/index.d.ts +21 -0
  91. package/Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure/internal/index.d.ts +21 -0
  92. package/Microsoft.AspNetCore.Mvc.Rendering/internal/index.d.ts +16 -0
  93. package/Microsoft.AspNetCore.Mvc.Routing/internal/index.d.ts +22 -0
  94. package/Microsoft.AspNetCore.Mvc.TagHelpers/internal/index.d.ts +63 -0
  95. package/Microsoft.AspNetCore.Mvc.TagHelpers.Cache/internal/index.d.ts +14 -0
  96. package/Microsoft.AspNetCore.Mvc.ViewComponents/internal/index.d.ts +36 -0
  97. package/Microsoft.AspNetCore.Mvc.ViewEngines/internal/index.d.ts +9 -0
  98. package/Microsoft.AspNetCore.Mvc.ViewFeatures/internal/index.d.ts +78 -0
  99. package/Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers/internal/index.d.ts +2 -0
  100. package/Microsoft.AspNetCore.OutputCaching/internal/index.d.ts +8 -0
  101. package/Microsoft.AspNetCore.RateLimiting/internal/index.d.ts +2 -0
  102. package/Microsoft.AspNetCore.Razor.Hosting/internal/index.d.ts +4 -0
  103. package/Microsoft.AspNetCore.Razor.TagHelpers/internal/index.d.ts +41 -0
  104. package/Microsoft.AspNetCore.RequestDecompression/internal/index.d.ts +4 -0
  105. package/Microsoft.AspNetCore.ResponseCaching/internal/index.d.ts +4 -0
  106. package/Microsoft.AspNetCore.ResponseCompression/internal/index.d.ts +23 -0
  107. package/Microsoft.AspNetCore.Rewrite/internal/index.d.ts +2 -0
  108. package/Microsoft.AspNetCore.Routing/internal/index.d.ts +104 -0
  109. package/Microsoft.AspNetCore.Routing.Constraints/internal/index.d.ts +112 -0
  110. package/Microsoft.AspNetCore.Routing.Matching/internal/index.d.ts +20 -0
  111. package/Microsoft.AspNetCore.Routing.Patterns/internal/index.d.ts +2 -0
  112. package/Microsoft.AspNetCore.Routing.Tree/internal/index.d.ts +2 -0
  113. package/Microsoft.AspNetCore.Server.HttpSys/internal/index.d.ts +18 -0
  114. package/Microsoft.AspNetCore.Server.IIS/internal/index.d.ts +4 -0
  115. package/Microsoft.AspNetCore.Server.IISIntegration/internal/index.d.ts +2 -0
  116. package/Microsoft.AspNetCore.Server.Kestrel.Core/internal/index.d.ts +8 -0
  117. package/Microsoft.AspNetCore.Server.Kestrel.Core.Features/internal/index.d.ts +14 -0
  118. package/Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http/internal/index.d.ts +6 -0
  119. package/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/internal/index.d.ts +5 -0
  120. package/Microsoft.AspNetCore.Session/internal/index.d.ts +8 -0
  121. package/Microsoft.AspNetCore.SignalR/internal/index.d.ts +52 -0
  122. package/Microsoft.AspNetCore.SignalR.Protocol/internal/index.d.ts +4 -0
  123. package/Microsoft.AspNetCore.StaticAssets/internal/index.d.ts +2 -0
  124. package/Microsoft.AspNetCore.StaticFiles/internal/index.d.ts +8 -0
  125. package/Microsoft.AspNetCore.WebSockets.d.ts +3 -0
  126. package/Microsoft.AspNetCore.WebUtilities/internal/index.d.ts +16 -0
  127. package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +10 -0
  128. package/Microsoft.Extensions.Hosting.d.ts +3 -0
  129. package/Microsoft.JSInterop/internal/index.d.ts +32 -1
  130. package/Microsoft.JSInterop.Implementation/internal/index.d.ts +12 -0
  131. package/Microsoft.JSInterop.Infrastructure/internal/index.d.ts +2 -0
  132. package/Microsoft.Net.Http.Headers/internal/index.d.ts +4 -0
  133. package/System.Formats.Cbor/internal/index.d.ts +2 -0
  134. package/System.Security.Claims.d.ts +3 -0
  135. package/System.Threading.RateLimiting/internal/index.d.ts +25 -0
  136. package/__internal/extensions/index.d.ts +818 -529
  137. package/package.json +1 -1
@@ -37,6 +37,8 @@ export enum PasswordVerificationResult {
37
37
 
38
38
 
39
39
  export interface IEmailSender_1$instance<TUser> {
40
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IEmailSender_1: never;
41
+
40
42
  SendConfirmationLinkAsync(user: TUser, email: string, confirmationLink: string): Task;
41
43
  }
42
44
 
@@ -44,6 +46,8 @@ export interface IEmailSender_1$instance<TUser> {
44
46
  export type IEmailSender_1<TUser> = IEmailSender_1$instance<TUser>;
45
47
 
46
48
  export interface ILookupNormalizer$instance {
49
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ILookupNormalizer: never;
50
+
47
51
  NormalizeName(name: string): string | undefined;
48
52
  }
49
53
 
@@ -51,6 +55,8 @@ export interface ILookupNormalizer$instance {
51
55
  export type ILookupNormalizer = ILookupNormalizer$instance;
52
56
 
53
57
  export interface ILookupProtector$instance {
58
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ILookupProtector: never;
59
+
54
60
  Protect(keyId: string, data: string): string | undefined;
55
61
  }
56
62
 
@@ -58,6 +64,8 @@ export interface ILookupProtector$instance {
58
64
  export type ILookupProtector = ILookupProtector$instance;
59
65
 
60
66
  export interface ILookupProtectorKeyRing$instance {
67
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ILookupProtectorKeyRing: never;
68
+
61
69
  readonly CurrentKeyId: string;
62
70
  readonly [keyId: string]: string;
63
71
  GetAllKeyIds(): IEnumerable<System_Internal.String>;
@@ -67,6 +75,8 @@ export interface ILookupProtectorKeyRing$instance {
67
75
  export type ILookupProtectorKeyRing = ILookupProtectorKeyRing$instance;
68
76
 
69
77
  export interface IPasskeyHandler_1$instance<TUser> {
78
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPasskeyHandler_1: never;
79
+
70
80
  MakeCreationOptionsAsync(userEntity: PasskeyUserEntity, httpContext: HttpContext): Task<PasskeyCreationOptionsResult>;
71
81
  MakeRequestOptionsAsync(user: TUser, httpContext: HttpContext): Task<PasskeyRequestOptionsResult>;
72
82
  PerformAssertionAsync(context: PasskeyAssertionContext): Task<PasskeyAssertionResult_1<TUser>>;
@@ -77,6 +87,8 @@ export interface IPasskeyHandler_1$instance<TUser> {
77
87
  export type IPasskeyHandler_1<TUser> = IPasskeyHandler_1$instance<TUser>;
78
88
 
79
89
  export interface IPasswordHasher_1$instance<TUser> {
90
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPasswordHasher_1: never;
91
+
80
92
  HashPassword(user: TUser, password: string): string;
81
93
  VerifyHashedPassword(user: TUser, hashedPassword: string, providedPassword: string): PasswordVerificationResult;
82
94
  }
@@ -85,6 +97,8 @@ export interface IPasswordHasher_1$instance<TUser> {
85
97
  export type IPasswordHasher_1<TUser> = IPasswordHasher_1$instance<TUser>;
86
98
 
87
99
  export interface IPasswordValidator_1$instance<TUser> {
100
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPasswordValidator_1: never;
101
+
88
102
  ValidateAsync(manager: UserManager_1<TUser>, user: TUser, password: string): Task<IdentityResult>;
89
103
  }
90
104
 
@@ -92,6 +106,8 @@ export interface IPasswordValidator_1$instance<TUser> {
92
106
  export type IPasswordValidator_1<TUser> = IPasswordValidator_1$instance<TUser>;
93
107
 
94
108
  export interface IPersonalDataProtector$instance {
109
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPersonalDataProtector: never;
110
+
95
111
  Protect(data: string): string | undefined;
96
112
  }
97
113
 
@@ -99,6 +115,8 @@ export interface IPersonalDataProtector$instance {
99
115
  export type IPersonalDataProtector = IPersonalDataProtector$instance;
100
116
 
101
117
  export interface IProtectedUserStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
118
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IProtectedUserStore_1: never;
119
+
102
120
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
103
121
  GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task<System_Internal.String>;
104
122
  SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
@@ -110,6 +128,8 @@ export interface IProtectedUserStore_1$instance<TUser> extends IUserStore_1$inst
110
128
  export type IProtectedUserStore_1<TUser> = IProtectedUserStore_1$instance<TUser>;
111
129
 
112
130
  export interface IQueryableRoleStore_1$instance<TRole> extends IRoleStore_1<TRole>, IDisposable {
131
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IQueryableRoleStore_1: never;
132
+
113
133
  readonly Roles: IQueryable<TRole>;
114
134
  CreateAsync(role: TRole, cancellationToken: CancellationToken): Task<IdentityResult>;
115
135
  FindByIdAsync(roleId: string, cancellationToken: CancellationToken): Task<TRole>;
@@ -122,6 +142,8 @@ export interface IQueryableRoleStore_1$instance<TRole> extends IRoleStore_1$inst
122
142
  export type IQueryableRoleStore_1<TRole> = IQueryableRoleStore_1$instance<TRole>;
123
143
 
124
144
  export interface IQueryableUserStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
145
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IQueryableUserStore_1: never;
146
+
125
147
  readonly Users: IQueryable<TUser>;
126
148
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
127
149
  GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task<System_Internal.String>;
@@ -134,6 +156,8 @@ export interface IQueryableUserStore_1$instance<TUser> extends IUserStore_1$inst
134
156
  export type IQueryableUserStore_1<TUser> = IQueryableUserStore_1$instance<TUser>;
135
157
 
136
158
  export interface IRoleClaimStore_1$instance<TRole> extends IRoleStore_1<TRole>, IDisposable {
159
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IRoleClaimStore_1: never;
160
+
137
161
  AddClaimAsync(role: TRole, claim: Claim, cancellationToken?: CancellationToken): Task;
138
162
  FindByIdAsync(roleId: string, cancellationToken: CancellationToken): Task<TRole>;
139
163
  GetClaimsAsync(role: TRole, cancellationToken?: CancellationToken): Task<IList<Claim>>;
@@ -147,15 +171,21 @@ export interface IRoleClaimStore_1$instance<TRole> extends IRoleStore_1$instance
147
171
  export type IRoleClaimStore_1<TRole> = IRoleClaimStore_1$instance<TRole>;
148
172
 
149
173
  export interface IRoleStore_1$instance<TRole> extends IDisposable {
174
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IRoleStore_1: never;
175
+
150
176
  CreateAsync(role: TRole, cancellationToken: CancellationToken): Task<IdentityResult>;
151
177
  FindByIdAsync(roleId: string, cancellationToken: CancellationToken): Task<TRole | undefined>;
152
178
  SetRoleNameAsync(role: TRole, roleName: string, cancellationToken: CancellationToken): Task;
153
179
  }
154
180
 
155
181
 
182
+ export interface IRoleStore_1$instance<TRole> extends System_Internal.IDisposable {}
183
+
156
184
  export type IRoleStore_1<TRole> = IRoleStore_1$instance<TRole>;
157
185
 
158
186
  export interface IRoleValidator_1$instance<TRole> {
187
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IRoleValidator_1: never;
188
+
159
189
  ValidateAsync(manager: RoleManager_1<TRole>, role: TRole): Task<IdentityResult>;
160
190
  }
161
191
 
@@ -163,6 +193,8 @@ export interface IRoleValidator_1$instance<TRole> {
163
193
  export type IRoleValidator_1<TRole> = IRoleValidator_1$instance<TRole>;
164
194
 
165
195
  export interface ISecurityStampValidator$instance {
196
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ISecurityStampValidator: never;
197
+
166
198
  ValidateAsync(context: CookieValidatePrincipalContext): Task;
167
199
  }
168
200
 
@@ -170,6 +202,8 @@ export interface ISecurityStampValidator$instance {
170
202
  export type ISecurityStampValidator = ISecurityStampValidator$instance;
171
203
 
172
204
  export interface ITwoFactorSecurityStampValidator$instance extends ISecurityStampValidator {
205
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ITwoFactorSecurityStampValidator: never;
206
+
173
207
  ValidateAsync(context: CookieValidatePrincipalContext): Task;
174
208
  }
175
209
 
@@ -179,6 +213,8 @@ export interface ITwoFactorSecurityStampValidator$instance extends ISecurityStam
179
213
  export type ITwoFactorSecurityStampValidator = ITwoFactorSecurityStampValidator$instance;
180
214
 
181
215
  export interface IUserAuthenticationTokenStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
216
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserAuthenticationTokenStore_1: never;
217
+
182
218
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
183
219
  GetTokenAsync(user: TUser, loginProvider: string, name: string, cancellationToken: CancellationToken): Task<string | undefined>;
184
220
  GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task<System_Internal.String>;
@@ -193,6 +229,8 @@ export interface IUserAuthenticationTokenStore_1$instance<TUser> extends IUserSt
193
229
  export type IUserAuthenticationTokenStore_1<TUser> = IUserAuthenticationTokenStore_1$instance<TUser>;
194
230
 
195
231
  export interface IUserAuthenticatorKeyStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
232
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserAuthenticatorKeyStore_1: never;
233
+
196
234
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
197
235
  GetAuthenticatorKeyAsync(user: TUser, cancellationToken: CancellationToken): Task<string | undefined>;
198
236
  SetAuthenticatorKeyAsync(user: TUser, key: string, cancellationToken: CancellationToken): Task;
@@ -206,6 +244,8 @@ export interface IUserAuthenticatorKeyStore_1$instance<TUser> extends IUserStore
206
244
  export type IUserAuthenticatorKeyStore_1<TUser> = IUserAuthenticatorKeyStore_1$instance<TUser>;
207
245
 
208
246
  export interface IUserClaimsPrincipalFactory_1$instance<TUser> {
247
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserClaimsPrincipalFactory_1: never;
248
+
209
249
  CreateAsync(user: TUser): Task<ClaimsPrincipal>;
210
250
  }
211
251
 
@@ -213,6 +253,8 @@ export interface IUserClaimsPrincipalFactory_1$instance<TUser> {
213
253
  export type IUserClaimsPrincipalFactory_1<TUser> = IUserClaimsPrincipalFactory_1$instance<TUser>;
214
254
 
215
255
  export interface IUserClaimStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
256
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserClaimStore_1: never;
257
+
216
258
  AddClaimsAsync(user: TUser, claims: IEnumerable<Claim>, cancellationToken: CancellationToken): Task;
217
259
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
218
260
  GetClaimsAsync(user: TUser, cancellationToken: CancellationToken): Task<IList<Claim>>;
@@ -228,6 +270,8 @@ export interface IUserClaimStore_1$instance<TUser> extends IUserStore_1$instance
228
270
  export type IUserClaimStore_1<TUser> = IUserClaimStore_1$instance<TUser>;
229
271
 
230
272
  export interface IUserConfirmation_1$instance<TUser> {
273
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserConfirmation_1: never;
274
+
231
275
  IsConfirmedAsync(manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.Boolean>;
232
276
  }
233
277
 
@@ -235,6 +279,8 @@ export interface IUserConfirmation_1$instance<TUser> {
235
279
  export type IUserConfirmation_1<TUser> = IUserConfirmation_1$instance<TUser>;
236
280
 
237
281
  export interface IUserEmailStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
282
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserEmailStore_1: never;
283
+
238
284
  FindByEmailAsync(normalizedEmail: string, cancellationToken: CancellationToken): Task<TUser | undefined>;
239
285
  GetEmailAsync(user: TUser, cancellationToken: CancellationToken): Task<string | undefined>;
240
286
  SetEmailAsync(user: TUser, email: string, cancellationToken: CancellationToken): Task;
@@ -250,6 +296,8 @@ export interface IUserEmailStore_1$instance<TUser> extends IUserStore_1$instance
250
296
  export type IUserEmailStore_1<TUser> = IUserEmailStore_1$instance<TUser>;
251
297
 
252
298
  export interface IUserLockoutStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
299
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserLockoutStore_1: never;
300
+
253
301
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
254
302
  GetLockoutEndDateAsync(user: TUser, cancellationToken: CancellationToken): Task<Nullable<DateTimeOffset>>;
255
303
  ResetAccessFailedCountAsync(user: TUser, cancellationToken: CancellationToken): Task;
@@ -265,6 +313,8 @@ export interface IUserLockoutStore_1$instance<TUser> extends IUserStore_1$instan
265
313
  export type IUserLockoutStore_1<TUser> = IUserLockoutStore_1$instance<TUser>;
266
314
 
267
315
  export interface IUserLoginStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
316
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserLoginStore_1: never;
317
+
268
318
  AddLoginAsync(user: TUser, login: UserLoginInfo, cancellationToken: CancellationToken): Task;
269
319
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
270
320
  FindByLoginAsync(loginProvider: string, providerKey: string, cancellationToken: CancellationToken): Task<TUser | undefined>;
@@ -280,6 +330,8 @@ export interface IUserLoginStore_1$instance<TUser> extends IUserStore_1$instance
280
330
  export type IUserLoginStore_1<TUser> = IUserLoginStore_1$instance<TUser>;
281
331
 
282
332
  export interface IUserPasskeyStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
333
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPasskeyStore_1: never;
334
+
283
335
  AddOrUpdatePasskeyAsync(user: TUser, passkey: UserPasskeyInfo, cancellationToken: CancellationToken): Task;
284
336
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
285
337
  FindByPasskeyIdAsync(credentialId: byte[], cancellationToken: CancellationToken): Task<TUser | undefined>;
@@ -296,6 +348,8 @@ export interface IUserPasskeyStore_1$instance<TUser> extends IUserStore_1$instan
296
348
  export type IUserPasskeyStore_1<TUser> = IUserPasskeyStore_1$instance<TUser>;
297
349
 
298
350
  export interface IUserPasswordStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
351
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPasswordStore_1: never;
352
+
299
353
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
300
354
  GetPasswordHashAsync(user: TUser, cancellationToken: CancellationToken): Task<string | undefined>;
301
355
  SetPasswordHashAsync(user: TUser, passwordHash: string, cancellationToken: CancellationToken): Task;
@@ -309,6 +363,8 @@ export interface IUserPasswordStore_1$instance<TUser> extends IUserStore_1$insta
309
363
  export type IUserPasswordStore_1<TUser> = IUserPasswordStore_1$instance<TUser>;
310
364
 
311
365
  export interface IUserPhoneNumberStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
366
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPhoneNumberStore_1: never;
367
+
312
368
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
313
369
  GetPhoneNumberAsync(user: TUser, cancellationToken: CancellationToken): Task<string | undefined>;
314
370
  SetPhoneNumberAsync(user: TUser, phoneNumber: string, cancellationToken: CancellationToken): Task;
@@ -323,6 +379,8 @@ export interface IUserPhoneNumberStore_1$instance<TUser> extends IUserStore_1$in
323
379
  export type IUserPhoneNumberStore_1<TUser> = IUserPhoneNumberStore_1$instance<TUser>;
324
380
 
325
381
  export interface IUserRoleStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
382
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserRoleStore_1: never;
383
+
326
384
  AddToRoleAsync(user: TUser, roleName: string, cancellationToken: CancellationToken): Task;
327
385
  GetRolesAsync(user: TUser, cancellationToken: CancellationToken): Task<IList<System_Internal.String>>;
328
386
  GetUsersInRoleAsync(roleName: string, cancellationToken: CancellationToken): Task<IList<TUser>>;
@@ -338,6 +396,8 @@ export interface IUserRoleStore_1$instance<TUser> extends IUserStore_1$instance<
338
396
  export type IUserRoleStore_1<TUser> = IUserRoleStore_1$instance<TUser>;
339
397
 
340
398
  export interface IUserSecurityStampStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
399
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserSecurityStampStore_1: never;
400
+
341
401
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
342
402
  GetSecurityStampAsync(user: TUser, cancellationToken: CancellationToken): Task<string | undefined>;
343
403
  SetSecurityStampAsync(user: TUser, stamp: string, cancellationToken: CancellationToken): Task;
@@ -351,15 +411,21 @@ export interface IUserSecurityStampStore_1$instance<TUser> extends IUserStore_1$
351
411
  export type IUserSecurityStampStore_1<TUser> = IUserSecurityStampStore_1$instance<TUser>;
352
412
 
353
413
  export interface IUserStore_1$instance<TUser> extends IDisposable {
414
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserStore_1: never;
415
+
354
416
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser | undefined>;
355
417
  GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task<System_Internal.String>;
356
418
  SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
357
419
  }
358
420
 
359
421
 
422
+ export interface IUserStore_1$instance<TUser> extends System_Internal.IDisposable {}
423
+
360
424
  export type IUserStore_1<TUser> = IUserStore_1$instance<TUser>;
361
425
 
362
426
  export interface IUserTwoFactorRecoveryCodeStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
427
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorRecoveryCodeStore_1: never;
428
+
363
429
  CountCodesAsync(user: TUser, cancellationToken: CancellationToken): Task<System_Internal.Int32>;
364
430
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
365
431
  RedeemCodeAsync(user: TUser, code: string, cancellationToken: CancellationToken): Task<System_Internal.Boolean>;
@@ -374,6 +440,8 @@ export interface IUserTwoFactorRecoveryCodeStore_1$instance<TUser> extends IUser
374
440
  export type IUserTwoFactorRecoveryCodeStore_1<TUser> = IUserTwoFactorRecoveryCodeStore_1$instance<TUser>;
375
441
 
376
442
  export interface IUserTwoFactorStore_1$instance<TUser> extends IUserStore_1<TUser>, IDisposable {
443
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorStore_1: never;
444
+
377
445
  FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task<TUser>;
378
446
  GetTwoFactorEnabledAsync(user: TUser, cancellationToken: CancellationToken): Task<System_Internal.Boolean>;
379
447
  SetTwoFactorEnabledAsync(user: TUser, enabled: boolean, cancellationToken: CancellationToken): Task;
@@ -387,6 +455,8 @@ export interface IUserTwoFactorStore_1$instance<TUser> extends IUserStore_1$inst
387
455
  export type IUserTwoFactorStore_1<TUser> = IUserTwoFactorStore_1$instance<TUser>;
388
456
 
389
457
  export interface IUserTwoFactorTokenProvider_1$instance<TUser> {
458
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorTokenProvider_1: never;
459
+
390
460
  CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.Boolean>;
391
461
  GenerateAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.String>;
392
462
  ValidateAsync(purpose: string, token: string, manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.Boolean>;
@@ -396,6 +466,8 @@ export interface IUserTwoFactorTokenProvider_1$instance<TUser> {
396
466
  export type IUserTwoFactorTokenProvider_1<TUser> = IUserTwoFactorTokenProvider_1$instance<TUser>;
397
467
 
398
468
  export interface IUserValidator_1$instance<TUser> {
469
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserValidator_1: never;
470
+
399
471
  ValidateAsync(manager: UserManager_1<TUser>, user: TUser): Task<IdentityResult>;
400
472
  }
401
473
 
@@ -403,6 +475,8 @@ export interface IUserValidator_1$instance<TUser> {
403
475
  export type IUserValidator_1<TUser> = IUserValidator_1$instance<TUser>;
404
476
 
405
477
  export interface AspNetRoleManager_1$instance<TRole> extends RoleManager_1<TRole> {
478
+ readonly __tsonic_iface_System_IDisposable: never;
479
+
406
480
  readonly CancellationToken: CancellationToken;
407
481
  }
408
482
 
@@ -415,6 +489,8 @@ export const AspNetRoleManager_1: {
415
489
  export type AspNetRoleManager_1<TRole> = AspNetRoleManager_1$instance<TRole>;
416
490
 
417
491
  export interface AspNetUserManager_1$instance<TUser> extends UserManager_1<TUser> {
492
+ readonly __tsonic_iface_System_IDisposable: never;
493
+
418
494
  readonly CancellationToken: CancellationToken;
419
495
  }
420
496
 
@@ -427,6 +503,8 @@ export const AspNetUserManager_1: {
427
503
  export type AspNetUserManager_1<TUser> = AspNetUserManager_1$instance<TUser>;
428
504
 
429
505
  export interface AuthenticatorTokenProvider_1$instance<TUser> {
506
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorTokenProvider_1: never;
507
+
430
508
  CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.Boolean>;
431
509
  GenerateAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.String>;
432
510
  ValidateAsync(purpose: string, token: string, manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.Boolean>;
@@ -477,6 +555,8 @@ export const DataProtectionTokenProviderOptions: {
477
555
  export type DataProtectionTokenProviderOptions = DataProtectionTokenProviderOptions$instance;
478
556
 
479
557
  export interface DataProtectorTokenProvider_1$instance<TUser> {
558
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorTokenProvider_1: never;
559
+
480
560
  readonly Logger: ILogger<DataProtectorTokenProvider_1<TUser>>;
481
561
  readonly Name: string;
482
562
  CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.Boolean>;
@@ -500,6 +580,8 @@ export type DataProtectorTokenProvider_1<TUser> = DataProtectorTokenProvider_1$i
500
580
 
501
581
 
502
582
  export interface DefaultPersonalDataProtector$instance {
583
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPersonalDataProtector: never;
584
+
503
585
  Protect(data: string): string | undefined;
504
586
  Unprotect(data: string): string | undefined;
505
587
  }
@@ -520,6 +602,8 @@ export type DefaultPersonalDataProtector = DefaultPersonalDataProtector$instance
520
602
 
521
603
 
522
604
  export interface DefaultUserConfirmation_1$instance<TUser> {
605
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserConfirmation_1: never;
606
+
523
607
  IsConfirmedAsync(manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.Boolean>;
524
608
  }
525
609
 
@@ -539,6 +623,8 @@ export type DefaultUserConfirmation_1<TUser> = DefaultUserConfirmation_1$instanc
539
623
 
540
624
 
541
625
  export interface EmailTokenProvider_1$instance<TUser> extends TotpSecurityStampBasedTokenProvider_1$instance<TUser> {
626
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorTokenProvider_1: never;
627
+
542
628
  CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.Boolean>;
543
629
  GenerateAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.String>;
544
630
  GetUserModifierAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.String>;
@@ -1052,6 +1138,8 @@ export const PasskeyCreationOptionsResult: {
1052
1138
  export type PasskeyCreationOptionsResult = PasskeyCreationOptionsResult$instance;
1053
1139
 
1054
1140
  export interface PasskeyException$instance extends Exception {
1141
+ readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
1142
+
1055
1143
  }
1056
1144
 
1057
1145
 
@@ -1064,6 +1152,8 @@ export const PasskeyException: {
1064
1152
  export type PasskeyException = PasskeyException$instance;
1065
1153
 
1066
1154
  export interface PasskeyHandler_1$instance<TUser> {
1155
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPasskeyHandler_1: never;
1156
+
1067
1157
  MakeCreationOptionsAsync(userEntity: PasskeyUserEntity, httpContext: HttpContext): Task<PasskeyCreationOptionsResult>;
1068
1158
  MakeRequestOptionsAsync(user: TUser, httpContext: HttpContext): Task<PasskeyRequestOptionsResult>;
1069
1159
  PerformAssertionAsync(context: PasskeyAssertionContext): Task<PasskeyAssertionResult_1<TUser>>;
@@ -1130,6 +1220,8 @@ export const PasskeyUserEntity: {
1130
1220
  export type PasskeyUserEntity = PasskeyUserEntity$instance;
1131
1221
 
1132
1222
  export interface PasswordHasher_1$instance<TUser> {
1223
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPasswordHasher_1: never;
1224
+
1133
1225
  HashPassword(user: TUser, password: string): string;
1134
1226
  VerifyHashedPassword(user: TUser, hashedPassword: string, providedPassword: string): PasswordVerificationResult;
1135
1227
  }
@@ -1180,6 +1272,8 @@ export const PasswordOptions: {
1180
1272
  export type PasswordOptions = PasswordOptions$instance;
1181
1273
 
1182
1274
  export interface PasswordValidator_1$instance<TUser> {
1275
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPasswordValidator_1: never;
1276
+
1183
1277
  Describer: IdentityErrorDescriber;
1184
1278
  IsDigit(c: char): boolean;
1185
1279
  IsLetterOrDigit(c: char): boolean;
@@ -1215,6 +1309,8 @@ export const PersonalDataAttribute: {
1215
1309
  export type PersonalDataAttribute = PersonalDataAttribute$instance;
1216
1310
 
1217
1311
  export interface PhoneNumberTokenProvider_1$instance<TUser> extends TotpSecurityStampBasedTokenProvider_1$instance<TUser> {
1312
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorTokenProvider_1: never;
1313
+
1218
1314
  CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.Boolean>;
1219
1315
  GenerateAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.String>;
1220
1316
  GetUserModifierAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.String>;
@@ -1247,6 +1343,8 @@ export const ProtectedPersonalDataAttribute: {
1247
1343
  export type ProtectedPersonalDataAttribute = ProtectedPersonalDataAttribute$instance;
1248
1344
 
1249
1345
  export interface RoleManager_1$instance<TRole> {
1346
+ readonly __tsonic_iface_System_IDisposable: never;
1347
+
1250
1348
  readonly CancellationToken: CancellationToken;
1251
1349
  ErrorDescriber: IdentityErrorDescriber;
1252
1350
  KeyNormalizer: ILookupNormalizer;
@@ -1284,6 +1382,11 @@ export const RoleManager_1: {
1284
1382
  export type RoleManager_1<TRole> = RoleManager_1$instance<TRole>;
1285
1383
 
1286
1384
  export interface RoleStoreBase_4$instance<TRole extends IdentityRole_1<TKey>, TKey extends (IEquatable<TKey> | number | string | boolean), TUserRole extends IdentityUserRole_1<TKey>, TRoleClaim extends IdentityRoleClaim_1<TKey>> {
1385
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IQueryableRoleStore_1: never;
1386
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IRoleClaimStore_1: never;
1387
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IRoleStore_1: never;
1388
+ readonly __tsonic_iface_System_IDisposable: never;
1389
+
1287
1390
  ErrorDescriber: IdentityErrorDescriber;
1288
1391
  readonly Roles: IQueryable<TRole>;
1289
1392
  AddClaimAsync(role: TRole, claim: Claim, cancellationToken?: CancellationToken): Task;
@@ -1320,6 +1423,8 @@ export type RoleStoreBase_4<TRole extends IdentityRole_1<TKey>, TKey extends (IE
1320
1423
 
1321
1424
 
1322
1425
  export interface RoleValidator_1$instance<TRole> {
1426
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IRoleValidator_1: never;
1427
+
1323
1428
  ValidateAsync(manager: RoleManager_1<TRole>, role: TRole): Task<IdentityResult>;
1324
1429
  }
1325
1430
 
@@ -1354,6 +1459,8 @@ export const SecurityStampRefreshingPrincipalContext: {
1354
1459
  export type SecurityStampRefreshingPrincipalContext = SecurityStampRefreshingPrincipalContext$instance;
1355
1460
 
1356
1461
  export interface SecurityStampValidator_1$instance<TUser> {
1462
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ISecurityStampValidator: never;
1463
+
1357
1464
  readonly Clock: ISystemClock;
1358
1465
  Logger: ILogger;
1359
1466
  readonly Options: SecurityStampValidatorOptions;
@@ -1538,6 +1645,8 @@ export const TokenProviderDescriptor: {
1538
1645
  export type TokenProviderDescriptor = TokenProviderDescriptor$instance;
1539
1646
 
1540
1647
  export interface TotpSecurityStampBasedTokenProvider_1$instance<TUser> {
1648
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorTokenProvider_1: never;
1649
+
1541
1650
  CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.Boolean>;
1542
1651
  GenerateAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.String>;
1543
1652
  GetUserModifierAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task<System_Internal.String>;
@@ -1559,6 +1668,9 @@ export type TotpSecurityStampBasedTokenProvider_1<TUser> = TotpSecurityStampBase
1559
1668
 
1560
1669
 
1561
1670
  export interface TwoFactorSecurityStampValidator_1$instance<TUser> extends SecurityStampValidator_1$instance<TUser>, ITwoFactorSecurityStampValidator {
1671
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ISecurityStampValidator: never;
1672
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ITwoFactorSecurityStampValidator: never;
1673
+
1562
1674
  SecurityStampVerified(user: TUser, context: CookieValidatePrincipalContext): Task;
1563
1675
  ValidateAsync(context: CookieValidatePrincipalContext): Task;
1564
1676
  VerifySecurityStamp(principal: ClaimsPrincipal): Task<TUser | undefined>;
@@ -1582,6 +1694,8 @@ export type TwoFactorSecurityStampValidator_1<TUser> = TwoFactorSecurityStampVal
1582
1694
 
1583
1695
 
1584
1696
  export interface UpperInvariantLookupNormalizer$instance {
1697
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ILookupNormalizer: never;
1698
+
1585
1699
  NormalizeEmail(email: string): string | undefined;
1586
1700
  NormalizeName(name: string): string | undefined;
1587
1701
  }
@@ -1602,6 +1716,8 @@ export type UpperInvariantLookupNormalizer = UpperInvariantLookupNormalizer$inst
1602
1716
 
1603
1717
 
1604
1718
  export interface UserClaimsPrincipalFactory_1$instance<TUser> {
1719
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserClaimsPrincipalFactory_1: never;
1720
+
1605
1721
  Options: IdentityOptions;
1606
1722
  UserManager: UserManager_1<TUser>;
1607
1723
  CreateAsync(user: TUser): Task<ClaimsPrincipal>;
@@ -1624,6 +1740,8 @@ export type UserClaimsPrincipalFactory_1<TUser> = UserClaimsPrincipalFactory_1$i
1624
1740
 
1625
1741
 
1626
1742
  export interface UserClaimsPrincipalFactory_2$instance<TUser, TRole> extends UserClaimsPrincipalFactory_1$instance<TUser> {
1743
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserClaimsPrincipalFactory_1: never;
1744
+
1627
1745
  RoleManager: RoleManager_1<TRole>;
1628
1746
  CreateAsync(user: TUser): Task<ClaimsPrincipal>;
1629
1747
  GenerateClaimsAsync(user: TUser): Task<ClaimsIdentity>;
@@ -1659,6 +1777,8 @@ export const UserLoginInfo: {
1659
1777
  export type UserLoginInfo = UserLoginInfo$instance;
1660
1778
 
1661
1779
  export interface UserManager_1$instance<TUser> {
1780
+ readonly __tsonic_iface_System_IDisposable: never;
1781
+
1662
1782
  readonly CancellationToken: CancellationToken;
1663
1783
  ErrorDescriber: IdentityErrorDescriber;
1664
1784
  KeyNormalizer: ILookupNormalizer;
@@ -1829,6 +1949,21 @@ export const UserPasskeyInfo: {
1829
1949
  export type UserPasskeyInfo = UserPasskeyInfo$instance;
1830
1950
 
1831
1951
  export interface UserStoreBase_5$instance<TUser extends IdentityUser_1<TKey>, TKey extends (IEquatable<TKey> | number | string | boolean), TUserClaim extends IdentityUserClaim_1<TKey>, TUserLogin extends IdentityUserLogin_1<TKey>, TUserToken extends IdentityUserToken_1<TKey>> extends IUserPasswordStore_1<TUser>, IUserSecurityStampStore_1<TUser>, IUserAuthenticatorKeyStore_1<TUser> {
1952
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IQueryableUserStore_1: never;
1953
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserAuthenticationTokenStore_1: never;
1954
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserAuthenticatorKeyStore_1: never;
1955
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserClaimStore_1: never;
1956
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserEmailStore_1: never;
1957
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserLockoutStore_1: never;
1958
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserLoginStore_1: never;
1959
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPasswordStore_1: never;
1960
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPhoneNumberStore_1: never;
1961
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserSecurityStampStore_1: never;
1962
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserStore_1: never;
1963
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorRecoveryCodeStore_1: never;
1964
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorStore_1: never;
1965
+ readonly __tsonic_iface_System_IDisposable: never;
1966
+
1832
1967
  ErrorDescriber: IdentityErrorDescriber;
1833
1968
  readonly Users: IQueryable<TUser>;
1834
1969
  AddClaimsAsync(user: TUser, claims: IEnumerable<Claim>, cancellationToken?: CancellationToken): Task;
@@ -1919,6 +2054,22 @@ export type UserStoreBase_5<TUser extends IdentityUser_1<TKey>, TKey extends (IE
1919
2054
 
1920
2055
 
1921
2056
  export interface UserStoreBase_8$instance<TUser extends IdentityUser_1<TKey>, TRole extends IdentityRole_1<TKey>, TKey extends (IEquatable<TKey> | number | string | boolean), TUserClaim extends IdentityUserClaim_1<TKey>, TUserRole extends IdentityUserRole_1<TKey>, TUserLogin extends IdentityUserLogin_1<TKey>, TUserToken extends IdentityUserToken_1<TKey>, TRoleClaim extends IdentityRoleClaim_1<TKey>> extends UserStoreBase_5$instance<TUser, TKey, TUserClaim, TUserLogin, TUserToken>, IUserPasswordStore_1<TUser>, IUserSecurityStampStore_1<TUser>, IUserAuthenticatorKeyStore_1<TUser> {
2057
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IQueryableUserStore_1: never;
2058
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserAuthenticationTokenStore_1: never;
2059
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserAuthenticatorKeyStore_1: never;
2060
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserClaimStore_1: never;
2061
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserEmailStore_1: never;
2062
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserLockoutStore_1: never;
2063
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserLoginStore_1: never;
2064
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPasswordStore_1: never;
2065
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPhoneNumberStore_1: never;
2066
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserRoleStore_1: never;
2067
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserSecurityStampStore_1: never;
2068
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserStore_1: never;
2069
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorRecoveryCodeStore_1: never;
2070
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorStore_1: never;
2071
+ readonly __tsonic_iface_System_IDisposable: never;
2072
+
1922
2073
  AddClaimsAsync(user: TUser, claims: IEnumerable<Claim>, cancellationToken?: CancellationToken): Task;
1923
2074
  AddLoginAsync(user: TUser, login: UserLoginInfo, cancellationToken?: CancellationToken): Task;
1924
2075
  AddToRoleAsync(user: TUser, normalizedRoleName: string, cancellationToken?: CancellationToken): Task;
@@ -1988,6 +2139,8 @@ export type UserStoreBase_8<TUser extends IdentityUser_1<TKey>, TRole extends Id
1988
2139
 
1989
2140
 
1990
2141
  export interface UserValidator_1$instance<TUser> {
2142
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserValidator_1: never;
2143
+
1991
2144
  Describer: IdentityErrorDescriber;
1992
2145
  ValidateAsync(manager: UserManager_1<TUser>, user: TUser): Task<IdentityResult>;
1993
2146
  }
@@ -11,6 +11,8 @@ import type { Object as ClrObject, String as ClrString } from "@tsonic/dotnet/Sy
11
11
  import type { Task } from "@tsonic/dotnet/System.Threading.Tasks.js";
12
12
 
13
13
  export interface IEmailSender$instance {
14
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_UI_Services_IEmailSender: never;
15
+
14
16
  SendEmailAsync(email: string, subject: string, htmlMessage: string): Task;
15
17
  }
16
18
 
@@ -18,6 +20,8 @@ export interface IEmailSender$instance {
18
20
  export type IEmailSender = IEmailSender$instance;
19
21
 
20
22
  export interface NoOpEmailSender$instance {
23
+ readonly __tsonic_iface_Microsoft_AspNetCore_Identity_UI_Services_IEmailSender: never;
24
+
21
25
  SendEmailAsync(email: string, subject: string, htmlMessage: string): Task;
22
26
  }
23
27
 
@@ -18,6 +18,8 @@ import type { IOptions } from "@tsonic/microsoft-extensions/Microsoft.Extensions
18
18
  import type { StringSegment } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Primitives.js";
19
19
 
20
20
  export interface IRequestCultureFeature$instance {
21
+ readonly __tsonic_iface_Microsoft_AspNetCore_Localization_IRequestCultureFeature: never;
22
+
21
23
  readonly RequestCulture: RequestCulture;
22
24
  readonly Provider: IRequestCultureProvider | undefined;
23
25
  }
@@ -26,6 +28,8 @@ export interface IRequestCultureFeature$instance {
26
28
  export type IRequestCultureFeature = IRequestCultureFeature$instance;
27
29
 
28
30
  export interface IRequestCultureProvider$instance {
31
+ readonly __tsonic_iface_Microsoft_AspNetCore_Localization_IRequestCultureProvider: never;
32
+
29
33
  DetermineProviderCultureResult(httpContext: HttpContext): Task<ProviderCultureResult | undefined>;
30
34
  }
31
35
 
@@ -33,6 +37,8 @@ export interface IRequestCultureProvider$instance {
33
37
  export type IRequestCultureProvider = IRequestCultureProvider$instance;
34
38
 
35
39
  export interface AcceptLanguageHeaderRequestCultureProvider$instance extends RequestCultureProvider$instance {
40
+ readonly __tsonic_iface_Microsoft_AspNetCore_Localization_IRequestCultureProvider: never;
41
+
36
42
  MaximumAcceptLanguageHeaderValuesToTry: int;
37
43
  DetermineProviderCultureResult(httpContext: HttpContext): Task<ProviderCultureResult | undefined>;
38
44
  }
@@ -51,6 +57,8 @@ export type AcceptLanguageHeaderRequestCultureProvider = AcceptLanguageHeaderReq
51
57
 
52
58
 
53
59
  export interface CookieRequestCultureProvider$instance extends RequestCultureProvider$instance {
60
+ readonly __tsonic_iface_Microsoft_AspNetCore_Localization_IRequestCultureProvider: never;
61
+
54
62
  CookieName: string;
55
63
  DetermineProviderCultureResult(httpContext: HttpContext): Task<ProviderCultureResult | undefined>;
56
64
  }
@@ -72,6 +80,8 @@ export type CookieRequestCultureProvider = CookieRequestCultureProvider$instance
72
80
 
73
81
 
74
82
  export interface CustomRequestCultureProvider$instance extends RequestCultureProvider$instance {
83
+ readonly __tsonic_iface_Microsoft_AspNetCore_Localization_IRequestCultureProvider: never;
84
+
75
85
  DetermineProviderCultureResult(httpContext: HttpContext): Task<ProviderCultureResult | undefined>;
76
86
  }
77
87
 
@@ -105,6 +115,8 @@ export const ProviderCultureResult: {
105
115
  export type ProviderCultureResult = ProviderCultureResult$instance;
106
116
 
107
117
  export interface QueryStringRequestCultureProvider$instance extends RequestCultureProvider$instance {
118
+ readonly __tsonic_iface_Microsoft_AspNetCore_Localization_IRequestCultureProvider: never;
119
+
108
120
  QueryStringKey: string;
109
121
  UIQueryStringKey: string;
110
122
  DetermineProviderCultureResult(httpContext: HttpContext): Task<ProviderCultureResult | undefined>;
@@ -140,6 +152,8 @@ export const RequestCulture: {
140
152
  export type RequestCulture = RequestCulture$instance;
141
153
 
142
154
  export interface RequestCultureFeature$instance {
155
+ readonly __tsonic_iface_Microsoft_AspNetCore_Localization_IRequestCultureFeature: never;
156
+
143
157
  readonly Provider: IRequestCultureProvider | undefined;
144
158
  readonly RequestCulture: RequestCulture;
145
159
  }
@@ -160,6 +174,8 @@ export type RequestCultureFeature = RequestCultureFeature$instance & __RequestCu
160
174
 
161
175
 
162
176
  export interface RequestCultureProvider$instance {
177
+ readonly __tsonic_iface_Microsoft_AspNetCore_Localization_IRequestCultureProvider: never;
178
+
163
179
  get Options(): RequestLocalizationOptions | undefined;
164
180
  set Options(value: RequestLocalizationOptions | undefined);
165
181
  DetermineProviderCultureResult(httpContext: HttpContext): Task<ProviderCultureResult | undefined>;
@@ -15,6 +15,8 @@ import type { String as ClrString } from "@tsonic/dotnet/System.js";
15
15
  import type { Task } from "@tsonic/dotnet/System.Threading.Tasks.js";
16
16
 
17
17
  export interface RouteDataRequestCultureProvider$instance extends RequestCultureProvider {
18
+ readonly __tsonic_iface_Microsoft_AspNetCore_Localization_IRequestCultureProvider: never;
19
+
18
20
  RouteDataStringKey: string;
19
21
  UIRouteDataStringKey: string;
20
22
  DetermineProviderCultureResult(httpContext: HttpContext): Task<ProviderCultureResult | undefined>;