@tsonic/efcore-sqlserver 10.0.12 → 10.0.20
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/bindings.json +3 -43
- package/Azure/internal/index.d.ts +0 -2
- package/Azure.Core/bindings.json +0 -40
- package/Azure.Core/internal/index.d.ts +0 -2
- package/Azure.Core.Pipeline/bindings.json +0 -160
- package/Azure.Core.Pipeline/internal/index.d.ts +0 -2
- package/Azure.Core.Serialization/bindings.json +0 -40
- package/Azure.Core.Serialization/internal/index.d.ts +0 -1
- package/Azure.Identity/bindings.json +108 -188
- package/Microsoft.Data.SqlClient/bindings.json +0 -20
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/bindings.json +0 -80
- package/Microsoft.Identity.Client/bindings.json +21 -501
- package/Microsoft.Identity.Client/internal/index.d.ts +0 -24
- package/Microsoft.IdentityModel.JsonWebTokens/bindings.json +0 -40
- package/Microsoft.IdentityModel.JsonWebTokens/internal/index.d.ts +0 -2
- package/Microsoft.IdentityModel.Protocols/bindings.json +0 -40
- package/Microsoft.IdentityModel.Protocols/internal/index.d.ts +0 -2
- package/Microsoft.IdentityModel.Tokens/bindings.json +4 -56
- package/Microsoft.IdentityModel.Tokens/internal/index.d.ts +2 -2
- package/README.md +53 -2
- package/System.ClientModel.Primitives/bindings.json +0 -200
- package/System.ClientModel.Primitives/internal/index.d.ts +0 -2
- package/System.IdentityModel.Tokens.Jwt/bindings.json +3 -23
- package/System.IdentityModel.Tokens.Jwt/internal/index.d.ts +0 -1
- package/package.json +5 -5
|
@@ -3175,31 +3175,11 @@
|
|
|
3175
3175
|
]
|
|
3176
3176
|
},
|
|
3177
3177
|
{
|
|
3178
|
-
"stableId": "System.IdentityModel.Tokens.Jwt:System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler::ValidateTokenAsync(
|
|
3178
|
+
"stableId": "System.IdentityModel.Tokens.Jwt:System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler::ValidateTokenAsync(Microsoft.IdentityModel.Tokens.SecurityToken,Microsoft.IdentityModel.Tokens.TokenValidationParameters):System.Threading.Tasks.Task_1\u003CMicrosoft.IdentityModel.Tokens.TokenValidationResult\u003E",
|
|
3179
3179
|
"clrName": "ValidateTokenAsync",
|
|
3180
3180
|
"metadataToken": 0,
|
|
3181
|
-
"canonicalSignature": "(
|
|
3182
|
-
"normalizedSignature": "ValidateTokenAsync|(
|
|
3183
|
-
"emitScope": "ClassSurface",
|
|
3184
|
-
"provenance": "BaseOverload",
|
|
3185
|
-
"arity": 0,
|
|
3186
|
-
"parameterCount": 2,
|
|
3187
|
-
"isStatic": false,
|
|
3188
|
-
"isAbstract": false,
|
|
3189
|
-
"isVirtual": true,
|
|
3190
|
-
"isOverride": false,
|
|
3191
|
-
"isSealed": false,
|
|
3192
|
-
"visibility": "Public",
|
|
3193
|
-
"declaringClrType": "System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler",
|
|
3194
|
-
"declaringAssemblyName": "System.IdentityModel.Tokens.Jwt",
|
|
3195
|
-
"isExtensionMethod": false
|
|
3196
|
-
},
|
|
3197
|
-
{
|
|
3198
|
-
"stableId": "System.IdentityModel.Tokens.Jwt:System.IdentityModel.Tokens.Jwt.JwtSecurityTokenHandler::ValidateTokenAsync(Microsoft.IdentityModel.Tokens.SecurityToken,Microsoft.IdentityModel.Tokens.TokenValidationParameters):System.Threading.Tasks.Task_1",
|
|
3199
|
-
"clrName": "ValidateTokenAsync",
|
|
3200
|
-
"metadataToken": 0,
|
|
3201
|
-
"canonicalSignature": "(Microsoft.IdentityModel.Tokens.SecurityToken,Microsoft.IdentityModel.Tokens.TokenValidationParameters):System.Threading.Tasks.Task_1",
|
|
3202
|
-
"normalizedSignature": "ValidateTokenAsync|(Microsoft.IdentityModel.Tokens.SecurityToken,Microsoft.IdentityModel.Tokens.TokenValidationParameters):System.Threading.Tasks.Task_1|static=false",
|
|
3181
|
+
"canonicalSignature": "(Microsoft.IdentityModel.Tokens.SecurityToken,Microsoft.IdentityModel.Tokens.TokenValidationParameters):System.Threading.Tasks.Task_1\u003CMicrosoft.IdentityModel.Tokens.TokenValidationResult\u003E",
|
|
3182
|
+
"normalizedSignature": "ValidateTokenAsync|(Microsoft.IdentityModel.Tokens.SecurityToken,Microsoft.IdentityModel.Tokens.TokenValidationParameters):System.Threading.Tasks.Task_1\u003CMicrosoft.IdentityModel.Tokens.TokenValidationResult\u003E|static=false",
|
|
3203
3183
|
"emitScope": "ClassSurface",
|
|
3204
3184
|
"provenance": "BaseOverload",
|
|
3205
3185
|
"arity": 0,
|
|
@@ -299,7 +299,6 @@ export interface JwtSecurityTokenHandler$instance extends SecurityTokenHandler {
|
|
|
299
299
|
ValidateToken(token: string, validationParameters: TokenValidationParameters, validatedToken: SecurityToken): ClaimsPrincipal;
|
|
300
300
|
ValidateToken(reader: XmlReader, validationParameters: TokenValidationParameters, validatedToken: SecurityToken): ClaimsPrincipal;
|
|
301
301
|
ValidateTokenAsync(token: string, validationParameters: TokenValidationParameters): Task_1<TokenValidationResult>;
|
|
302
|
-
ValidateTokenAsync(token: string, validationParameters: TokenValidationParameters): Task_1<TokenValidationResult>;
|
|
303
302
|
ValidateTokenAsync(token: SecurityToken, validationParameters: TokenValidationParameters): Task_1<TokenValidationResult>;
|
|
304
303
|
ValidateTokenReplay(expires: Nullable_1<DateTime>, securityToken: string, validationParameters: TokenValidationParameters): void;
|
|
305
304
|
WriteToken(token: SecurityToken): string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/efcore-sqlserver",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.20",
|
|
4
4
|
"description": "TypeScript type definitions for Microsoft.EntityFrameworkCore.SqlServer (+ dependencies) for .NET 10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"url": "https://github.com/tsoniclang/efcore-sqlserver.git"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@tsonic/core": "10.0.
|
|
23
|
-
"@tsonic/dotnet": "10.0.
|
|
24
|
-
"@tsonic/microsoft-extensions": "10.0.
|
|
25
|
-
"@tsonic/efcore": "10.0.
|
|
22
|
+
"@tsonic/core": "10.0.20",
|
|
23
|
+
"@tsonic/dotnet": "10.0.20",
|
|
24
|
+
"@tsonic/microsoft-extensions": "10.0.20",
|
|
25
|
+
"@tsonic/efcore": "10.0.20"
|
|
26
26
|
}
|
|
27
27
|
}
|