@tsonic/aspnetcore 10.0.2 → 10.0.6
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.
- package/Microsoft.AspNetCore/internal/index.d.ts +6 -6
- package/Microsoft.AspNetCore.Antiforgery/internal/index.d.ts +27 -9
- package/Microsoft.AspNetCore.Authentication/internal/index.d.ts +250 -112
- package/Microsoft.AspNetCore.Authentication.BearerToken/internal/index.d.ts +13 -5
- package/Microsoft.AspNetCore.Authentication.Cookies/internal/index.d.ts +64 -34
- package/Microsoft.AspNetCore.Authentication.OAuth/internal/index.d.ts +47 -28
- package/Microsoft.AspNetCore.Authentication.OAuth.Claims/internal/index.d.ts +28 -11
- package/Microsoft.AspNetCore.Authorization/internal/index.d.ts +137 -75
- package/Microsoft.AspNetCore.Authorization.Infrastructure/internal/index.d.ts +53 -32
- package/Microsoft.AspNetCore.Authorization.Policy/internal/index.d.ts +21 -13
- package/Microsoft.AspNetCore.Builder/internal/index.d.ts +221 -139
- package/Microsoft.AspNetCore.Builder.Extensions/internal/index.d.ts +15 -5
- package/Microsoft.AspNetCore.Components/internal/index.d.ts +358 -187
- package/Microsoft.AspNetCore.Components.Authorization/internal/index.d.ts +46 -17
- package/Microsoft.AspNetCore.Components.CompilerServices/internal/index.d.ts +8 -8
- package/Microsoft.AspNetCore.Components.Endpoints/internal/index.d.ts +15 -5
- package/Microsoft.AspNetCore.Components.Endpoints.Infrastructure/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Components.Forms/internal/index.d.ts +220 -89
- package/Microsoft.AspNetCore.Components.Forms.Mapping/internal/index.d.ts +15 -9
- package/Microsoft.AspNetCore.Components.Forms.Mapping.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.HtmlRendering.Infrastructure/internal/index.d.ts +10 -5
- package/Microsoft.AspNetCore.Components.Infrastructure/internal/index.d.ts +9 -7
- package/Microsoft.AspNetCore.Components.Infrastructure.d.ts +3 -0
- package/Microsoft.AspNetCore.Components.RenderTree/internal/index.d.ts +44 -13
- package/Microsoft.AspNetCore.Components.Rendering/internal/index.d.ts +16 -8
- package/Microsoft.AspNetCore.Components.Routing/internal/index.d.ts +55 -22
- package/Microsoft.AspNetCore.Components.Sections/internal/index.d.ts +15 -9
- package/Microsoft.AspNetCore.Components.Server/internal/index.d.ts +33 -20
- package/Microsoft.AspNetCore.Components.Server.Circuits/internal/index.d.ts +11 -5
- package/Microsoft.AspNetCore.Components.Server.ProtectedBrowserStorage/internal/index.d.ts +13 -5
- package/Microsoft.AspNetCore.Components.Web/internal/index.d.ts +105 -37
- package/Microsoft.AspNetCore.Components.Web.HtmlRendering/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Components.Web.Infrastructure/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Components.Web.Internal/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.Components.Web.Virtualization/internal/index.d.ts +27 -15
- package/Microsoft.AspNetCore.Connections/internal/index.d.ts +130 -49
- package/Microsoft.AspNetCore.Connections.Abstractions/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Connections.Features/internal/index.d.ts +64 -20
- package/Microsoft.AspNetCore.CookiePolicy/internal/index.d.ts +13 -7
- package/Microsoft.AspNetCore.Cors/internal/index.d.ts +19 -8
- package/Microsoft.AspNetCore.Cors.Infrastructure/internal/index.d.ts +55 -29
- package/Microsoft.AspNetCore.Cryptography.KeyDerivation/internal/index.d.ts +2 -2
- package/Microsoft.AspNetCore.DataProtection/internal/index.d.ts +43 -20
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption/internal/index.d.ts +28 -16
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel/internal/index.d.ts +59 -27
- package/Microsoft.AspNetCore.DataProtection.AuthenticatedEncryption.ConfigurationModel.d.ts +3 -0
- package/Microsoft.AspNetCore.DataProtection.Infrastructure/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.DataProtection.Internal/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.DataProtection.KeyManagement/internal/index.d.ts +32 -19
- package/Microsoft.AspNetCore.DataProtection.KeyManagement.Internal/internal/index.d.ts +19 -5
- package/Microsoft.AspNetCore.DataProtection.Repositories/internal/index.d.ts +31 -15
- package/Microsoft.AspNetCore.DataProtection.XmlEncryption/internal/index.d.ts +58 -32
- package/Microsoft.AspNetCore.Diagnostics/internal/index.d.ts +64 -21
- package/Microsoft.AspNetCore.Diagnostics.HealthChecks/internal/index.d.ts +15 -11
- package/Microsoft.AspNetCore.HostFiltering/internal/index.d.ts +12 -8
- package/Microsoft.AspNetCore.Hosting/internal/index.d.ts +89 -47
- package/Microsoft.AspNetCore.Hosting.Builder/internal/index.d.ts +9 -5
- package/Microsoft.AspNetCore.Hosting.Infrastructure/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Hosting.Server/internal/index.d.ts +16 -4
- package/Microsoft.AspNetCore.Hosting.Server.Abstractions/internal/index.d.ts +2 -0
- package/Microsoft.AspNetCore.Hosting.Server.Features/internal/index.d.ts +12 -8
- package/Microsoft.AspNetCore.Hosting.StaticWebAssets/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Html/internal/index.d.ts +31 -13
- package/Microsoft.AspNetCore.Http/internal/index.d.ts +408 -199
- package/Microsoft.AspNetCore.Http.Connections/internal/index.d.ts +34 -16
- package/Microsoft.AspNetCore.Http.Connections.Features/internal/index.d.ts +4 -0
- package/Microsoft.AspNetCore.Http.Extensions/internal/index.d.ts +21 -16
- package/Microsoft.AspNetCore.Http.Features/internal/index.d.ts +208 -88
- package/Microsoft.AspNetCore.Http.Features.Authentication/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Http.Headers/internal/index.d.ts +31 -27
- package/Microsoft.AspNetCore.Http.HttpResults/internal/index.d.ts +378 -171
- package/Microsoft.AspNetCore.Http.Json/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Http.Metadata/internal/index.d.ts +74 -26
- package/Microsoft.AspNetCore.Http.Timeouts/internal/index.d.ts +18 -8
- package/Microsoft.AspNetCore.HttpLogging/internal/index.d.ts +23 -11
- package/Microsoft.AspNetCore.HttpOverrides/internal/index.d.ts +23 -13
- package/Microsoft.AspNetCore.HttpsPolicy/internal/index.d.ts +21 -13
- package/Microsoft.AspNetCore.Identity/internal/index.d.ts +725 -456
- package/Microsoft.AspNetCore.Identity.Data/internal/index.d.ts +23 -3
- package/Microsoft.AspNetCore.Identity.UI.Services/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Localization/internal/index.d.ts +57 -27
- package/Microsoft.AspNetCore.Localization.Routing/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.Mvc/internal/index.d.ts +724 -205
- package/Microsoft.AspNetCore.Mvc.Abstractions/internal/index.d.ts +27 -13
- package/Microsoft.AspNetCore.Mvc.ActionConstraints/internal/index.d.ts +37 -13
- package/Microsoft.AspNetCore.Mvc.ApiExplorer/internal/index.d.ts +76 -30
- package/Microsoft.AspNetCore.Mvc.ApplicationModels/internal/index.d.ts +244 -125
- package/Microsoft.AspNetCore.Mvc.ApplicationParts/internal/index.d.ts +59 -25
- package/Microsoft.AspNetCore.Mvc.Authorization/internal/index.d.ts +21 -10
- package/Microsoft.AspNetCore.Mvc.Controllers/internal/index.d.ts +51 -24
- package/Microsoft.AspNetCore.Mvc.Core.Infrastructure/internal/index.d.ts +3 -1
- package/Microsoft.AspNetCore.Mvc.Cors/internal/index.d.ts +12 -7
- package/Microsoft.AspNetCore.Mvc.DataAnnotations/internal/index.d.ts +43 -18
- package/Microsoft.AspNetCore.Mvc.Diagnostics/internal/index.d.ts +431 -68
- package/Microsoft.AspNetCore.Mvc.Filters/internal/index.d.ts +140 -44
- package/Microsoft.AspNetCore.Mvc.Formatters/internal/index.d.ts +192 -89
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml/internal/index.d.ts +77 -36
- package/Microsoft.AspNetCore.Mvc.Formatters.Xml.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Infrastructure/internal/index.d.ts +162 -66
- package/Microsoft.AspNetCore.Mvc.Localization/internal/index.d.ts +48 -25
- package/Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.d.ts +379 -133
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Binders/internal/index.d.ts +217 -128
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata/internal/index.d.ts +156 -102
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Metadata.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.d.ts +100 -43
- package/Microsoft.AspNetCore.Mvc.ModelBinding.Validation.d.ts +3 -0
- package/Microsoft.AspNetCore.Mvc.Razor/internal/index.d.ts +105 -56
- package/Microsoft.AspNetCore.Mvc.Razor.Compilation/internal/index.d.ts +19 -9
- package/Microsoft.AspNetCore.Mvc.Razor.Infrastructure/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Mvc.Razor.Internal/internal/index.d.ts +4 -2
- package/Microsoft.AspNetCore.Mvc.Razor.TagHelpers/internal/index.d.ts +43 -18
- package/Microsoft.AspNetCore.Mvc.RazorPages/internal/index.d.ts +81 -42
- package/Microsoft.AspNetCore.Mvc.RazorPages.Infrastructure/internal/index.d.ts +70 -37
- package/Microsoft.AspNetCore.Mvc.Rendering/internal/index.d.ts +123 -95
- package/Microsoft.AspNetCore.Mvc.Routing/internal/index.d.ts +57 -25
- package/Microsoft.AspNetCore.Mvc.TagHelpers/internal/index.d.ts +151 -72
- package/Microsoft.AspNetCore.Mvc.TagHelpers.Cache/internal/index.d.ts +41 -23
- package/Microsoft.AspNetCore.Mvc.ViewComponents/internal/index.d.ts +94 -48
- package/Microsoft.AspNetCore.Mvc.ViewEngines/internal/index.d.ts +24 -11
- package/Microsoft.AspNetCore.Mvc.ViewFeatures/internal/index.d.ts +266 -144
- package/Microsoft.AspNetCore.Mvc.ViewFeatures.Buffers/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.Mvc.ViewFeatures.Infrastructure/internal/index.d.ts +7 -5
- package/Microsoft.AspNetCore.OutputCaching/internal/index.d.ts +44 -26
- package/Microsoft.AspNetCore.RateLimiting/internal/index.d.ts +22 -12
- package/Microsoft.AspNetCore.Razor.Hosting/internal/index.d.ts +28 -10
- package/Microsoft.AspNetCore.Razor.Runtime.TagHelpers/internal/index.d.ts +17 -11
- package/Microsoft.AspNetCore.Razor.TagHelpers/internal/index.d.ts +100 -31
- package/Microsoft.AspNetCore.RequestDecompression/internal/index.d.ts +11 -5
- package/Microsoft.AspNetCore.ResponseCaching/internal/index.d.ts +18 -10
- package/Microsoft.AspNetCore.ResponseCompression/internal/index.d.ts +64 -29
- package/Microsoft.AspNetCore.Rewrite/internal/index.d.ts +20 -12
- package/Microsoft.AspNetCore.Routing/internal/index.d.ts +291 -131
- package/Microsoft.AspNetCore.Routing.Constraints/internal/index.d.ts +191 -79
- package/Microsoft.AspNetCore.Routing.Internal/internal/index.d.ts +5 -3
- package/Microsoft.AspNetCore.Routing.Matching/internal/index.d.ts +61 -25
- package/Microsoft.AspNetCore.Routing.Patterns/internal/index.d.ts +40 -20
- package/Microsoft.AspNetCore.Routing.Template/internal/index.d.ts +25 -9
- package/Microsoft.AspNetCore.Routing.Tree/internal/index.d.ts +29 -13
- package/Microsoft.AspNetCore.Server.HttpSys/internal/index.d.ts +50 -18
- package/Microsoft.AspNetCore.Server.IIS/internal/index.d.ts +12 -4
- package/Microsoft.AspNetCore.Server.IISIntegration/internal/index.d.ts +17 -11
- package/Microsoft.AspNetCore.Server.Kestrel/internal/index.d.ts +16 -12
- package/Microsoft.AspNetCore.Server.Kestrel.Core/internal/index.d.ts +56 -36
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Features/internal/index.d.ts +17 -3
- package/Microsoft.AspNetCore.Server.Kestrel.Core.Internal.Http/internal/index.d.ts +20 -8
- package/Microsoft.AspNetCore.Server.Kestrel.Https/internal/index.d.ts +23 -17
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/internal/index.d.ts +10 -6
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/internal/index.d.ts +6 -4
- package/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/internal/index.d.ts +29 -18
- package/Microsoft.AspNetCore.Session/internal/index.d.ts +32 -22
- package/Microsoft.AspNetCore.SignalR/internal/index.d.ts +191 -91
- package/Microsoft.AspNetCore.SignalR.Protocol/internal/index.d.ts +63 -25
- package/Microsoft.AspNetCore.StaticAssets/internal/index.d.ts +21 -11
- package/Microsoft.AspNetCore.StaticAssets.Infrastructure/internal/index.d.ts +4 -4
- package/Microsoft.AspNetCore.StaticFiles/internal/index.d.ts +38 -22
- package/Microsoft.AspNetCore.StaticFiles.Infrastructure/internal/index.d.ts +7 -3
- package/Microsoft.AspNetCore.WebSockets/internal/index.d.ts +14 -10
- package/Microsoft.AspNetCore.WebSockets.d.ts +3 -0
- package/Microsoft.AspNetCore.WebUtilities/internal/index.d.ts +119 -73
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +135 -123
- package/Microsoft.Extensions.Hosting/internal/index.d.ts +10 -8
- package/Microsoft.Extensions.Hosting.d.ts +3 -0
- package/Microsoft.JSInterop/internal/index.d.ts +95 -52
- package/Microsoft.JSInterop.Implementation/internal/index.d.ts +40 -26
- package/Microsoft.JSInterop.Infrastructure/internal/index.d.ts +10 -2
- package/Microsoft.Net.Http.Headers/internal/index.d.ts +92 -60
- package/System.Formats.Cbor/internal/index.d.ts +29 -21
- package/System.Security.Claims/internal/index.d.ts +3 -3
- package/System.Security.Claims.d.ts +3 -0
- package/System.Threading.RateLimiting/internal/index.d.ts +84 -29
- package/__internal/extensions/index.d.ts +1776 -1190
- package/package.json +4 -4
|
@@ -10,18 +10,18 @@ import type { CookieAuthenticationOptions, CookieValidatePrincipalContext } from
|
|
|
10
10
|
import type { AuthenticationBuilder, AuthenticationProperties, AuthenticationScheme, AuthenticationToken, IAuthenticationSchemeProvider, ISystemClock } from "../../Microsoft.AspNetCore.Authentication/internal/index.js";
|
|
11
11
|
import type { IDataProtectionProvider, IDataProtector } from "../../Microsoft.AspNetCore.DataProtection/internal/index.js";
|
|
12
12
|
import type { HttpContext, IHttpContextAccessor } from "../../Microsoft.AspNetCore.Http/internal/index.js";
|
|
13
|
-
import type {
|
|
14
|
-
import
|
|
15
|
-
import
|
|
16
|
-
import type {
|
|
17
|
-
import
|
|
18
|
-
import type {
|
|
19
|
-
import type {
|
|
20
|
-
import
|
|
21
|
-
import type {
|
|
22
|
-
import type { IServiceCollection } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection.js";
|
|
23
|
-
import type { ILogger, ILoggerFactory } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging.js";
|
|
24
|
-
import type {
|
|
13
|
+
import type { Dictionary_2, IEnumerable_1, IList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
14
|
+
import type { IQueryable_1 } from "@tsonic/dotnet/System.Linq/internal/index.js";
|
|
15
|
+
import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
16
|
+
import type { ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
17
|
+
import type { Claim, ClaimsIdentity, ClaimsPrincipal } from "@tsonic/dotnet/System.Security.Claims/internal/index.js";
|
|
18
|
+
import type { Task, Task_1, ValueTask_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
19
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
20
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
21
|
+
import type { Action_1, Attribute, Boolean as ClrBoolean, Byte, Char, DateTimeOffset, Enum, Exception, Func_2, IComparable, IConvertible, IDisposable, IEquatable_1, IFormattable, Int32, IServiceProvider, ISpanFormattable, Nullable_1, Object as ClrObject, ReadOnlyMemory_1, String as ClrString, TimeProvider, TimeSpan, Type, UInt32, Version, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
22
|
+
import type { IServiceCollection } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection/internal/index.js";
|
|
23
|
+
import type { ILogger, ILogger_1, ILoggerFactory } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging/internal/index.js";
|
|
24
|
+
import type { IOptions_1, OptionsBuilder_1 } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Options/internal/index.js";
|
|
25
25
|
|
|
26
26
|
export enum PasswordHasherCompatibilityMode {
|
|
27
27
|
IdentityV2 = 0,
|
|
@@ -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,25 +64,31 @@ 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
|
-
GetAllKeyIds():
|
|
71
|
+
GetAllKeyIds(): IEnumerable_1<System_Internal.String>;
|
|
64
72
|
}
|
|
65
73
|
|
|
66
74
|
|
|
67
75
|
export type ILookupProtectorKeyRing = ILookupProtectorKeyRing$instance;
|
|
68
76
|
|
|
69
77
|
export interface IPasskeyHandler_1$instance<TUser> {
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
78
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPasskeyHandler_1: never;
|
|
79
|
+
|
|
80
|
+
MakeCreationOptionsAsync(userEntity: PasskeyUserEntity, httpContext: HttpContext): Task_1<PasskeyCreationOptionsResult>;
|
|
81
|
+
MakeRequestOptionsAsync(user: TUser, httpContext: HttpContext): Task_1<PasskeyRequestOptionsResult>;
|
|
82
|
+
PerformAssertionAsync(context: PasskeyAssertionContext): Task_1<PasskeyAssertionResult_1<TUser>>;
|
|
83
|
+
PerformAttestationAsync(context: PasskeyAttestationContext): Task_1<PasskeyAttestationResult>;
|
|
74
84
|
}
|
|
75
85
|
|
|
76
86
|
|
|
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,13 +97,17 @@ 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> {
|
|
88
|
-
|
|
100
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPasswordValidator_1: never;
|
|
101
|
+
|
|
102
|
+
ValidateAsync(manager: UserManager_1<TUser>, user: TUser, password: string): Task_1<IdentityResult>;
|
|
89
103
|
}
|
|
90
104
|
|
|
91
105
|
|
|
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,8 +115,10 @@ 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 {
|
|
102
|
-
|
|
103
|
-
|
|
118
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IProtectedUserStore_1: never;
|
|
119
|
+
|
|
120
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
121
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
104
122
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
105
123
|
}
|
|
106
124
|
|
|
@@ -110,9 +128,11 @@ 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 {
|
|
113
|
-
readonly
|
|
114
|
-
|
|
115
|
-
|
|
131
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IQueryableRoleStore_1: never;
|
|
132
|
+
|
|
133
|
+
readonly Roles: IQueryable_1<TRole>;
|
|
134
|
+
CreateAsync(role: TRole, cancellationToken: CancellationToken): Task_1<IdentityResult>;
|
|
135
|
+
FindByIdAsync(roleId: string, cancellationToken: CancellationToken): Task_1<TRole>;
|
|
116
136
|
SetRoleNameAsync(role: TRole, roleName: string, cancellationToken: CancellationToken): Task;
|
|
117
137
|
}
|
|
118
138
|
|
|
@@ -122,9 +142,11 @@ 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 {
|
|
125
|
-
readonly
|
|
126
|
-
|
|
127
|
-
|
|
145
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IQueryableUserStore_1: never;
|
|
146
|
+
|
|
147
|
+
readonly Users: IQueryable_1<TUser>;
|
|
148
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
149
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
128
150
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
129
151
|
}
|
|
130
152
|
|
|
@@ -134,11 +156,13 @@ 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
|
-
FindByIdAsync(roleId: string, cancellationToken: CancellationToken):
|
|
139
|
-
GetClaimsAsync(role: TRole, cancellationToken?: CancellationToken):
|
|
162
|
+
FindByIdAsync(roleId: string, cancellationToken: CancellationToken): Task_1<TRole>;
|
|
163
|
+
GetClaimsAsync(role: TRole, cancellationToken?: CancellationToken): Task_1<IList_1<Claim>>;
|
|
140
164
|
SetRoleNameAsync(role: TRole, roleName: string, cancellationToken: CancellationToken): Task;
|
|
141
|
-
CreateAsync(role: TRole, cancellationToken: CancellationToken):
|
|
165
|
+
CreateAsync(role: TRole, cancellationToken: CancellationToken): Task_1<IdentityResult>;
|
|
142
166
|
}
|
|
143
167
|
|
|
144
168
|
|
|
@@ -147,22 +171,30 @@ 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 {
|
|
150
|
-
|
|
151
|
-
|
|
174
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IRoleStore_1: never;
|
|
175
|
+
|
|
176
|
+
CreateAsync(role: TRole, cancellationToken: CancellationToken): Task_1<IdentityResult>;
|
|
177
|
+
FindByIdAsync(roleId: string, cancellationToken: CancellationToken): Task_1<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> {
|
|
159
|
-
|
|
187
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IRoleValidator_1: never;
|
|
188
|
+
|
|
189
|
+
ValidateAsync(manager: RoleManager_1<TRole>, role: TRole): Task_1<IdentityResult>;
|
|
160
190
|
}
|
|
161
191
|
|
|
162
192
|
|
|
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,9 +213,11 @@ 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 {
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
216
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserAuthenticationTokenStore_1: never;
|
|
217
|
+
|
|
218
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
219
|
+
GetTokenAsync(user: TUser, loginProvider: string, name: string, cancellationToken: CancellationToken): Task_1<string | undefined>;
|
|
220
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
185
221
|
RemoveTokenAsync(user: TUser, loginProvider: string, name: string, cancellationToken: CancellationToken): Task;
|
|
186
222
|
SetTokenAsync(user: TUser, loginProvider: string, name: string, value: string, cancellationToken: CancellationToken): Task;
|
|
187
223
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
@@ -193,10 +229,12 @@ 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 {
|
|
196
|
-
|
|
197
|
-
|
|
232
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserAuthenticatorKeyStore_1: never;
|
|
233
|
+
|
|
234
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
235
|
+
GetAuthenticatorKeyAsync(user: TUser, cancellationToken: CancellationToken): Task_1<string | undefined>;
|
|
198
236
|
SetAuthenticatorKeyAsync(user: TUser, key: string, cancellationToken: CancellationToken): Task;
|
|
199
|
-
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken):
|
|
237
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
200
238
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
201
239
|
}
|
|
202
240
|
|
|
@@ -206,20 +244,24 @@ 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> {
|
|
209
|
-
|
|
247
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserClaimsPrincipalFactory_1: never;
|
|
248
|
+
|
|
249
|
+
CreateAsync(user: TUser): Task_1<ClaimsPrincipal>;
|
|
210
250
|
}
|
|
211
251
|
|
|
212
252
|
|
|
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 {
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
256
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserClaimStore_1: never;
|
|
257
|
+
|
|
258
|
+
AddClaimsAsync(user: TUser, claims: IEnumerable_1<Claim>, cancellationToken: CancellationToken): Task;
|
|
259
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
260
|
+
GetClaimsAsync(user: TUser, cancellationToken: CancellationToken): Task_1<IList_1<Claim>>;
|
|
261
|
+
GetUsersForClaimAsync(claim: Claim, cancellationToken: CancellationToken): Task_1<IList_1<TUser>>;
|
|
220
262
|
ReplaceClaimAsync(user: TUser, claim: Claim, newClaim: Claim, cancellationToken: CancellationToken): Task;
|
|
221
263
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
222
|
-
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken):
|
|
264
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
223
265
|
}
|
|
224
266
|
|
|
225
267
|
|
|
@@ -228,19 +270,23 @@ 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> {
|
|
231
|
-
|
|
273
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserConfirmation_1: never;
|
|
274
|
+
|
|
275
|
+
IsConfirmedAsync(manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
232
276
|
}
|
|
233
277
|
|
|
234
278
|
|
|
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 {
|
|
238
|
-
|
|
239
|
-
|
|
282
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserEmailStore_1: never;
|
|
283
|
+
|
|
284
|
+
FindByEmailAsync(normalizedEmail: string, cancellationToken: CancellationToken): Task_1<TUser | undefined>;
|
|
285
|
+
GetEmailAsync(user: TUser, cancellationToken: CancellationToken): Task_1<string | undefined>;
|
|
240
286
|
SetEmailAsync(user: TUser, email: string, cancellationToken: CancellationToken): Task;
|
|
241
287
|
SetEmailConfirmedAsync(user: TUser, confirmed: boolean, cancellationToken: CancellationToken): Task;
|
|
242
|
-
FindByIdAsync(userId: string, cancellationToken: CancellationToken):
|
|
243
|
-
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken):
|
|
288
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
289
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
244
290
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
245
291
|
}
|
|
246
292
|
|
|
@@ -250,13 +296,15 @@ 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 {
|
|
253
|
-
|
|
254
|
-
|
|
299
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserLockoutStore_1: never;
|
|
300
|
+
|
|
301
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
302
|
+
GetLockoutEndDateAsync(user: TUser, cancellationToken: CancellationToken): Task_1<Nullable_1<DateTimeOffset>>;
|
|
255
303
|
ResetAccessFailedCountAsync(user: TUser, cancellationToken: CancellationToken): Task;
|
|
256
304
|
SetLockoutEnabledAsync(user: TUser, enabled: boolean, cancellationToken: CancellationToken): Task;
|
|
257
|
-
SetLockoutEndDateAsync(user: TUser, lockoutEnd:
|
|
305
|
+
SetLockoutEndDateAsync(user: TUser, lockoutEnd: Nullable_1<DateTimeOffset>, cancellationToken: CancellationToken): Task;
|
|
258
306
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
259
|
-
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken):
|
|
307
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
260
308
|
}
|
|
261
309
|
|
|
262
310
|
|
|
@@ -265,13 +313,15 @@ 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
|
-
FindByIdAsync(userId: string, cancellationToken: CancellationToken):
|
|
270
|
-
FindByLoginAsync(loginProvider: string, providerKey: string, cancellationToken: CancellationToken):
|
|
271
|
-
GetLoginsAsync(user: TUser, cancellationToken: CancellationToken):
|
|
319
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
320
|
+
FindByLoginAsync(loginProvider: string, providerKey: string, cancellationToken: CancellationToken): Task_1<TUser | undefined>;
|
|
321
|
+
GetLoginsAsync(user: TUser, cancellationToken: CancellationToken): Task_1<IList_1<UserLoginInfo>>;
|
|
272
322
|
RemoveLoginAsync(user: TUser, loginProvider: string, providerKey: string, cancellationToken: CancellationToken): Task;
|
|
273
323
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
274
|
-
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken):
|
|
324
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
275
325
|
}
|
|
276
326
|
|
|
277
327
|
|
|
@@ -280,14 +330,16 @@ 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
|
-
FindByIdAsync(userId: string, cancellationToken: CancellationToken):
|
|
285
|
-
FindByPasskeyIdAsync(credentialId: byte[], cancellationToken: CancellationToken):
|
|
286
|
-
FindPasskeyAsync(user: TUser, credentialId: byte[], cancellationToken: CancellationToken):
|
|
287
|
-
GetPasskeysAsync(user: TUser, cancellationToken: CancellationToken):
|
|
336
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
337
|
+
FindByPasskeyIdAsync(credentialId: byte[], cancellationToken: CancellationToken): Task_1<TUser | undefined>;
|
|
338
|
+
FindPasskeyAsync(user: TUser, credentialId: byte[], cancellationToken: CancellationToken): Task_1<UserPasskeyInfo | undefined>;
|
|
339
|
+
GetPasskeysAsync(user: TUser, cancellationToken: CancellationToken): Task_1<IList_1<UserPasskeyInfo>>;
|
|
288
340
|
RemovePasskeyAsync(user: TUser, credentialId: byte[], cancellationToken: CancellationToken): Task;
|
|
289
341
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
290
|
-
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken):
|
|
342
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
291
343
|
}
|
|
292
344
|
|
|
293
345
|
|
|
@@ -296,10 +348,12 @@ 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 {
|
|
299
|
-
|
|
300
|
-
|
|
351
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPasswordStore_1: never;
|
|
352
|
+
|
|
353
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
354
|
+
GetPasswordHashAsync(user: TUser, cancellationToken: CancellationToken): Task_1<string | undefined>;
|
|
301
355
|
SetPasswordHashAsync(user: TUser, passwordHash: string, cancellationToken: CancellationToken): Task;
|
|
302
|
-
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken):
|
|
356
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
303
357
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
304
358
|
}
|
|
305
359
|
|
|
@@ -309,11 +363,13 @@ 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 {
|
|
312
|
-
|
|
313
|
-
|
|
366
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPhoneNumberStore_1: never;
|
|
367
|
+
|
|
368
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
369
|
+
GetPhoneNumberAsync(user: TUser, cancellationToken: CancellationToken): Task_1<string | undefined>;
|
|
314
370
|
SetPhoneNumberAsync(user: TUser, phoneNumber: string, cancellationToken: CancellationToken): Task;
|
|
315
371
|
SetPhoneNumberConfirmedAsync(user: TUser, confirmed: boolean, cancellationToken: CancellationToken): Task;
|
|
316
|
-
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken):
|
|
372
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
317
373
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
318
374
|
}
|
|
319
375
|
|
|
@@ -323,12 +379,14 @@ 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
|
-
GetRolesAsync(user: TUser, cancellationToken: CancellationToken):
|
|
328
|
-
GetUsersInRoleAsync(roleName: string, cancellationToken: CancellationToken):
|
|
329
|
-
IsInRoleAsync(user: TUser, roleName: string, cancellationToken: CancellationToken):
|
|
330
|
-
FindByIdAsync(userId: string, cancellationToken: CancellationToken):
|
|
331
|
-
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken):
|
|
385
|
+
GetRolesAsync(user: TUser, cancellationToken: CancellationToken): Task_1<IList_1<System_Internal.String>>;
|
|
386
|
+
GetUsersInRoleAsync(roleName: string, cancellationToken: CancellationToken): Task_1<IList_1<TUser>>;
|
|
387
|
+
IsInRoleAsync(user: TUser, roleName: string, cancellationToken: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
388
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
389
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
332
390
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
333
391
|
}
|
|
334
392
|
|
|
@@ -338,10 +396,12 @@ 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 {
|
|
341
|
-
|
|
342
|
-
|
|
399
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserSecurityStampStore_1: never;
|
|
400
|
+
|
|
401
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
402
|
+
GetSecurityStampAsync(user: TUser, cancellationToken: CancellationToken): Task_1<string | undefined>;
|
|
343
403
|
SetSecurityStampAsync(user: TUser, stamp: string, cancellationToken: CancellationToken): Task;
|
|
344
|
-
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken):
|
|
404
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
345
405
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
346
406
|
}
|
|
347
407
|
|
|
@@ -351,21 +411,27 @@ 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 {
|
|
354
|
-
|
|
355
|
-
|
|
414
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserStore_1: never;
|
|
415
|
+
|
|
416
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser | undefined>;
|
|
417
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<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 {
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
427
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorRecoveryCodeStore_1: never;
|
|
428
|
+
|
|
429
|
+
CountCodesAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.Int32>;
|
|
430
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
431
|
+
RedeemCodeAsync(user: TUser, code: string, cancellationToken: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
432
|
+
ReplaceCodesAsync(user: TUser, recoveryCodes: IEnumerable_1<System_Internal.String>, cancellationToken: CancellationToken): Task;
|
|
367
433
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
368
|
-
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken):
|
|
434
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
369
435
|
}
|
|
370
436
|
|
|
371
437
|
|
|
@@ -374,11 +440,13 @@ 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 {
|
|
377
|
-
|
|
378
|
-
|
|
443
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorStore_1: never;
|
|
444
|
+
|
|
445
|
+
FindByIdAsync(userId: string, cancellationToken: CancellationToken): Task_1<TUser>;
|
|
446
|
+
GetTwoFactorEnabledAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
379
447
|
SetTwoFactorEnabledAsync(user: TUser, enabled: boolean, cancellationToken: CancellationToken): Task;
|
|
380
448
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken: CancellationToken): Task;
|
|
381
|
-
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken):
|
|
449
|
+
GetUserIdAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.String>;
|
|
382
450
|
}
|
|
383
451
|
|
|
384
452
|
|
|
@@ -387,49 +455,65 @@ 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> {
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
458
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorTokenProvider_1: never;
|
|
459
|
+
|
|
460
|
+
CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
461
|
+
GenerateAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.String>;
|
|
462
|
+
ValidateAsync(purpose: string, token: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
393
463
|
}
|
|
394
464
|
|
|
395
465
|
|
|
396
466
|
export type IUserTwoFactorTokenProvider_1<TUser> = IUserTwoFactorTokenProvider_1$instance<TUser>;
|
|
397
467
|
|
|
398
468
|
export interface IUserValidator_1$instance<TUser> {
|
|
399
|
-
|
|
469
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserValidator_1: never;
|
|
470
|
+
|
|
471
|
+
ValidateAsync(manager: UserManager_1<TUser>, user: TUser): Task_1<IdentityResult>;
|
|
400
472
|
}
|
|
401
473
|
|
|
402
474
|
|
|
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_type_Microsoft_AspNetCore_Identity_AspNetRoleManager_1: never;
|
|
479
|
+
|
|
480
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
481
|
+
|
|
406
482
|
readonly CancellationToken: CancellationToken;
|
|
407
483
|
}
|
|
408
484
|
|
|
409
485
|
|
|
410
486
|
export const AspNetRoleManager_1: {
|
|
411
|
-
new<TRole>(store: IRoleStore_1<TRole>, roleValidators:
|
|
487
|
+
new<TRole>(store: IRoleStore_1<TRole>, roleValidators: IEnumerable_1<IRoleValidator_1<TRole>>, keyNormalizer: ILookupNormalizer, errors: IdentityErrorDescriber, logger: ILogger_1<RoleManager_1<TRole>>, contextAccessor: IHttpContextAccessor): AspNetRoleManager_1<TRole>;
|
|
412
488
|
};
|
|
413
489
|
|
|
414
490
|
|
|
415
491
|
export type AspNetRoleManager_1<TRole> = AspNetRoleManager_1$instance<TRole>;
|
|
416
492
|
|
|
417
493
|
export interface AspNetUserManager_1$instance<TUser> extends UserManager_1<TUser> {
|
|
494
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_AspNetUserManager_1: never;
|
|
495
|
+
|
|
496
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
497
|
+
|
|
418
498
|
readonly CancellationToken: CancellationToken;
|
|
419
499
|
}
|
|
420
500
|
|
|
421
501
|
|
|
422
502
|
export const AspNetUserManager_1: {
|
|
423
|
-
new<TUser>(store: IUserStore_1<TUser>, optionsAccessor:
|
|
503
|
+
new<TUser>(store: IUserStore_1<TUser>, optionsAccessor: IOptions_1<IdentityOptions>, passwordHasher: IPasswordHasher_1<TUser>, userValidators: IEnumerable_1<IUserValidator_1<TUser>>, passwordValidators: IEnumerable_1<IPasswordValidator_1<TUser>>, keyNormalizer: ILookupNormalizer, errors: IdentityErrorDescriber, services: IServiceProvider, logger: ILogger_1<UserManager_1<TUser>>): AspNetUserManager_1<TUser>;
|
|
424
504
|
};
|
|
425
505
|
|
|
426
506
|
|
|
427
507
|
export type AspNetUserManager_1<TUser> = AspNetUserManager_1$instance<TUser>;
|
|
428
508
|
|
|
429
|
-
export interface AuthenticatorTokenProvider_1$instance<TUser> {
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
509
|
+
export interface AuthenticatorTokenProvider_1$instance<TUser> extends IUserTwoFactorTokenProvider_1$instance<TUser> {
|
|
510
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_AuthenticatorTokenProvider_1: never;
|
|
511
|
+
|
|
512
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorTokenProvider_1: never;
|
|
513
|
+
|
|
514
|
+
CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
515
|
+
GenerateAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.String>;
|
|
516
|
+
ValidateAsync(purpose: string, token: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
433
517
|
}
|
|
434
518
|
|
|
435
519
|
|
|
@@ -442,12 +526,12 @@ export interface __AuthenticatorTokenProvider_1$views<TUser> {
|
|
|
442
526
|
As_IUserTwoFactorTokenProvider_1(): IUserTwoFactorTokenProvider_1$instance<TUser>;
|
|
443
527
|
}
|
|
444
528
|
|
|
445
|
-
export interface AuthenticatorTokenProvider_1$instance<TUser> extends IUserTwoFactorTokenProvider_1$instance<TUser> {}
|
|
446
|
-
|
|
447
529
|
export type AuthenticatorTokenProvider_1<TUser> = AuthenticatorTokenProvider_1$instance<TUser> & __AuthenticatorTokenProvider_1$views<TUser>;
|
|
448
530
|
|
|
449
531
|
|
|
450
532
|
export interface ClaimsIdentityOptions$instance {
|
|
533
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_ClaimsIdentityOptions: never;
|
|
534
|
+
|
|
451
535
|
EmailClaimType: string;
|
|
452
536
|
RoleClaimType: string;
|
|
453
537
|
SecurityStampClaimType: string;
|
|
@@ -464,6 +548,8 @@ export const ClaimsIdentityOptions: {
|
|
|
464
548
|
export type ClaimsIdentityOptions = ClaimsIdentityOptions$instance;
|
|
465
549
|
|
|
466
550
|
export interface DataProtectionTokenProviderOptions$instance {
|
|
551
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_DataProtectionTokenProviderOptions: never;
|
|
552
|
+
|
|
467
553
|
Name: string;
|
|
468
554
|
TokenLifespan: TimeSpan;
|
|
469
555
|
}
|
|
@@ -476,17 +562,21 @@ export const DataProtectionTokenProviderOptions: {
|
|
|
476
562
|
|
|
477
563
|
export type DataProtectionTokenProviderOptions = DataProtectionTokenProviderOptions$instance;
|
|
478
564
|
|
|
479
|
-
export interface DataProtectorTokenProvider_1$instance<TUser> {
|
|
480
|
-
readonly
|
|
565
|
+
export interface DataProtectorTokenProvider_1$instance<TUser> extends IUserTwoFactorTokenProvider_1$instance<TUser> {
|
|
566
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_DataProtectorTokenProvider_1: never;
|
|
567
|
+
|
|
568
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorTokenProvider_1: never;
|
|
569
|
+
|
|
570
|
+
readonly Logger: ILogger_1<DataProtectorTokenProvider_1<TUser>>;
|
|
481
571
|
readonly Name: string;
|
|
482
|
-
CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser):
|
|
483
|
-
GenerateAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser):
|
|
484
|
-
ValidateAsync(purpose: string, token: string, manager: UserManager_1<TUser>, user: TUser):
|
|
572
|
+
CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
573
|
+
GenerateAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.String>;
|
|
574
|
+
ValidateAsync(purpose: string, token: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
485
575
|
}
|
|
486
576
|
|
|
487
577
|
|
|
488
578
|
export const DataProtectorTokenProvider_1: {
|
|
489
|
-
new<TUser>(dataProtectionProvider: IDataProtectionProvider, options:
|
|
579
|
+
new<TUser>(dataProtectionProvider: IDataProtectionProvider, options: IOptions_1<DataProtectionTokenProviderOptions>, logger: ILogger_1<DataProtectorTokenProvider_1<TUser>>): DataProtectorTokenProvider_1<TUser>;
|
|
490
580
|
};
|
|
491
581
|
|
|
492
582
|
|
|
@@ -494,12 +584,14 @@ export interface __DataProtectorTokenProvider_1$views<TUser> {
|
|
|
494
584
|
As_IUserTwoFactorTokenProvider_1(): IUserTwoFactorTokenProvider_1$instance<TUser>;
|
|
495
585
|
}
|
|
496
586
|
|
|
497
|
-
export interface DataProtectorTokenProvider_1$instance<TUser> extends IUserTwoFactorTokenProvider_1$instance<TUser> {}
|
|
498
|
-
|
|
499
587
|
export type DataProtectorTokenProvider_1<TUser> = DataProtectorTokenProvider_1$instance<TUser> & __DataProtectorTokenProvider_1$views<TUser>;
|
|
500
588
|
|
|
501
589
|
|
|
502
|
-
export interface DefaultPersonalDataProtector$instance {
|
|
590
|
+
export interface DefaultPersonalDataProtector$instance extends IPersonalDataProtector$instance {
|
|
591
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_DefaultPersonalDataProtector: never;
|
|
592
|
+
|
|
593
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPersonalDataProtector: never;
|
|
594
|
+
|
|
503
595
|
Protect(data: string): string | undefined;
|
|
504
596
|
Unprotect(data: string): string | undefined;
|
|
505
597
|
}
|
|
@@ -514,13 +606,15 @@ export interface __DefaultPersonalDataProtector$views {
|
|
|
514
606
|
As_IPersonalDataProtector(): IPersonalDataProtector$instance;
|
|
515
607
|
}
|
|
516
608
|
|
|
517
|
-
export interface DefaultPersonalDataProtector$instance extends IPersonalDataProtector$instance {}
|
|
518
|
-
|
|
519
609
|
export type DefaultPersonalDataProtector = DefaultPersonalDataProtector$instance & __DefaultPersonalDataProtector$views;
|
|
520
610
|
|
|
521
611
|
|
|
522
|
-
export interface DefaultUserConfirmation_1$instance<TUser> {
|
|
523
|
-
|
|
612
|
+
export interface DefaultUserConfirmation_1$instance<TUser> extends IUserConfirmation_1$instance<TUser> {
|
|
613
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_DefaultUserConfirmation_1: never;
|
|
614
|
+
|
|
615
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserConfirmation_1: never;
|
|
616
|
+
|
|
617
|
+
IsConfirmedAsync(manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
524
618
|
}
|
|
525
619
|
|
|
526
620
|
|
|
@@ -533,17 +627,19 @@ export interface __DefaultUserConfirmation_1$views<TUser> {
|
|
|
533
627
|
As_IUserConfirmation_1(): IUserConfirmation_1$instance<TUser>;
|
|
534
628
|
}
|
|
535
629
|
|
|
536
|
-
export interface DefaultUserConfirmation_1$instance<TUser> extends IUserConfirmation_1$instance<TUser> {}
|
|
537
|
-
|
|
538
630
|
export type DefaultUserConfirmation_1<TUser> = DefaultUserConfirmation_1$instance<TUser> & __DefaultUserConfirmation_1$views<TUser>;
|
|
539
631
|
|
|
540
632
|
|
|
541
633
|
export interface EmailTokenProvider_1$instance<TUser> extends TotpSecurityStampBasedTokenProvider_1$instance<TUser> {
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
634
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_EmailTokenProvider_1: never;
|
|
635
|
+
|
|
636
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorTokenProvider_1: never;
|
|
637
|
+
|
|
638
|
+
CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
639
|
+
GenerateAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.String>;
|
|
640
|
+
GetUserModifierAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.String>;
|
|
641
|
+
GetUserModifierAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.String>;
|
|
642
|
+
ValidateAsync(purpose: string, token: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
547
643
|
}
|
|
548
644
|
|
|
549
645
|
|
|
@@ -560,10 +656,12 @@ export type EmailTokenProvider_1<TUser> = EmailTokenProvider_1$instance<TUser> &
|
|
|
560
656
|
|
|
561
657
|
|
|
562
658
|
export interface ExternalLoginInfo$instance extends UserLoginInfo {
|
|
659
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_ExternalLoginInfo: never;
|
|
660
|
+
|
|
563
661
|
get AuthenticationProperties(): AuthenticationProperties | undefined;
|
|
564
662
|
set AuthenticationProperties(value: AuthenticationProperties | undefined);
|
|
565
|
-
get AuthenticationTokens():
|
|
566
|
-
set AuthenticationTokens(value:
|
|
663
|
+
get AuthenticationTokens(): IEnumerable_1<AuthenticationToken> | undefined;
|
|
664
|
+
set AuthenticationTokens(value: IEnumerable_1<AuthenticationToken> | undefined);
|
|
567
665
|
Principal: ClaimsPrincipal;
|
|
568
666
|
}
|
|
569
667
|
|
|
@@ -576,6 +674,8 @@ export const ExternalLoginInfo: {
|
|
|
576
674
|
export type ExternalLoginInfo = ExternalLoginInfo$instance;
|
|
577
675
|
|
|
578
676
|
export interface IdentityBuilder$instance {
|
|
677
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityBuilder: never;
|
|
678
|
+
|
|
579
679
|
get RoleType(): Type | undefined;
|
|
580
680
|
set RoleType(value: Type | undefined);
|
|
581
681
|
readonly Services: IServiceCollection;
|
|
@@ -606,6 +706,8 @@ export const IdentityBuilder: {
|
|
|
606
706
|
export type IdentityBuilder = IdentityBuilder$instance;
|
|
607
707
|
|
|
608
708
|
export interface IdentityConstants$instance {
|
|
709
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityConstants: never;
|
|
710
|
+
|
|
609
711
|
}
|
|
610
712
|
|
|
611
713
|
|
|
@@ -622,14 +724,16 @@ export const IdentityConstants: {
|
|
|
622
724
|
export type IdentityConstants = IdentityConstants$instance;
|
|
623
725
|
|
|
624
726
|
export interface IdentityCookiesBuilder$instance {
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
get
|
|
628
|
-
set
|
|
629
|
-
get
|
|
630
|
-
set
|
|
631
|
-
get
|
|
632
|
-
set
|
|
727
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityCookiesBuilder: never;
|
|
728
|
+
|
|
729
|
+
get ApplicationCookie(): OptionsBuilder_1<CookieAuthenticationOptions> | undefined;
|
|
730
|
+
set ApplicationCookie(value: OptionsBuilder_1<CookieAuthenticationOptions> | undefined);
|
|
731
|
+
get ExternalCookie(): OptionsBuilder_1<CookieAuthenticationOptions> | undefined;
|
|
732
|
+
set ExternalCookie(value: OptionsBuilder_1<CookieAuthenticationOptions> | undefined);
|
|
733
|
+
get TwoFactorRememberMeCookie(): OptionsBuilder_1<CookieAuthenticationOptions> | undefined;
|
|
734
|
+
set TwoFactorRememberMeCookie(value: OptionsBuilder_1<CookieAuthenticationOptions> | undefined);
|
|
735
|
+
get TwoFactorUserIdCookie(): OptionsBuilder_1<CookieAuthenticationOptions> | undefined;
|
|
736
|
+
set TwoFactorUserIdCookie(value: OptionsBuilder_1<CookieAuthenticationOptions> | undefined);
|
|
633
737
|
}
|
|
634
738
|
|
|
635
739
|
|
|
@@ -641,6 +745,8 @@ export const IdentityCookiesBuilder: {
|
|
|
641
745
|
export type IdentityCookiesBuilder = IdentityCookiesBuilder$instance;
|
|
642
746
|
|
|
643
747
|
export interface IdentityError$instance {
|
|
748
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityError: never;
|
|
749
|
+
|
|
644
750
|
Code: string;
|
|
645
751
|
Description: string;
|
|
646
752
|
}
|
|
@@ -654,6 +760,8 @@ export const IdentityError: {
|
|
|
654
760
|
export type IdentityError = IdentityError$instance;
|
|
655
761
|
|
|
656
762
|
export interface IdentityErrorDescriber$instance {
|
|
763
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityErrorDescriber: never;
|
|
764
|
+
|
|
657
765
|
ConcurrencyFailure(): IdentityError;
|
|
658
766
|
DefaultError(): IdentityError;
|
|
659
767
|
DuplicateEmail(email: string): IdentityError;
|
|
@@ -687,6 +795,8 @@ export const IdentityErrorDescriber: {
|
|
|
687
795
|
export type IdentityErrorDescriber = IdentityErrorDescriber$instance;
|
|
688
796
|
|
|
689
797
|
export interface IdentityOptions$instance {
|
|
798
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityOptions: never;
|
|
799
|
+
|
|
690
800
|
ClaimsIdentity: ClaimsIdentityOptions;
|
|
691
801
|
Lockout: LockoutOptions;
|
|
692
802
|
Password: PasswordOptions;
|
|
@@ -705,6 +815,8 @@ export const IdentityOptions: {
|
|
|
705
815
|
export type IdentityOptions = IdentityOptions$instance;
|
|
706
816
|
|
|
707
817
|
export interface IdentityPasskeyData$instance {
|
|
818
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityPasskeyData: never;
|
|
819
|
+
|
|
708
820
|
AttestationObject: byte[];
|
|
709
821
|
ClientDataJson: byte[];
|
|
710
822
|
CreatedAt: DateTimeOffset;
|
|
@@ -728,24 +840,26 @@ export const IdentityPasskeyData: {
|
|
|
728
840
|
export type IdentityPasskeyData = IdentityPasskeyData$instance;
|
|
729
841
|
|
|
730
842
|
export interface IdentityPasskeyOptions$instance {
|
|
843
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityPasskeyOptions: never;
|
|
844
|
+
|
|
731
845
|
get AttestationConveyancePreference(): string | undefined;
|
|
732
846
|
set AttestationConveyancePreference(value: string | undefined);
|
|
733
847
|
get AuthenticatorAttachment(): string | undefined;
|
|
734
848
|
set AuthenticatorAttachment(value: string | undefined);
|
|
735
849
|
AuthenticatorTimeout: TimeSpan;
|
|
736
850
|
ChallengeSize: int;
|
|
737
|
-
get IsAllowedAlgorithm():
|
|
738
|
-
set IsAllowedAlgorithm(value:
|
|
851
|
+
get IsAllowedAlgorithm(): Func_2<System_Internal.Int32, System_Internal.Boolean> | undefined;
|
|
852
|
+
set IsAllowedAlgorithm(value: Func_2<System_Internal.Int32, System_Internal.Boolean> | undefined);
|
|
739
853
|
get ResidentKeyRequirement(): string | undefined;
|
|
740
854
|
set ResidentKeyRequirement(value: string | undefined);
|
|
741
855
|
get ServerDomain(): string | undefined;
|
|
742
856
|
set ServerDomain(value: string | undefined);
|
|
743
857
|
get UserVerificationRequirement(): string | undefined;
|
|
744
858
|
set UserVerificationRequirement(value: string | undefined);
|
|
745
|
-
get ValidateOrigin():
|
|
746
|
-
set ValidateOrigin(value:
|
|
747
|
-
get VerifyAttestationStatement():
|
|
748
|
-
set VerifyAttestationStatement(value:
|
|
859
|
+
get ValidateOrigin(): Func_2<PasskeyOriginValidationContext | undefined, ValueTask_1<System_Internal.Boolean>> | undefined;
|
|
860
|
+
set ValidateOrigin(value: Func_2<PasskeyOriginValidationContext | undefined, ValueTask_1<System_Internal.Boolean>> | undefined);
|
|
861
|
+
get VerifyAttestationStatement(): Func_2<PasskeyAttestationStatementVerificationContext | undefined, ValueTask_1<System_Internal.Boolean>> | undefined;
|
|
862
|
+
set VerifyAttestationStatement(value: Func_2<PasskeyAttestationStatementVerificationContext | undefined, ValueTask_1<System_Internal.Boolean>> | undefined);
|
|
749
863
|
}
|
|
750
864
|
|
|
751
865
|
|
|
@@ -757,7 +871,9 @@ export const IdentityPasskeyOptions: {
|
|
|
757
871
|
export type IdentityPasskeyOptions = IdentityPasskeyOptions$instance;
|
|
758
872
|
|
|
759
873
|
export interface IdentityResult$instance {
|
|
760
|
-
readonly
|
|
874
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityResult: never;
|
|
875
|
+
|
|
876
|
+
readonly Errors: IEnumerable_1<IdentityError>;
|
|
761
877
|
Succeeded: boolean;
|
|
762
878
|
ToString(): string;
|
|
763
879
|
}
|
|
@@ -773,6 +889,8 @@ export const IdentityResult: {
|
|
|
773
889
|
export type IdentityResult = IdentityResult$instance;
|
|
774
890
|
|
|
775
891
|
export interface IdentityRole$instance extends IdentityRole_1<System_Internal.String> {
|
|
892
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityRole: never;
|
|
893
|
+
|
|
776
894
|
}
|
|
777
895
|
|
|
778
896
|
|
|
@@ -784,7 +902,9 @@ export const IdentityRole: {
|
|
|
784
902
|
|
|
785
903
|
export type IdentityRole = IdentityRole$instance;
|
|
786
904
|
|
|
787
|
-
export interface IdentityRole_1$instance<TKey extends (
|
|
905
|
+
export interface IdentityRole_1$instance<TKey extends (IEquatable_1<TKey> | number | string | boolean)> {
|
|
906
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityRole_1: never;
|
|
907
|
+
|
|
788
908
|
get ConcurrencyStamp(): string | undefined;
|
|
789
909
|
set ConcurrencyStamp(value: string | undefined);
|
|
790
910
|
Id: TKey;
|
|
@@ -797,14 +917,16 @@ export interface IdentityRole_1$instance<TKey extends (IEquatable<TKey> | number
|
|
|
797
917
|
|
|
798
918
|
|
|
799
919
|
export const IdentityRole_1: {
|
|
800
|
-
new<TKey extends (
|
|
801
|
-
new<TKey extends (
|
|
920
|
+
new<TKey extends (IEquatable_1<TKey> | number | string | boolean)>(): IdentityRole_1<TKey>;
|
|
921
|
+
new<TKey extends (IEquatable_1<TKey> | number | string | boolean)>(roleName: string): IdentityRole_1<TKey>;
|
|
802
922
|
};
|
|
803
923
|
|
|
804
924
|
|
|
805
|
-
export type IdentityRole_1<TKey extends (
|
|
925
|
+
export type IdentityRole_1<TKey extends (IEquatable_1<TKey> | number | string | boolean)> = IdentityRole_1$instance<TKey>;
|
|
926
|
+
|
|
927
|
+
export interface IdentityRoleClaim_1$instance<TKey extends (IEquatable_1<TKey> | number | string | boolean)> {
|
|
928
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityRoleClaim_1: never;
|
|
806
929
|
|
|
807
|
-
export interface IdentityRoleClaim_1$instance<TKey extends (IEquatable<TKey> | number | string | boolean)> {
|
|
808
930
|
get ClaimType(): string | undefined;
|
|
809
931
|
set ClaimType(value: string | undefined);
|
|
810
932
|
get ClaimValue(): string | undefined;
|
|
@@ -817,13 +939,15 @@ export interface IdentityRoleClaim_1$instance<TKey extends (IEquatable<TKey> | n
|
|
|
817
939
|
|
|
818
940
|
|
|
819
941
|
export const IdentityRoleClaim_1: {
|
|
820
|
-
new<TKey extends (
|
|
942
|
+
new<TKey extends (IEquatable_1<TKey> | number | string | boolean)>(): IdentityRoleClaim_1<TKey>;
|
|
821
943
|
};
|
|
822
944
|
|
|
823
945
|
|
|
824
|
-
export type IdentityRoleClaim_1<TKey extends (
|
|
946
|
+
export type IdentityRoleClaim_1<TKey extends (IEquatable_1<TKey> | number | string | boolean)> = IdentityRoleClaim_1$instance<TKey>;
|
|
825
947
|
|
|
826
948
|
export interface IdentityUser$instance extends IdentityUser_1<System_Internal.String> {
|
|
949
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityUser: never;
|
|
950
|
+
|
|
827
951
|
}
|
|
828
952
|
|
|
829
953
|
|
|
@@ -835,7 +959,9 @@ export const IdentityUser: {
|
|
|
835
959
|
|
|
836
960
|
export type IdentityUser = IdentityUser$instance;
|
|
837
961
|
|
|
838
|
-
export interface IdentityUser_1$instance<TKey extends (
|
|
962
|
+
export interface IdentityUser_1$instance<TKey extends (IEquatable_1<TKey> | number | string | boolean)> {
|
|
963
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityUser_1: never;
|
|
964
|
+
|
|
839
965
|
AccessFailedCount: int;
|
|
840
966
|
get ConcurrencyStamp(): string | undefined;
|
|
841
967
|
set ConcurrencyStamp(value: string | undefined);
|
|
@@ -844,7 +970,7 @@ export interface IdentityUser_1$instance<TKey extends (IEquatable<TKey> | number
|
|
|
844
970
|
EmailConfirmed: boolean;
|
|
845
971
|
Id: TKey;
|
|
846
972
|
LockoutEnabled: boolean;
|
|
847
|
-
LockoutEnd:
|
|
973
|
+
LockoutEnd: Nullable_1<DateTimeOffset>;
|
|
848
974
|
get NormalizedEmail(): string | undefined;
|
|
849
975
|
set NormalizedEmail(value: string | undefined);
|
|
850
976
|
get NormalizedUserName(): string | undefined;
|
|
@@ -864,14 +990,16 @@ export interface IdentityUser_1$instance<TKey extends (IEquatable<TKey> | number
|
|
|
864
990
|
|
|
865
991
|
|
|
866
992
|
export const IdentityUser_1: {
|
|
867
|
-
new<TKey extends (
|
|
868
|
-
new<TKey extends (
|
|
993
|
+
new<TKey extends (IEquatable_1<TKey> | number | string | boolean)>(): IdentityUser_1<TKey>;
|
|
994
|
+
new<TKey extends (IEquatable_1<TKey> | number | string | boolean)>(userName: string): IdentityUser_1<TKey>;
|
|
869
995
|
};
|
|
870
996
|
|
|
871
997
|
|
|
872
|
-
export type IdentityUser_1<TKey extends (
|
|
998
|
+
export type IdentityUser_1<TKey extends (IEquatable_1<TKey> | number | string | boolean)> = IdentityUser_1$instance<TKey>;
|
|
999
|
+
|
|
1000
|
+
export interface IdentityUserClaim_1$instance<TKey extends (IEquatable_1<TKey> | number | string | boolean)> {
|
|
1001
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityUserClaim_1: never;
|
|
873
1002
|
|
|
874
|
-
export interface IdentityUserClaim_1$instance<TKey extends (IEquatable<TKey> | number | string | boolean)> {
|
|
875
1003
|
get ClaimType(): string | undefined;
|
|
876
1004
|
set ClaimType(value: string | undefined);
|
|
877
1005
|
get ClaimValue(): string | undefined;
|
|
@@ -884,13 +1012,15 @@ export interface IdentityUserClaim_1$instance<TKey extends (IEquatable<TKey> | n
|
|
|
884
1012
|
|
|
885
1013
|
|
|
886
1014
|
export const IdentityUserClaim_1: {
|
|
887
|
-
new<TKey extends (
|
|
1015
|
+
new<TKey extends (IEquatable_1<TKey> | number | string | boolean)>(): IdentityUserClaim_1<TKey>;
|
|
888
1016
|
};
|
|
889
1017
|
|
|
890
1018
|
|
|
891
|
-
export type IdentityUserClaim_1<TKey extends (
|
|
1019
|
+
export type IdentityUserClaim_1<TKey extends (IEquatable_1<TKey> | number | string | boolean)> = IdentityUserClaim_1$instance<TKey>;
|
|
1020
|
+
|
|
1021
|
+
export interface IdentityUserLogin_1$instance<TKey extends (IEquatable_1<TKey> | number | string | boolean)> {
|
|
1022
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityUserLogin_1: never;
|
|
892
1023
|
|
|
893
|
-
export interface IdentityUserLogin_1$instance<TKey extends (IEquatable<TKey> | number | string | boolean)> {
|
|
894
1024
|
LoginProvider: string;
|
|
895
1025
|
get ProviderDisplayName(): string | undefined;
|
|
896
1026
|
set ProviderDisplayName(value: string | undefined);
|
|
@@ -900,13 +1030,15 @@ export interface IdentityUserLogin_1$instance<TKey extends (IEquatable<TKey> | n
|
|
|
900
1030
|
|
|
901
1031
|
|
|
902
1032
|
export const IdentityUserLogin_1: {
|
|
903
|
-
new<TKey extends (
|
|
1033
|
+
new<TKey extends (IEquatable_1<TKey> | number | string | boolean)>(): IdentityUserLogin_1<TKey>;
|
|
904
1034
|
};
|
|
905
1035
|
|
|
906
1036
|
|
|
907
|
-
export type IdentityUserLogin_1<TKey extends (
|
|
1037
|
+
export type IdentityUserLogin_1<TKey extends (IEquatable_1<TKey> | number | string | boolean)> = IdentityUserLogin_1$instance<TKey>;
|
|
1038
|
+
|
|
1039
|
+
export interface IdentityUserPasskey_1$instance<TKey extends (IEquatable_1<TKey> | number | string | boolean)> {
|
|
1040
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityUserPasskey_1: never;
|
|
908
1041
|
|
|
909
|
-
export interface IdentityUserPasskey_1$instance<TKey extends (IEquatable<TKey> | number | string | boolean)> {
|
|
910
1042
|
CredentialId: byte[];
|
|
911
1043
|
Data: IdentityPasskeyData;
|
|
912
1044
|
UserId: TKey;
|
|
@@ -914,26 +1046,30 @@ export interface IdentityUserPasskey_1$instance<TKey extends (IEquatable<TKey> |
|
|
|
914
1046
|
|
|
915
1047
|
|
|
916
1048
|
export const IdentityUserPasskey_1: {
|
|
917
|
-
new<TKey extends (
|
|
1049
|
+
new<TKey extends (IEquatable_1<TKey> | number | string | boolean)>(): IdentityUserPasskey_1<TKey>;
|
|
918
1050
|
};
|
|
919
1051
|
|
|
920
1052
|
|
|
921
|
-
export type IdentityUserPasskey_1<TKey extends (
|
|
1053
|
+
export type IdentityUserPasskey_1<TKey extends (IEquatable_1<TKey> | number | string | boolean)> = IdentityUserPasskey_1$instance<TKey>;
|
|
1054
|
+
|
|
1055
|
+
export interface IdentityUserRole_1$instance<TKey extends (IEquatable_1<TKey> | number | string | boolean)> {
|
|
1056
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityUserRole_1: never;
|
|
922
1057
|
|
|
923
|
-
export interface IdentityUserRole_1$instance<TKey extends (IEquatable<TKey> | number | string | boolean)> {
|
|
924
1058
|
RoleId: TKey;
|
|
925
1059
|
UserId: TKey;
|
|
926
1060
|
}
|
|
927
1061
|
|
|
928
1062
|
|
|
929
1063
|
export const IdentityUserRole_1: {
|
|
930
|
-
new<TKey extends (
|
|
1064
|
+
new<TKey extends (IEquatable_1<TKey> | number | string | boolean)>(): IdentityUserRole_1<TKey>;
|
|
931
1065
|
};
|
|
932
1066
|
|
|
933
1067
|
|
|
934
|
-
export type IdentityUserRole_1<TKey extends (
|
|
1068
|
+
export type IdentityUserRole_1<TKey extends (IEquatable_1<TKey> | number | string | boolean)> = IdentityUserRole_1$instance<TKey>;
|
|
1069
|
+
|
|
1070
|
+
export interface IdentityUserToken_1$instance<TKey extends (IEquatable_1<TKey> | number | string | boolean)> {
|
|
1071
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_IdentityUserToken_1: never;
|
|
935
1072
|
|
|
936
|
-
export interface IdentityUserToken_1$instance<TKey extends (IEquatable<TKey> | number | string | boolean)> {
|
|
937
1073
|
LoginProvider: string;
|
|
938
1074
|
Name: string;
|
|
939
1075
|
UserId: TKey;
|
|
@@ -943,13 +1079,15 @@ export interface IdentityUserToken_1$instance<TKey extends (IEquatable<TKey> | n
|
|
|
943
1079
|
|
|
944
1080
|
|
|
945
1081
|
export const IdentityUserToken_1: {
|
|
946
|
-
new<TKey extends (
|
|
1082
|
+
new<TKey extends (IEquatable_1<TKey> | number | string | boolean)>(): IdentityUserToken_1<TKey>;
|
|
947
1083
|
};
|
|
948
1084
|
|
|
949
1085
|
|
|
950
|
-
export type IdentityUserToken_1<TKey extends (
|
|
1086
|
+
export type IdentityUserToken_1<TKey extends (IEquatable_1<TKey> | number | string | boolean)> = IdentityUserToken_1$instance<TKey>;
|
|
951
1087
|
|
|
952
1088
|
export interface LockoutOptions$instance {
|
|
1089
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_LockoutOptions: never;
|
|
1090
|
+
|
|
953
1091
|
AllowedForNewUsers: boolean;
|
|
954
1092
|
DefaultLockoutTimeSpan: TimeSpan;
|
|
955
1093
|
MaxFailedAccessAttempts: int;
|
|
@@ -964,6 +1102,8 @@ export const LockoutOptions: {
|
|
|
964
1102
|
export type LockoutOptions = LockoutOptions$instance;
|
|
965
1103
|
|
|
966
1104
|
export interface PasskeyAssertionContext$instance {
|
|
1105
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasskeyAssertionContext: never;
|
|
1106
|
+
|
|
967
1107
|
get AssertionState(): string | undefined;
|
|
968
1108
|
set AssertionState(value: string | undefined);
|
|
969
1109
|
CredentialJson: string;
|
|
@@ -979,6 +1119,8 @@ export const PasskeyAssertionContext: {
|
|
|
979
1119
|
export type PasskeyAssertionContext = PasskeyAssertionContext$instance;
|
|
980
1120
|
|
|
981
1121
|
export interface PasskeyAssertionResult_1$instance<TUser> {
|
|
1122
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasskeyAssertionResult_1: never;
|
|
1123
|
+
|
|
982
1124
|
readonly Failure: PasskeyException | undefined;
|
|
983
1125
|
readonly Passkey: UserPasskeyInfo | undefined;
|
|
984
1126
|
readonly Succeeded: boolean;
|
|
@@ -993,6 +1135,8 @@ export const PasskeyAssertionResult_1: {
|
|
|
993
1135
|
export type PasskeyAssertionResult_1<TUser> = PasskeyAssertionResult_1$instance<TUser>;
|
|
994
1136
|
|
|
995
1137
|
export interface PasskeyAttestationContext$instance {
|
|
1138
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasskeyAttestationContext: never;
|
|
1139
|
+
|
|
996
1140
|
get AttestationState(): string | undefined;
|
|
997
1141
|
set AttestationState(value: string | undefined);
|
|
998
1142
|
CredentialJson: string;
|
|
@@ -1008,6 +1152,8 @@ export const PasskeyAttestationContext: {
|
|
|
1008
1152
|
export type PasskeyAttestationContext = PasskeyAttestationContext$instance;
|
|
1009
1153
|
|
|
1010
1154
|
export interface PasskeyAttestationResult$instance {
|
|
1155
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasskeyAttestationResult: never;
|
|
1156
|
+
|
|
1011
1157
|
readonly Failure: PasskeyException | undefined;
|
|
1012
1158
|
readonly Passkey: UserPasskeyInfo | undefined;
|
|
1013
1159
|
readonly Succeeded: boolean;
|
|
@@ -1024,8 +1170,10 @@ export const PasskeyAttestationResult: {
|
|
|
1024
1170
|
export type PasskeyAttestationResult = PasskeyAttestationResult$instance;
|
|
1025
1171
|
|
|
1026
1172
|
export interface PasskeyAttestationStatementVerificationContext$instance {
|
|
1027
|
-
|
|
1028
|
-
|
|
1173
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasskeyAttestationStatementVerificationContext: never;
|
|
1174
|
+
|
|
1175
|
+
AttestationObject: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
1176
|
+
ClientDataHash: ReadOnlyMemory_1<System_Internal.Byte>;
|
|
1029
1177
|
HttpContext: HttpContext;
|
|
1030
1178
|
}
|
|
1031
1179
|
|
|
@@ -1038,6 +1186,8 @@ export const PasskeyAttestationStatementVerificationContext: {
|
|
|
1038
1186
|
export type PasskeyAttestationStatementVerificationContext = PasskeyAttestationStatementVerificationContext$instance;
|
|
1039
1187
|
|
|
1040
1188
|
export interface PasskeyCreationOptionsResult$instance {
|
|
1189
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasskeyCreationOptionsResult: never;
|
|
1190
|
+
|
|
1041
1191
|
get AttestationState(): string | undefined;
|
|
1042
1192
|
set AttestationState(value: string | undefined);
|
|
1043
1193
|
CreationOptionsJson: string;
|
|
@@ -1052,6 +1202,10 @@ export const PasskeyCreationOptionsResult: {
|
|
|
1052
1202
|
export type PasskeyCreationOptionsResult = PasskeyCreationOptionsResult$instance;
|
|
1053
1203
|
|
|
1054
1204
|
export interface PasskeyException$instance extends Exception {
|
|
1205
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasskeyException: never;
|
|
1206
|
+
|
|
1207
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
1208
|
+
|
|
1055
1209
|
}
|
|
1056
1210
|
|
|
1057
1211
|
|
|
@@ -1063,16 +1217,20 @@ export const PasskeyException: {
|
|
|
1063
1217
|
|
|
1064
1218
|
export type PasskeyException = PasskeyException$instance;
|
|
1065
1219
|
|
|
1066
|
-
export interface PasskeyHandler_1$instance<TUser> {
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1220
|
+
export interface PasskeyHandler_1$instance<TUser> extends IPasskeyHandler_1$instance<TUser> {
|
|
1221
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasskeyHandler_1: never;
|
|
1222
|
+
|
|
1223
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPasskeyHandler_1: never;
|
|
1224
|
+
|
|
1225
|
+
MakeCreationOptionsAsync(userEntity: PasskeyUserEntity, httpContext: HttpContext): Task_1<PasskeyCreationOptionsResult>;
|
|
1226
|
+
MakeRequestOptionsAsync(user: TUser, httpContext: HttpContext): Task_1<PasskeyRequestOptionsResult>;
|
|
1227
|
+
PerformAssertionAsync(context: PasskeyAssertionContext): Task_1<PasskeyAssertionResult_1<TUser>>;
|
|
1228
|
+
PerformAttestationAsync(context: PasskeyAttestationContext): Task_1<PasskeyAttestationResult>;
|
|
1071
1229
|
}
|
|
1072
1230
|
|
|
1073
1231
|
|
|
1074
1232
|
export const PasskeyHandler_1: {
|
|
1075
|
-
new<TUser>(userManager: UserManager_1<TUser>, options:
|
|
1233
|
+
new<TUser>(userManager: UserManager_1<TUser>, options: IOptions_1<IdentityPasskeyOptions>): PasskeyHandler_1<TUser>;
|
|
1076
1234
|
};
|
|
1077
1235
|
|
|
1078
1236
|
|
|
@@ -1080,12 +1238,12 @@ export interface __PasskeyHandler_1$views<TUser> {
|
|
|
1080
1238
|
As_IPasskeyHandler_1(): IPasskeyHandler_1$instance<TUser>;
|
|
1081
1239
|
}
|
|
1082
1240
|
|
|
1083
|
-
export interface PasskeyHandler_1$instance<TUser> extends IPasskeyHandler_1$instance<TUser> {}
|
|
1084
|
-
|
|
1085
1241
|
export type PasskeyHandler_1<TUser> = PasskeyHandler_1$instance<TUser> & __PasskeyHandler_1$views<TUser>;
|
|
1086
1242
|
|
|
1087
1243
|
|
|
1088
1244
|
export interface PasskeyOriginValidationContext$instance {
|
|
1245
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasskeyOriginValidationContext: never;
|
|
1246
|
+
|
|
1089
1247
|
CrossOrigin: boolean;
|
|
1090
1248
|
HttpContext: HttpContext;
|
|
1091
1249
|
Origin: string;
|
|
@@ -1102,6 +1260,8 @@ export const PasskeyOriginValidationContext: {
|
|
|
1102
1260
|
export type PasskeyOriginValidationContext = PasskeyOriginValidationContext$instance;
|
|
1103
1261
|
|
|
1104
1262
|
export interface PasskeyRequestOptionsResult$instance {
|
|
1263
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasskeyRequestOptionsResult: never;
|
|
1264
|
+
|
|
1105
1265
|
get AssertionState(): string | undefined;
|
|
1106
1266
|
set AssertionState(value: string | undefined);
|
|
1107
1267
|
RequestOptionsJson: string;
|
|
@@ -1116,6 +1276,8 @@ export const PasskeyRequestOptionsResult: {
|
|
|
1116
1276
|
export type PasskeyRequestOptionsResult = PasskeyRequestOptionsResult$instance;
|
|
1117
1277
|
|
|
1118
1278
|
export interface PasskeyUserEntity$instance {
|
|
1279
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasskeyUserEntity: never;
|
|
1280
|
+
|
|
1119
1281
|
DisplayName: string;
|
|
1120
1282
|
Id: string;
|
|
1121
1283
|
Name: string;
|
|
@@ -1129,14 +1291,18 @@ export const PasskeyUserEntity: {
|
|
|
1129
1291
|
|
|
1130
1292
|
export type PasskeyUserEntity = PasskeyUserEntity$instance;
|
|
1131
1293
|
|
|
1132
|
-
export interface PasswordHasher_1$instance<TUser> {
|
|
1294
|
+
export interface PasswordHasher_1$instance<TUser> extends IPasswordHasher_1$instance<TUser> {
|
|
1295
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasswordHasher_1: never;
|
|
1296
|
+
|
|
1297
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPasswordHasher_1: never;
|
|
1298
|
+
|
|
1133
1299
|
HashPassword(user: TUser, password: string): string;
|
|
1134
1300
|
VerifyHashedPassword(user: TUser, hashedPassword: string, providedPassword: string): PasswordVerificationResult;
|
|
1135
1301
|
}
|
|
1136
1302
|
|
|
1137
1303
|
|
|
1138
1304
|
export const PasswordHasher_1: {
|
|
1139
|
-
new<TUser>(optionsAccessor:
|
|
1305
|
+
new<TUser>(optionsAccessor: IOptions_1<PasswordHasherOptions>): PasswordHasher_1<TUser>;
|
|
1140
1306
|
};
|
|
1141
1307
|
|
|
1142
1308
|
|
|
@@ -1144,12 +1310,12 @@ export interface __PasswordHasher_1$views<TUser> {
|
|
|
1144
1310
|
As_IPasswordHasher_1(): IPasswordHasher_1$instance<TUser>;
|
|
1145
1311
|
}
|
|
1146
1312
|
|
|
1147
|
-
export interface PasswordHasher_1$instance<TUser> extends IPasswordHasher_1$instance<TUser> {}
|
|
1148
|
-
|
|
1149
1313
|
export type PasswordHasher_1<TUser> = PasswordHasher_1$instance<TUser> & __PasswordHasher_1$views<TUser>;
|
|
1150
1314
|
|
|
1151
1315
|
|
|
1152
1316
|
export interface PasswordHasherOptions$instance {
|
|
1317
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasswordHasherOptions: never;
|
|
1318
|
+
|
|
1153
1319
|
CompatibilityMode: PasswordHasherCompatibilityMode;
|
|
1154
1320
|
IterationCount: int;
|
|
1155
1321
|
}
|
|
@@ -1163,6 +1329,8 @@ export const PasswordHasherOptions: {
|
|
|
1163
1329
|
export type PasswordHasherOptions = PasswordHasherOptions$instance;
|
|
1164
1330
|
|
|
1165
1331
|
export interface PasswordOptions$instance {
|
|
1332
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasswordOptions: never;
|
|
1333
|
+
|
|
1166
1334
|
RequireDigit: boolean;
|
|
1167
1335
|
RequiredLength: int;
|
|
1168
1336
|
RequiredUniqueChars: int;
|
|
@@ -1179,13 +1347,17 @@ export const PasswordOptions: {
|
|
|
1179
1347
|
|
|
1180
1348
|
export type PasswordOptions = PasswordOptions$instance;
|
|
1181
1349
|
|
|
1182
|
-
export interface PasswordValidator_1$instance<TUser> {
|
|
1350
|
+
export interface PasswordValidator_1$instance<TUser> extends IPasswordValidator_1$instance<TUser> {
|
|
1351
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PasswordValidator_1: never;
|
|
1352
|
+
|
|
1353
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IPasswordValidator_1: never;
|
|
1354
|
+
|
|
1183
1355
|
Describer: IdentityErrorDescriber;
|
|
1184
1356
|
IsDigit(c: char): boolean;
|
|
1185
1357
|
IsLetterOrDigit(c: char): boolean;
|
|
1186
1358
|
IsLower(c: char): boolean;
|
|
1187
1359
|
IsUpper(c: char): boolean;
|
|
1188
|
-
ValidateAsync(manager: UserManager_1<TUser>, user: TUser, password: string):
|
|
1360
|
+
ValidateAsync(manager: UserManager_1<TUser>, user: TUser, password: string): Task_1<IdentityResult>;
|
|
1189
1361
|
}
|
|
1190
1362
|
|
|
1191
1363
|
|
|
@@ -1198,12 +1370,12 @@ export interface __PasswordValidator_1$views<TUser> {
|
|
|
1198
1370
|
As_IPasswordValidator_1(): IPasswordValidator_1$instance<TUser>;
|
|
1199
1371
|
}
|
|
1200
1372
|
|
|
1201
|
-
export interface PasswordValidator_1$instance<TUser> extends IPasswordValidator_1$instance<TUser> {}
|
|
1202
|
-
|
|
1203
1373
|
export type PasswordValidator_1<TUser> = PasswordValidator_1$instance<TUser> & __PasswordValidator_1$views<TUser>;
|
|
1204
1374
|
|
|
1205
1375
|
|
|
1206
1376
|
export interface PersonalDataAttribute$instance extends Attribute {
|
|
1377
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PersonalDataAttribute: never;
|
|
1378
|
+
|
|
1207
1379
|
}
|
|
1208
1380
|
|
|
1209
1381
|
|
|
@@ -1215,11 +1387,15 @@ export const PersonalDataAttribute: {
|
|
|
1215
1387
|
export type PersonalDataAttribute = PersonalDataAttribute$instance;
|
|
1216
1388
|
|
|
1217
1389
|
export interface PhoneNumberTokenProvider_1$instance<TUser> extends TotpSecurityStampBasedTokenProvider_1$instance<TUser> {
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1390
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_PhoneNumberTokenProvider_1: never;
|
|
1391
|
+
|
|
1392
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorTokenProvider_1: never;
|
|
1393
|
+
|
|
1394
|
+
CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
1395
|
+
GenerateAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.String>;
|
|
1396
|
+
GetUserModifierAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.String>;
|
|
1397
|
+
GetUserModifierAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.String>;
|
|
1398
|
+
ValidateAsync(purpose: string, token: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
1223
1399
|
}
|
|
1224
1400
|
|
|
1225
1401
|
|
|
@@ -1236,6 +1412,8 @@ export type PhoneNumberTokenProvider_1<TUser> = PhoneNumberTokenProvider_1$insta
|
|
|
1236
1412
|
|
|
1237
1413
|
|
|
1238
1414
|
export interface ProtectedPersonalDataAttribute$instance extends PersonalDataAttribute {
|
|
1415
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_ProtectedPersonalDataAttribute: never;
|
|
1416
|
+
|
|
1239
1417
|
}
|
|
1240
1418
|
|
|
1241
1419
|
|
|
@@ -1247,80 +1425,95 @@ export const ProtectedPersonalDataAttribute: {
|
|
|
1247
1425
|
export type ProtectedPersonalDataAttribute = ProtectedPersonalDataAttribute$instance;
|
|
1248
1426
|
|
|
1249
1427
|
export interface RoleManager_1$instance<TRole> {
|
|
1428
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_RoleManager_1: never;
|
|
1429
|
+
|
|
1430
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1431
|
+
|
|
1250
1432
|
readonly CancellationToken: CancellationToken;
|
|
1251
1433
|
ErrorDescriber: IdentityErrorDescriber;
|
|
1252
1434
|
KeyNormalizer: ILookupNormalizer;
|
|
1253
1435
|
Logger: ILogger;
|
|
1254
|
-
readonly Roles:
|
|
1255
|
-
readonly RoleValidators:
|
|
1436
|
+
readonly Roles: IQueryable_1<TRole>;
|
|
1437
|
+
readonly RoleValidators: IList_1<IRoleValidator_1<TRole>>;
|
|
1256
1438
|
readonly SupportsQueryableRoles: boolean;
|
|
1257
1439
|
readonly SupportsRoleClaims: boolean;
|
|
1258
|
-
AddClaimAsync(role: TRole, claim: Claim):
|
|
1259
|
-
CreateAsync(role: TRole):
|
|
1260
|
-
DeleteAsync(role: TRole):
|
|
1440
|
+
AddClaimAsync(role: TRole, claim: Claim): Task_1<IdentityResult>;
|
|
1441
|
+
CreateAsync(role: TRole): Task_1<IdentityResult>;
|
|
1442
|
+
DeleteAsync(role: TRole): Task_1<IdentityResult>;
|
|
1261
1443
|
Dispose(): void;
|
|
1262
1444
|
Dispose(disposing: boolean): void;
|
|
1263
|
-
FindByIdAsync(roleId: string):
|
|
1264
|
-
FindByNameAsync(roleName: string):
|
|
1265
|
-
GetClaimsAsync(role: TRole):
|
|
1266
|
-
GetRoleIdAsync(role: TRole):
|
|
1267
|
-
GetRoleNameAsync(role: TRole):
|
|
1445
|
+
FindByIdAsync(roleId: string): Task_1<TRole | undefined>;
|
|
1446
|
+
FindByNameAsync(roleName: string): Task_1<TRole | undefined>;
|
|
1447
|
+
GetClaimsAsync(role: TRole): Task_1<IList_1<Claim>>;
|
|
1448
|
+
GetRoleIdAsync(role: TRole): Task_1<System_Internal.String>;
|
|
1449
|
+
GetRoleNameAsync(role: TRole): Task_1<string | undefined>;
|
|
1268
1450
|
NormalizeKey(key: string): string | undefined;
|
|
1269
|
-
RemoveClaimAsync(role: TRole, claim: Claim):
|
|
1270
|
-
RoleExistsAsync(roleName: string):
|
|
1271
|
-
SetRoleNameAsync(role: TRole, name: string):
|
|
1272
|
-
UpdateAsync(role: TRole):
|
|
1451
|
+
RemoveClaimAsync(role: TRole, claim: Claim): Task_1<IdentityResult>;
|
|
1452
|
+
RoleExistsAsync(roleName: string): Task_1<System_Internal.Boolean>;
|
|
1453
|
+
SetRoleNameAsync(role: TRole, name: string): Task_1<IdentityResult>;
|
|
1454
|
+
UpdateAsync(role: TRole): Task_1<IdentityResult>;
|
|
1273
1455
|
UpdateNormalizedRoleNameAsync(role: TRole): Task;
|
|
1274
|
-
UpdateRoleAsync(role: TRole):
|
|
1275
|
-
ValidateRoleAsync(role: TRole):
|
|
1456
|
+
UpdateRoleAsync(role: TRole): Task_1<IdentityResult>;
|
|
1457
|
+
ValidateRoleAsync(role: TRole): Task_1<IdentityResult>;
|
|
1276
1458
|
}
|
|
1277
1459
|
|
|
1278
1460
|
|
|
1279
1461
|
export const RoleManager_1: {
|
|
1280
|
-
new<TRole>(store: IRoleStore_1<TRole>, roleValidators:
|
|
1462
|
+
new<TRole>(store: IRoleStore_1<TRole>, roleValidators: IEnumerable_1<IRoleValidator_1<TRole>>, keyNormalizer: ILookupNormalizer, errors: IdentityErrorDescriber, logger: ILogger_1<RoleManager_1<TRole>>): RoleManager_1<TRole>;
|
|
1281
1463
|
};
|
|
1282
1464
|
|
|
1283
1465
|
|
|
1284
1466
|
export type RoleManager_1<TRole> = RoleManager_1$instance<TRole>;
|
|
1285
1467
|
|
|
1286
|
-
export interface RoleStoreBase_4$instance<TRole extends IdentityRole_1<TKey>, TKey extends (
|
|
1468
|
+
export interface RoleStoreBase_4$instance<TRole extends IdentityRole_1<TKey>, TKey extends (IEquatable_1<TKey> | number | string | boolean), TUserRole extends IdentityUserRole_1<TKey>, TRoleClaim extends IdentityRoleClaim_1<TKey>> {
|
|
1469
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_RoleStoreBase_4: never;
|
|
1470
|
+
|
|
1471
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IQueryableRoleStore_1: never;
|
|
1472
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IRoleClaimStore_1: never;
|
|
1473
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IRoleStore_1: never;
|
|
1474
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1475
|
+
|
|
1287
1476
|
ErrorDescriber: IdentityErrorDescriber;
|
|
1288
|
-
readonly Roles:
|
|
1477
|
+
readonly Roles: IQueryable_1<TRole>;
|
|
1289
1478
|
AddClaimAsync(role: TRole, claim: Claim, cancellationToken?: CancellationToken): Task;
|
|
1290
1479
|
ConvertIdFromString(id: string): TKey | undefined;
|
|
1291
1480
|
ConvertIdToString(id: TKey): string | undefined;
|
|
1292
|
-
CreateAsync(role: TRole, cancellationToken?: CancellationToken):
|
|
1481
|
+
CreateAsync(role: TRole, cancellationToken?: CancellationToken): Task_1<IdentityResult>;
|
|
1293
1482
|
CreateRoleClaim(role: TRole, claim: Claim): TRoleClaim;
|
|
1294
|
-
DeleteAsync(role: TRole, cancellationToken?: CancellationToken):
|
|
1483
|
+
DeleteAsync(role: TRole, cancellationToken?: CancellationToken): Task_1<IdentityResult>;
|
|
1295
1484
|
Dispose(): void;
|
|
1296
|
-
FindByIdAsync(id: string, cancellationToken?: CancellationToken):
|
|
1297
|
-
FindByNameAsync(normalizedName: string, cancellationToken?: CancellationToken):
|
|
1298
|
-
GetClaimsAsync(role: TRole, cancellationToken?: CancellationToken):
|
|
1299
|
-
GetNormalizedRoleNameAsync(role: TRole, cancellationToken?: CancellationToken):
|
|
1300
|
-
GetRoleIdAsync(role: TRole, cancellationToken?: CancellationToken):
|
|
1301
|
-
GetRoleNameAsync(role: TRole, cancellationToken?: CancellationToken):
|
|
1485
|
+
FindByIdAsync(id: string, cancellationToken?: CancellationToken): Task_1<TRole | undefined>;
|
|
1486
|
+
FindByNameAsync(normalizedName: string, cancellationToken?: CancellationToken): Task_1<TRole | undefined>;
|
|
1487
|
+
GetClaimsAsync(role: TRole, cancellationToken?: CancellationToken): Task_1<IList_1<Claim>>;
|
|
1488
|
+
GetNormalizedRoleNameAsync(role: TRole, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
1489
|
+
GetRoleIdAsync(role: TRole, cancellationToken?: CancellationToken): Task_1<System_Internal.String>;
|
|
1490
|
+
GetRoleNameAsync(role: TRole, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
1302
1491
|
RemoveClaimAsync(role: TRole, claim: Claim, cancellationToken?: CancellationToken): Task;
|
|
1303
1492
|
SetNormalizedRoleNameAsync(role: TRole, normalizedName: string, cancellationToken?: CancellationToken): Task;
|
|
1304
1493
|
SetRoleNameAsync(role: TRole, roleName: string, cancellationToken?: CancellationToken): Task;
|
|
1305
|
-
UpdateAsync(role: TRole, cancellationToken?: CancellationToken):
|
|
1494
|
+
UpdateAsync(role: TRole, cancellationToken?: CancellationToken): Task_1<IdentityResult>;
|
|
1306
1495
|
}
|
|
1307
1496
|
|
|
1308
1497
|
|
|
1309
|
-
export const RoleStoreBase_4: (abstract new<TRole extends IdentityRole_1<TKey>, TKey extends (
|
|
1498
|
+
export const RoleStoreBase_4: (abstract new<TRole extends IdentityRole_1<TKey>, TKey extends (IEquatable_1<TKey> | number | string | boolean), TUserRole extends IdentityUserRole_1<TKey>, TRoleClaim extends IdentityRoleClaim_1<TKey>>(describer: IdentityErrorDescriber) => RoleStoreBase_4<TRole, TKey, TUserRole, TRoleClaim>) & {
|
|
1310
1499
|
};
|
|
1311
1500
|
|
|
1312
1501
|
|
|
1313
|
-
export interface __RoleStoreBase_4$views<TRole extends IdentityRole_1<TKey>, TKey extends (
|
|
1502
|
+
export interface __RoleStoreBase_4$views<TRole extends IdentityRole_1<TKey>, TKey extends (IEquatable_1<TKey> | number | string | boolean), TUserRole extends IdentityUserRole_1<TKey>, TRoleClaim extends IdentityRoleClaim_1<TKey>> {
|
|
1314
1503
|
As_IQueryableRoleStore_1(): IQueryableRoleStore_1$instance<TRole>;
|
|
1315
1504
|
As_IRoleClaimStore_1(): IRoleClaimStore_1$instance<TRole>;
|
|
1316
1505
|
As_IRoleStore_1(): IRoleStore_1$instance<TRole>;
|
|
1317
1506
|
}
|
|
1318
1507
|
|
|
1319
|
-
export type RoleStoreBase_4<TRole extends IdentityRole_1<TKey>, TKey extends (
|
|
1508
|
+
export type RoleStoreBase_4<TRole extends IdentityRole_1<TKey>, TKey extends (IEquatable_1<TKey> | number | string | boolean), TUserRole extends IdentityUserRole_1<TKey>, TRoleClaim extends IdentityRoleClaim_1<TKey>> = RoleStoreBase_4$instance<TRole, TKey, TUserRole, TRoleClaim> & __RoleStoreBase_4$views<TRole, TKey, TUserRole, TRoleClaim>;
|
|
1509
|
+
|
|
1320
1510
|
|
|
1511
|
+
export interface RoleValidator_1$instance<TRole> extends IRoleValidator_1$instance<TRole> {
|
|
1512
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_RoleValidator_1: never;
|
|
1321
1513
|
|
|
1322
|
-
|
|
1323
|
-
|
|
1514
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IRoleValidator_1: never;
|
|
1515
|
+
|
|
1516
|
+
ValidateAsync(manager: RoleManager_1<TRole>, role: TRole): Task_1<IdentityResult>;
|
|
1324
1517
|
}
|
|
1325
1518
|
|
|
1326
1519
|
|
|
@@ -1333,12 +1526,12 @@ export interface __RoleValidator_1$views<TRole> {
|
|
|
1333
1526
|
As_IRoleValidator_1(): IRoleValidator_1$instance<TRole>;
|
|
1334
1527
|
}
|
|
1335
1528
|
|
|
1336
|
-
export interface RoleValidator_1$instance<TRole> extends IRoleValidator_1$instance<TRole> {}
|
|
1337
|
-
|
|
1338
1529
|
export type RoleValidator_1<TRole> = RoleValidator_1$instance<TRole> & __RoleValidator_1$views<TRole>;
|
|
1339
1530
|
|
|
1340
1531
|
|
|
1341
1532
|
export interface SecurityStampRefreshingPrincipalContext$instance {
|
|
1533
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_SecurityStampRefreshingPrincipalContext: never;
|
|
1534
|
+
|
|
1342
1535
|
get CurrentPrincipal(): ClaimsPrincipal | undefined;
|
|
1343
1536
|
set CurrentPrincipal(value: ClaimsPrincipal | undefined);
|
|
1344
1537
|
get NewPrincipal(): ClaimsPrincipal | undefined;
|
|
@@ -1353,7 +1546,11 @@ export const SecurityStampRefreshingPrincipalContext: {
|
|
|
1353
1546
|
|
|
1354
1547
|
export type SecurityStampRefreshingPrincipalContext = SecurityStampRefreshingPrincipalContext$instance;
|
|
1355
1548
|
|
|
1356
|
-
export interface SecurityStampValidator_1$instance<TUser> {
|
|
1549
|
+
export interface SecurityStampValidator_1$instance<TUser> extends ISecurityStampValidator$instance {
|
|
1550
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_SecurityStampValidator_1: never;
|
|
1551
|
+
|
|
1552
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ISecurityStampValidator: never;
|
|
1553
|
+
|
|
1357
1554
|
readonly Clock: ISystemClock;
|
|
1358
1555
|
Logger: ILogger;
|
|
1359
1556
|
readonly Options: SecurityStampValidatorOptions;
|
|
@@ -1361,13 +1558,13 @@ export interface SecurityStampValidator_1$instance<TUser> {
|
|
|
1361
1558
|
readonly TimeProvider: TimeProvider;
|
|
1362
1559
|
SecurityStampVerified(user: TUser, context: CookieValidatePrincipalContext): Task;
|
|
1363
1560
|
ValidateAsync(context: CookieValidatePrincipalContext): Task;
|
|
1364
|
-
VerifySecurityStamp(principal: ClaimsPrincipal):
|
|
1561
|
+
VerifySecurityStamp(principal: ClaimsPrincipal): Task_1<TUser | undefined>;
|
|
1365
1562
|
}
|
|
1366
1563
|
|
|
1367
1564
|
|
|
1368
1565
|
export const SecurityStampValidator_1: {
|
|
1369
|
-
new<TUser>(options:
|
|
1370
|
-
new<TUser>(options:
|
|
1566
|
+
new<TUser>(options: IOptions_1<SecurityStampValidatorOptions>, signInManager: SignInManager_1<TUser>, clock: ISystemClock, logger: ILoggerFactory): SecurityStampValidator_1<TUser>;
|
|
1567
|
+
new<TUser>(options: IOptions_1<SecurityStampValidatorOptions>, signInManager: SignInManager_1<TUser>, logger: ILoggerFactory): SecurityStampValidator_1<TUser>;
|
|
1371
1568
|
};
|
|
1372
1569
|
|
|
1373
1570
|
|
|
@@ -1375,14 +1572,14 @@ export interface __SecurityStampValidator_1$views<TUser> {
|
|
|
1375
1572
|
As_ISecurityStampValidator(): ISecurityStampValidator$instance;
|
|
1376
1573
|
}
|
|
1377
1574
|
|
|
1378
|
-
export interface SecurityStampValidator_1$instance<TUser> extends ISecurityStampValidator$instance {}
|
|
1379
|
-
|
|
1380
1575
|
export type SecurityStampValidator_1<TUser> = SecurityStampValidator_1$instance<TUser> & __SecurityStampValidator_1$views<TUser>;
|
|
1381
1576
|
|
|
1382
1577
|
|
|
1383
1578
|
export interface SecurityStampValidatorOptions$instance {
|
|
1384
|
-
|
|
1385
|
-
|
|
1579
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_SecurityStampValidatorOptions: never;
|
|
1580
|
+
|
|
1581
|
+
get OnRefreshingPrincipal(): Func_2<SecurityStampRefreshingPrincipalContext, Task> | undefined;
|
|
1582
|
+
set OnRefreshingPrincipal(value: Func_2<SecurityStampRefreshingPrincipalContext, Task> | undefined);
|
|
1386
1583
|
get TimeProvider(): TimeProvider | undefined;
|
|
1387
1584
|
set TimeProvider(value: TimeProvider | undefined);
|
|
1388
1585
|
ValidationInterval: TimeSpan;
|
|
@@ -1397,62 +1594,66 @@ export const SecurityStampValidatorOptions: {
|
|
|
1397
1594
|
export type SecurityStampValidatorOptions = SecurityStampValidatorOptions$instance;
|
|
1398
1595
|
|
|
1399
1596
|
export interface SignInManager_1$instance<TUser> {
|
|
1597
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_SignInManager_1: never;
|
|
1598
|
+
|
|
1400
1599
|
AuthenticationScheme: string;
|
|
1401
1600
|
ClaimsFactory: IUserClaimsPrincipalFactory_1<TUser>;
|
|
1402
1601
|
Context: HttpContext;
|
|
1403
1602
|
Logger: ILogger;
|
|
1404
1603
|
Options: IdentityOptions;
|
|
1405
1604
|
UserManager: UserManager_1<TUser>;
|
|
1406
|
-
CanSignInAsync(user: TUser):
|
|
1407
|
-
CheckPasswordSignInAsync(user: TUser, password: string, lockoutOnFailure: boolean):
|
|
1605
|
+
CanSignInAsync(user: TUser): Task_1<System_Internal.Boolean>;
|
|
1606
|
+
CheckPasswordSignInAsync(user: TUser, password: string, lockoutOnFailure: boolean): Task_1<SignInResult>;
|
|
1408
1607
|
ConfigureExternalAuthenticationProperties(provider: string, redirectUrl: string, userId?: string): AuthenticationProperties;
|
|
1409
|
-
CreateUserPrincipalAsync(user: TUser):
|
|
1410
|
-
ExternalLoginSignInAsync(loginProvider: string, providerKey: string, isPersistent: boolean):
|
|
1411
|
-
ExternalLoginSignInAsync(loginProvider: string, providerKey: string, isPersistent: boolean, bypassTwoFactor: boolean):
|
|
1608
|
+
CreateUserPrincipalAsync(user: TUser): Task_1<ClaimsPrincipal>;
|
|
1609
|
+
ExternalLoginSignInAsync(loginProvider: string, providerKey: string, isPersistent: boolean): Task_1<SignInResult>;
|
|
1610
|
+
ExternalLoginSignInAsync(loginProvider: string, providerKey: string, isPersistent: boolean, bypassTwoFactor: boolean): Task_1<SignInResult>;
|
|
1412
1611
|
ForgetTwoFactorClientAsync(): Task;
|
|
1413
|
-
GetExternalAuthenticationSchemesAsync():
|
|
1414
|
-
GetExternalLoginInfoAsync(expectedXsrf?: string):
|
|
1415
|
-
GetTwoFactorAuthenticationUserAsync():
|
|
1416
|
-
IsLockedOut(user: TUser):
|
|
1612
|
+
GetExternalAuthenticationSchemesAsync(): Task_1<IEnumerable_1<AuthenticationScheme>>;
|
|
1613
|
+
GetExternalLoginInfoAsync(expectedXsrf?: string): Task_1<ExternalLoginInfo | undefined>;
|
|
1614
|
+
GetTwoFactorAuthenticationUserAsync(): Task_1<TUser | undefined>;
|
|
1615
|
+
IsLockedOut(user: TUser): Task_1<System_Internal.Boolean>;
|
|
1417
1616
|
IsSignedIn(principal: ClaimsPrincipal): boolean;
|
|
1418
|
-
IsTwoFactorClientRememberedAsync(user: TUser):
|
|
1419
|
-
IsTwoFactorEnabledAsync(user: TUser):
|
|
1420
|
-
LockedOut(user: TUser):
|
|
1421
|
-
MakePasskeyCreationOptionsAsync(userEntity: PasskeyUserEntity):
|
|
1422
|
-
MakePasskeyRequestOptionsAsync(user: TUser):
|
|
1423
|
-
PasskeySignInAsync(credentialJson: string):
|
|
1424
|
-
PasswordSignInAsync(user: TUser, password: string, isPersistent: boolean, lockoutOnFailure: boolean):
|
|
1425
|
-
PasswordSignInAsync(userName: string, password: string, isPersistent: boolean, lockoutOnFailure: boolean):
|
|
1426
|
-
PerformPasskeyAssertionAsync(credentialJson: string):
|
|
1427
|
-
PerformPasskeyAttestationAsync(credentialJson: string):
|
|
1428
|
-
PreSignInCheck(user: TUser):
|
|
1617
|
+
IsTwoFactorClientRememberedAsync(user: TUser): Task_1<System_Internal.Boolean>;
|
|
1618
|
+
IsTwoFactorEnabledAsync(user: TUser): Task_1<System_Internal.Boolean>;
|
|
1619
|
+
LockedOut(user: TUser): Task_1<SignInResult>;
|
|
1620
|
+
MakePasskeyCreationOptionsAsync(userEntity: PasskeyUserEntity): Task_1<System_Internal.String>;
|
|
1621
|
+
MakePasskeyRequestOptionsAsync(user: TUser): Task_1<System_Internal.String>;
|
|
1622
|
+
PasskeySignInAsync(credentialJson: string): Task_1<SignInResult>;
|
|
1623
|
+
PasswordSignInAsync(user: TUser, password: string, isPersistent: boolean, lockoutOnFailure: boolean): Task_1<SignInResult>;
|
|
1624
|
+
PasswordSignInAsync(userName: string, password: string, isPersistent: boolean, lockoutOnFailure: boolean): Task_1<SignInResult>;
|
|
1625
|
+
PerformPasskeyAssertionAsync(credentialJson: string): Task_1<PasskeyAssertionResult_1<TUser>>;
|
|
1626
|
+
PerformPasskeyAttestationAsync(credentialJson: string): Task_1<PasskeyAttestationResult>;
|
|
1627
|
+
PreSignInCheck(user: TUser): Task_1<SignInResult | undefined>;
|
|
1429
1628
|
RefreshSignInAsync(user: TUser): Task;
|
|
1430
1629
|
RememberTwoFactorClientAsync(user: TUser): Task;
|
|
1431
1630
|
ResetLockout(user: TUser): Task;
|
|
1432
1631
|
SignInAsync(user: TUser, isPersistent: boolean, authenticationMethod?: string): Task;
|
|
1433
1632
|
SignInAsync(user: TUser, authenticationProperties: AuthenticationProperties, authenticationMethod?: string): Task;
|
|
1434
|
-
SignInOrTwoFactorAsync(user: TUser, isPersistent: boolean, loginProvider?: string, bypassTwoFactor?: boolean):
|
|
1435
|
-
SignInWithClaimsAsync(user: TUser, isPersistent: boolean, additionalClaims:
|
|
1436
|
-
SignInWithClaimsAsync(user: TUser, authenticationProperties: AuthenticationProperties, additionalClaims:
|
|
1633
|
+
SignInOrTwoFactorAsync(user: TUser, isPersistent: boolean, loginProvider?: string, bypassTwoFactor?: boolean): Task_1<SignInResult>;
|
|
1634
|
+
SignInWithClaimsAsync(user: TUser, isPersistent: boolean, additionalClaims: IEnumerable_1<Claim>): Task;
|
|
1635
|
+
SignInWithClaimsAsync(user: TUser, authenticationProperties: AuthenticationProperties, additionalClaims: IEnumerable_1<Claim>): Task;
|
|
1437
1636
|
SignOutAsync(): Task;
|
|
1438
|
-
TwoFactorAuthenticatorSignInAsync(code: string, isPersistent: boolean, rememberClient: boolean):
|
|
1439
|
-
TwoFactorRecoveryCodeSignInAsync(recoveryCode: string):
|
|
1440
|
-
TwoFactorSignInAsync(provider: string, code: string, isPersistent: boolean, rememberClient: boolean):
|
|
1441
|
-
UpdateExternalAuthenticationTokensAsync(externalLogin: ExternalLoginInfo):
|
|
1442
|
-
ValidateSecurityStampAsync(principal: ClaimsPrincipal):
|
|
1443
|
-
ValidateSecurityStampAsync(user: TUser, securityStamp: string):
|
|
1444
|
-
ValidateTwoFactorSecurityStampAsync(principal: ClaimsPrincipal):
|
|
1637
|
+
TwoFactorAuthenticatorSignInAsync(code: string, isPersistent: boolean, rememberClient: boolean): Task_1<SignInResult>;
|
|
1638
|
+
TwoFactorRecoveryCodeSignInAsync(recoveryCode: string): Task_1<SignInResult>;
|
|
1639
|
+
TwoFactorSignInAsync(provider: string, code: string, isPersistent: boolean, rememberClient: boolean): Task_1<SignInResult>;
|
|
1640
|
+
UpdateExternalAuthenticationTokensAsync(externalLogin: ExternalLoginInfo): Task_1<IdentityResult>;
|
|
1641
|
+
ValidateSecurityStampAsync(principal: ClaimsPrincipal): Task_1<TUser | undefined>;
|
|
1642
|
+
ValidateSecurityStampAsync(user: TUser, securityStamp: string): Task_1<System_Internal.Boolean>;
|
|
1643
|
+
ValidateTwoFactorSecurityStampAsync(principal: ClaimsPrincipal): Task_1<TUser | undefined>;
|
|
1445
1644
|
}
|
|
1446
1645
|
|
|
1447
1646
|
|
|
1448
1647
|
export const SignInManager_1: {
|
|
1449
|
-
new<TUser>(userManager: UserManager_1<TUser>, contextAccessor: IHttpContextAccessor, claimsFactory: IUserClaimsPrincipalFactory_1<TUser>, optionsAccessor:
|
|
1648
|
+
new<TUser>(userManager: UserManager_1<TUser>, contextAccessor: IHttpContextAccessor, claimsFactory: IUserClaimsPrincipalFactory_1<TUser>, optionsAccessor: IOptions_1<IdentityOptions>, logger: ILogger_1<SignInManager_1<TUser>>, schemes: IAuthenticationSchemeProvider, confirmation: IUserConfirmation_1<TUser>): SignInManager_1<TUser>;
|
|
1450
1649
|
};
|
|
1451
1650
|
|
|
1452
1651
|
|
|
1453
1652
|
export type SignInManager_1<TUser> = SignInManager_1$instance<TUser>;
|
|
1454
1653
|
|
|
1455
1654
|
export interface SignInOptions$instance {
|
|
1655
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_SignInOptions: never;
|
|
1656
|
+
|
|
1456
1657
|
RequireConfirmedAccount: boolean;
|
|
1457
1658
|
RequireConfirmedEmail: boolean;
|
|
1458
1659
|
RequireConfirmedPhoneNumber: boolean;
|
|
@@ -1467,6 +1668,8 @@ export const SignInOptions: {
|
|
|
1467
1668
|
export type SignInOptions = SignInOptions$instance;
|
|
1468
1669
|
|
|
1469
1670
|
export interface SignInResult$instance {
|
|
1671
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_SignInResult: never;
|
|
1672
|
+
|
|
1470
1673
|
IsLockedOut: boolean;
|
|
1471
1674
|
IsNotAllowed: boolean;
|
|
1472
1675
|
RequiresTwoFactor: boolean;
|
|
@@ -1488,6 +1691,8 @@ export const SignInResult: {
|
|
|
1488
1691
|
export type SignInResult = SignInResult$instance;
|
|
1489
1692
|
|
|
1490
1693
|
export interface StoreOptions$instance {
|
|
1694
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_StoreOptions: never;
|
|
1695
|
+
|
|
1491
1696
|
MaxLengthForKeys: int;
|
|
1492
1697
|
ProtectPersonalData: boolean;
|
|
1493
1698
|
SchemaVersion: Version;
|
|
@@ -1502,13 +1707,15 @@ export const StoreOptions: {
|
|
|
1502
1707
|
export type StoreOptions = StoreOptions$instance;
|
|
1503
1708
|
|
|
1504
1709
|
export interface TokenOptions$instance {
|
|
1710
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_TokenOptions: never;
|
|
1711
|
+
|
|
1505
1712
|
AuthenticatorIssuer: string;
|
|
1506
1713
|
AuthenticatorTokenProvider: string;
|
|
1507
1714
|
ChangeEmailTokenProvider: string;
|
|
1508
1715
|
ChangePhoneNumberTokenProvider: string;
|
|
1509
1716
|
EmailConfirmationTokenProvider: string;
|
|
1510
1717
|
PasswordResetTokenProvider: string;
|
|
1511
|
-
ProviderMap:
|
|
1718
|
+
ProviderMap: Dictionary_2<System_Internal.String, TokenProviderDescriptor>;
|
|
1512
1719
|
}
|
|
1513
1720
|
|
|
1514
1721
|
|
|
@@ -1524,6 +1731,8 @@ export const TokenOptions: {
|
|
|
1524
1731
|
export type TokenOptions = TokenOptions$instance;
|
|
1525
1732
|
|
|
1526
1733
|
export interface TokenProviderDescriptor$instance {
|
|
1734
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_TokenProviderDescriptor: never;
|
|
1735
|
+
|
|
1527
1736
|
get ProviderInstance(): unknown | undefined;
|
|
1528
1737
|
set ProviderInstance(value: unknown | undefined);
|
|
1529
1738
|
readonly ProviderType: Type;
|
|
@@ -1537,11 +1746,15 @@ export const TokenProviderDescriptor: {
|
|
|
1537
1746
|
|
|
1538
1747
|
export type TokenProviderDescriptor = TokenProviderDescriptor$instance;
|
|
1539
1748
|
|
|
1540
|
-
export interface TotpSecurityStampBasedTokenProvider_1$instance<TUser> {
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1749
|
+
export interface TotpSecurityStampBasedTokenProvider_1$instance<TUser> extends IUserTwoFactorTokenProvider_1$instance<TUser> {
|
|
1750
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_TotpSecurityStampBasedTokenProvider_1: never;
|
|
1751
|
+
|
|
1752
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorTokenProvider_1: never;
|
|
1753
|
+
|
|
1754
|
+
CanGenerateTwoFactorTokenAsync(manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
1755
|
+
GenerateAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.String>;
|
|
1756
|
+
GetUserModifierAsync(purpose: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.String>;
|
|
1757
|
+
ValidateAsync(purpose: string, token: string, manager: UserManager_1<TUser>, user: TUser): Task_1<System_Internal.Boolean>;
|
|
1545
1758
|
}
|
|
1546
1759
|
|
|
1547
1760
|
|
|
@@ -1553,22 +1766,25 @@ export interface __TotpSecurityStampBasedTokenProvider_1$views<TUser> {
|
|
|
1553
1766
|
As_IUserTwoFactorTokenProvider_1(): IUserTwoFactorTokenProvider_1$instance<TUser>;
|
|
1554
1767
|
}
|
|
1555
1768
|
|
|
1556
|
-
export interface TotpSecurityStampBasedTokenProvider_1$instance<TUser> extends IUserTwoFactorTokenProvider_1$instance<TUser> {}
|
|
1557
|
-
|
|
1558
1769
|
export type TotpSecurityStampBasedTokenProvider_1<TUser> = TotpSecurityStampBasedTokenProvider_1$instance<TUser> & __TotpSecurityStampBasedTokenProvider_1$views<TUser>;
|
|
1559
1770
|
|
|
1560
1771
|
|
|
1561
|
-
export interface TwoFactorSecurityStampValidator_1$instance<TUser> extends SecurityStampValidator_1$instance<TUser>, ITwoFactorSecurityStampValidator {
|
|
1772
|
+
export interface TwoFactorSecurityStampValidator_1$instance<TUser> extends SecurityStampValidator_1$instance<TUser>, ITwoFactorSecurityStampValidator, ITwoFactorSecurityStampValidator$instance {
|
|
1773
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_TwoFactorSecurityStampValidator_1: never;
|
|
1774
|
+
|
|
1775
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ISecurityStampValidator: never;
|
|
1776
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ITwoFactorSecurityStampValidator: never;
|
|
1777
|
+
|
|
1562
1778
|
SecurityStampVerified(user: TUser, context: CookieValidatePrincipalContext): Task;
|
|
1563
1779
|
ValidateAsync(context: CookieValidatePrincipalContext): Task;
|
|
1564
|
-
VerifySecurityStamp(principal: ClaimsPrincipal):
|
|
1565
|
-
VerifySecurityStamp(principal: ClaimsPrincipal):
|
|
1780
|
+
VerifySecurityStamp(principal: ClaimsPrincipal): Task_1<TUser | undefined>;
|
|
1781
|
+
VerifySecurityStamp(principal: ClaimsPrincipal): Task_1<TUser | undefined>;
|
|
1566
1782
|
}
|
|
1567
1783
|
|
|
1568
1784
|
|
|
1569
1785
|
export const TwoFactorSecurityStampValidator_1: {
|
|
1570
|
-
new<TUser>(options:
|
|
1571
|
-
new<TUser>(options:
|
|
1786
|
+
new<TUser>(options: IOptions_1<SecurityStampValidatorOptions>, signInManager: SignInManager_1<TUser>, clock: ISystemClock, logger: ILoggerFactory): TwoFactorSecurityStampValidator_1<TUser>;
|
|
1787
|
+
new<TUser>(options: IOptions_1<SecurityStampValidatorOptions>, signInManager: SignInManager_1<TUser>, logger: ILoggerFactory): TwoFactorSecurityStampValidator_1<TUser>;
|
|
1572
1788
|
};
|
|
1573
1789
|
|
|
1574
1790
|
|
|
@@ -1576,12 +1792,14 @@ export interface __TwoFactorSecurityStampValidator_1$views<TUser> {
|
|
|
1576
1792
|
As_ISecurityStampValidator(): ISecurityStampValidator$instance;
|
|
1577
1793
|
}
|
|
1578
1794
|
|
|
1579
|
-
export interface TwoFactorSecurityStampValidator_1$instance<TUser> extends ITwoFactorSecurityStampValidator$instance {}
|
|
1580
|
-
|
|
1581
1795
|
export type TwoFactorSecurityStampValidator_1<TUser> = TwoFactorSecurityStampValidator_1$instance<TUser> & __TwoFactorSecurityStampValidator_1$views<TUser>;
|
|
1582
1796
|
|
|
1583
1797
|
|
|
1584
|
-
export interface UpperInvariantLookupNormalizer$instance {
|
|
1798
|
+
export interface UpperInvariantLookupNormalizer$instance extends ILookupNormalizer$instance {
|
|
1799
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_UpperInvariantLookupNormalizer: never;
|
|
1800
|
+
|
|
1801
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_ILookupNormalizer: never;
|
|
1802
|
+
|
|
1585
1803
|
NormalizeEmail(email: string): string | undefined;
|
|
1586
1804
|
NormalizeName(name: string): string | undefined;
|
|
1587
1805
|
}
|
|
@@ -1596,21 +1814,23 @@ export interface __UpperInvariantLookupNormalizer$views {
|
|
|
1596
1814
|
As_ILookupNormalizer(): ILookupNormalizer$instance;
|
|
1597
1815
|
}
|
|
1598
1816
|
|
|
1599
|
-
export interface UpperInvariantLookupNormalizer$instance extends ILookupNormalizer$instance {}
|
|
1600
|
-
|
|
1601
1817
|
export type UpperInvariantLookupNormalizer = UpperInvariantLookupNormalizer$instance & __UpperInvariantLookupNormalizer$views;
|
|
1602
1818
|
|
|
1603
1819
|
|
|
1604
|
-
export interface UserClaimsPrincipalFactory_1$instance<TUser> {
|
|
1820
|
+
export interface UserClaimsPrincipalFactory_1$instance<TUser> extends IUserClaimsPrincipalFactory_1$instance<TUser> {
|
|
1821
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_UserClaimsPrincipalFactory_1: never;
|
|
1822
|
+
|
|
1823
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserClaimsPrincipalFactory_1: never;
|
|
1824
|
+
|
|
1605
1825
|
Options: IdentityOptions;
|
|
1606
1826
|
UserManager: UserManager_1<TUser>;
|
|
1607
|
-
CreateAsync(user: TUser):
|
|
1608
|
-
GenerateClaimsAsync(user: TUser):
|
|
1827
|
+
CreateAsync(user: TUser): Task_1<ClaimsPrincipal>;
|
|
1828
|
+
GenerateClaimsAsync(user: TUser): Task_1<ClaimsIdentity>;
|
|
1609
1829
|
}
|
|
1610
1830
|
|
|
1611
1831
|
|
|
1612
1832
|
export const UserClaimsPrincipalFactory_1: {
|
|
1613
|
-
new<TUser>(userManager: UserManager_1<TUser>, optionsAccessor:
|
|
1833
|
+
new<TUser>(userManager: UserManager_1<TUser>, optionsAccessor: IOptions_1<IdentityOptions>): UserClaimsPrincipalFactory_1<TUser>;
|
|
1614
1834
|
};
|
|
1615
1835
|
|
|
1616
1836
|
|
|
@@ -1618,21 +1838,23 @@ export interface __UserClaimsPrincipalFactory_1$views<TUser> {
|
|
|
1618
1838
|
As_IUserClaimsPrincipalFactory_1(): IUserClaimsPrincipalFactory_1$instance<TUser>;
|
|
1619
1839
|
}
|
|
1620
1840
|
|
|
1621
|
-
export interface UserClaimsPrincipalFactory_1$instance<TUser> extends IUserClaimsPrincipalFactory_1$instance<TUser> {}
|
|
1622
|
-
|
|
1623
1841
|
export type UserClaimsPrincipalFactory_1<TUser> = UserClaimsPrincipalFactory_1$instance<TUser> & __UserClaimsPrincipalFactory_1$views<TUser>;
|
|
1624
1842
|
|
|
1625
1843
|
|
|
1626
1844
|
export interface UserClaimsPrincipalFactory_2$instance<TUser, TRole> extends UserClaimsPrincipalFactory_1$instance<TUser> {
|
|
1845
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_UserClaimsPrincipalFactory_2: never;
|
|
1846
|
+
|
|
1847
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserClaimsPrincipalFactory_1: never;
|
|
1848
|
+
|
|
1627
1849
|
RoleManager: RoleManager_1<TRole>;
|
|
1628
|
-
CreateAsync(user: TUser):
|
|
1629
|
-
GenerateClaimsAsync(user: TUser):
|
|
1630
|
-
GenerateClaimsAsync(user: TUser):
|
|
1850
|
+
CreateAsync(user: TUser): Task_1<ClaimsPrincipal>;
|
|
1851
|
+
GenerateClaimsAsync(user: TUser): Task_1<ClaimsIdentity>;
|
|
1852
|
+
GenerateClaimsAsync(user: TUser): Task_1<ClaimsIdentity>;
|
|
1631
1853
|
}
|
|
1632
1854
|
|
|
1633
1855
|
|
|
1634
1856
|
export const UserClaimsPrincipalFactory_2: {
|
|
1635
|
-
new<TUser, TRole>(userManager: UserManager_1<TUser>, roleManager: RoleManager_1<TRole>, options:
|
|
1857
|
+
new<TUser, TRole>(userManager: UserManager_1<TUser>, roleManager: RoleManager_1<TRole>, options: IOptions_1<IdentityOptions>): UserClaimsPrincipalFactory_2<TUser, TRole>;
|
|
1636
1858
|
};
|
|
1637
1859
|
|
|
1638
1860
|
|
|
@@ -1644,6 +1866,8 @@ export type UserClaimsPrincipalFactory_2<TUser, TRole> = UserClaimsPrincipalFact
|
|
|
1644
1866
|
|
|
1645
1867
|
|
|
1646
1868
|
export interface UserLoginInfo$instance {
|
|
1869
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_UserLoginInfo: never;
|
|
1870
|
+
|
|
1647
1871
|
LoginProvider: string;
|
|
1648
1872
|
get ProviderDisplayName(): string | undefined;
|
|
1649
1873
|
set ProviderDisplayName(value: string | undefined);
|
|
@@ -1659,13 +1883,17 @@ export const UserLoginInfo: {
|
|
|
1659
1883
|
export type UserLoginInfo = UserLoginInfo$instance;
|
|
1660
1884
|
|
|
1661
1885
|
export interface UserManager_1$instance<TUser> {
|
|
1886
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_UserManager_1: never;
|
|
1887
|
+
|
|
1888
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
1889
|
+
|
|
1662
1890
|
readonly CancellationToken: CancellationToken;
|
|
1663
1891
|
ErrorDescriber: IdentityErrorDescriber;
|
|
1664
1892
|
KeyNormalizer: ILookupNormalizer;
|
|
1665
1893
|
Logger: ILogger;
|
|
1666
1894
|
Options: IdentityOptions;
|
|
1667
1895
|
PasswordHasher: IPasswordHasher_1<TUser>;
|
|
1668
|
-
readonly PasswordValidators:
|
|
1896
|
+
readonly PasswordValidators: IList_1<IPasswordValidator_1<TUser>>;
|
|
1669
1897
|
readonly ServiceProvider: IServiceProvider;
|
|
1670
1898
|
readonly SupportsQueryableUsers: boolean;
|
|
1671
1899
|
readonly SupportsUserAuthenticationTokens: boolean;
|
|
@@ -1681,108 +1909,108 @@ export interface UserManager_1$instance<TUser> {
|
|
|
1681
1909
|
readonly SupportsUserSecurityStamp: boolean;
|
|
1682
1910
|
readonly SupportsUserTwoFactor: boolean;
|
|
1683
1911
|
readonly SupportsUserTwoFactorRecoveryCodes: boolean;
|
|
1684
|
-
readonly Users:
|
|
1685
|
-
readonly UserValidators:
|
|
1686
|
-
AccessFailedAsync(user: TUser):
|
|
1687
|
-
AddClaimAsync(user: TUser, claim: Claim):
|
|
1688
|
-
AddClaimsAsync(user: TUser, claims:
|
|
1689
|
-
AddLoginAsync(user: TUser, login: UserLoginInfo):
|
|
1690
|
-
AddOrUpdatePasskeyAsync(user: TUser, passkey: UserPasskeyInfo):
|
|
1691
|
-
AddPasswordAsync(user: TUser, password: string):
|
|
1692
|
-
AddToRoleAsync(user: TUser, role: string):
|
|
1693
|
-
AddToRolesAsync(user: TUser, roles:
|
|
1694
|
-
ChangeEmailAsync(user: TUser, newEmail: string, token: string):
|
|
1695
|
-
ChangePasswordAsync(user: TUser, currentPassword: string, newPassword: string):
|
|
1696
|
-
ChangePhoneNumberAsync(user: TUser, phoneNumber: string, token: string):
|
|
1697
|
-
CheckPasswordAsync(user: TUser, password: string):
|
|
1698
|
-
ConfirmEmailAsync(user: TUser, token: string):
|
|
1699
|
-
CountRecoveryCodesAsync(user: TUser):
|
|
1700
|
-
CreateAsync(user: TUser):
|
|
1701
|
-
CreateAsync(user: TUser, password: string):
|
|
1702
|
-
CreateSecurityTokenAsync(user: TUser):
|
|
1912
|
+
readonly Users: IQueryable_1<TUser>;
|
|
1913
|
+
readonly UserValidators: IList_1<IUserValidator_1<TUser>>;
|
|
1914
|
+
AccessFailedAsync(user: TUser): Task_1<IdentityResult>;
|
|
1915
|
+
AddClaimAsync(user: TUser, claim: Claim): Task_1<IdentityResult>;
|
|
1916
|
+
AddClaimsAsync(user: TUser, claims: IEnumerable_1<Claim>): Task_1<IdentityResult>;
|
|
1917
|
+
AddLoginAsync(user: TUser, login: UserLoginInfo): Task_1<IdentityResult>;
|
|
1918
|
+
AddOrUpdatePasskeyAsync(user: TUser, passkey: UserPasskeyInfo): Task_1<IdentityResult>;
|
|
1919
|
+
AddPasswordAsync(user: TUser, password: string): Task_1<IdentityResult>;
|
|
1920
|
+
AddToRoleAsync(user: TUser, role: string): Task_1<IdentityResult>;
|
|
1921
|
+
AddToRolesAsync(user: TUser, roles: IEnumerable_1<System_Internal.String>): Task_1<IdentityResult>;
|
|
1922
|
+
ChangeEmailAsync(user: TUser, newEmail: string, token: string): Task_1<IdentityResult>;
|
|
1923
|
+
ChangePasswordAsync(user: TUser, currentPassword: string, newPassword: string): Task_1<IdentityResult>;
|
|
1924
|
+
ChangePhoneNumberAsync(user: TUser, phoneNumber: string, token: string): Task_1<IdentityResult>;
|
|
1925
|
+
CheckPasswordAsync(user: TUser, password: string): Task_1<System_Internal.Boolean>;
|
|
1926
|
+
ConfirmEmailAsync(user: TUser, token: string): Task_1<IdentityResult>;
|
|
1927
|
+
CountRecoveryCodesAsync(user: TUser): Task_1<System_Internal.Int32>;
|
|
1928
|
+
CreateAsync(user: TUser): Task_1<IdentityResult>;
|
|
1929
|
+
CreateAsync(user: TUser, password: string): Task_1<IdentityResult>;
|
|
1930
|
+
CreateSecurityTokenAsync(user: TUser): Task_1<byte[]>;
|
|
1703
1931
|
CreateTwoFactorRecoveryCode(): string;
|
|
1704
|
-
DeleteAsync(user: TUser):
|
|
1932
|
+
DeleteAsync(user: TUser): Task_1<IdentityResult>;
|
|
1705
1933
|
Dispose(): void;
|
|
1706
1934
|
Dispose(disposing: boolean): void;
|
|
1707
|
-
FindByEmailAsync(email: string):
|
|
1708
|
-
FindByIdAsync(userId: string):
|
|
1709
|
-
FindByLoginAsync(loginProvider: string, providerKey: string):
|
|
1710
|
-
FindByNameAsync(userName: string):
|
|
1711
|
-
FindByPasskeyIdAsync(credentialId: byte[]):
|
|
1712
|
-
GenerateChangeEmailTokenAsync(user: TUser, newEmail: string):
|
|
1713
|
-
GenerateChangePhoneNumberTokenAsync(user: TUser, phoneNumber: string):
|
|
1714
|
-
GenerateConcurrencyStampAsync(user: TUser):
|
|
1715
|
-
GenerateEmailConfirmationTokenAsync(user: TUser):
|
|
1935
|
+
FindByEmailAsync(email: string): Task_1<TUser | undefined>;
|
|
1936
|
+
FindByIdAsync(userId: string): Task_1<TUser | undefined>;
|
|
1937
|
+
FindByLoginAsync(loginProvider: string, providerKey: string): Task_1<TUser | undefined>;
|
|
1938
|
+
FindByNameAsync(userName: string): Task_1<TUser | undefined>;
|
|
1939
|
+
FindByPasskeyIdAsync(credentialId: byte[]): Task_1<TUser | undefined>;
|
|
1940
|
+
GenerateChangeEmailTokenAsync(user: TUser, newEmail: string): Task_1<System_Internal.String>;
|
|
1941
|
+
GenerateChangePhoneNumberTokenAsync(user: TUser, phoneNumber: string): Task_1<System_Internal.String>;
|
|
1942
|
+
GenerateConcurrencyStampAsync(user: TUser): Task_1<System_Internal.String>;
|
|
1943
|
+
GenerateEmailConfirmationTokenAsync(user: TUser): Task_1<System_Internal.String>;
|
|
1716
1944
|
GenerateNewAuthenticatorKey(): string;
|
|
1717
|
-
GenerateNewTwoFactorRecoveryCodesAsync(user: TUser, number: int):
|
|
1718
|
-
GeneratePasswordResetTokenAsync(user: TUser):
|
|
1719
|
-
GenerateTwoFactorTokenAsync(user: TUser, tokenProvider: string):
|
|
1720
|
-
GenerateUserTokenAsync(user: TUser, tokenProvider: string, purpose: string):
|
|
1721
|
-
GetAccessFailedCountAsync(user: TUser):
|
|
1722
|
-
GetAuthenticationTokenAsync(user: TUser, loginProvider: string, tokenName: string):
|
|
1723
|
-
GetAuthenticatorKeyAsync(user: TUser):
|
|
1724
|
-
GetClaimsAsync(user: TUser):
|
|
1725
|
-
GetEmailAsync(user: TUser):
|
|
1726
|
-
GetLockoutEnabledAsync(user: TUser):
|
|
1727
|
-
GetLockoutEndDateAsync(user: TUser):
|
|
1728
|
-
GetLoginsAsync(user: TUser):
|
|
1729
|
-
GetPasskeyAsync(user: TUser, credentialId: byte[]):
|
|
1730
|
-
GetPasskeysAsync(user: TUser):
|
|
1731
|
-
GetPhoneNumberAsync(user: TUser):
|
|
1732
|
-
GetRolesAsync(user: TUser):
|
|
1733
|
-
GetSecurityStampAsync(user: TUser):
|
|
1734
|
-
GetTwoFactorEnabledAsync(user: TUser):
|
|
1735
|
-
GetUserAsync(principal: ClaimsPrincipal):
|
|
1945
|
+
GenerateNewTwoFactorRecoveryCodesAsync(user: TUser, number: int): Task_1<IEnumerable_1<System_Internal.String> | undefined>;
|
|
1946
|
+
GeneratePasswordResetTokenAsync(user: TUser): Task_1<System_Internal.String>;
|
|
1947
|
+
GenerateTwoFactorTokenAsync(user: TUser, tokenProvider: string): Task_1<System_Internal.String>;
|
|
1948
|
+
GenerateUserTokenAsync(user: TUser, tokenProvider: string, purpose: string): Task_1<System_Internal.String>;
|
|
1949
|
+
GetAccessFailedCountAsync(user: TUser): Task_1<System_Internal.Int32>;
|
|
1950
|
+
GetAuthenticationTokenAsync(user: TUser, loginProvider: string, tokenName: string): Task_1<string | undefined>;
|
|
1951
|
+
GetAuthenticatorKeyAsync(user: TUser): Task_1<string | undefined>;
|
|
1952
|
+
GetClaimsAsync(user: TUser): Task_1<IList_1<Claim>>;
|
|
1953
|
+
GetEmailAsync(user: TUser): Task_1<string | undefined>;
|
|
1954
|
+
GetLockoutEnabledAsync(user: TUser): Task_1<System_Internal.Boolean>;
|
|
1955
|
+
GetLockoutEndDateAsync(user: TUser): Task_1<Nullable_1<DateTimeOffset>>;
|
|
1956
|
+
GetLoginsAsync(user: TUser): Task_1<IList_1<UserLoginInfo>>;
|
|
1957
|
+
GetPasskeyAsync(user: TUser, credentialId: byte[]): Task_1<UserPasskeyInfo | undefined>;
|
|
1958
|
+
GetPasskeysAsync(user: TUser): Task_1<IList_1<UserPasskeyInfo>>;
|
|
1959
|
+
GetPhoneNumberAsync(user: TUser): Task_1<string | undefined>;
|
|
1960
|
+
GetRolesAsync(user: TUser): Task_1<IList_1<System_Internal.String>>;
|
|
1961
|
+
GetSecurityStampAsync(user: TUser): Task_1<System_Internal.String>;
|
|
1962
|
+
GetTwoFactorEnabledAsync(user: TUser): Task_1<System_Internal.Boolean>;
|
|
1963
|
+
GetUserAsync(principal: ClaimsPrincipal): Task_1<TUser | undefined>;
|
|
1736
1964
|
GetUserId(principal: ClaimsPrincipal): string | undefined;
|
|
1737
|
-
GetUserIdAsync(user: TUser):
|
|
1965
|
+
GetUserIdAsync(user: TUser): Task_1<System_Internal.String>;
|
|
1738
1966
|
GetUserName(principal: ClaimsPrincipal): string | undefined;
|
|
1739
|
-
GetUserNameAsync(user: TUser):
|
|
1740
|
-
GetUsersForClaimAsync(claim: Claim):
|
|
1741
|
-
GetUsersInRoleAsync(roleName: string):
|
|
1742
|
-
GetValidTwoFactorProvidersAsync(user: TUser):
|
|
1743
|
-
HasPasswordAsync(user: TUser):
|
|
1744
|
-
IsEmailConfirmedAsync(user: TUser):
|
|
1745
|
-
IsInRoleAsync(user: TUser, role: string):
|
|
1746
|
-
IsLockedOutAsync(user: TUser):
|
|
1747
|
-
IsPhoneNumberConfirmedAsync(user: TUser):
|
|
1967
|
+
GetUserNameAsync(user: TUser): Task_1<string | undefined>;
|
|
1968
|
+
GetUsersForClaimAsync(claim: Claim): Task_1<IList_1<TUser>>;
|
|
1969
|
+
GetUsersInRoleAsync(roleName: string): Task_1<IList_1<TUser>>;
|
|
1970
|
+
GetValidTwoFactorProvidersAsync(user: TUser): Task_1<IList_1<System_Internal.String>>;
|
|
1971
|
+
HasPasswordAsync(user: TUser): Task_1<System_Internal.Boolean>;
|
|
1972
|
+
IsEmailConfirmedAsync(user: TUser): Task_1<System_Internal.Boolean>;
|
|
1973
|
+
IsInRoleAsync(user: TUser, role: string): Task_1<System_Internal.Boolean>;
|
|
1974
|
+
IsLockedOutAsync(user: TUser): Task_1<System_Internal.Boolean>;
|
|
1975
|
+
IsPhoneNumberConfirmedAsync(user: TUser): Task_1<System_Internal.Boolean>;
|
|
1748
1976
|
NormalizeEmail(email: string): string | undefined;
|
|
1749
1977
|
NormalizeName(name: string): string | undefined;
|
|
1750
|
-
RedeemTwoFactorRecoveryCodeAsync(user: TUser, code: string):
|
|
1978
|
+
RedeemTwoFactorRecoveryCodeAsync(user: TUser, code: string): Task_1<IdentityResult>;
|
|
1751
1979
|
RegisterTokenProvider(providerName: string, provider: IUserTwoFactorTokenProvider_1<TUser>): void;
|
|
1752
|
-
RemoveAuthenticationTokenAsync(user: TUser, loginProvider: string, tokenName: string):
|
|
1753
|
-
RemoveClaimAsync(user: TUser, claim: Claim):
|
|
1754
|
-
RemoveClaimsAsync(user: TUser, claims:
|
|
1755
|
-
RemoveFromRoleAsync(user: TUser, role: string):
|
|
1756
|
-
RemoveFromRolesAsync(user: TUser, roles:
|
|
1757
|
-
RemoveLoginAsync(user: TUser, loginProvider: string, providerKey: string):
|
|
1758
|
-
RemovePasskeyAsync(user: TUser, credentialId: byte[]):
|
|
1759
|
-
RemovePasswordAsync(user: TUser):
|
|
1760
|
-
ReplaceClaimAsync(user: TUser, claim: Claim, newClaim: Claim):
|
|
1761
|
-
ResetAccessFailedCountAsync(user: TUser):
|
|
1762
|
-
ResetAuthenticatorKeyAsync(user: TUser):
|
|
1763
|
-
ResetPasswordAsync(user: TUser, token: string, newPassword: string):
|
|
1764
|
-
SetAuthenticationTokenAsync(user: TUser, loginProvider: string, tokenName: string, tokenValue: string):
|
|
1765
|
-
SetEmailAsync(user: TUser, email: string):
|
|
1766
|
-
SetLockoutEnabledAsync(user: TUser, enabled: boolean):
|
|
1767
|
-
SetLockoutEndDateAsync(user: TUser, lockoutEnd:
|
|
1768
|
-
SetPhoneNumberAsync(user: TUser, phoneNumber: string):
|
|
1769
|
-
SetTwoFactorEnabledAsync(user: TUser, enabled: boolean):
|
|
1770
|
-
SetUserNameAsync(user: TUser, userName: string):
|
|
1771
|
-
UpdateAsync(user: TUser):
|
|
1980
|
+
RemoveAuthenticationTokenAsync(user: TUser, loginProvider: string, tokenName: string): Task_1<IdentityResult>;
|
|
1981
|
+
RemoveClaimAsync(user: TUser, claim: Claim): Task_1<IdentityResult>;
|
|
1982
|
+
RemoveClaimsAsync(user: TUser, claims: IEnumerable_1<Claim>): Task_1<IdentityResult>;
|
|
1983
|
+
RemoveFromRoleAsync(user: TUser, role: string): Task_1<IdentityResult>;
|
|
1984
|
+
RemoveFromRolesAsync(user: TUser, roles: IEnumerable_1<System_Internal.String>): Task_1<IdentityResult>;
|
|
1985
|
+
RemoveLoginAsync(user: TUser, loginProvider: string, providerKey: string): Task_1<IdentityResult>;
|
|
1986
|
+
RemovePasskeyAsync(user: TUser, credentialId: byte[]): Task_1<IdentityResult>;
|
|
1987
|
+
RemovePasswordAsync(user: TUser): Task_1<IdentityResult>;
|
|
1988
|
+
ReplaceClaimAsync(user: TUser, claim: Claim, newClaim: Claim): Task_1<IdentityResult>;
|
|
1989
|
+
ResetAccessFailedCountAsync(user: TUser): Task_1<IdentityResult>;
|
|
1990
|
+
ResetAuthenticatorKeyAsync(user: TUser): Task_1<IdentityResult>;
|
|
1991
|
+
ResetPasswordAsync(user: TUser, token: string, newPassword: string): Task_1<IdentityResult>;
|
|
1992
|
+
SetAuthenticationTokenAsync(user: TUser, loginProvider: string, tokenName: string, tokenValue: string): Task_1<IdentityResult>;
|
|
1993
|
+
SetEmailAsync(user: TUser, email: string): Task_1<IdentityResult>;
|
|
1994
|
+
SetLockoutEnabledAsync(user: TUser, enabled: boolean): Task_1<IdentityResult>;
|
|
1995
|
+
SetLockoutEndDateAsync(user: TUser, lockoutEnd: Nullable_1<DateTimeOffset>): Task_1<IdentityResult>;
|
|
1996
|
+
SetPhoneNumberAsync(user: TUser, phoneNumber: string): Task_1<IdentityResult>;
|
|
1997
|
+
SetTwoFactorEnabledAsync(user: TUser, enabled: boolean): Task_1<IdentityResult>;
|
|
1998
|
+
SetUserNameAsync(user: TUser, userName: string): Task_1<IdentityResult>;
|
|
1999
|
+
UpdateAsync(user: TUser): Task_1<IdentityResult>;
|
|
1772
2000
|
UpdateNormalizedEmailAsync(user: TUser): Task;
|
|
1773
2001
|
UpdateNormalizedUserNameAsync(user: TUser): Task;
|
|
1774
|
-
UpdatePasswordHash(user: TUser, newPassword: string, validatePassword: boolean):
|
|
1775
|
-
UpdateSecurityStampAsync(user: TUser):
|
|
1776
|
-
UpdateUserAsync(user: TUser):
|
|
1777
|
-
VerifyChangePhoneNumberTokenAsync(user: TUser, token: string, phoneNumber: string):
|
|
1778
|
-
VerifyPasswordAsync(store: IUserPasswordStore_1<TUser>, user: TUser, password: string):
|
|
1779
|
-
VerifyTwoFactorTokenAsync(user: TUser, tokenProvider: string, token: string):
|
|
1780
|
-
VerifyUserTokenAsync(user: TUser, tokenProvider: string, purpose: string, token: string):
|
|
2002
|
+
UpdatePasswordHash(user: TUser, newPassword: string, validatePassword: boolean): Task_1<IdentityResult>;
|
|
2003
|
+
UpdateSecurityStampAsync(user: TUser): Task_1<IdentityResult>;
|
|
2004
|
+
UpdateUserAsync(user: TUser): Task_1<IdentityResult>;
|
|
2005
|
+
VerifyChangePhoneNumberTokenAsync(user: TUser, token: string, phoneNumber: string): Task_1<System_Internal.Boolean>;
|
|
2006
|
+
VerifyPasswordAsync(store: IUserPasswordStore_1<TUser>, user: TUser, password: string): Task_1<PasswordVerificationResult>;
|
|
2007
|
+
VerifyTwoFactorTokenAsync(user: TUser, tokenProvider: string, token: string): Task_1<System_Internal.Boolean>;
|
|
2008
|
+
VerifyUserTokenAsync(user: TUser, tokenProvider: string, purpose: string, token: string): Task_1<System_Internal.Boolean>;
|
|
1781
2009
|
}
|
|
1782
2010
|
|
|
1783
2011
|
|
|
1784
2012
|
export const UserManager_1: {
|
|
1785
|
-
new<TUser>(store: IUserStore_1<TUser>, optionsAccessor:
|
|
2013
|
+
new<TUser>(store: IUserStore_1<TUser>, optionsAccessor: IOptions_1<IdentityOptions>, passwordHasher: IPasswordHasher_1<TUser>, userValidators: IEnumerable_1<IUserValidator_1<TUser>>, passwordValidators: IEnumerable_1<IPasswordValidator_1<TUser>>, keyNormalizer: ILookupNormalizer, errors: IdentityErrorDescriber, services: IServiceProvider, logger: ILogger_1<UserManager_1<TUser>>): UserManager_1<TUser>;
|
|
1786
2014
|
readonly ResetPasswordTokenPurpose: string;
|
|
1787
2015
|
readonly ChangePhoneNumberTokenPurpose: string;
|
|
1788
2016
|
readonly ConfirmEmailTokenPurpose: string;
|
|
@@ -1793,6 +2021,8 @@ export const UserManager_1: {
|
|
|
1793
2021
|
export type UserManager_1<TUser> = UserManager_1$instance<TUser>;
|
|
1794
2022
|
|
|
1795
2023
|
export interface UserOptions$instance {
|
|
2024
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_UserOptions: never;
|
|
2025
|
+
|
|
1796
2026
|
AllowedUserNameCharacters: string;
|
|
1797
2027
|
RequireUniqueEmail: boolean;
|
|
1798
2028
|
}
|
|
@@ -1806,6 +2036,8 @@ export const UserOptions: {
|
|
|
1806
2036
|
export type UserOptions = UserOptions$instance;
|
|
1807
2037
|
|
|
1808
2038
|
export interface UserPasskeyInfo$instance {
|
|
2039
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_UserPasskeyInfo: never;
|
|
2040
|
+
|
|
1809
2041
|
readonly AttestationObject: byte[];
|
|
1810
2042
|
readonly ClientDataJson: byte[];
|
|
1811
2043
|
readonly CreatedAt: DateTimeOffset;
|
|
@@ -1828,63 +2060,80 @@ export const UserPasskeyInfo: {
|
|
|
1828
2060
|
|
|
1829
2061
|
export type UserPasskeyInfo = UserPasskeyInfo$instance;
|
|
1830
2062
|
|
|
1831
|
-
export interface UserStoreBase_5$instance<TUser extends IdentityUser_1<TKey>, TKey extends (
|
|
2063
|
+
export interface UserStoreBase_5$instance<TUser extends IdentityUser_1<TKey>, TKey extends (IEquatable_1<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> {
|
|
2064
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_UserStoreBase_5: never;
|
|
2065
|
+
|
|
2066
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IQueryableUserStore_1: never;
|
|
2067
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserAuthenticationTokenStore_1: never;
|
|
2068
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserAuthenticatorKeyStore_1: never;
|
|
2069
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserClaimStore_1: never;
|
|
2070
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserEmailStore_1: never;
|
|
2071
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserLockoutStore_1: never;
|
|
2072
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserLoginStore_1: never;
|
|
2073
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPasswordStore_1: never;
|
|
2074
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPhoneNumberStore_1: never;
|
|
2075
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserSecurityStampStore_1: never;
|
|
2076
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserStore_1: never;
|
|
2077
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorRecoveryCodeStore_1: never;
|
|
2078
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorStore_1: never;
|
|
2079
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2080
|
+
|
|
1832
2081
|
ErrorDescriber: IdentityErrorDescriber;
|
|
1833
|
-
readonly Users:
|
|
1834
|
-
AddClaimsAsync(user: TUser, claims:
|
|
2082
|
+
readonly Users: IQueryable_1<TUser>;
|
|
2083
|
+
AddClaimsAsync(user: TUser, claims: IEnumerable_1<Claim>, cancellationToken?: CancellationToken): Task;
|
|
1835
2084
|
AddLoginAsync(user: TUser, login: UserLoginInfo, cancellationToken?: CancellationToken): Task;
|
|
1836
2085
|
AddUserTokenAsync(token: TUserToken): Task;
|
|
1837
2086
|
ConvertIdFromString(id: string): TKey | undefined;
|
|
1838
2087
|
ConvertIdToString(id: TKey): string | undefined;
|
|
1839
|
-
CountCodesAsync(user: TUser, cancellationToken: CancellationToken):
|
|
1840
|
-
CreateAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
2088
|
+
CountCodesAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.Int32>;
|
|
2089
|
+
CreateAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<IdentityResult>;
|
|
1841
2090
|
CreateUserClaim(user: TUser, claim: Claim): TUserClaim;
|
|
1842
2091
|
CreateUserLogin(user: TUser, login: UserLoginInfo): TUserLogin;
|
|
1843
2092
|
CreateUserToken(user: TUser, loginProvider: string, name: string, value: string): TUserToken;
|
|
1844
|
-
DeleteAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
2093
|
+
DeleteAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<IdentityResult>;
|
|
1845
2094
|
Dispose(): void;
|
|
1846
|
-
FindByEmailAsync(normalizedEmail: string, cancellationToken?: CancellationToken):
|
|
1847
|
-
FindByIdAsync(userId: string, cancellationToken?: CancellationToken):
|
|
1848
|
-
FindByLoginAsync(loginProvider: string, providerKey: string, cancellationToken?: CancellationToken):
|
|
1849
|
-
FindByNameAsync(normalizedUserName: string, cancellationToken?: CancellationToken):
|
|
1850
|
-
FindTokenAsync(user: TUser, loginProvider: string, name: string, cancellationToken: CancellationToken):
|
|
1851
|
-
FindUserAsync(userId: TKey, cancellationToken: CancellationToken):
|
|
1852
|
-
FindUserLoginAsync(userId: TKey, loginProvider: string, providerKey: string, cancellationToken: CancellationToken):
|
|
1853
|
-
FindUserLoginAsync(loginProvider: string, providerKey: string, cancellationToken: CancellationToken):
|
|
1854
|
-
GetAccessFailedCountAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1855
|
-
GetAuthenticatorKeyAsync(user: TUser, cancellationToken: CancellationToken):
|
|
1856
|
-
GetClaimsAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1857
|
-
GetEmailAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1858
|
-
GetEmailConfirmedAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1859
|
-
GetLockoutEnabledAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1860
|
-
GetLockoutEndDateAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1861
|
-
GetLoginsAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1862
|
-
GetNormalizedEmailAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1863
|
-
GetNormalizedUserNameAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1864
|
-
GetPasswordHashAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1865
|
-
GetPhoneNumberAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1866
|
-
GetPhoneNumberConfirmedAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1867
|
-
GetSecurityStampAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1868
|
-
GetTokenAsync(user: TUser, loginProvider: string, name: string, cancellationToken: CancellationToken):
|
|
1869
|
-
GetTwoFactorEnabledAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1870
|
-
GetUserIdAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1871
|
-
GetUserNameAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1872
|
-
GetUsersForClaimAsync(claim: Claim, cancellationToken?: CancellationToken):
|
|
1873
|
-
HasPasswordAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1874
|
-
IncrementAccessFailedCountAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1875
|
-
RedeemCodeAsync(user: TUser, code: string, cancellationToken: CancellationToken):
|
|
1876
|
-
RemoveClaimsAsync(user: TUser, claims:
|
|
2095
|
+
FindByEmailAsync(normalizedEmail: string, cancellationToken?: CancellationToken): Task_1<TUser | undefined>;
|
|
2096
|
+
FindByIdAsync(userId: string, cancellationToken?: CancellationToken): Task_1<TUser | undefined>;
|
|
2097
|
+
FindByLoginAsync(loginProvider: string, providerKey: string, cancellationToken?: CancellationToken): Task_1<TUser | undefined>;
|
|
2098
|
+
FindByNameAsync(normalizedUserName: string, cancellationToken?: CancellationToken): Task_1<TUser | undefined>;
|
|
2099
|
+
FindTokenAsync(user: TUser, loginProvider: string, name: string, cancellationToken: CancellationToken): Task_1<TUserToken | undefined>;
|
|
2100
|
+
FindUserAsync(userId: TKey, cancellationToken: CancellationToken): Task_1<TUser | undefined>;
|
|
2101
|
+
FindUserLoginAsync(userId: TKey, loginProvider: string, providerKey: string, cancellationToken: CancellationToken): Task_1<TUserLogin | undefined>;
|
|
2102
|
+
FindUserLoginAsync(loginProvider: string, providerKey: string, cancellationToken: CancellationToken): Task_1<TUserLogin | undefined>;
|
|
2103
|
+
GetAccessFailedCountAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
2104
|
+
GetAuthenticatorKeyAsync(user: TUser, cancellationToken: CancellationToken): Task_1<string | undefined>;
|
|
2105
|
+
GetClaimsAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<IList_1<Claim>>;
|
|
2106
|
+
GetEmailAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
2107
|
+
GetEmailConfirmedAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
2108
|
+
GetLockoutEnabledAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
2109
|
+
GetLockoutEndDateAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<Nullable_1<DateTimeOffset>>;
|
|
2110
|
+
GetLoginsAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<IList_1<UserLoginInfo>>;
|
|
2111
|
+
GetNormalizedEmailAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
2112
|
+
GetNormalizedUserNameAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
2113
|
+
GetPasswordHashAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
2114
|
+
GetPhoneNumberAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
2115
|
+
GetPhoneNumberConfirmedAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
2116
|
+
GetSecurityStampAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
2117
|
+
GetTokenAsync(user: TUser, loginProvider: string, name: string, cancellationToken: CancellationToken): Task_1<string | undefined>;
|
|
2118
|
+
GetTwoFactorEnabledAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
2119
|
+
GetUserIdAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<System_Internal.String>;
|
|
2120
|
+
GetUserNameAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
2121
|
+
GetUsersForClaimAsync(claim: Claim, cancellationToken?: CancellationToken): Task_1<IList_1<TUser>>;
|
|
2122
|
+
HasPasswordAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
2123
|
+
IncrementAccessFailedCountAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
2124
|
+
RedeemCodeAsync(user: TUser, code: string, cancellationToken: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
2125
|
+
RemoveClaimsAsync(user: TUser, claims: IEnumerable_1<Claim>, cancellationToken?: CancellationToken): Task;
|
|
1877
2126
|
RemoveLoginAsync(user: TUser, loginProvider: string, providerKey: string, cancellationToken?: CancellationToken): Task;
|
|
1878
2127
|
RemoveTokenAsync(user: TUser, loginProvider: string, name: string, cancellationToken: CancellationToken): Task;
|
|
1879
2128
|
RemoveUserTokenAsync(token: TUserToken): Task;
|
|
1880
2129
|
ReplaceClaimAsync(user: TUser, claim: Claim, newClaim: Claim, cancellationToken?: CancellationToken): Task;
|
|
1881
|
-
ReplaceCodesAsync(user: TUser, recoveryCodes:
|
|
2130
|
+
ReplaceCodesAsync(user: TUser, recoveryCodes: IEnumerable_1<System_Internal.String>, cancellationToken: CancellationToken): Task;
|
|
1882
2131
|
ResetAccessFailedCountAsync(user: TUser, cancellationToken?: CancellationToken): Task;
|
|
1883
2132
|
SetAuthenticatorKeyAsync(user: TUser, key: string, cancellationToken: CancellationToken): Task;
|
|
1884
2133
|
SetEmailAsync(user: TUser, email: string, cancellationToken?: CancellationToken): Task;
|
|
1885
2134
|
SetEmailConfirmedAsync(user: TUser, confirmed: boolean, cancellationToken?: CancellationToken): Task;
|
|
1886
2135
|
SetLockoutEnabledAsync(user: TUser, enabled: boolean, cancellationToken?: CancellationToken): Task;
|
|
1887
|
-
SetLockoutEndDateAsync(user: TUser, lockoutEnd:
|
|
2136
|
+
SetLockoutEndDateAsync(user: TUser, lockoutEnd: Nullable_1<DateTimeOffset>, cancellationToken?: CancellationToken): Task;
|
|
1888
2137
|
SetNormalizedEmailAsync(user: TUser, normalizedEmail: string, cancellationToken?: CancellationToken): Task;
|
|
1889
2138
|
SetNormalizedUserNameAsync(user: TUser, normalizedName: string, cancellationToken?: CancellationToken): Task;
|
|
1890
2139
|
SetPasswordHashAsync(user: TUser, passwordHash: string, cancellationToken?: CancellationToken): Task;
|
|
@@ -1894,15 +2143,15 @@ export interface UserStoreBase_5$instance<TUser extends IdentityUser_1<TKey>, TK
|
|
|
1894
2143
|
SetTokenAsync(user: TUser, loginProvider: string, name: string, value: string, cancellationToken: CancellationToken): Task;
|
|
1895
2144
|
SetTwoFactorEnabledAsync(user: TUser, enabled: boolean, cancellationToken?: CancellationToken): Task;
|
|
1896
2145
|
SetUserNameAsync(user: TUser, userName: string, cancellationToken?: CancellationToken): Task;
|
|
1897
|
-
UpdateAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
2146
|
+
UpdateAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<IdentityResult>;
|
|
1898
2147
|
}
|
|
1899
2148
|
|
|
1900
2149
|
|
|
1901
|
-
export const UserStoreBase_5: (abstract new<TUser extends IdentityUser_1<TKey>, TKey extends (
|
|
2150
|
+
export const UserStoreBase_5: (abstract new<TUser extends IdentityUser_1<TKey>, TKey extends (IEquatable_1<TKey> | number | string | boolean), TUserClaim extends IdentityUserClaim_1<TKey>, TUserLogin extends IdentityUserLogin_1<TKey>, TUserToken extends IdentityUserToken_1<TKey>>(describer: IdentityErrorDescriber) => UserStoreBase_5<TUser, TKey, TUserClaim, TUserLogin, TUserToken>) & {
|
|
1902
2151
|
};
|
|
1903
2152
|
|
|
1904
2153
|
|
|
1905
|
-
export interface __UserStoreBase_5$views<TUser extends IdentityUser_1<TKey>, TKey extends (
|
|
2154
|
+
export interface __UserStoreBase_5$views<TUser extends IdentityUser_1<TKey>, TKey extends (IEquatable_1<TKey> | number | string | boolean), TUserClaim extends IdentityUserClaim_1<TKey>, TUserLogin extends IdentityUserLogin_1<TKey>, TUserToken extends IdentityUserToken_1<TKey>> {
|
|
1906
2155
|
As_IQueryableUserStore_1(): IQueryableUserStore_1$instance<TUser>;
|
|
1907
2156
|
As_IUserAuthenticationTokenStore_1(): IUserAuthenticationTokenStore_1$instance<TUser>;
|
|
1908
2157
|
As_IUserClaimStore_1(): IUserClaimStore_1$instance<TUser>;
|
|
@@ -1915,47 +2164,65 @@ export interface __UserStoreBase_5$views<TUser extends IdentityUser_1<TKey>, TKe
|
|
|
1915
2164
|
As_IUserTwoFactorStore_1(): IUserTwoFactorStore_1$instance<TUser>;
|
|
1916
2165
|
}
|
|
1917
2166
|
|
|
1918
|
-
export type UserStoreBase_5<TUser extends IdentityUser_1<TKey>, TKey extends (
|
|
2167
|
+
export type UserStoreBase_5<TUser extends IdentityUser_1<TKey>, TKey extends (IEquatable_1<TKey> | number | string | boolean), TUserClaim extends IdentityUserClaim_1<TKey>, TUserLogin extends IdentityUserLogin_1<TKey>, TUserToken extends IdentityUserToken_1<TKey>> = UserStoreBase_5$instance<TUser, TKey, TUserClaim, TUserLogin, TUserToken> & __UserStoreBase_5$views<TUser, TKey, TUserClaim, TUserLogin, TUserToken>;
|
|
2168
|
+
|
|
1919
2169
|
|
|
2170
|
+
export interface UserStoreBase_8$instance<TUser extends IdentityUser_1<TKey>, TRole extends IdentityRole_1<TKey>, TKey extends (IEquatable_1<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> {
|
|
2171
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_UserStoreBase_8: never;
|
|
1920
2172
|
|
|
1921
|
-
|
|
1922
|
-
|
|
2173
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IQueryableUserStore_1: never;
|
|
2174
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserAuthenticationTokenStore_1: never;
|
|
2175
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserAuthenticatorKeyStore_1: never;
|
|
2176
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserClaimStore_1: never;
|
|
2177
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserEmailStore_1: never;
|
|
2178
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserLockoutStore_1: never;
|
|
2179
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserLoginStore_1: never;
|
|
2180
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPasswordStore_1: never;
|
|
2181
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserPhoneNumberStore_1: never;
|
|
2182
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserRoleStore_1: never;
|
|
2183
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserSecurityStampStore_1: never;
|
|
2184
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserStore_1: never;
|
|
2185
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorRecoveryCodeStore_1: never;
|
|
2186
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserTwoFactorStore_1: never;
|
|
2187
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
2188
|
+
|
|
2189
|
+
AddClaimsAsync(user: TUser, claims: IEnumerable_1<Claim>, cancellationToken?: CancellationToken): Task;
|
|
1923
2190
|
AddLoginAsync(user: TUser, login: UserLoginInfo, cancellationToken?: CancellationToken): Task;
|
|
1924
2191
|
AddToRoleAsync(user: TUser, normalizedRoleName: string, cancellationToken?: CancellationToken): Task;
|
|
1925
|
-
CountCodesAsync(user: TUser, cancellationToken: CancellationToken):
|
|
2192
|
+
CountCodesAsync(user: TUser, cancellationToken: CancellationToken): Task_1<System_Internal.Int32>;
|
|
1926
2193
|
CreateUserRole(user: TUser, role: TRole): TUserRole;
|
|
1927
|
-
FindByEmailAsync(normalizedEmail: string, cancellationToken?: CancellationToken):
|
|
1928
|
-
FindByIdAsync(userId: string, cancellationToken?: CancellationToken):
|
|
1929
|
-
FindByLoginAsync(loginProvider: string, providerKey: string, cancellationToken?: CancellationToken):
|
|
1930
|
-
FindRoleAsync(normalizedRoleName: string, cancellationToken: CancellationToken):
|
|
1931
|
-
FindUserRoleAsync(userId: TKey, roleId: TKey, cancellationToken: CancellationToken):
|
|
1932
|
-
GetAuthenticatorKeyAsync(user: TUser, cancellationToken: CancellationToken):
|
|
1933
|
-
GetClaimsAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1934
|
-
GetEmailAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1935
|
-
GetLockoutEndDateAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1936
|
-
GetLoginsAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1937
|
-
GetPasswordHashAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1938
|
-
GetPhoneNumberAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1939
|
-
GetRolesAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1940
|
-
GetSecurityStampAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1941
|
-
GetTokenAsync(user: TUser, loginProvider: string, name: string, cancellationToken: CancellationToken):
|
|
1942
|
-
GetTwoFactorEnabledAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1943
|
-
GetUserIdAsync(user: TUser, cancellationToken?: CancellationToken):
|
|
1944
|
-
GetUsersForClaimAsync(claim: Claim, cancellationToken?: CancellationToken):
|
|
1945
|
-
GetUsersInRoleAsync(normalizedRoleName: string, cancellationToken?: CancellationToken):
|
|
1946
|
-
IsInRoleAsync(user: TUser, normalizedRoleName: string, cancellationToken?: CancellationToken):
|
|
1947
|
-
RedeemCodeAsync(user: TUser, code: string, cancellationToken: CancellationToken):
|
|
2194
|
+
FindByEmailAsync(normalizedEmail: string, cancellationToken?: CancellationToken): Task_1<TUser | undefined>;
|
|
2195
|
+
FindByIdAsync(userId: string, cancellationToken?: CancellationToken): Task_1<TUser | undefined>;
|
|
2196
|
+
FindByLoginAsync(loginProvider: string, providerKey: string, cancellationToken?: CancellationToken): Task_1<TUser | undefined>;
|
|
2197
|
+
FindRoleAsync(normalizedRoleName: string, cancellationToken: CancellationToken): Task_1<TRole | undefined>;
|
|
2198
|
+
FindUserRoleAsync(userId: TKey, roleId: TKey, cancellationToken: CancellationToken): Task_1<TUserRole | undefined>;
|
|
2199
|
+
GetAuthenticatorKeyAsync(user: TUser, cancellationToken: CancellationToken): Task_1<string | undefined>;
|
|
2200
|
+
GetClaimsAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<IList_1<Claim>>;
|
|
2201
|
+
GetEmailAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
2202
|
+
GetLockoutEndDateAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<Nullable_1<DateTimeOffset>>;
|
|
2203
|
+
GetLoginsAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<IList_1<UserLoginInfo>>;
|
|
2204
|
+
GetPasswordHashAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
2205
|
+
GetPhoneNumberAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
2206
|
+
GetRolesAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<IList_1<System_Internal.String>>;
|
|
2207
|
+
GetSecurityStampAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<string | undefined>;
|
|
2208
|
+
GetTokenAsync(user: TUser, loginProvider: string, name: string, cancellationToken: CancellationToken): Task_1<string | undefined>;
|
|
2209
|
+
GetTwoFactorEnabledAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
2210
|
+
GetUserIdAsync(user: TUser, cancellationToken?: CancellationToken): Task_1<System_Internal.String>;
|
|
2211
|
+
GetUsersForClaimAsync(claim: Claim, cancellationToken?: CancellationToken): Task_1<IList_1<TUser>>;
|
|
2212
|
+
GetUsersInRoleAsync(normalizedRoleName: string, cancellationToken?: CancellationToken): Task_1<IList_1<TUser>>;
|
|
2213
|
+
IsInRoleAsync(user: TUser, normalizedRoleName: string, cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
2214
|
+
RedeemCodeAsync(user: TUser, code: string, cancellationToken: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
1948
2215
|
RemoveFromRoleAsync(user: TUser, normalizedRoleName: string, cancellationToken?: CancellationToken): Task;
|
|
1949
2216
|
RemoveLoginAsync(user: TUser, loginProvider: string, providerKey: string, cancellationToken?: CancellationToken): Task;
|
|
1950
2217
|
RemoveTokenAsync(user: TUser, loginProvider: string, name: string, cancellationToken: CancellationToken): Task;
|
|
1951
2218
|
ReplaceClaimAsync(user: TUser, claim: Claim, newClaim: Claim, cancellationToken?: CancellationToken): Task;
|
|
1952
|
-
ReplaceCodesAsync(user: TUser, recoveryCodes:
|
|
2219
|
+
ReplaceCodesAsync(user: TUser, recoveryCodes: IEnumerable_1<System_Internal.String>, cancellationToken: CancellationToken): Task;
|
|
1953
2220
|
ResetAccessFailedCountAsync(user: TUser, cancellationToken?: CancellationToken): Task;
|
|
1954
2221
|
SetAuthenticatorKeyAsync(user: TUser, key: string, cancellationToken: CancellationToken): Task;
|
|
1955
2222
|
SetEmailAsync(user: TUser, email: string, cancellationToken?: CancellationToken): Task;
|
|
1956
2223
|
SetEmailConfirmedAsync(user: TUser, confirmed: boolean, cancellationToken?: CancellationToken): Task;
|
|
1957
2224
|
SetLockoutEnabledAsync(user: TUser, enabled: boolean, cancellationToken?: CancellationToken): Task;
|
|
1958
|
-
SetLockoutEndDateAsync(user: TUser, lockoutEnd:
|
|
2225
|
+
SetLockoutEndDateAsync(user: TUser, lockoutEnd: Nullable_1<DateTimeOffset>, cancellationToken?: CancellationToken): Task;
|
|
1959
2226
|
SetPasswordHashAsync(user: TUser, passwordHash: string, cancellationToken?: CancellationToken): Task;
|
|
1960
2227
|
SetPhoneNumberAsync(user: TUser, phoneNumber: string, cancellationToken?: CancellationToken): Task;
|
|
1961
2228
|
SetPhoneNumberConfirmedAsync(user: TUser, confirmed: boolean, cancellationToken?: CancellationToken): Task;
|
|
@@ -1966,11 +2233,11 @@ export interface UserStoreBase_8$instance<TUser extends IdentityUser_1<TKey>, TR
|
|
|
1966
2233
|
}
|
|
1967
2234
|
|
|
1968
2235
|
|
|
1969
|
-
export const UserStoreBase_8: (abstract new<TUser extends IdentityUser_1<TKey>, TRole extends IdentityRole_1<TKey>, TKey extends (
|
|
2236
|
+
export const UserStoreBase_8: (abstract new<TUser extends IdentityUser_1<TKey>, TRole extends IdentityRole_1<TKey>, TKey extends (IEquatable_1<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>>(describer: IdentityErrorDescriber) => UserStoreBase_8<TUser, TRole, TKey, TUserClaim, TUserRole, TUserLogin, TUserToken, TRoleClaim>) & {
|
|
1970
2237
|
};
|
|
1971
2238
|
|
|
1972
2239
|
|
|
1973
|
-
export interface __UserStoreBase_8$views<TUser extends IdentityUser_1<TKey>, TRole extends IdentityRole_1<TKey>, TKey extends (
|
|
2240
|
+
export interface __UserStoreBase_8$views<TUser extends IdentityUser_1<TKey>, TRole extends IdentityRole_1<TKey>, TKey extends (IEquatable_1<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>> {
|
|
1974
2241
|
As_IQueryableUserStore_1(): IQueryableUserStore_1$instance<TUser>;
|
|
1975
2242
|
As_IUserAuthenticationTokenStore_1(): IUserAuthenticationTokenStore_1$instance<TUser>;
|
|
1976
2243
|
As_IUserClaimStore_1(): IUserClaimStore_1$instance<TUser>;
|
|
@@ -1984,12 +2251,16 @@ export interface __UserStoreBase_8$views<TUser extends IdentityUser_1<TKey>, TRo
|
|
|
1984
2251
|
As_IUserTwoFactorStore_1(): IUserTwoFactorStore_1$instance<TUser>;
|
|
1985
2252
|
}
|
|
1986
2253
|
|
|
1987
|
-
export type UserStoreBase_8<TUser extends IdentityUser_1<TKey>, TRole extends IdentityRole_1<TKey>, TKey extends (
|
|
2254
|
+
export type UserStoreBase_8<TUser extends IdentityUser_1<TKey>, TRole extends IdentityRole_1<TKey>, TKey extends (IEquatable_1<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>> = UserStoreBase_8$instance<TUser, TRole, TKey, TUserClaim, TUserRole, TUserLogin, TUserToken, TRoleClaim> & __UserStoreBase_8$views<TUser, TRole, TKey, TUserClaim, TUserRole, TUserLogin, TUserToken, TRoleClaim>;
|
|
2255
|
+
|
|
1988
2256
|
|
|
2257
|
+
export interface UserValidator_1$instance<TUser> extends IUserValidator_1$instance<TUser> {
|
|
2258
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Identity_UserValidator_1: never;
|
|
2259
|
+
|
|
2260
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Identity_IUserValidator_1: never;
|
|
1989
2261
|
|
|
1990
|
-
export interface UserValidator_1$instance<TUser> {
|
|
1991
2262
|
Describer: IdentityErrorDescriber;
|
|
1992
|
-
ValidateAsync(manager: UserManager_1<TUser>, user: TUser):
|
|
2263
|
+
ValidateAsync(manager: UserManager_1<TUser>, user: TUser): Task_1<IdentityResult>;
|
|
1993
2264
|
}
|
|
1994
2265
|
|
|
1995
2266
|
|
|
@@ -2002,8 +2273,6 @@ export interface __UserValidator_1$views<TUser> {
|
|
|
2002
2273
|
As_IUserValidator_1(): IUserValidator_1$instance<TUser>;
|
|
2003
2274
|
}
|
|
2004
2275
|
|
|
2005
|
-
export interface UserValidator_1$instance<TUser> extends IUserValidator_1$instance<TUser> {}
|
|
2006
|
-
|
|
2007
2276
|
export type UserValidator_1<TUser> = UserValidator_1$instance<TUser> & __UserValidator_1$views<TUser>;
|
|
2008
2277
|
|
|
2009
2278
|
|
|
@@ -2017,12 +2286,12 @@ export abstract class IdentityBuilderExtensions$instance {
|
|
|
2017
2286
|
export type IdentityBuilderExtensions = IdentityBuilderExtensions$instance;
|
|
2018
2287
|
|
|
2019
2288
|
export abstract class IdentityCookieAuthenticationBuilderExtensions$instance {
|
|
2020
|
-
static AddApplicationCookie(builder: AuthenticationBuilder):
|
|
2021
|
-
static AddExternalCookie(builder: AuthenticationBuilder):
|
|
2022
|
-
static AddIdentityCookies(builder: AuthenticationBuilder, configureCookies:
|
|
2289
|
+
static AddApplicationCookie(builder: AuthenticationBuilder): OptionsBuilder_1<CookieAuthenticationOptions>;
|
|
2290
|
+
static AddExternalCookie(builder: AuthenticationBuilder): OptionsBuilder_1<CookieAuthenticationOptions>;
|
|
2291
|
+
static AddIdentityCookies(builder: AuthenticationBuilder, configureCookies: Action_1<IdentityCookiesBuilder>): IdentityCookiesBuilder;
|
|
2023
2292
|
static AddIdentityCookies(builder: AuthenticationBuilder): IdentityCookiesBuilder;
|
|
2024
|
-
static AddTwoFactorRememberMeCookie(builder: AuthenticationBuilder):
|
|
2025
|
-
static AddTwoFactorUserIdCookie(builder: AuthenticationBuilder):
|
|
2293
|
+
static AddTwoFactorRememberMeCookie(builder: AuthenticationBuilder): OptionsBuilder_1<CookieAuthenticationOptions>;
|
|
2294
|
+
static AddTwoFactorUserIdCookie(builder: AuthenticationBuilder): OptionsBuilder_1<CookieAuthenticationOptions>;
|
|
2026
2295
|
}
|
|
2027
2296
|
|
|
2028
2297
|
|