@tsonic/efcore-sqlserver 10.0.27 → 10.0.31
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 +8 -4
- package/Azure.Core/internal/index.d.ts +2 -1
- package/Azure.Identity/internal/index.d.ts +12 -6
- package/Azure.Messaging/internal/index.d.ts +6 -3
- package/Microsoft.Data.SqlClient/internal/index.d.ts +2 -1
- package/Microsoft.Identity.Client/internal/index.d.ts +2 -1
- package/Microsoft.Identity.Client.Extensibility/internal/index.d.ts +2 -1
- package/Microsoft.IdentityModel.Tokens/internal/index.d.ts +10 -5
- package/System.ClientModel.Primitives/internal/index.d.ts +14 -7
- package/System.Configuration.Provider/internal/index.d.ts +1 -1
- package/System.Configuration.Provider.d.ts +1 -1
- package/__internal/extensions/index.d.ts +2 -2
- package/package.json +5 -5
|
@@ -197,8 +197,10 @@ export type JsonPatchDocument = JsonPatchDocument$instance;
|
|
|
197
197
|
export interface MatchConditions$instance {
|
|
198
198
|
readonly __tsonic_type_Azure_MatchConditions: never;
|
|
199
199
|
|
|
200
|
-
IfMatch: Nullable_1<ETag>;
|
|
201
|
-
|
|
200
|
+
get IfMatch(): Nullable_1<ETag>;
|
|
201
|
+
set IfMatch(value: Nullable_1<ETag> | ETag);
|
|
202
|
+
get IfNoneMatch(): Nullable_1<ETag>;
|
|
203
|
+
set IfNoneMatch(value: Nullable_1<ETag> | ETag);
|
|
202
204
|
}
|
|
203
205
|
|
|
204
206
|
|
|
@@ -340,8 +342,10 @@ export type PageableOperation_1<T> = PageableOperation_1$instance<T>;
|
|
|
340
342
|
export interface RequestConditions$instance extends MatchConditions {
|
|
341
343
|
readonly __tsonic_type_Azure_RequestConditions: never;
|
|
342
344
|
|
|
343
|
-
IfModifiedSince: Nullable_1<DateTimeOffset>;
|
|
344
|
-
|
|
345
|
+
get IfModifiedSince(): Nullable_1<DateTimeOffset>;
|
|
346
|
+
set IfModifiedSince(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
347
|
+
get IfUnmodifiedSince(): Nullable_1<DateTimeOffset>;
|
|
348
|
+
set IfUnmodifiedSince(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
345
349
|
}
|
|
346
350
|
|
|
347
351
|
|
|
@@ -450,7 +450,8 @@ export interface HttpMessage$instance {
|
|
|
450
450
|
BufferResponse: boolean;
|
|
451
451
|
CancellationToken: CancellationToken;
|
|
452
452
|
readonly HasResponse: boolean;
|
|
453
|
-
NetworkTimeout: Nullable_1<TimeSpan>;
|
|
453
|
+
get NetworkTimeout(): Nullable_1<TimeSpan>;
|
|
454
|
+
set NetworkTimeout(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
454
455
|
readonly ProcessingContext: MessageProcessingContext;
|
|
455
456
|
readonly Request: Request;
|
|
456
457
|
Response: Response;
|
|
@@ -170,7 +170,8 @@ export interface AzureCliCredentialOptions$instance extends TokenCredentialOptio
|
|
|
170
170
|
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
171
171
|
|
|
172
172
|
AdditionallyAllowedTenants: IList_1<System_Internal.String>;
|
|
173
|
-
ProcessTimeout: Nullable_1<TimeSpan>;
|
|
173
|
+
get ProcessTimeout(): Nullable_1<TimeSpan>;
|
|
174
|
+
set ProcessTimeout(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
174
175
|
Subscription: string;
|
|
175
176
|
TenantId: string;
|
|
176
177
|
}
|
|
@@ -207,7 +208,8 @@ export interface AzureDeveloperCliCredentialOptions$instance extends TokenCreden
|
|
|
207
208
|
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
208
209
|
|
|
209
210
|
AdditionallyAllowedTenants: IList_1<System_Internal.String>;
|
|
210
|
-
ProcessTimeout: Nullable_1<TimeSpan>;
|
|
211
|
+
get ProcessTimeout(): Nullable_1<TimeSpan>;
|
|
212
|
+
set ProcessTimeout(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
211
213
|
TenantId: string;
|
|
212
214
|
}
|
|
213
215
|
|
|
@@ -280,7 +282,8 @@ export interface AzurePowerShellCredentialOptions$instance extends TokenCredenti
|
|
|
280
282
|
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
281
283
|
|
|
282
284
|
AdditionallyAllowedTenants: IList_1<System_Internal.String>;
|
|
283
|
-
ProcessTimeout: Nullable_1<TimeSpan>;
|
|
285
|
+
get ProcessTimeout(): Nullable_1<TimeSpan>;
|
|
286
|
+
set ProcessTimeout(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
284
287
|
TenantId: string;
|
|
285
288
|
}
|
|
286
289
|
|
|
@@ -297,7 +300,8 @@ export interface BrowserCustomizationOptions$instance {
|
|
|
297
300
|
|
|
298
301
|
ErrorMessage: string;
|
|
299
302
|
SuccessMessage: string;
|
|
300
|
-
UseEmbeddedWebView: Nullable_1<System_Internal.Boolean>;
|
|
303
|
+
get UseEmbeddedWebView(): Nullable_1<System_Internal.Boolean>;
|
|
304
|
+
set UseEmbeddedWebView(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
301
305
|
}
|
|
302
306
|
|
|
303
307
|
|
|
@@ -486,7 +490,8 @@ export interface DefaultAzureCredentialOptions$instance extends TokenCredentialO
|
|
|
486
490
|
readonly __tsonic_iface_Azure_Identity_ISupportsDisableInstanceDiscovery: never;
|
|
487
491
|
|
|
488
492
|
AdditionallyAllowedTenants: IList_1<System_Internal.String>;
|
|
489
|
-
CredentialProcessTimeout: Nullable_1<TimeSpan>;
|
|
493
|
+
get CredentialProcessTimeout(): Nullable_1<TimeSpan>;
|
|
494
|
+
set CredentialProcessTimeout(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
490
495
|
DisableInstanceDiscovery: boolean;
|
|
491
496
|
ExcludeAzureCliCredential: boolean;
|
|
492
497
|
ExcludeAzureDeveloperCliCredential: boolean;
|
|
@@ -981,7 +986,8 @@ export interface VisualStudioCredentialOptions$instance extends TokenCredentialO
|
|
|
981
986
|
readonly __tsonic_iface_Azure_Identity_ISupportsAdditionallyAllowedTenants: never;
|
|
982
987
|
|
|
983
988
|
AdditionallyAllowedTenants: IList_1<System_Internal.String>;
|
|
984
|
-
ProcessTimeout: Nullable_1<TimeSpan>;
|
|
989
|
+
get ProcessTimeout(): Nullable_1<TimeSpan>;
|
|
990
|
+
set ProcessTimeout(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
985
991
|
TenantId: string;
|
|
986
992
|
}
|
|
987
993
|
|
|
@@ -32,7 +32,8 @@ export interface CloudEvent$instance {
|
|
|
32
32
|
Source: string;
|
|
33
33
|
get Subject(): string | undefined;
|
|
34
34
|
set Subject(value: string | undefined);
|
|
35
|
-
Time: Nullable_1<DateTimeOffset>;
|
|
35
|
+
get Time(): Nullable_1<DateTimeOffset>;
|
|
36
|
+
set Time(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
36
37
|
Type: string;
|
|
37
38
|
}
|
|
38
39
|
|
|
@@ -50,8 +51,10 @@ export type CloudEvent = CloudEvent$instance;
|
|
|
50
51
|
export interface MessageContent$instance {
|
|
51
52
|
readonly __tsonic_type_Azure_Messaging_MessageContent: never;
|
|
52
53
|
|
|
53
|
-
ContentType: Nullable_1<ContentType>;
|
|
54
|
-
|
|
54
|
+
get ContentType(): Nullable_1<ContentType>;
|
|
55
|
+
set ContentType(value: Nullable_1<ContentType> | ContentType);
|
|
56
|
+
get ContentTypeCore(): Nullable_1<ContentType>;
|
|
57
|
+
set ContentTypeCore(value: Nullable_1<ContentType> | ContentType);
|
|
55
58
|
get Data(): BinaryData | undefined;
|
|
56
59
|
set Data(value: BinaryData | undefined);
|
|
57
60
|
readonly IsReadOnly: boolean;
|
|
@@ -593,7 +593,8 @@ export type SqlColumnEncryptionCspProvider = SqlColumnEncryptionCspProvider$inst
|
|
|
593
593
|
export interface SqlColumnEncryptionKeyStoreProvider$instance {
|
|
594
594
|
readonly __tsonic_type_Microsoft_Data_SqlClient_SqlColumnEncryptionKeyStoreProvider: never;
|
|
595
595
|
|
|
596
|
-
ColumnEncryptionKeyCacheTtl: Nullable_1<TimeSpan>;
|
|
596
|
+
get ColumnEncryptionKeyCacheTtl(): Nullable_1<TimeSpan>;
|
|
597
|
+
set ColumnEncryptionKeyCacheTtl(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
597
598
|
DecryptColumnEncryptionKey(masterKeyPath: string, encryptionAlgorithm: string, encryptedColumnEncryptionKey: byte[]): byte[];
|
|
598
599
|
EncryptColumnEncryptionKey(masterKeyPath: string, encryptionAlgorithm: string, columnEncryptionKey: byte[]): byte[];
|
|
599
600
|
SignColumnMasterKeyMetadata(masterKeyPath: string, allowEnclaveComputations: boolean): byte[];
|
|
@@ -785,7 +785,8 @@ export interface AuthenticationResultMetadata$instance {
|
|
|
785
785
|
DurationInCacheInMs: long;
|
|
786
786
|
DurationInHttpInMs: long;
|
|
787
787
|
DurationTotalInMs: long;
|
|
788
|
-
RefreshOn: Nullable_1<DateTimeOffset>;
|
|
788
|
+
get RefreshOn(): Nullable_1<DateTimeOffset>;
|
|
789
|
+
set RefreshOn(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
789
790
|
RegionDetails: RegionDetails;
|
|
790
791
|
Telemetry: string;
|
|
791
792
|
TokenEndpoint: string;
|
|
@@ -46,7 +46,8 @@ export interface AppTokenProviderResult$instance {
|
|
|
46
46
|
|
|
47
47
|
AccessToken: string;
|
|
48
48
|
ExpiresInSeconds: long;
|
|
49
|
-
RefreshInSeconds: Nullable_1<System_Internal.Int64>;
|
|
49
|
+
get RefreshInSeconds(): Nullable_1<System_Internal.Int64>;
|
|
50
|
+
set RefreshInSeconds(value: Nullable_1<System_Internal.Int64> | long);
|
|
50
51
|
}
|
|
51
52
|
|
|
52
53
|
|
|
@@ -792,10 +792,13 @@ export interface SecurityTokenDescriptor$instance {
|
|
|
792
792
|
Claims: IDictionary_2<System_Internal.String, unknown>;
|
|
793
793
|
CompressionAlgorithm: string;
|
|
794
794
|
EncryptingCredentials: EncryptingCredentials;
|
|
795
|
-
Expires: Nullable_1<DateTime>;
|
|
796
|
-
|
|
795
|
+
get Expires(): Nullable_1<DateTime>;
|
|
796
|
+
set Expires(value: Nullable_1<DateTime> | DateTime);
|
|
797
|
+
get IssuedAt(): Nullable_1<DateTime>;
|
|
798
|
+
set IssuedAt(value: Nullable_1<DateTime> | DateTime);
|
|
797
799
|
Issuer: string;
|
|
798
|
-
NotBefore: Nullable_1<DateTime>;
|
|
800
|
+
get NotBefore(): Nullable_1<DateTime>;
|
|
801
|
+
set NotBefore(value: Nullable_1<DateTime> | DateTime);
|
|
799
802
|
SigningCredentials: SigningCredentials;
|
|
800
803
|
Subject: ClaimsIdentity;
|
|
801
804
|
TokenType: string;
|
|
@@ -975,8 +978,10 @@ export interface SecurityTokenInvalidLifetimeException$instance extends Security
|
|
|
975
978
|
|
|
976
979
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
977
980
|
|
|
978
|
-
Expires: Nullable_1<DateTime>;
|
|
979
|
-
|
|
981
|
+
get Expires(): Nullable_1<DateTime>;
|
|
982
|
+
set Expires(value: Nullable_1<DateTime> | DateTime);
|
|
983
|
+
get NotBefore(): Nullable_1<DateTime>;
|
|
984
|
+
set NotBefore(value: Nullable_1<DateTime> | DateTime);
|
|
980
985
|
GetObjectData(info: SerializationInfo, context: StreamingContext): void;
|
|
981
986
|
}
|
|
982
987
|
|
|
@@ -228,12 +228,16 @@ export interface ClientLoggingOptions$instance {
|
|
|
228
228
|
|
|
229
229
|
readonly AllowedHeaderNames: IList_1<System_Internal.String>;
|
|
230
230
|
readonly AllowedQueryParameters: IList_1<System_Internal.String>;
|
|
231
|
-
EnableLogging: Nullable_1<System_Internal.Boolean>;
|
|
232
|
-
|
|
233
|
-
|
|
231
|
+
get EnableLogging(): Nullable_1<System_Internal.Boolean>;
|
|
232
|
+
set EnableLogging(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
233
|
+
get EnableMessageContentLogging(): Nullable_1<System_Internal.Boolean>;
|
|
234
|
+
set EnableMessageContentLogging(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
235
|
+
get EnableMessageLogging(): Nullable_1<System_Internal.Boolean>;
|
|
236
|
+
set EnableMessageLogging(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
234
237
|
get LoggerFactory(): ILoggerFactory | undefined;
|
|
235
238
|
set LoggerFactory(value: ILoggerFactory | undefined);
|
|
236
|
-
MessageContentSizeLimit: Nullable_1<System_Internal.Int32>;
|
|
239
|
+
get MessageContentSizeLimit(): Nullable_1<System_Internal.Int32>;
|
|
240
|
+
set MessageContentSizeLimit(value: Nullable_1<System_Internal.Int32> | int);
|
|
237
241
|
Freeze(): void;
|
|
238
242
|
}
|
|
239
243
|
|
|
@@ -267,10 +271,12 @@ export interface ClientPipelineOptions$instance {
|
|
|
267
271
|
|
|
268
272
|
get ClientLoggingOptions(): ClientLoggingOptions | undefined;
|
|
269
273
|
set ClientLoggingOptions(value: ClientLoggingOptions | undefined);
|
|
270
|
-
EnableDistributedTracing: Nullable_1<System_Internal.Boolean>;
|
|
274
|
+
get EnableDistributedTracing(): Nullable_1<System_Internal.Boolean>;
|
|
275
|
+
set EnableDistributedTracing(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
271
276
|
get MessageLoggingPolicy(): PipelinePolicy | undefined;
|
|
272
277
|
set MessageLoggingPolicy(value: PipelinePolicy | undefined);
|
|
273
|
-
NetworkTimeout: Nullable_1<TimeSpan>;
|
|
278
|
+
get NetworkTimeout(): Nullable_1<TimeSpan>;
|
|
279
|
+
set NetworkTimeout(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
274
280
|
get RetryPolicy(): PipelinePolicy | undefined;
|
|
275
281
|
set RetryPolicy(value: PipelinePolicy | undefined);
|
|
276
282
|
get Transport(): PipelineTransport | undefined;
|
|
@@ -522,7 +528,8 @@ export interface PipelineMessage$instance {
|
|
|
522
528
|
|
|
523
529
|
BufferResponse: boolean;
|
|
524
530
|
CancellationToken: CancellationToken;
|
|
525
|
-
NetworkTimeout: Nullable_1<TimeSpan>;
|
|
531
|
+
get NetworkTimeout(): Nullable_1<TimeSpan>;
|
|
532
|
+
set NetworkTimeout(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
526
533
|
readonly Request: PipelineRequest;
|
|
527
534
|
get Response(): PipelineResponse | undefined;
|
|
528
535
|
set Response(value: PipelineResponse | undefined);
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
|
|
7
7
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
|
-
import type {
|
|
9
|
+
import type { SettingsProvider } from "../../System.Configuration/internal/index.js";
|
|
10
10
|
import type { NameValueCollection } from "@tsonic/dotnet/System.Collections.Specialized/internal/index.js";
|
|
11
11
|
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
12
12
|
import type { ICollection, IEnumerable, IEnumerator } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
import * as Internal from './System.Configuration.Provider/internal/index.js';
|
|
7
7
|
|
|
8
8
|
// Cross-namespace type imports for constraints
|
|
9
|
-
import type {
|
|
9
|
+
import type { SettingsProvider } from './System.Configuration/internal/index.js';
|
|
10
10
|
import type { ICollection, IEnumerable, IEnumerator } from '@tsonic/dotnet/System.Collections.js';
|
|
11
11
|
import type { NameValueCollection } from '@tsonic/dotnet/System.Collections.Specialized.js';
|
|
12
12
|
import type { Boolean as ClrBoolean, Exception, Int32, Object as ClrObject, String as ClrString, Void } from '@tsonic/dotnet/System.js';
|
|
@@ -874,9 +874,9 @@ export interface __Ext_System_ClientModel_Primitives_ActivitySource {
|
|
|
874
874
|
|
|
875
875
|
// Internal helper types for sticky extension scopes
|
|
876
876
|
type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
|
|
877
|
-
type __TsonicMergeExtMaps<A, B> =
|
|
877
|
+
type __TsonicMergeExtMaps<A, B> = A & B;
|
|
878
878
|
type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
|
|
879
|
-
type __TsonicPreferExt<A, B> =
|
|
879
|
+
type __TsonicPreferExt<A, B> = A & B;
|
|
880
880
|
|
|
881
881
|
// Generic helper type for extension methods in namespace: Azure
|
|
882
882
|
type __TsonicExtSurface_Azure<TShape> =
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/efcore-sqlserver",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.31",
|
|
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.31",
|
|
23
|
+
"@tsonic/dotnet": "10.0.31",
|
|
24
|
+
"@tsonic/microsoft-extensions": "10.0.31",
|
|
25
|
+
"@tsonic/efcore": "10.0.31"
|
|
26
26
|
}
|
|
27
27
|
}
|