@tsonic/aspnetcore 10.0.26 → 10.0.27
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.Authentication/internal/index.d.ts +3 -3
- package/Microsoft.AspNetCore.Authentication.BearerToken/internal/index.d.ts +1 -1
- package/Microsoft.AspNetCore.Authentication.Cookies/internal/index.d.ts +1 -1
- package/Microsoft.AspNetCore.Authentication.OAuth/internal/index.d.ts +1 -1
- package/Microsoft.AspNetCore.Builder/internal/index.d.ts +3 -3
- package/Microsoft.AspNetCore.Mvc/internal/index.d.ts +1 -0
- package/Microsoft.AspNetCore.Mvc.d.ts +1 -0
- package/package.json +4 -4
|
@@ -289,7 +289,7 @@ export interface AuthenticationHandler_1$instance<TOptions extends Authenticatio
|
|
|
289
289
|
readonly __tsonic_iface_Microsoft_AspNetCore_Authentication_IAuthenticationHandler: never;
|
|
290
290
|
|
|
291
291
|
readonly ClaimsIssuer: string;
|
|
292
|
-
Events:
|
|
292
|
+
Events: unknown;
|
|
293
293
|
Options: TOptions;
|
|
294
294
|
Scheme: AuthenticationScheme;
|
|
295
295
|
AuthenticateAsync(): Task_1<AuthenticateResult>;
|
|
@@ -452,7 +452,7 @@ export interface AuthenticationSchemeOptions$instance {
|
|
|
452
452
|
|
|
453
453
|
get ClaimsIssuer(): string | undefined;
|
|
454
454
|
set ClaimsIssuer(value: string | undefined);
|
|
455
|
-
Events:
|
|
455
|
+
Events: unknown;
|
|
456
456
|
get EventsType(): Type | undefined;
|
|
457
457
|
set EventsType(value: Type | undefined);
|
|
458
458
|
get ForwardAuthenticate(): string | undefined;
|
|
@@ -855,7 +855,7 @@ export interface RemoteAuthenticationOptions$instance extends AuthenticationSche
|
|
|
855
855
|
CorrelationCookie: CookieBuilder;
|
|
856
856
|
get DataProtectionProvider(): IDataProtectionProvider | undefined;
|
|
857
857
|
set DataProtectionProvider(value: IDataProtectionProvider | undefined);
|
|
858
|
-
Events:
|
|
858
|
+
Events: unknown;
|
|
859
859
|
RemoteAuthenticationTimeout: TimeSpan;
|
|
860
860
|
ReturnUrlParameter: string;
|
|
861
861
|
SaveTokens: boolean;
|
|
@@ -51,7 +51,7 @@ export interface BearerTokenOptions$instance extends AuthenticationSchemeOptions
|
|
|
51
51
|
|
|
52
52
|
BearerTokenExpiration: TimeSpan;
|
|
53
53
|
BearerTokenProtector: ISecureDataFormat_1<AuthenticationTicket>;
|
|
54
|
-
Events:
|
|
54
|
+
Events: unknown;
|
|
55
55
|
RefreshTokenExpiration: TimeSpan;
|
|
56
56
|
RefreshTokenProtector: ISecureDataFormat_1<AuthenticationTicket>;
|
|
57
57
|
}
|
|
@@ -148,7 +148,7 @@ export interface CookieAuthenticationOptions$instance extends AuthenticationSche
|
|
|
148
148
|
CookieManager: ICookieManager;
|
|
149
149
|
get DataProtectionProvider(): IDataProtectionProvider | undefined;
|
|
150
150
|
set DataProtectionProvider(value: IDataProtectionProvider | undefined);
|
|
151
|
-
Events:
|
|
151
|
+
Events: unknown;
|
|
152
152
|
ExpireTimeSpan: TimeSpan;
|
|
153
153
|
LoginPath: PathString;
|
|
154
154
|
LogoutPath: PathString;
|
|
@@ -134,7 +134,7 @@ export interface OAuthOptions$instance extends RemoteAuthenticationOptions {
|
|
|
134
134
|
readonly ClaimActions: ClaimActionCollection;
|
|
135
135
|
ClientId: string;
|
|
136
136
|
ClientSecret: string;
|
|
137
|
-
Events:
|
|
137
|
+
Events: unknown;
|
|
138
138
|
readonly Scope: ICollection_1<System_Internal.String>;
|
|
139
139
|
StateDataFormat: ISecureDataFormat_1<AuthenticationProperties>;
|
|
140
140
|
TokenEndpoint: string;
|
|
@@ -51,7 +51,7 @@ import type { ConfigurationManager, IConfiguration, IConfigurationBuilder } from
|
|
|
51
51
|
import type { IServiceCollection, IServiceProviderFactory_1 } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection/internal/index.js";
|
|
52
52
|
import type { IMetricsBuilder } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Diagnostics.Metrics/internal/index.js";
|
|
53
53
|
import type { IFileProvider } from "@tsonic/microsoft-extensions/Microsoft.Extensions.FileProviders/internal/index.js";
|
|
54
|
-
import * as
|
|
54
|
+
import * as Microsoft_Extensions_Hosting_Lib_tsonic_microsoft_extensions from "@tsonic/microsoft-extensions/Microsoft.Extensions.Hosting/internal/index.js";
|
|
55
55
|
import type { HostBuilderContext, IHost, IHostApplicationBuilder, IHostApplicationLifetime, IHostBuilder } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Hosting/internal/index.js";
|
|
56
56
|
import type { ILogger, ILoggerFactory, ILoggingBuilder } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging/internal/index.js";
|
|
57
57
|
|
|
@@ -138,7 +138,7 @@ export interface __ComponentEndpointConventionBuilder$views {
|
|
|
138
138
|
export type ComponentEndpointConventionBuilder = ComponentEndpointConventionBuilder$instance & __ComponentEndpointConventionBuilder$views;
|
|
139
139
|
|
|
140
140
|
|
|
141
|
-
export interface ConfigureHostBuilder$instance extends Microsoft_AspNetCore_Hosting_Infrastructure_Internal.ISupportsConfigureWebHost$instance,
|
|
141
|
+
export interface ConfigureHostBuilder$instance extends Microsoft_AspNetCore_Hosting_Infrastructure_Internal.ISupportsConfigureWebHost$instance, Microsoft_Extensions_Hosting_Lib_tsonic_microsoft_extensions.IHostBuilder {
|
|
142
142
|
readonly __tsonic_type_Microsoft_AspNetCore_Builder_ConfigureHostBuilder: never;
|
|
143
143
|
|
|
144
144
|
readonly __tsonic_iface_Microsoft_AspNetCore_Hosting_Infrastructure_ISupportsConfigureWebHost: never;
|
|
@@ -621,7 +621,7 @@ export const StatusCodePagesOptions: {
|
|
|
621
621
|
|
|
622
622
|
export type StatusCodePagesOptions = StatusCodePagesOptions$instance;
|
|
623
623
|
|
|
624
|
-
export interface WebApplication$instance extends IApplicationBuilder$instance, Microsoft_AspNetCore_Routing_Internal.IEndpointRouteBuilder$instance,
|
|
624
|
+
export interface WebApplication$instance extends IApplicationBuilder$instance, Microsoft_AspNetCore_Routing_Internal.IEndpointRouteBuilder$instance, Microsoft_Extensions_Hosting_Lib_tsonic_microsoft_extensions.IHost, System_Internal.IAsyncDisposable, System_Internal.IDisposable {
|
|
625
625
|
readonly __tsonic_type_Microsoft_AspNetCore_Builder_WebApplication: never;
|
|
626
626
|
|
|
627
627
|
readonly __tsonic_iface_Microsoft_AspNetCore_Builder_IApplicationBuilder: never;
|
|
@@ -31,6 +31,7 @@ import * as Microsoft_AspNetCore_Mvc_ModelBinding_Validation_Internal from "../.
|
|
|
31
31
|
import type { ClientModelValidationContext, IClientModelValidator, IClientModelValidatorProvider, IModelValidatorProvider, IObjectModelValidator } from "../../Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.js";
|
|
32
32
|
import * as Microsoft_AspNetCore_Mvc_ModelBinding_Internal from "../../Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.js";
|
|
33
33
|
import type { BindingSource, EmptyBodyBehavior, IBinderTypeProviderMetadata, IBindingSourceMetadata, IModelBinder, IModelBinderFactory, IModelBinderProvider, IModelMetadataProvider, IModelNameProvider, IPropertyFilterProvider, IRequestPredicateProvider, IValueProvider, IValueProviderFactory, ModelMetadata, ModelStateDictionary } from "../../Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.js";
|
|
34
|
+
import type { CompiledPageActionDescriptor } from "../../Microsoft.AspNetCore.Mvc.RazorPages/internal/index.js";
|
|
34
35
|
import type { ViewContext } from "../../Microsoft.AspNetCore.Mvc.Rendering/internal/index.js";
|
|
35
36
|
import * as Microsoft_AspNetCore_Mvc_Routing_Internal from "../../Microsoft.AspNetCore.Mvc.Routing/internal/index.js";
|
|
36
37
|
import type { HttpMethodAttribute, IActionHttpMethodProvider, IRouteTemplateProvider, IRouteValueProvider, RouteValueAttribute, UrlActionContext, UrlRouteContext } from "../../Microsoft.AspNetCore.Mvc.Routing/internal/index.js";
|
|
@@ -22,6 +22,7 @@ import type { IApiBehaviorMetadata, IClientErrorActionResult, ICompatibilitySwit
|
|
|
22
22
|
import type { DefaultModelBindingMessageProvider, IMetadataDetailsProvider } from './Microsoft.AspNetCore.Mvc.ModelBinding.Metadata/internal/index.js';
|
|
23
23
|
import type { ClientModelValidationContext, IClientModelValidator, IClientModelValidatorProvider, IModelValidatorProvider, IObjectModelValidator } from './Microsoft.AspNetCore.Mvc.ModelBinding.Validation/internal/index.js';
|
|
24
24
|
import type { BindingSource, EmptyBodyBehavior, IBinderTypeProviderMetadata, IBindingSourceMetadata, IModelBinder, IModelBinderFactory, IModelBinderProvider, IModelMetadataProvider, IModelNameProvider, IPropertyFilterProvider, IRequestPredicateProvider, IValueProvider, IValueProviderFactory, ModelMetadata, ModelStateDictionary } from './Microsoft.AspNetCore.Mvc.ModelBinding/internal/index.js';
|
|
25
|
+
import type { CompiledPageActionDescriptor } from './Microsoft.AspNetCore.Mvc.RazorPages/internal/index.js';
|
|
25
26
|
import type { ViewContext } from './Microsoft.AspNetCore.Mvc.Rendering/internal/index.js';
|
|
26
27
|
import type { HttpMethodAttribute, IActionHttpMethodProvider, IRouteTemplateProvider, IRouteValueProvider, RouteValueAttribute, UrlActionContext, UrlRouteContext } from './Microsoft.AspNetCore.Mvc.Routing/internal/index.js';
|
|
27
28
|
import type { ContentViewComponentResult, ViewComponentContext, ViewViewComponentResult } from './Microsoft.AspNetCore.Mvc.ViewComponents/internal/index.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/aspnetcore",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.27",
|
|
4
4
|
"description": "TypeScript type definitions for Microsoft.AspNetCore.App shared framework for .NET 10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -18,8 +18,8 @@
|
|
|
18
18
|
"url": "https://github.com/tsoniclang/aspnetcore.git"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@tsonic/core": "10.0.
|
|
22
|
-
"@tsonic/dotnet": "10.0.
|
|
23
|
-
"@tsonic/microsoft-extensions": "10.0.
|
|
21
|
+
"@tsonic/core": "10.0.27",
|
|
22
|
+
"@tsonic/dotnet": "10.0.27",
|
|
23
|
+
"@tsonic/microsoft-extensions": "10.0.27"
|
|
24
24
|
}
|
|
25
25
|
}
|