@tsonic/efcore-sqlserver 10.0.2 → 10.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Azure/internal/index.d.ts +33 -41
- package/Azure.Core/internal/index.d.ts +55 -48
- package/Azure.Core.Cryptography/internal/index.d.ts +4 -0
- package/Azure.Core.Diagnostics/internal/index.d.ts +4 -6
- package/Azure.Core.Extensions/internal/index.d.ts +8 -0
- package/Azure.Core.GeoJson/internal/index.d.ts +43 -7
- package/Azure.Core.Pipeline/internal/index.d.ts +22 -30
- package/Azure.Core.Serialization/internal/index.d.ts +8 -3
- package/Azure.Identity/internal/index.d.ts +69 -28
- package/Azure.Messaging/internal/index.d.ts +7 -11
- package/Microsoft.Data/internal/index.d.ts +2 -1
- package/Microsoft.Data.SqlClient/internal/index.d.ts +133 -123
- package/Microsoft.Data.SqlClient.Diagnostics/internal/index.d.ts +90 -15
- package/Microsoft.Data.SqlClient.Server/internal/index.d.ts +2 -0
- package/Microsoft.Data.SqlTypes/internal/index.d.ts +8 -1
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +4 -6
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +11 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +86 -73
- package/Microsoft.EntityFrameworkCore.Metadata.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +47 -49
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +9 -1
- package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/internal/index.d.ts +8 -8
- package/Microsoft.EntityFrameworkCore.SqlServer.Extensions.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/internal/index.d.ts +24 -22
- package/Microsoft.EntityFrameworkCore.SqlServer.Metadata.Internal/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/internal/index.d.ts +10 -6
- package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/internal/index.d.ts +189 -194
- package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/internal/index.d.ts +4 -5
- package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal/internal/index.d.ts +4 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/internal/index.d.ts +115 -191
- package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/internal/index.d.ts +31 -32
- package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/internal/index.d.ts +19 -12
- package/Microsoft.EntityFrameworkCore.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Microsoft.Identity.Client/internal/index.d.ts +108 -108
- package/Microsoft.Identity.Client.AppConfig/internal/index.d.ts +0 -1
- package/Microsoft.Identity.Client.AuthScheme/internal/index.d.ts +2 -0
- package/Microsoft.Identity.Client.AuthScheme.PoP/internal/index.d.ts +2 -0
- package/Microsoft.Identity.Client.Extensibility/internal/index.d.ts +3 -2
- package/Microsoft.Identity.Client.Extensions.Msal/internal/index.d.ts +4 -4
- package/Microsoft.Identity.Client.Kerberos/internal/index.d.ts +1 -1
- package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/internal/index.d.ts +1 -2
- package/Microsoft.Identity.Client.Utils/internal/index.d.ts +0 -1
- package/Microsoft.IdentityModel.Abstractions/internal/index.d.ts +13 -7
- package/Microsoft.IdentityModel.JsonWebTokens/internal/index.d.ts +8 -10
- package/Microsoft.IdentityModel.Logging/internal/index.d.ts +7 -6
- package/Microsoft.IdentityModel.Protocols/internal/index.d.ts +17 -2
- package/Microsoft.IdentityModel.Protocols.Configuration/internal/index.d.ts +2 -1
- package/Microsoft.IdentityModel.Protocols.OpenIdConnect/internal/index.d.ts +19 -18
- package/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/internal/index.d.ts +2 -0
- package/Microsoft.IdentityModel.Tokens/internal/index.d.ts +119 -118
- package/Microsoft.IdentityModel.Tokens.d.ts +3 -0
- package/Microsoft.SqlServer.Server/internal/index.d.ts +4 -1
- package/System.ClientModel/internal/index.d.ts +19 -26
- package/System.ClientModel.Primitives/internal/index.d.ts +99 -124
- package/System.ClientModel.Primitives.d.ts +3 -0
- package/System.Configuration/internal/index.d.ts +293 -332
- package/System.Configuration.Internal/internal/index.d.ts +23 -2
- package/System.Configuration.Provider/internal/index.d.ts +7 -4
- package/System.Drawing.Configuration/internal/index.d.ts +2 -6
- package/System.IdentityModel.Tokens.Jwt/internal/index.d.ts +38 -16
- package/__internal/extensions/index.d.ts +915 -14
- package/package.json +1 -1
|
@@ -16,7 +16,6 @@ export interface ManagedIdentityId$instance {
|
|
|
16
16
|
|
|
17
17
|
|
|
18
18
|
export const ManagedIdentityId: {
|
|
19
|
-
new(): ManagedIdentityId;
|
|
20
19
|
readonly SystemAssigned: ManagedIdentityId;
|
|
21
20
|
WithUserAssignedClientId(clientId: string): ManagedIdentityId;
|
|
22
21
|
WithUserAssignedObjectId(objectId: string): ManagedIdentityId;
|
|
@@ -12,6 +12,8 @@ import type { IReadOnlyDictionary } from "@tsonic/dotnet/System.Collections.Gene
|
|
|
12
12
|
import type { Int32, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
13
13
|
|
|
14
14
|
export interface IAuthenticationOperation$instance {
|
|
15
|
+
readonly __tsonic_iface_Microsoft_Identity_Client_AuthScheme_IAuthenticationOperation: never;
|
|
16
|
+
|
|
15
17
|
readonly TelemetryTokenType: int;
|
|
16
18
|
readonly AuthorizationHeaderPrefix: string;
|
|
17
19
|
readonly KeyId: string;
|
|
@@ -10,6 +10,8 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
10
10
|
import type { Byte, String as ClrString } from "@tsonic/dotnet/System.js";
|
|
11
11
|
|
|
12
12
|
export interface IPoPCryptoProvider$instance {
|
|
13
|
+
readonly __tsonic_iface_Microsoft_Identity_Client_AuthScheme_PoP_IPoPCryptoProvider: never;
|
|
14
|
+
|
|
13
15
|
readonly CannonicalPublicKeyJwk: string;
|
|
14
16
|
readonly CryptographicAlgorithm: string;
|
|
15
17
|
Sign(data: byte[]): byte[];
|
|
@@ -15,6 +15,8 @@ import type { CancellationToken } from "@tsonic/dotnet/System.Threading.js";
|
|
|
15
15
|
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
16
16
|
|
|
17
17
|
export interface ICustomWebUi$instance {
|
|
18
|
+
readonly __tsonic_iface_Microsoft_Identity_Client_Extensibility_ICustomWebUi: never;
|
|
19
|
+
|
|
18
20
|
AcquireAuthorizationCodeAsync(authorizationUri: Uri, redirectUri: Uri, cancellationToken: CancellationToken): Task<Uri>;
|
|
19
21
|
}
|
|
20
22
|
|
|
@@ -24,8 +26,7 @@ export type ICustomWebUi = ICustomWebUi$instance;
|
|
|
24
26
|
export interface AppTokenProviderParameters$instance {
|
|
25
27
|
CancellationToken: CancellationToken;
|
|
26
28
|
Claims: string;
|
|
27
|
-
|
|
28
|
-
set CorrelationId(value: string);
|
|
29
|
+
CorrelationId: string;
|
|
29
30
|
Scopes: IEnumerable<System_Internal.String>;
|
|
30
31
|
TenantId: string;
|
|
31
32
|
}
|
|
@@ -29,6 +29,8 @@ export const CacheChangedEventArgs: {
|
|
|
29
29
|
export type CacheChangedEventArgs = CacheChangedEventArgs$instance;
|
|
30
30
|
|
|
31
31
|
export interface CrossPlatLock$instance {
|
|
32
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
33
|
+
|
|
32
34
|
Dispose(): void;
|
|
33
35
|
}
|
|
34
36
|
|
|
@@ -51,7 +53,6 @@ export interface MsalCacheHelper$instance {
|
|
|
51
53
|
|
|
52
54
|
|
|
53
55
|
export const MsalCacheHelper: {
|
|
54
|
-
new(): MsalCacheHelper;
|
|
55
56
|
readonly LinuxKeyRingDefaultCollection: string;
|
|
56
57
|
readonly LinuxKeyRingSessionCollection: string;
|
|
57
58
|
readonly UserRootDirectory: string;
|
|
@@ -62,6 +63,8 @@ export const MsalCacheHelper: {
|
|
|
62
63
|
export type MsalCacheHelper = MsalCacheHelper$instance;
|
|
63
64
|
|
|
64
65
|
export interface MsalCachePersistenceException$instance extends Exception {
|
|
66
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
67
|
+
|
|
65
68
|
}
|
|
66
69
|
|
|
67
70
|
|
|
@@ -69,7 +72,6 @@ export const MsalCachePersistenceException: {
|
|
|
69
72
|
new(): MsalCachePersistenceException;
|
|
70
73
|
new(message: string): MsalCachePersistenceException;
|
|
71
74
|
new(message: string, innerException: Exception): MsalCachePersistenceException;
|
|
72
|
-
new(info: SerializationInfo, context: StreamingContext): MsalCachePersistenceException;
|
|
73
75
|
};
|
|
74
76
|
|
|
75
77
|
|
|
@@ -84,7 +86,6 @@ export interface Storage$instance {
|
|
|
84
86
|
|
|
85
87
|
|
|
86
88
|
export const Storage: {
|
|
87
|
-
new(): Storage;
|
|
88
89
|
Create(creationProperties: StorageCreationProperties, logger?: TraceSource): Storage;
|
|
89
90
|
};
|
|
90
91
|
|
|
@@ -112,7 +113,6 @@ export interface StorageCreationProperties$instance {
|
|
|
112
113
|
|
|
113
114
|
|
|
114
115
|
export const StorageCreationProperties: {
|
|
115
|
-
new(): StorageCreationProperties;
|
|
116
116
|
};
|
|
117
117
|
|
|
118
118
|
|
|
@@ -21,6 +21,8 @@ export enum EventLogLevel {
|
|
|
21
21
|
|
|
22
22
|
|
|
23
23
|
export interface IIdentityLogger$instance {
|
|
24
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Abstractions_IIdentityLogger: never;
|
|
25
|
+
|
|
24
26
|
IsEnabled(eventLogLevel: EventLogLevel): boolean;
|
|
25
27
|
Log(entry: LogEntry): void;
|
|
26
28
|
}
|
|
@@ -29,6 +31,8 @@ export interface IIdentityLogger$instance {
|
|
|
29
31
|
export type IIdentityLogger = IIdentityLogger$instance;
|
|
30
32
|
|
|
31
33
|
export interface ITelemetryClient$instance {
|
|
34
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Abstractions_ITelemetryClient: never;
|
|
35
|
+
|
|
32
36
|
ClientId: string;
|
|
33
37
|
Initialize(): void;
|
|
34
38
|
IsEnabled(): boolean;
|
|
@@ -42,10 +46,10 @@ export type ITelemetryClient = ITelemetryClient$instance;
|
|
|
42
46
|
|
|
43
47
|
export interface LogEntry$instance {
|
|
44
48
|
get CorrelationId(): string | undefined;
|
|
45
|
-
set CorrelationId(value: string);
|
|
49
|
+
set CorrelationId(value: string | undefined);
|
|
46
50
|
EventLogLevel: EventLogLevel;
|
|
47
51
|
get Message(): string | undefined;
|
|
48
|
-
set Message(value: string);
|
|
52
|
+
set Message(value: string | undefined);
|
|
49
53
|
}
|
|
50
54
|
|
|
51
55
|
|
|
@@ -57,13 +61,14 @@ export const LogEntry: {
|
|
|
57
61
|
export type LogEntry = LogEntry$instance;
|
|
58
62
|
|
|
59
63
|
export interface NullIdentityModelLogger$instance {
|
|
64
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Abstractions_IIdentityLogger: never;
|
|
65
|
+
|
|
60
66
|
IsEnabled(eventLogLevel: EventLogLevel): boolean;
|
|
61
67
|
Log(entry: LogEntry): void;
|
|
62
68
|
}
|
|
63
69
|
|
|
64
70
|
|
|
65
71
|
export const NullIdentityModelLogger: {
|
|
66
|
-
new(): NullIdentityModelLogger;
|
|
67
72
|
readonly Instance: NullIdentityModelLogger;
|
|
68
73
|
};
|
|
69
74
|
|
|
@@ -78,6 +83,8 @@ export type NullIdentityModelLogger = NullIdentityModelLogger$instance & __NullI
|
|
|
78
83
|
|
|
79
84
|
|
|
80
85
|
export interface NullTelemetryClient$instance {
|
|
86
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Abstractions_ITelemetryClient: never;
|
|
87
|
+
|
|
81
88
|
ClientId: string;
|
|
82
89
|
Initialize(): void;
|
|
83
90
|
IsEnabled(): boolean;
|
|
@@ -88,7 +95,6 @@ export interface NullTelemetryClient$instance {
|
|
|
88
95
|
|
|
89
96
|
|
|
90
97
|
export const NullTelemetryClient: {
|
|
91
|
-
new(): NullTelemetryClient;
|
|
92
98
|
readonly Instance: NullTelemetryClient;
|
|
93
99
|
};
|
|
94
100
|
|
|
@@ -103,7 +109,8 @@ export type NullTelemetryClient = NullTelemetryClient$instance & __NullTelemetry
|
|
|
103
109
|
|
|
104
110
|
|
|
105
111
|
export interface TelemetryEventDetails$instance {
|
|
106
|
-
Name: string;
|
|
112
|
+
get Name(): string | undefined;
|
|
113
|
+
set Name(value: string | undefined);
|
|
107
114
|
readonly Properties: IReadOnlyDictionary<System_Internal.String, unknown>;
|
|
108
115
|
SetProperty(key: string, value: string): void;
|
|
109
116
|
SetProperty(key: string, value: long): void;
|
|
@@ -114,8 +121,7 @@ export interface TelemetryEventDetails$instance {
|
|
|
114
121
|
}
|
|
115
122
|
|
|
116
123
|
|
|
117
|
-
export const TelemetryEventDetails: {
|
|
118
|
-
new(): TelemetryEventDetails;
|
|
124
|
+
export const TelemetryEventDetails: (abstract new() => TelemetryEventDetails) & {
|
|
119
125
|
};
|
|
120
126
|
|
|
121
127
|
|
|
@@ -97,6 +97,8 @@ export const JwtRegisteredClaimNames: {
|
|
|
97
97
|
export type JwtRegisteredClaimNames = JwtRegisteredClaimNames$instance;
|
|
98
98
|
|
|
99
99
|
export interface JsonWebToken$instance extends SecurityToken {
|
|
100
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Logging_ISafeLogSecurityArtifact: never;
|
|
101
|
+
|
|
100
102
|
readonly Actor: string;
|
|
101
103
|
readonly Alg: string;
|
|
102
104
|
readonly Audiences: IEnumerable<System_Internal.String>;
|
|
@@ -121,7 +123,7 @@ export interface JsonWebToken$instance extends SecurityToken {
|
|
|
121
123
|
readonly Kid: string;
|
|
122
124
|
readonly SecurityKey: SecurityKey;
|
|
123
125
|
SigningKey: SecurityKey;
|
|
124
|
-
readonly Subject: string
|
|
126
|
+
readonly Subject: string;
|
|
125
127
|
Typ: string;
|
|
126
128
|
readonly ValidFrom: DateTime;
|
|
127
129
|
readonly ValidTo: DateTime;
|
|
@@ -130,7 +132,7 @@ export interface JsonWebToken$instance extends SecurityToken {
|
|
|
130
132
|
GetClaim(key: string): Claim;
|
|
131
133
|
GetHeaderValue<T>(key: string): T;
|
|
132
134
|
GetPayloadValue<T>(key: string): T;
|
|
133
|
-
ToString(): string
|
|
135
|
+
ToString(): string;
|
|
134
136
|
TryGetClaim(key: string, value: Claim): boolean;
|
|
135
137
|
TryGetHeaderValue<T>(key: string, value: T): boolean;
|
|
136
138
|
TryGetPayloadValue<T>(key: string, value: T): boolean;
|
|
@@ -153,19 +155,14 @@ export interface __JsonWebToken$views {
|
|
|
153
155
|
export type JsonWebToken = JsonWebToken$instance & __JsonWebToken$views;
|
|
154
156
|
|
|
155
157
|
|
|
156
|
-
export
|
|
157
|
-
protected CreateClaimsIdentity(jwtToken: JsonWebToken, validationParameters: TokenValidationParameters): ClaimsIdentity;
|
|
158
|
-
protected CreateClaimsIdentity(jwtToken: JsonWebToken, validationParameters: TokenValidationParameters, issuer: string): ClaimsIdentity;
|
|
159
|
-
protected ResolveTokenDecryptionKey(token: string, jwtToken: JsonWebToken, validationParameters: TokenValidationParameters): SecurityKey;
|
|
160
|
-
}
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
export interface JsonWebTokenHandler$instance extends JsonWebTokenHandler$protected, TokenHandler {
|
|
158
|
+
export interface JsonWebTokenHandler$instance extends TokenHandler {
|
|
164
159
|
readonly CanValidateToken: boolean;
|
|
165
160
|
InboundClaimTypeMap: IDictionary<System_Internal.String, System_Internal.String>;
|
|
166
161
|
MapInboundClaims: boolean;
|
|
167
162
|
readonly TokenType: Type;
|
|
168
163
|
CanReadToken(token: string): boolean;
|
|
164
|
+
CreateClaimsIdentity(jwtToken: JsonWebToken, validationParameters: TokenValidationParameters): ClaimsIdentity;
|
|
165
|
+
CreateClaimsIdentity(jwtToken: JsonWebToken, validationParameters: TokenValidationParameters, issuer: string): ClaimsIdentity;
|
|
169
166
|
CreateToken(payload: string): string;
|
|
170
167
|
CreateToken(payload: string, additionalHeaderClaims: IDictionary<System_Internal.String, unknown>): string;
|
|
171
168
|
CreateToken(payload: string, signingCredentials: SigningCredentials): string;
|
|
@@ -186,6 +183,7 @@ export interface JsonWebTokenHandler$instance extends JsonWebTokenHandler$protec
|
|
|
186
183
|
EncryptToken(innerJwt: string, encryptingCredentials: EncryptingCredentials, algorithm: string, additionalHeaderClaims: IDictionary<System_Internal.String, unknown>): string;
|
|
187
184
|
ReadJsonWebToken(token: string): JsonWebToken;
|
|
188
185
|
ReadToken(token: string): SecurityToken;
|
|
186
|
+
ResolveTokenDecryptionKey(token: string, jwtToken: JsonWebToken, validationParameters: TokenValidationParameters): SecurityKey;
|
|
189
187
|
ValidateToken(token: string, validationParameters: TokenValidationParameters): TokenValidationResult;
|
|
190
188
|
ValidateTokenAsync(token: string, validationParameters: TokenValidationParameters): Task<TokenValidationResult>;
|
|
191
189
|
ValidateTokenAsync(token: SecurityToken, validationParameters: TokenValidationParameters): Task<TokenValidationResult>;
|
|
@@ -15,6 +15,8 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
15
15
|
import type { ArgumentException, ArgumentNullException, Boolean as ClrBoolean, Exception, Func, Guid, IDisposable, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
16
16
|
|
|
17
17
|
export interface ISafeLogSecurityArtifact$instance {
|
|
18
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Logging_ISafeLogSecurityArtifact: never;
|
|
19
|
+
|
|
18
20
|
UnsafeToString(): string;
|
|
19
21
|
}
|
|
20
22
|
|
|
@@ -22,6 +24,8 @@ export interface ISafeLogSecurityArtifact$instance {
|
|
|
22
24
|
export type ISafeLogSecurityArtifact = ISafeLogSecurityArtifact$instance;
|
|
23
25
|
|
|
24
26
|
export interface IdentityModelEventSource$instance extends EventSource {
|
|
27
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
28
|
+
|
|
25
29
|
LogLevel: EventLevel;
|
|
26
30
|
Write(level: EventLevel, innerException: Exception, message: string): void;
|
|
27
31
|
Write(level: EventLevel, innerException: Exception, message: string, ...args: unknown[]): void;
|
|
@@ -41,7 +45,6 @@ export interface IdentityModelEventSource$instance extends EventSource {
|
|
|
41
45
|
|
|
42
46
|
|
|
43
47
|
export const IdentityModelEventSource: {
|
|
44
|
-
new(): IdentityModelEventSource;
|
|
45
48
|
readonly Logger: IdentityModelEventSource;
|
|
46
49
|
ShowPII: boolean;
|
|
47
50
|
LogCompleteSecurityArtifact: boolean;
|
|
@@ -110,13 +113,11 @@ export const LogHelper: {
|
|
|
110
113
|
|
|
111
114
|
export type LogHelper = LogHelper$instance;
|
|
112
115
|
|
|
113
|
-
export
|
|
114
|
-
|
|
115
|
-
}
|
|
116
|
-
|
|
116
|
+
export interface TextWriterEventListener$instance extends EventListener {
|
|
117
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
117
118
|
|
|
118
|
-
export interface TextWriterEventListener$instance extends TextWriterEventListener$protected, EventListener {
|
|
119
119
|
Dispose(): void;
|
|
120
|
+
OnEventWritten(eventData: EventWrittenEventArgs): void;
|
|
120
121
|
}
|
|
121
122
|
|
|
122
123
|
|
|
@@ -20,6 +20,8 @@ import type { CancellationToken } from "@tsonic/dotnet/System.Threading.js";
|
|
|
20
20
|
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
21
21
|
|
|
22
22
|
export interface IConfigurationManager_1$instance<T> {
|
|
23
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Protocols_IConfigurationManager_1: never;
|
|
24
|
+
|
|
23
25
|
GetConfigurationAsync(cancel: CancellationToken): Task<T>;
|
|
24
26
|
RequestRefresh(): void;
|
|
25
27
|
}
|
|
@@ -28,6 +30,8 @@ export interface IConfigurationManager_1$instance<T> {
|
|
|
28
30
|
export type IConfigurationManager_1<T> = IConfigurationManager_1$instance<T>;
|
|
29
31
|
|
|
30
32
|
export interface IConfigurationRetriever_1$instance<T> {
|
|
33
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Protocols_IConfigurationRetriever_1: never;
|
|
34
|
+
|
|
31
35
|
GetConfigurationAsync(address: string, retriever: IDocumentRetriever, cancel: CancellationToken): Task<T>;
|
|
32
36
|
}
|
|
33
37
|
|
|
@@ -35,6 +39,8 @@ export interface IConfigurationRetriever_1$instance<T> {
|
|
|
35
39
|
export type IConfigurationRetriever_1<T> = IConfigurationRetriever_1$instance<T>;
|
|
36
40
|
|
|
37
41
|
export interface IConfigurationValidator_1$instance<T> {
|
|
42
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Protocols_IConfigurationValidator_1: never;
|
|
43
|
+
|
|
38
44
|
Validate(configuration: T): ConfigurationValidationResult;
|
|
39
45
|
}
|
|
40
46
|
|
|
@@ -42,6 +48,8 @@ export interface IConfigurationValidator_1$instance<T> {
|
|
|
42
48
|
export type IConfigurationValidator_1<T> = IConfigurationValidator_1$instance<T>;
|
|
43
49
|
|
|
44
50
|
export interface IDocumentRetriever$instance {
|
|
51
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Protocols_IDocumentRetriever: never;
|
|
52
|
+
|
|
45
53
|
GetDocumentAsync(address: string, cancel: CancellationToken): Task<System_Internal.String>;
|
|
46
54
|
}
|
|
47
55
|
|
|
@@ -64,14 +72,15 @@ export interface AuthenticationProtocolMessage$instance {
|
|
|
64
72
|
}
|
|
65
73
|
|
|
66
74
|
|
|
67
|
-
export const AuthenticationProtocolMessage: {
|
|
68
|
-
new(): AuthenticationProtocolMessage;
|
|
75
|
+
export const AuthenticationProtocolMessage: (abstract new() => AuthenticationProtocolMessage) & {
|
|
69
76
|
};
|
|
70
77
|
|
|
71
78
|
|
|
72
79
|
export type AuthenticationProtocolMessage = AuthenticationProtocolMessage$instance;
|
|
73
80
|
|
|
74
81
|
export interface ConfigurationManager_1$instance<T> extends BaseConfigurationManager {
|
|
82
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Protocols_IConfigurationManager_1: never;
|
|
83
|
+
|
|
75
84
|
GetBaseConfigurationAsync(cancel: CancellationToken): Task<BaseConfiguration>;
|
|
76
85
|
GetBaseConfigurationAsync(cancel: CancellationToken): Task<BaseConfiguration>;
|
|
77
86
|
GetConfigurationAsync(): Task<T>;
|
|
@@ -115,6 +124,8 @@ export const ConfigurationValidationResult: {
|
|
|
115
124
|
export type ConfigurationValidationResult = ConfigurationValidationResult$instance;
|
|
116
125
|
|
|
117
126
|
export interface FileDocumentRetriever$instance {
|
|
127
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Protocols_IDocumentRetriever: never;
|
|
128
|
+
|
|
118
129
|
GetDocumentAsync(address: string, cancel: CancellationToken): Task<System_Internal.String>;
|
|
119
130
|
}
|
|
120
131
|
|
|
@@ -134,6 +145,8 @@ export type FileDocumentRetriever = FileDocumentRetriever$instance & __FileDocum
|
|
|
134
145
|
|
|
135
146
|
|
|
136
147
|
export interface HttpDocumentRetriever$instance {
|
|
148
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Protocols_IDocumentRetriever: never;
|
|
149
|
+
|
|
137
150
|
RequireHttps: boolean;
|
|
138
151
|
SendAdditionalHeaderData: boolean;
|
|
139
152
|
GetDocumentAsync(address: string, cancel: CancellationToken): Task<System_Internal.String>;
|
|
@@ -177,6 +190,8 @@ export const HttpRequestData: {
|
|
|
177
190
|
export type HttpRequestData = HttpRequestData$instance;
|
|
178
191
|
|
|
179
192
|
export interface StaticConfigurationManager_1$instance<T> extends BaseConfigurationManager {
|
|
193
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Protocols_IConfigurationManager_1: never;
|
|
194
|
+
|
|
180
195
|
GetBaseConfigurationAsync(cancel: CancellationToken): Task<BaseConfiguration>;
|
|
181
196
|
GetBaseConfigurationAsync(cancel: CancellationToken): Task<BaseConfiguration>;
|
|
182
197
|
GetConfigurationAsync(cancel: CancellationToken): Task<T>;
|
|
@@ -17,6 +17,8 @@ import type { ISerializable, SerializationInfo, StreamingContext } from "@tsonic
|
|
|
17
17
|
import type { TaskCreationOptions } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
18
18
|
|
|
19
19
|
export interface InvalidConfigurationException$instance extends Exception {
|
|
20
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
21
|
+
|
|
20
22
|
}
|
|
21
23
|
|
|
22
24
|
|
|
@@ -24,7 +26,6 @@ export const InvalidConfigurationException: {
|
|
|
24
26
|
new(): InvalidConfigurationException;
|
|
25
27
|
new(message: string): InvalidConfigurationException;
|
|
26
28
|
new(message: string, innerException: Exception): InvalidConfigurationException;
|
|
27
|
-
new(info: SerializationInfo, context: StreamingContext): InvalidConfigurationException;
|
|
28
29
|
};
|
|
29
30
|
|
|
30
31
|
|
|
@@ -133,6 +133,8 @@ export const OpenIdConnectConfiguration: {
|
|
|
133
133
|
export type OpenIdConnectConfiguration = OpenIdConnectConfiguration$instance;
|
|
134
134
|
|
|
135
135
|
export interface OpenIdConnectConfigurationRetriever$instance {
|
|
136
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Protocols_IConfigurationRetriever_1: never;
|
|
137
|
+
|
|
136
138
|
}
|
|
137
139
|
|
|
138
140
|
|
|
@@ -162,8 +164,7 @@ export interface OpenIdConnectMessage$instance extends AuthenticationProtocolMes
|
|
|
162
164
|
ClientAssertionType: string;
|
|
163
165
|
ClientId: string;
|
|
164
166
|
ClientSecret: string;
|
|
165
|
-
|
|
166
|
-
set Code(value: string);
|
|
167
|
+
Code: string;
|
|
167
168
|
Display: string;
|
|
168
169
|
DomainHint: string;
|
|
169
170
|
EnableTelemetryParameters: boolean;
|
|
@@ -209,7 +210,6 @@ export interface OpenIdConnectMessage$instance extends AuthenticationProtocolMes
|
|
|
209
210
|
export const OpenIdConnectMessage: {
|
|
210
211
|
new(): OpenIdConnectMessage;
|
|
211
212
|
new(json: string): OpenIdConnectMessage;
|
|
212
|
-
new(other: OpenIdConnectMessage): OpenIdConnectMessage;
|
|
213
213
|
new(nameValueCollection: NameValueCollection): OpenIdConnectMessage;
|
|
214
214
|
new(parameters: IEnumerable<KeyValuePair<System_Internal.String, string[]>>): OpenIdConnectMessage;
|
|
215
215
|
EnableTelemetryParametersByDefault: boolean;
|
|
@@ -219,6 +219,8 @@ export const OpenIdConnectMessage: {
|
|
|
219
219
|
export type OpenIdConnectMessage = OpenIdConnectMessage$instance;
|
|
220
220
|
|
|
221
221
|
export interface OpenIdConnectProtocolException$instance extends Exception {
|
|
222
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
223
|
+
|
|
222
224
|
}
|
|
223
225
|
|
|
224
226
|
|
|
@@ -226,13 +228,14 @@ export const OpenIdConnectProtocolException: {
|
|
|
226
228
|
new(): OpenIdConnectProtocolException;
|
|
227
229
|
new(message: string): OpenIdConnectProtocolException;
|
|
228
230
|
new(message: string, innerException: Exception): OpenIdConnectProtocolException;
|
|
229
|
-
new(info: SerializationInfo, context: StreamingContext): OpenIdConnectProtocolException;
|
|
230
231
|
};
|
|
231
232
|
|
|
232
233
|
|
|
233
234
|
export type OpenIdConnectProtocolException = OpenIdConnectProtocolException$instance;
|
|
234
235
|
|
|
235
236
|
export interface OpenIdConnectProtocolInvalidAtHashException$instance extends OpenIdConnectProtocolException {
|
|
237
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
238
|
+
|
|
236
239
|
}
|
|
237
240
|
|
|
238
241
|
|
|
@@ -240,13 +243,14 @@ export const OpenIdConnectProtocolInvalidAtHashException: {
|
|
|
240
243
|
new(): OpenIdConnectProtocolInvalidAtHashException;
|
|
241
244
|
new(message: string): OpenIdConnectProtocolInvalidAtHashException;
|
|
242
245
|
new(message: string, innerException: Exception): OpenIdConnectProtocolInvalidAtHashException;
|
|
243
|
-
new(info: SerializationInfo, context: StreamingContext): OpenIdConnectProtocolInvalidAtHashException;
|
|
244
246
|
};
|
|
245
247
|
|
|
246
248
|
|
|
247
249
|
export type OpenIdConnectProtocolInvalidAtHashException = OpenIdConnectProtocolInvalidAtHashException$instance;
|
|
248
250
|
|
|
249
251
|
export interface OpenIdConnectProtocolInvalidCHashException$instance extends OpenIdConnectProtocolException {
|
|
252
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
253
|
+
|
|
250
254
|
}
|
|
251
255
|
|
|
252
256
|
|
|
@@ -254,13 +258,14 @@ export const OpenIdConnectProtocolInvalidCHashException: {
|
|
|
254
258
|
new(): OpenIdConnectProtocolInvalidCHashException;
|
|
255
259
|
new(message: string): OpenIdConnectProtocolInvalidCHashException;
|
|
256
260
|
new(message: string, innerException: Exception): OpenIdConnectProtocolInvalidCHashException;
|
|
257
|
-
new(info: SerializationInfo, context: StreamingContext): OpenIdConnectProtocolInvalidCHashException;
|
|
258
261
|
};
|
|
259
262
|
|
|
260
263
|
|
|
261
264
|
export type OpenIdConnectProtocolInvalidCHashException = OpenIdConnectProtocolInvalidCHashException$instance;
|
|
262
265
|
|
|
263
266
|
export interface OpenIdConnectProtocolInvalidNonceException$instance extends OpenIdConnectProtocolException {
|
|
267
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
268
|
+
|
|
264
269
|
}
|
|
265
270
|
|
|
266
271
|
|
|
@@ -268,13 +273,14 @@ export const OpenIdConnectProtocolInvalidNonceException: {
|
|
|
268
273
|
new(): OpenIdConnectProtocolInvalidNonceException;
|
|
269
274
|
new(message: string): OpenIdConnectProtocolInvalidNonceException;
|
|
270
275
|
new(message: string, innerException: Exception): OpenIdConnectProtocolInvalidNonceException;
|
|
271
|
-
new(info: SerializationInfo, context: StreamingContext): OpenIdConnectProtocolInvalidNonceException;
|
|
272
276
|
};
|
|
273
277
|
|
|
274
278
|
|
|
275
279
|
export type OpenIdConnectProtocolInvalidNonceException = OpenIdConnectProtocolInvalidNonceException$instance;
|
|
276
280
|
|
|
277
281
|
export interface OpenIdConnectProtocolInvalidStateException$instance extends OpenIdConnectProtocolException {
|
|
282
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
283
|
+
|
|
278
284
|
}
|
|
279
285
|
|
|
280
286
|
|
|
@@ -282,7 +288,6 @@ export const OpenIdConnectProtocolInvalidStateException: {
|
|
|
282
288
|
new(): OpenIdConnectProtocolInvalidStateException;
|
|
283
289
|
new(message: string): OpenIdConnectProtocolInvalidStateException;
|
|
284
290
|
new(message: string, innerException: Exception): OpenIdConnectProtocolInvalidStateException;
|
|
285
|
-
new(info: SerializationInfo, context: StreamingContext): OpenIdConnectProtocolInvalidStateException;
|
|
286
291
|
};
|
|
287
292
|
|
|
288
293
|
|
|
@@ -305,16 +310,7 @@ export const OpenIdConnectProtocolValidationContext: {
|
|
|
305
310
|
|
|
306
311
|
export type OpenIdConnectProtocolValidationContext = OpenIdConnectProtocolValidationContext$instance;
|
|
307
312
|
|
|
308
|
-
export
|
|
309
|
-
protected ValidateAtHash(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
310
|
-
protected ValidateCHash(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
311
|
-
protected ValidateIdToken(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
312
|
-
protected ValidateNonce(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
313
|
-
protected ValidateState(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
314
|
-
}
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
export interface OpenIdConnectProtocolValidator$instance extends OpenIdConnectProtocolValidator$protected {
|
|
313
|
+
export interface OpenIdConnectProtocolValidator$instance {
|
|
318
314
|
CryptoProviderFactory: CryptoProviderFactory;
|
|
319
315
|
readonly HashAlgorithmMap: IDictionary<System_Internal.String, System_Internal.String>;
|
|
320
316
|
IdTokenValidator: IdTokenValidator;
|
|
@@ -330,7 +326,12 @@ export interface OpenIdConnectProtocolValidator$instance extends OpenIdConnectPr
|
|
|
330
326
|
RequireTimeStampInNonce: boolean;
|
|
331
327
|
GenerateNonce(): string;
|
|
332
328
|
GetHashAlgorithm(algorithm: string): HashAlgorithm;
|
|
329
|
+
ValidateAtHash(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
333
330
|
ValidateAuthenticationResponse(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
331
|
+
ValidateCHash(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
332
|
+
ValidateIdToken(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
333
|
+
ValidateNonce(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
334
|
+
ValidateState(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
334
335
|
ValidateTokenResponse(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
335
336
|
ValidateUserInfoResponse(validationContext: OpenIdConnectProtocolValidationContext): void;
|
|
336
337
|
}
|
|
@@ -14,6 +14,8 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
14
14
|
import type { Int32, Object as ClrObject } from "@tsonic/dotnet/System.js";
|
|
15
15
|
|
|
16
16
|
export interface OpenIdConnectConfigurationValidator$instance {
|
|
17
|
+
readonly __tsonic_iface_Microsoft_IdentityModel_Protocols_IConfigurationValidator_1: never;
|
|
18
|
+
|
|
17
19
|
MinimumNumberOfKeys: int;
|
|
18
20
|
Validate(openIdConnectConfiguration: OpenIdConnectConfiguration): ConfigurationValidationResult;
|
|
19
21
|
}
|