@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
|
@@ -11,12 +11,14 @@ import type { FilterDescriptor } from "../../Microsoft.AspNetCore.Mvc.Filters/in
|
|
|
11
11
|
import type { BindingInfo } from "../../Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.js";
|
|
12
12
|
import type { AttributeRouteInfo } from "../../Microsoft.AspNetCore.Mvc.Routing/internal/index.js";
|
|
13
13
|
import type { ActionContext } from "../../Microsoft.AspNetCore.Mvc/internal/index.js";
|
|
14
|
-
import type {
|
|
15
|
-
import
|
|
16
|
-
import
|
|
17
|
-
import type {
|
|
14
|
+
import type { IDictionary_2, IList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
15
|
+
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
16
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
17
|
+
import type { Int32, Object as ClrObject, String as ClrString, Type, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
18
18
|
|
|
19
19
|
export interface IActionDescriptorProvider$instance {
|
|
20
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Abstractions_IActionDescriptorProvider: never;
|
|
21
|
+
|
|
20
22
|
readonly Order: int;
|
|
21
23
|
OnProvidersExecuting(context: ActionDescriptorProviderContext): void;
|
|
22
24
|
}
|
|
@@ -25,6 +27,8 @@ export interface IActionDescriptorProvider$instance {
|
|
|
25
27
|
export type IActionDescriptorProvider = IActionDescriptorProvider$instance;
|
|
26
28
|
|
|
27
29
|
export interface IActionInvoker$instance {
|
|
30
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Abstractions_IActionInvoker: never;
|
|
31
|
+
|
|
28
32
|
InvokeAsync(): Task;
|
|
29
33
|
}
|
|
30
34
|
|
|
@@ -32,6 +36,8 @@ export interface IActionInvoker$instance {
|
|
|
32
36
|
export type IActionInvoker = IActionInvoker$instance;
|
|
33
37
|
|
|
34
38
|
export interface IActionInvokerProvider$instance {
|
|
39
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_Abstractions_IActionInvokerProvider: never;
|
|
40
|
+
|
|
35
41
|
readonly Order: int;
|
|
36
42
|
OnProvidersExecuting(context: ActionInvokerProviderContext): void;
|
|
37
43
|
}
|
|
@@ -40,19 +46,21 @@ export interface IActionInvokerProvider$instance {
|
|
|
40
46
|
export type IActionInvokerProvider = IActionInvokerProvider$instance;
|
|
41
47
|
|
|
42
48
|
export interface ActionDescriptor$instance {
|
|
43
|
-
|
|
44
|
-
|
|
49
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Abstractions_ActionDescriptor: never;
|
|
50
|
+
|
|
51
|
+
get ActionConstraints(): IList_1<IActionConstraintMetadata> | undefined;
|
|
52
|
+
set ActionConstraints(value: IList_1<IActionConstraintMetadata> | undefined);
|
|
45
53
|
get AttributeRouteInfo(): AttributeRouteInfo | undefined;
|
|
46
54
|
set AttributeRouteInfo(value: AttributeRouteInfo | undefined);
|
|
47
|
-
BoundProperties:
|
|
55
|
+
BoundProperties: IList_1<ParameterDescriptor>;
|
|
48
56
|
get DisplayName(): string | undefined;
|
|
49
57
|
set DisplayName(value: string | undefined);
|
|
50
|
-
EndpointMetadata:
|
|
51
|
-
FilterDescriptors:
|
|
58
|
+
EndpointMetadata: IList_1<unknown>;
|
|
59
|
+
FilterDescriptors: IList_1<FilterDescriptor>;
|
|
52
60
|
readonly Id: string;
|
|
53
|
-
Parameters:
|
|
54
|
-
Properties:
|
|
55
|
-
RouteValues:
|
|
61
|
+
Parameters: IList_1<ParameterDescriptor>;
|
|
62
|
+
Properties: IDictionary_2<unknown, unknown | undefined>;
|
|
63
|
+
RouteValues: IDictionary_2<System_Internal.String, string | undefined>;
|
|
56
64
|
}
|
|
57
65
|
|
|
58
66
|
|
|
@@ -64,7 +72,9 @@ export const ActionDescriptor: {
|
|
|
64
72
|
export type ActionDescriptor = ActionDescriptor$instance;
|
|
65
73
|
|
|
66
74
|
export interface ActionDescriptorProviderContext$instance {
|
|
67
|
-
readonly
|
|
75
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Abstractions_ActionDescriptorProviderContext: never;
|
|
76
|
+
|
|
77
|
+
readonly Results: IList_1<ActionDescriptor>;
|
|
68
78
|
}
|
|
69
79
|
|
|
70
80
|
|
|
@@ -76,6 +86,8 @@ export const ActionDescriptorProviderContext: {
|
|
|
76
86
|
export type ActionDescriptorProviderContext = ActionDescriptorProviderContext$instance;
|
|
77
87
|
|
|
78
88
|
export interface ActionInvokerProviderContext$instance {
|
|
89
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Abstractions_ActionInvokerProviderContext: never;
|
|
90
|
+
|
|
79
91
|
readonly ActionContext: ActionContext;
|
|
80
92
|
get Result(): IActionInvoker | undefined;
|
|
81
93
|
set Result(value: IActionInvoker | undefined);
|
|
@@ -90,6 +102,8 @@ export const ActionInvokerProviderContext: {
|
|
|
90
102
|
export type ActionInvokerProviderContext = ActionInvokerProviderContext$instance;
|
|
91
103
|
|
|
92
104
|
export interface ParameterDescriptor$instance {
|
|
105
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_Abstractions_ParameterDescriptor: never;
|
|
106
|
+
|
|
93
107
|
get BindingInfo(): BindingInfo | undefined;
|
|
94
108
|
set BindingInfo(value: BindingInfo | undefined);
|
|
95
109
|
Name: string;
|
|
@@ -9,11 +9,13 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
9
9
|
import type { HttpContext } from "../../Microsoft.AspNetCore.Http/internal/index.js";
|
|
10
10
|
import type { ActionDescriptor } from "../../Microsoft.AspNetCore.Mvc.Abstractions/internal/index.js";
|
|
11
11
|
import type { RouteContext } from "../../Microsoft.AspNetCore.Routing/internal/index.js";
|
|
12
|
-
import type {
|
|
13
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
14
|
-
import type { Attribute, Boolean as ClrBoolean, Int32, IServiceProvider, Object as ClrObject, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System.js";
|
|
12
|
+
import type { IEnumerable_1, IList_1, IReadOnlyList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
13
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
14
|
+
import type { Attribute, Boolean as ClrBoolean, Int32, IServiceProvider, Object as ClrObject, String as ClrString, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
15
15
|
|
|
16
16
|
export interface IActionConstraint$instance extends IActionConstraintMetadata {
|
|
17
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IActionConstraint: never;
|
|
18
|
+
|
|
17
19
|
readonly Order: int;
|
|
18
20
|
Accept(context: ActionConstraintContext): boolean;
|
|
19
21
|
}
|
|
@@ -24,6 +26,8 @@ export interface IActionConstraint$instance extends IActionConstraintMetadata$in
|
|
|
24
26
|
export type IActionConstraint = IActionConstraint$instance;
|
|
25
27
|
|
|
26
28
|
export interface IActionConstraintFactory$instance extends IActionConstraintMetadata {
|
|
29
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IActionConstraintFactory: never;
|
|
30
|
+
|
|
27
31
|
readonly IsReusable: boolean;
|
|
28
32
|
CreateInstance(services: IServiceProvider): IActionConstraint;
|
|
29
33
|
}
|
|
@@ -34,12 +38,16 @@ export interface IActionConstraintFactory$instance extends IActionConstraintMeta
|
|
|
34
38
|
export type IActionConstraintFactory = IActionConstraintFactory$instance;
|
|
35
39
|
|
|
36
40
|
export interface IActionConstraintMetadata$instance {
|
|
41
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IActionConstraintMetadata: never;
|
|
42
|
+
|
|
37
43
|
}
|
|
38
44
|
|
|
39
45
|
|
|
40
46
|
export type IActionConstraintMetadata = IActionConstraintMetadata$instance;
|
|
41
47
|
|
|
42
48
|
export interface IActionConstraintProvider$instance {
|
|
49
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IActionConstraintProvider: never;
|
|
50
|
+
|
|
43
51
|
readonly Order: int;
|
|
44
52
|
OnProvidersExecuting(context: ActionConstraintProviderContext): void;
|
|
45
53
|
}
|
|
@@ -48,20 +56,24 @@ export interface IActionConstraintProvider$instance {
|
|
|
48
56
|
export type IActionConstraintProvider = IActionConstraintProvider$instance;
|
|
49
57
|
|
|
50
58
|
export interface ActionSelectorCandidate$instance {
|
|
59
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ActionConstraints_ActionSelectorCandidate: never;
|
|
60
|
+
|
|
51
61
|
readonly Action: ActionDescriptor;
|
|
52
|
-
readonly Constraints:
|
|
62
|
+
readonly Constraints: IReadOnlyList_1<IActionConstraint> | undefined;
|
|
53
63
|
}
|
|
54
64
|
|
|
55
65
|
|
|
56
66
|
export const ActionSelectorCandidate: {
|
|
57
|
-
new(action: ActionDescriptor, constraints:
|
|
67
|
+
new(action: ActionDescriptor, constraints: IReadOnlyList_1<IActionConstraint>): ActionSelectorCandidate;
|
|
58
68
|
};
|
|
59
69
|
|
|
60
70
|
|
|
61
71
|
export type ActionSelectorCandidate = ActionSelectorCandidate$instance;
|
|
62
72
|
|
|
63
73
|
export interface ActionConstraintContext$instance {
|
|
64
|
-
|
|
74
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ActionConstraints_ActionConstraintContext: never;
|
|
75
|
+
|
|
76
|
+
Candidates: IReadOnlyList_1<ActionSelectorCandidate>;
|
|
65
77
|
CurrentCandidate: ActionSelectorCandidate;
|
|
66
78
|
RouteContext: RouteContext;
|
|
67
79
|
}
|
|
@@ -75,6 +87,8 @@ export const ActionConstraintContext: {
|
|
|
75
87
|
export type ActionConstraintContext = ActionConstraintContext$instance;
|
|
76
88
|
|
|
77
89
|
export interface ActionConstraintItem$instance {
|
|
90
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ActionConstraints_ActionConstraintItem: never;
|
|
91
|
+
|
|
78
92
|
get Constraint(): IActionConstraint | undefined;
|
|
79
93
|
set Constraint(value: IActionConstraint | undefined);
|
|
80
94
|
IsReusable: boolean;
|
|
@@ -90,20 +104,27 @@ export const ActionConstraintItem: {
|
|
|
90
104
|
export type ActionConstraintItem = ActionConstraintItem$instance;
|
|
91
105
|
|
|
92
106
|
export interface ActionConstraintProviderContext$instance {
|
|
107
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ActionConstraints_ActionConstraintProviderContext: never;
|
|
108
|
+
|
|
93
109
|
readonly Action: ActionDescriptor;
|
|
94
110
|
readonly HttpContext: HttpContext;
|
|
95
|
-
readonly Results:
|
|
111
|
+
readonly Results: IList_1<ActionConstraintItem>;
|
|
96
112
|
}
|
|
97
113
|
|
|
98
114
|
|
|
99
115
|
export const ActionConstraintProviderContext: {
|
|
100
|
-
new(context: HttpContext, action: ActionDescriptor, items:
|
|
116
|
+
new(context: HttpContext, action: ActionDescriptor, items: IList_1<ActionConstraintItem>): ActionConstraintProviderContext;
|
|
101
117
|
};
|
|
102
118
|
|
|
103
119
|
|
|
104
120
|
export type ActionConstraintProviderContext = ActionConstraintProviderContext$instance;
|
|
105
121
|
|
|
106
122
|
export interface ActionMethodSelectorAttribute$instance extends Attribute, IActionConstraintMetadata {
|
|
123
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ActionConstraints_ActionMethodSelectorAttribute: never;
|
|
124
|
+
|
|
125
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IActionConstraint: never;
|
|
126
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IActionConstraintMetadata: never;
|
|
127
|
+
|
|
107
128
|
Order: int;
|
|
108
129
|
Accept(context: ActionConstraintContext): boolean;
|
|
109
130
|
IsValidForRequest(routeContext: RouteContext, action: ActionDescriptor): boolean;
|
|
@@ -121,15 +142,20 @@ export interface __ActionMethodSelectorAttribute$views {
|
|
|
121
142
|
export type ActionMethodSelectorAttribute = ActionMethodSelectorAttribute$instance & __ActionMethodSelectorAttribute$views;
|
|
122
143
|
|
|
123
144
|
|
|
124
|
-
export interface HttpMethodActionConstraint$instance extends IActionConstraintMetadata {
|
|
125
|
-
readonly
|
|
145
|
+
export interface HttpMethodActionConstraint$instance extends IActionConstraintMetadata, IActionConstraint$instance {
|
|
146
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ActionConstraints_HttpMethodActionConstraint: never;
|
|
147
|
+
|
|
148
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IActionConstraint: never;
|
|
149
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ActionConstraints_IActionConstraintMetadata: never;
|
|
150
|
+
|
|
151
|
+
readonly HttpMethods: IEnumerable_1<System_Internal.String>;
|
|
126
152
|
readonly Order: int;
|
|
127
153
|
Accept(context: ActionConstraintContext): boolean;
|
|
128
154
|
}
|
|
129
155
|
|
|
130
156
|
|
|
131
157
|
export const HttpMethodActionConstraint: {
|
|
132
|
-
new(httpMethods:
|
|
158
|
+
new(httpMethods: IEnumerable_1<System_Internal.String>): HttpMethodActionConstraint;
|
|
133
159
|
readonly HttpMethodConstraintOrder: int;
|
|
134
160
|
};
|
|
135
161
|
|
|
@@ -138,8 +164,6 @@ export interface __HttpMethodActionConstraint$views {
|
|
|
138
164
|
As_IActionConstraint(): IActionConstraint$instance;
|
|
139
165
|
}
|
|
140
166
|
|
|
141
|
-
export interface HttpMethodActionConstraint$instance extends IActionConstraint$instance {}
|
|
142
|
-
|
|
143
167
|
export type HttpMethodActionConstraint = HttpMethodActionConstraint$instance & __HttpMethodActionConstraint$views;
|
|
144
168
|
|
|
145
169
|
|
|
@@ -14,10 +14,10 @@ import type { IActionDescriptorCollectionProvider, IActionResultTypeMapper } fro
|
|
|
14
14
|
import type { BindingInfo, BindingSource, IModelMetadataProvider, ModelMetadata } from "../../Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.js";
|
|
15
15
|
import type { MvcOptions } from "../../Microsoft.AspNetCore.Mvc/internal/index.js";
|
|
16
16
|
import type { IInlineConstraintResolver, IRouteConstraint, RouteOptions } from "../../Microsoft.AspNetCore.Routing/internal/index.js";
|
|
17
|
-
import type {
|
|
18
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
19
|
-
import type { Attribute, Boolean as ClrBoolean, Enum, IComparable, IConvertible, IFormattable, Int32, ISpanFormattable, Object as ClrObject, String as ClrString, Type, Void } from "@tsonic/dotnet/System.js";
|
|
20
|
-
import type {
|
|
17
|
+
import type { IDictionary_2, IEnumerable_1, IList_1, IReadOnlyList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
18
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
19
|
+
import type { Attribute, Boolean as ClrBoolean, Enum, IComparable, IConvertible, IFormattable, Int32, ISpanFormattable, Object as ClrObject, String as ClrString, Type, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
20
|
+
import type { IOptions_1 } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Options/internal/index.js";
|
|
21
21
|
|
|
22
22
|
export enum ApiConventionNameMatchBehavior {
|
|
23
23
|
Any = 0,
|
|
@@ -34,6 +34,8 @@ export enum ApiConventionTypeMatchBehavior {
|
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
export interface IApiDefaultResponseMetadataProvider$instance extends IApiResponseMetadataProvider, IFilterMetadata {
|
|
37
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDefaultResponseMetadataProvider: never;
|
|
38
|
+
|
|
37
39
|
readonly Type: Type;
|
|
38
40
|
readonly Description: string | undefined;
|
|
39
41
|
readonly StatusCode: int;
|
|
@@ -46,6 +48,8 @@ export interface IApiDefaultResponseMetadataProvider$instance extends IApiRespon
|
|
|
46
48
|
export type IApiDefaultResponseMetadataProvider = IApiDefaultResponseMetadataProvider$instance;
|
|
47
49
|
|
|
48
50
|
export interface IApiDescriptionGroupCollectionProvider$instance {
|
|
51
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDescriptionGroupCollectionProvider: never;
|
|
52
|
+
|
|
49
53
|
readonly ApiDescriptionGroups: ApiDescriptionGroupCollection;
|
|
50
54
|
}
|
|
51
55
|
|
|
@@ -53,6 +57,8 @@ export interface IApiDescriptionGroupCollectionProvider$instance {
|
|
|
53
57
|
export type IApiDescriptionGroupCollectionProvider = IApiDescriptionGroupCollectionProvider$instance;
|
|
54
58
|
|
|
55
59
|
export interface IApiDescriptionGroupNameProvider$instance {
|
|
60
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDescriptionGroupNameProvider: never;
|
|
61
|
+
|
|
56
62
|
readonly GroupName: string | undefined;
|
|
57
63
|
}
|
|
58
64
|
|
|
@@ -60,6 +66,8 @@ export interface IApiDescriptionGroupNameProvider$instance {
|
|
|
60
66
|
export type IApiDescriptionGroupNameProvider = IApiDescriptionGroupNameProvider$instance;
|
|
61
67
|
|
|
62
68
|
export interface IApiDescriptionProvider$instance {
|
|
69
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDescriptionProvider: never;
|
|
70
|
+
|
|
63
71
|
readonly Order: int;
|
|
64
72
|
OnProvidersExecuting(context: ApiDescriptionProviderContext): void;
|
|
65
73
|
}
|
|
@@ -68,6 +76,8 @@ export interface IApiDescriptionProvider$instance {
|
|
|
68
76
|
export type IApiDescriptionProvider = IApiDescriptionProvider$instance;
|
|
69
77
|
|
|
70
78
|
export interface IApiDescriptionVisibilityProvider$instance {
|
|
79
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDescriptionVisibilityProvider: never;
|
|
80
|
+
|
|
71
81
|
readonly IgnoreApi: boolean;
|
|
72
82
|
}
|
|
73
83
|
|
|
@@ -75,13 +85,17 @@ export interface IApiDescriptionVisibilityProvider$instance {
|
|
|
75
85
|
export type IApiDescriptionVisibilityProvider = IApiDescriptionVisibilityProvider$instance;
|
|
76
86
|
|
|
77
87
|
export interface IApiRequestFormatMetadataProvider$instance {
|
|
78
|
-
|
|
88
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiRequestFormatMetadataProvider: never;
|
|
89
|
+
|
|
90
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
79
91
|
}
|
|
80
92
|
|
|
81
93
|
|
|
82
94
|
export type IApiRequestFormatMetadataProvider = IApiRequestFormatMetadataProvider$instance;
|
|
83
95
|
|
|
84
96
|
export interface IApiRequestMetadataProvider$instance extends IFilterMetadata {
|
|
97
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiRequestMetadataProvider: never;
|
|
98
|
+
|
|
85
99
|
SetContentTypes(contentTypes: MediaTypeCollection): void;
|
|
86
100
|
}
|
|
87
101
|
|
|
@@ -91,6 +105,8 @@ export interface IApiRequestMetadataProvider$instance extends Microsoft_AspNetCo
|
|
|
91
105
|
export type IApiRequestMetadataProvider = IApiRequestMetadataProvider$instance;
|
|
92
106
|
|
|
93
107
|
export interface IApiResponseMetadataProvider$instance extends IFilterMetadata {
|
|
108
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseMetadataProvider: never;
|
|
109
|
+
|
|
94
110
|
readonly Type: Type;
|
|
95
111
|
readonly Description: string | undefined;
|
|
96
112
|
readonly StatusCode: int;
|
|
@@ -103,13 +119,17 @@ export interface IApiResponseMetadataProvider$instance extends Microsoft_AspNetC
|
|
|
103
119
|
export type IApiResponseMetadataProvider = IApiResponseMetadataProvider$instance;
|
|
104
120
|
|
|
105
121
|
export interface IApiResponseTypeMetadataProvider$instance {
|
|
106
|
-
|
|
122
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiResponseTypeMetadataProvider: never;
|
|
123
|
+
|
|
124
|
+
GetSupportedContentTypes(contentType: string, objectType: Type): IReadOnlyList_1<System_Internal.String> | undefined;
|
|
107
125
|
}
|
|
108
126
|
|
|
109
127
|
|
|
110
128
|
export type IApiResponseTypeMetadataProvider = IApiResponseTypeMetadataProvider$instance;
|
|
111
129
|
|
|
112
130
|
export interface ApiConventionNameMatchAttribute$instance extends Attribute {
|
|
131
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiConventionNameMatchAttribute: never;
|
|
132
|
+
|
|
113
133
|
readonly MatchBehavior: ApiConventionNameMatchBehavior;
|
|
114
134
|
}
|
|
115
135
|
|
|
@@ -122,18 +142,22 @@ export const ApiConventionNameMatchAttribute: {
|
|
|
122
142
|
export type ApiConventionNameMatchAttribute = ApiConventionNameMatchAttribute$instance;
|
|
123
143
|
|
|
124
144
|
export interface ApiConventionResult$instance {
|
|
125
|
-
readonly
|
|
145
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiConventionResult: never;
|
|
146
|
+
|
|
147
|
+
readonly ResponseMetadataProviders: IReadOnlyList_1<IApiResponseMetadataProvider>;
|
|
126
148
|
}
|
|
127
149
|
|
|
128
150
|
|
|
129
151
|
export const ApiConventionResult: {
|
|
130
|
-
new(responseMetadataProviders:
|
|
152
|
+
new(responseMetadataProviders: IReadOnlyList_1<IApiResponseMetadataProvider>): ApiConventionResult;
|
|
131
153
|
};
|
|
132
154
|
|
|
133
155
|
|
|
134
156
|
export type ApiConventionResult = ApiConventionResult$instance;
|
|
135
157
|
|
|
136
158
|
export interface ApiConventionTypeMatchAttribute$instance extends Attribute {
|
|
159
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiConventionTypeMatchAttribute: never;
|
|
160
|
+
|
|
137
161
|
readonly MatchBehavior: ApiConventionTypeMatchBehavior;
|
|
138
162
|
}
|
|
139
163
|
|
|
@@ -146,17 +170,19 @@ export const ApiConventionTypeMatchAttribute: {
|
|
|
146
170
|
export type ApiConventionTypeMatchAttribute = ApiConventionTypeMatchAttribute$instance;
|
|
147
171
|
|
|
148
172
|
export interface ApiDescription$instance {
|
|
173
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiDescription: never;
|
|
174
|
+
|
|
149
175
|
ActionDescriptor: ActionDescriptor;
|
|
150
176
|
get GroupName(): string | undefined;
|
|
151
177
|
set GroupName(value: string | undefined);
|
|
152
178
|
get HttpMethod(): string | undefined;
|
|
153
179
|
set HttpMethod(value: string | undefined);
|
|
154
|
-
readonly ParameterDescriptions:
|
|
155
|
-
readonly Properties:
|
|
180
|
+
readonly ParameterDescriptions: IList_1<ApiParameterDescription>;
|
|
181
|
+
readonly Properties: IDictionary_2<unknown, unknown>;
|
|
156
182
|
get RelativePath(): string | undefined;
|
|
157
183
|
set RelativePath(value: string | undefined);
|
|
158
|
-
readonly SupportedRequestFormats:
|
|
159
|
-
readonly SupportedResponseTypes:
|
|
184
|
+
readonly SupportedRequestFormats: IList_1<ApiRequestFormat>;
|
|
185
|
+
readonly SupportedResponseTypes: IList_1<ApiResponseType>;
|
|
160
186
|
}
|
|
161
187
|
|
|
162
188
|
|
|
@@ -168,38 +194,46 @@ export const ApiDescription: {
|
|
|
168
194
|
export type ApiDescription = ApiDescription$instance;
|
|
169
195
|
|
|
170
196
|
export interface ApiDescriptionGroup$instance {
|
|
197
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiDescriptionGroup: never;
|
|
198
|
+
|
|
171
199
|
readonly GroupName: string | undefined;
|
|
172
|
-
readonly Items:
|
|
200
|
+
readonly Items: IReadOnlyList_1<ApiDescription>;
|
|
173
201
|
}
|
|
174
202
|
|
|
175
203
|
|
|
176
204
|
export const ApiDescriptionGroup: {
|
|
177
|
-
new(groupName: string, items:
|
|
205
|
+
new(groupName: string, items: IReadOnlyList_1<ApiDescription>): ApiDescriptionGroup;
|
|
178
206
|
};
|
|
179
207
|
|
|
180
208
|
|
|
181
209
|
export type ApiDescriptionGroup = ApiDescriptionGroup$instance;
|
|
182
210
|
|
|
183
211
|
export interface ApiDescriptionGroupCollection$instance {
|
|
184
|
-
readonly
|
|
212
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiDescriptionGroupCollection: never;
|
|
213
|
+
|
|
214
|
+
readonly Items: IReadOnlyList_1<ApiDescriptionGroup>;
|
|
185
215
|
readonly Version: int;
|
|
186
216
|
}
|
|
187
217
|
|
|
188
218
|
|
|
189
219
|
export const ApiDescriptionGroupCollection: {
|
|
190
|
-
new(items:
|
|
220
|
+
new(items: IReadOnlyList_1<ApiDescriptionGroup>, version: int): ApiDescriptionGroupCollection;
|
|
191
221
|
};
|
|
192
222
|
|
|
193
223
|
|
|
194
224
|
export type ApiDescriptionGroupCollection = ApiDescriptionGroupCollection$instance;
|
|
195
225
|
|
|
196
|
-
export interface ApiDescriptionGroupCollectionProvider$instance {
|
|
226
|
+
export interface ApiDescriptionGroupCollectionProvider$instance extends IApiDescriptionGroupCollectionProvider$instance {
|
|
227
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiDescriptionGroupCollectionProvider: never;
|
|
228
|
+
|
|
229
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDescriptionGroupCollectionProvider: never;
|
|
230
|
+
|
|
197
231
|
readonly ApiDescriptionGroups: ApiDescriptionGroupCollection;
|
|
198
232
|
}
|
|
199
233
|
|
|
200
234
|
|
|
201
235
|
export const ApiDescriptionGroupCollectionProvider: {
|
|
202
|
-
new(actionDescriptorCollectionProvider: IActionDescriptorCollectionProvider, apiDescriptionProviders:
|
|
236
|
+
new(actionDescriptorCollectionProvider: IActionDescriptorCollectionProvider, apiDescriptionProviders: IEnumerable_1<IApiDescriptionProvider>): ApiDescriptionGroupCollectionProvider;
|
|
203
237
|
};
|
|
204
238
|
|
|
205
239
|
|
|
@@ -207,25 +241,27 @@ export interface __ApiDescriptionGroupCollectionProvider$views {
|
|
|
207
241
|
As_IApiDescriptionGroupCollectionProvider(): IApiDescriptionGroupCollectionProvider$instance;
|
|
208
242
|
}
|
|
209
243
|
|
|
210
|
-
export interface ApiDescriptionGroupCollectionProvider$instance extends IApiDescriptionGroupCollectionProvider$instance {}
|
|
211
|
-
|
|
212
244
|
export type ApiDescriptionGroupCollectionProvider = ApiDescriptionGroupCollectionProvider$instance & __ApiDescriptionGroupCollectionProvider$views;
|
|
213
245
|
|
|
214
246
|
|
|
215
247
|
export interface ApiDescriptionProviderContext$instance {
|
|
216
|
-
readonly
|
|
217
|
-
|
|
248
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiDescriptionProviderContext: never;
|
|
249
|
+
|
|
250
|
+
readonly Actions: IReadOnlyList_1<ActionDescriptor>;
|
|
251
|
+
readonly Results: IList_1<ApiDescription>;
|
|
218
252
|
}
|
|
219
253
|
|
|
220
254
|
|
|
221
255
|
export const ApiDescriptionProviderContext: {
|
|
222
|
-
new(actions:
|
|
256
|
+
new(actions: IReadOnlyList_1<ActionDescriptor>): ApiDescriptionProviderContext;
|
|
223
257
|
};
|
|
224
258
|
|
|
225
259
|
|
|
226
260
|
export type ApiDescriptionProviderContext = ApiDescriptionProviderContext$instance;
|
|
227
261
|
|
|
228
262
|
export interface ApiParameterDescription$instance {
|
|
263
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiParameterDescription: never;
|
|
264
|
+
|
|
229
265
|
get BindingInfo(): BindingInfo | undefined;
|
|
230
266
|
set BindingInfo(value: BindingInfo | undefined);
|
|
231
267
|
get DefaultValue(): unknown | undefined;
|
|
@@ -249,8 +285,10 @@ export const ApiParameterDescription: {
|
|
|
249
285
|
export type ApiParameterDescription = ApiParameterDescription$instance;
|
|
250
286
|
|
|
251
287
|
export interface ApiParameterRouteInfo$instance {
|
|
252
|
-
|
|
253
|
-
|
|
288
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiParameterRouteInfo: never;
|
|
289
|
+
|
|
290
|
+
get Constraints(): IEnumerable_1<IRouteConstraint> | undefined;
|
|
291
|
+
set Constraints(value: IEnumerable_1<IRouteConstraint> | undefined);
|
|
254
292
|
get DefaultValue(): unknown | undefined;
|
|
255
293
|
set DefaultValue(value: unknown | undefined);
|
|
256
294
|
IsOptional: boolean;
|
|
@@ -265,6 +303,8 @@ export const ApiParameterRouteInfo: {
|
|
|
265
303
|
export type ApiParameterRouteInfo = ApiParameterRouteInfo$instance;
|
|
266
304
|
|
|
267
305
|
export interface ApiRequestFormat$instance {
|
|
306
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiRequestFormat: never;
|
|
307
|
+
|
|
268
308
|
Formatter: IInputFormatter;
|
|
269
309
|
MediaType: string;
|
|
270
310
|
}
|
|
@@ -278,6 +318,8 @@ export const ApiRequestFormat: {
|
|
|
278
318
|
export type ApiRequestFormat = ApiRequestFormat$instance;
|
|
279
319
|
|
|
280
320
|
export interface ApiResponseFormat$instance {
|
|
321
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiResponseFormat: never;
|
|
322
|
+
|
|
281
323
|
Formatter: IOutputFormatter;
|
|
282
324
|
MediaType: string;
|
|
283
325
|
}
|
|
@@ -291,7 +333,9 @@ export const ApiResponseFormat: {
|
|
|
291
333
|
export type ApiResponseFormat = ApiResponseFormat$instance;
|
|
292
334
|
|
|
293
335
|
export interface ApiResponseType$instance {
|
|
294
|
-
|
|
336
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_ApiResponseType: never;
|
|
337
|
+
|
|
338
|
+
ApiResponseFormats: IList_1<ApiResponseFormat>;
|
|
295
339
|
get Description(): string | undefined;
|
|
296
340
|
set Description(value: string | undefined);
|
|
297
341
|
IsDefaultResponse: boolean;
|
|
@@ -310,7 +354,11 @@ export const ApiResponseType: {
|
|
|
310
354
|
|
|
311
355
|
export type ApiResponseType = ApiResponseType$instance;
|
|
312
356
|
|
|
313
|
-
export interface DefaultApiDescriptionProvider$instance {
|
|
357
|
+
export interface DefaultApiDescriptionProvider$instance extends IApiDescriptionProvider$instance {
|
|
358
|
+
readonly __tsonic_type_Microsoft_AspNetCore_Mvc_ApiExplorer_DefaultApiDescriptionProvider: never;
|
|
359
|
+
|
|
360
|
+
readonly __tsonic_iface_Microsoft_AspNetCore_Mvc_ApiExplorer_IApiDescriptionProvider: never;
|
|
361
|
+
|
|
314
362
|
readonly Order: int;
|
|
315
363
|
OnProvidersExecuted(context: ApiDescriptionProviderContext): void;
|
|
316
364
|
OnProvidersExecuting(context: ApiDescriptionProviderContext): void;
|
|
@@ -318,7 +366,7 @@ export interface DefaultApiDescriptionProvider$instance {
|
|
|
318
366
|
|
|
319
367
|
|
|
320
368
|
export const DefaultApiDescriptionProvider: {
|
|
321
|
-
new(optionsAccessor:
|
|
369
|
+
new(optionsAccessor: IOptions_1<MvcOptions>, constraintResolver: IInlineConstraintResolver, modelMetadataProvider: IModelMetadataProvider, mapper: IActionResultTypeMapper, routeOptions: IOptions_1<RouteOptions>): DefaultApiDescriptionProvider;
|
|
322
370
|
};
|
|
323
371
|
|
|
324
372
|
|
|
@@ -326,8 +374,6 @@ export interface __DefaultApiDescriptionProvider$views {
|
|
|
326
374
|
As_IApiDescriptionProvider(): IApiDescriptionProvider$instance;
|
|
327
375
|
}
|
|
328
376
|
|
|
329
|
-
export interface DefaultApiDescriptionProvider$instance extends IApiDescriptionProvider$instance {}
|
|
330
|
-
|
|
331
377
|
export type DefaultApiDescriptionProvider = DefaultApiDescriptionProvider$instance & __DefaultApiDescriptionProvider$views;
|
|
332
378
|
|
|
333
379
|
|