@tsonic/efcore-sqlserver 10.0.1 → 10.0.2

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.
Files changed (142) hide show
  1. package/Azure/bindings.json +686 -17
  2. package/Azure/internal/index.d.ts +37 -7
  3. package/Azure.Core/bindings.json +1048 -19
  4. package/Azure.Core/internal/index.d.ts +40 -9
  5. package/Azure.Core.Cryptography/bindings.json +5 -0
  6. package/Azure.Core.Diagnostics/bindings.json +56 -0
  7. package/Azure.Core.Diagnostics/internal/index.d.ts +9 -3
  8. package/Azure.Core.Diagnostics.d.ts +2 -2
  9. package/Azure.Core.Extensions/bindings.json +17 -0
  10. package/Azure.Core.GeoJson/bindings.json +362 -0
  11. package/Azure.Core.Pipeline/bindings.json +450 -3
  12. package/Azure.Core.Pipeline/internal/index.d.ts +27 -4
  13. package/Azure.Core.Pipeline.d.ts +2 -2
  14. package/Azure.Core.Serialization/bindings.json +89 -1
  15. package/Azure.Core.Serialization/internal/index.d.ts +1 -0
  16. package/Azure.Core.d.ts +1 -1
  17. package/Azure.Identity/bindings.json +1039 -58
  18. package/Azure.Identity/internal/index.d.ts +51 -30
  19. package/Azure.Identity.d.ts +1 -1
  20. package/Azure.Messaging/bindings.json +69 -0
  21. package/Azure.Messaging/internal/index.d.ts +6 -1
  22. package/Azure.d.ts +1 -1
  23. package/Microsoft.Data/bindings.json +16 -0
  24. package/Microsoft.Data.Sql/bindings.json +16 -0
  25. package/Microsoft.Data.SqlClient/bindings.json +2482 -38
  26. package/Microsoft.Data.SqlClient/internal/index.d.ts +114 -22
  27. package/Microsoft.Data.SqlClient.DataClassification/bindings.json +66 -0
  28. package/Microsoft.Data.SqlClient.Diagnostics/bindings.json +639 -0
  29. package/Microsoft.Data.SqlClient.Server/bindings.json +163 -0
  30. package/Microsoft.Data.SqlTypes/bindings.json +73 -0
  31. package/Microsoft.EntityFrameworkCore/bindings.json +700 -2
  32. package/Microsoft.EntityFrameworkCore/internal/index.d.ts +9 -2
  33. package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +35 -0
  34. package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +107 -1
  35. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +1 -0
  36. package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +27 -0
  37. package/Microsoft.EntityFrameworkCore.Metadata.Builders/bindings.json +78 -0
  38. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +853 -10
  39. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +85 -13
  40. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.d.ts +3 -2
  41. package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +10 -0
  42. package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +917 -0
  43. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +56 -6
  44. package/Microsoft.EntityFrameworkCore.Migrations.Operations/bindings.json +41 -0
  45. package/Microsoft.EntityFrameworkCore.Migrations.d.ts +6 -5
  46. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/bindings.json +122 -0
  47. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/internal/index.d.ts +10 -2
  48. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.d.ts +1 -1
  49. package/Microsoft.EntityFrameworkCore.SqlServer.Diagnostics.Internal/bindings.json +28 -0
  50. package/Microsoft.EntityFrameworkCore.SqlServer.Extensions.Internal/bindings.json +27 -0
  51. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/bindings.json +421 -8
  52. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/internal/index.d.ts +34 -10
  53. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.d.ts +3 -2
  54. package/Microsoft.EntityFrameworkCore.SqlServer.Internal/bindings.json +87 -0
  55. package/Microsoft.EntityFrameworkCore.SqlServer.Metadata.Internal/bindings.json +56 -0
  56. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/bindings.json +95 -0
  57. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/internal/index.d.ts +8 -2
  58. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal.d.ts +1 -1
  59. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/bindings.json +2415 -31
  60. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/internal/index.d.ts +209 -30
  61. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/bindings.json +39 -0
  62. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/internal/index.d.ts +8 -3
  63. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions.d.ts +2 -2
  64. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.d.ts +5 -5
  65. package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal/bindings.json +32 -0
  66. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/bindings.json +1816 -67
  67. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/internal/index.d.ts +197 -27
  68. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.d.ts +2 -2
  69. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/bindings.json +397 -4
  70. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/internal/index.d.ts +38 -7
  71. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal.d.ts +3 -3
  72. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/bindings.json +138 -1
  73. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/internal/index.d.ts +16 -3
  74. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal.d.ts +3 -1
  75. package/Microsoft.EntityFrameworkCore.d.ts +1 -1
  76. package/Microsoft.Extensions.DependencyInjection/bindings.json +10 -0
  77. package/Microsoft.Identity.Client/bindings.json +1941 -39
  78. package/Microsoft.Identity.Client/internal/index.d.ts +94 -28
  79. package/Microsoft.Identity.Client.Advanced/bindings.json +5 -0
  80. package/Microsoft.Identity.Client.AppConfig/bindings.json +21 -0
  81. package/Microsoft.Identity.Client.AuthScheme/bindings.json +6 -0
  82. package/Microsoft.Identity.Client.AuthScheme.PoP/bindings.json +3 -0
  83. package/Microsoft.Identity.Client.Cache/bindings.json +34 -0
  84. package/Microsoft.Identity.Client.Extensibility/bindings.json +80 -10
  85. package/Microsoft.Identity.Client.Extensibility/internal/index.d.ts +6 -5
  86. package/Microsoft.Identity.Client.Extensions.Msal/bindings.json +117 -0
  87. package/Microsoft.Identity.Client.Extensions.Msal/internal/index.d.ts +2 -1
  88. package/Microsoft.Identity.Client.Extensions.Msal.d.ts +1 -1
  89. package/Microsoft.Identity.Client.Kerberos/bindings.json +77 -0
  90. package/Microsoft.Identity.Client.ManagedIdentity/bindings.json +31 -0
  91. package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/bindings.json +18 -1
  92. package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/internal/index.d.ts +1 -0
  93. package/Microsoft.Identity.Client.RP/bindings.json +10 -0
  94. package/Microsoft.Identity.Client.Region/bindings.json +29 -0
  95. package/Microsoft.Identity.Client.SSHCertificates/bindings.json +6 -0
  96. package/Microsoft.Identity.Client.TelemetryCore.TelemetryClient/bindings.json +6 -0
  97. package/Microsoft.Identity.Client.Utils/bindings.json +10 -0
  98. package/Microsoft.Identity.Client.Utils.Windows/bindings.json +6 -0
  99. package/Microsoft.IdentityModel.Abstractions/bindings.json +135 -1
  100. package/Microsoft.IdentityModel.Abstractions/internal/index.d.ts +1 -0
  101. package/Microsoft.IdentityModel.JsonWebTokens/bindings.json +252 -6
  102. package/Microsoft.IdentityModel.JsonWebTokens/internal/index.d.ts +12 -5
  103. package/Microsoft.IdentityModel.JsonWebTokens.d.ts +1 -1
  104. package/Microsoft.IdentityModel.Logging/bindings.json +122 -2
  105. package/Microsoft.IdentityModel.Logging/internal/index.d.ts +8 -3
  106. package/Microsoft.IdentityModel.Logging.d.ts +1 -1
  107. package/Microsoft.IdentityModel.Protocols/bindings.json +155 -1
  108. package/Microsoft.IdentityModel.Protocols/internal/index.d.ts +1 -0
  109. package/Microsoft.IdentityModel.Protocols.Configuration/bindings.json +30 -0
  110. package/Microsoft.IdentityModel.Protocols.Configuration/internal/index.d.ts +2 -1
  111. package/Microsoft.IdentityModel.Protocols.Configuration.d.ts +1 -1
  112. package/Microsoft.IdentityModel.Protocols.OpenIdConnect/bindings.json +645 -0
  113. package/Microsoft.IdentityModel.Protocols.OpenIdConnect/internal/index.d.ts +17 -2
  114. package/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/bindings.json +17 -0
  115. package/Microsoft.IdentityModel.Protocols.OpenIdConnect.d.ts +1 -1
  116. package/Microsoft.IdentityModel.Tokens/bindings.json +2486 -77
  117. package/Microsoft.IdentityModel.Tokens/internal/index.d.ts +135 -35
  118. package/Microsoft.IdentityModel.Tokens.Configuration/bindings.json +10 -0
  119. package/Microsoft.IdentityModel.Tokens.d.ts +1 -1
  120. package/Microsoft.SqlServer.Server/bindings.json +144 -0
  121. package/System/bindings.json +63 -0
  122. package/System.ClientModel/bindings.json +256 -11
  123. package/System.ClientModel/internal/index.d.ts +22 -6
  124. package/System.ClientModel.Primitives/bindings.json +1673 -120
  125. package/System.ClientModel.Primitives/internal/index.d.ts +111 -17
  126. package/System.ClientModel.Primitives.d.ts +2 -2
  127. package/System.Configuration/bindings.json +5382 -321
  128. package/System.Configuration/internal/index.d.ts +323 -51
  129. package/System.Configuration.Internal/bindings.json +193 -1
  130. package/System.Configuration.Provider/bindings.json +69 -1
  131. package/System.Configuration.Provider/internal/index.d.ts +3 -1
  132. package/System.Configuration.Provider.d.ts +1 -1
  133. package/System.Configuration.d.ts +3 -3
  134. package/System.Diagnostics/bindings.json +5 -0
  135. package/System.Drawing.Configuration/bindings.json +25 -0
  136. package/System.Drawing.Configuration/internal/index.d.ts +11 -3
  137. package/System.Drawing.Configuration.d.ts +5 -2
  138. package/System.IdentityModel.Tokens.Jwt/bindings.json +646 -36
  139. package/System.IdentityModel.Tokens.Jwt/internal/index.d.ts +33 -19
  140. package/System.Security.Cryptography/bindings.json +31 -0
  141. package/System.Text.Json.Serialization/bindings.json +10 -0
  142. package/package.json +1 -1
@@ -15,19 +15,19 @@ import type { Stream } from "@tsonic/dotnet/System.IO.js";
15
15
  import * as System_Internal from "@tsonic/dotnet/System.js";
16
16
  import type { Boolean as ClrBoolean, Byte, DateTimeOffset, Exception, Func, Int32, Nullable, Object as ClrObject, ReadOnlyMemory, String as ClrString, TimeSpan, Uri, ValueType, Void } from "@tsonic/dotnet/System.js";
17
17
  import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization.js";
18
- import type { ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization.js";
18
+ import type { ISerializable, SerializationInfo, StreamingContext } from "@tsonic/dotnet/System.Runtime.Serialization.js";
19
19
  import type { X509Certificate2 } from "@tsonic/dotnet/System.Security.Cryptography.X509Certificates.js";
20
20
  import type { CancellationToken } from "@tsonic/dotnet/System.Threading.js";
21
21
  import type { Task, ValueTask } from "@tsonic/dotnet/System.Threading.Tasks.js";
22
22
 
23
23
  export interface DeviceCodeInfo$instance {
24
- readonly ClientId: string;
25
- readonly DeviceCode: string;
26
- readonly ExpiresOn: DateTimeOffset;
27
- readonly Message: string;
28
- readonly Scopes: IReadOnlyCollection<System_Internal.String>;
29
- readonly UserCode: string;
30
- readonly VerificationUri: Uri;
24
+ ClientId: string;
25
+ DeviceCode: string;
26
+ ExpiresOn: DateTimeOffset;
27
+ Message: string;
28
+ Scopes: IReadOnlyCollection<System_Internal.String>;
29
+ UserCode: string;
30
+ VerificationUri: Uri;
31
31
  }
32
32
 
33
33
 
@@ -57,17 +57,18 @@ export interface AuthenticationFailedException$instance extends Exception {
57
57
  export const AuthenticationFailedException: {
58
58
  new(message: string): AuthenticationFailedException;
59
59
  new(message: string, innerException: Exception): AuthenticationFailedException;
60
+ new(info: SerializationInfo, context: StreamingContext): AuthenticationFailedException;
60
61
  };
61
62
 
62
63
 
63
64
  export type AuthenticationFailedException = AuthenticationFailedException$instance;
64
65
 
65
66
  export interface AuthenticationRecord$instance {
66
- readonly Authority: string;
67
- readonly ClientId: string;
67
+ Authority: string;
68
+ ClientId: string;
68
69
  readonly HomeAccountId: string;
69
- readonly TenantId: string;
70
- readonly Username: string;
70
+ TenantId: string;
71
+ Username: string;
71
72
  Serialize(stream: Stream, cancellationToken?: CancellationToken): void;
72
73
  SerializeAsync(stream: Stream, cancellationToken?: CancellationToken): Task;
73
74
  }
@@ -90,6 +91,7 @@ export interface AuthenticationRequiredException$instance extends CredentialUnav
90
91
  export const AuthenticationRequiredException: {
91
92
  new(message: string, context: TokenRequestContext): AuthenticationRequiredException;
92
93
  new(message: string, context: TokenRequestContext, innerException: Exception): AuthenticationRequiredException;
94
+ new(info: SerializationInfo, context: StreamingContext): AuthenticationRequiredException;
93
95
  };
94
96
 
95
97
 
@@ -104,6 +106,7 @@ export interface AuthorizationCodeCredential$instance extends TokenCredential {
104
106
 
105
107
 
106
108
  export const AuthorizationCodeCredential: {
109
+ new(): AuthorizationCodeCredential;
107
110
  new(tenantId: string, clientId: string, clientSecret: string, authorizationCode: string): AuthorizationCodeCredential;
108
111
  new(tenantId: string, clientId: string, clientSecret: string, authorizationCode: string, options: AuthorizationCodeCredentialOptions): AuthorizationCodeCredential;
109
112
  new(tenantId: string, clientId: string, clientSecret: string, authorizationCode: string, options: TokenCredentialOptions): AuthorizationCodeCredential;
@@ -113,7 +116,7 @@ export const AuthorizationCodeCredential: {
113
116
  export type AuthorizationCodeCredential = AuthorizationCodeCredential$instance;
114
117
 
115
118
  export interface AuthorizationCodeCredentialOptions$instance extends TokenCredentialOptions {
116
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
119
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
117
120
  DisableInstanceDiscovery: boolean;
118
121
  RedirectUri: Uri;
119
122
  }
@@ -143,7 +146,7 @@ export const AzureCliCredential: {
143
146
  export type AzureCliCredential = AzureCliCredential$instance;
144
147
 
145
148
  export interface AzureCliCredentialOptions$instance extends TokenCredentialOptions {
146
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
149
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
147
150
  ProcessTimeout: Nullable<TimeSpan>;
148
151
  Subscription: string;
149
152
  TenantId: string;
@@ -174,7 +177,7 @@ export const AzureDeveloperCliCredential: {
174
177
  export type AzureDeveloperCliCredential = AzureDeveloperCliCredential$instance;
175
178
 
176
179
  export interface AzureDeveloperCliCredentialOptions$instance extends TokenCredentialOptions {
177
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
180
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
178
181
  ProcessTimeout: Nullable<TimeSpan>;
179
182
  TenantId: string;
180
183
  }
@@ -196,6 +199,7 @@ export interface AzurePipelinesCredential$instance extends TokenCredential {
196
199
 
197
200
 
198
201
  export const AzurePipelinesCredential: {
202
+ new(): AzurePipelinesCredential;
199
203
  new(tenantId: string, clientId: string, serviceConnectionId: string, systemAccessToken: string, options: AzurePipelinesCredentialOptions): AzurePipelinesCredential;
200
204
  };
201
205
 
@@ -203,7 +207,7 @@ export const AzurePipelinesCredential: {
203
207
  export type AzurePipelinesCredential = AzurePipelinesCredential$instance;
204
208
 
205
209
  export interface AzurePipelinesCredentialOptions$instance extends TokenCredentialOptions {
206
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
210
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
207
211
  DisableInstanceDiscovery: boolean;
208
212
  TokenCachePersistenceOptions: TokenCachePersistenceOptions;
209
213
  }
@@ -233,7 +237,7 @@ export const AzurePowerShellCredential: {
233
237
  export type AzurePowerShellCredential = AzurePowerShellCredential$instance;
234
238
 
235
239
  export interface AzurePowerShellCredentialOptions$instance extends TokenCredentialOptions {
236
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
240
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
237
241
  ProcessTimeout: Nullable<TimeSpan>;
238
242
  TenantId: string;
239
243
  }
@@ -269,6 +273,7 @@ export interface ChainedTokenCredential$instance extends TokenCredential {
269
273
 
270
274
 
271
275
  export const ChainedTokenCredential: {
276
+ new(): ChainedTokenCredential;
272
277
  new(sources: TokenCredential[]): ChainedTokenCredential;
273
278
  };
274
279
 
@@ -284,6 +289,7 @@ export interface ClientAssertionCredential$instance extends TokenCredential {
284
289
 
285
290
 
286
291
  export const ClientAssertionCredential: {
292
+ new(): ClientAssertionCredential;
287
293
  new(tenantId: string, clientId: string, assertionCallback: Func<CancellationToken, Task<System_Internal.String>>, options: ClientAssertionCredentialOptions): ClientAssertionCredential;
288
294
  new(tenantId: string, clientId: string, assertionCallback: Func<System_Internal.String>, options: ClientAssertionCredentialOptions): ClientAssertionCredential;
289
295
  };
@@ -292,7 +298,7 @@ export const ClientAssertionCredential: {
292
298
  export type ClientAssertionCredential = ClientAssertionCredential$instance;
293
299
 
294
300
  export interface ClientAssertionCredentialOptions$instance extends TokenCredentialOptions {
295
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
301
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
296
302
  DisableInstanceDiscovery: boolean;
297
303
  TokenCachePersistenceOptions: TokenCachePersistenceOptions;
298
304
  }
@@ -314,6 +320,7 @@ export interface ClientCertificateCredential$instance extends TokenCredential {
314
320
 
315
321
 
316
322
  export const ClientCertificateCredential: {
323
+ new(): ClientCertificateCredential;
317
324
  new(tenantId: string, clientId: string, clientCertificatePath: string): ClientCertificateCredential;
318
325
  new(tenantId: string, clientId: string, clientCertificatePath: string, options: TokenCredentialOptions): ClientCertificateCredential;
319
326
  new(tenantId: string, clientId: string, clientCertificatePath: string, options: ClientCertificateCredentialOptions): ClientCertificateCredential;
@@ -326,7 +333,7 @@ export const ClientCertificateCredential: {
326
333
  export type ClientCertificateCredential = ClientCertificateCredential$instance;
327
334
 
328
335
  export interface ClientCertificateCredentialOptions$instance extends TokenCredentialOptions {
329
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
336
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
330
337
  DisableInstanceDiscovery: boolean;
331
338
  SendCertificateChain: boolean;
332
339
  TokenCachePersistenceOptions: TokenCachePersistenceOptions;
@@ -349,6 +356,7 @@ export interface ClientSecretCredential$instance extends TokenCredential {
349
356
 
350
357
 
351
358
  export const ClientSecretCredential: {
359
+ new(): ClientSecretCredential;
352
360
  new(tenantId: string, clientId: string, clientSecret: string): ClientSecretCredential;
353
361
  new(tenantId: string, clientId: string, clientSecret: string, options: ClientSecretCredentialOptions): ClientSecretCredential;
354
362
  new(tenantId: string, clientId: string, clientSecret: string, options: TokenCredentialOptions): ClientSecretCredential;
@@ -358,7 +366,7 @@ export const ClientSecretCredential: {
358
366
  export type ClientSecretCredential = ClientSecretCredential$instance;
359
367
 
360
368
  export interface ClientSecretCredentialOptions$instance extends TokenCredentialOptions {
361
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
369
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
362
370
  DisableInstanceDiscovery: boolean;
363
371
  TokenCachePersistenceOptions: TokenCachePersistenceOptions;
364
372
  }
@@ -378,6 +386,7 @@ export interface CredentialUnavailableException$instance extends AuthenticationF
378
386
  export const CredentialUnavailableException: {
379
387
  new(message: string): CredentialUnavailableException;
380
388
  new(message: string, innerException: Exception): CredentialUnavailableException;
389
+ new(info: SerializationInfo, context: StreamingContext): CredentialUnavailableException;
381
390
  };
382
391
 
383
392
 
@@ -392,6 +401,7 @@ export interface DefaultAzureCredential$instance extends TokenCredential {
392
401
 
393
402
 
394
403
  export const DefaultAzureCredential: {
404
+ new(): DefaultAzureCredential;
395
405
  new(includeInteractiveCredentials: boolean): DefaultAzureCredential;
396
406
  new(options: DefaultAzureCredentialOptions): DefaultAzureCredential;
397
407
  };
@@ -400,7 +410,7 @@ export const DefaultAzureCredential: {
400
410
  export type DefaultAzureCredential = DefaultAzureCredential$instance;
401
411
 
402
412
  export interface DefaultAzureCredentialOptions$instance extends TokenCredentialOptions {
403
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
413
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
404
414
  CredentialProcessTimeout: Nullable<TimeSpan>;
405
415
  DisableInstanceDiscovery: boolean;
406
416
  ExcludeAzureCliCredential: boolean;
@@ -456,7 +466,7 @@ export const DeviceCodeCredential: {
456
466
  export type DeviceCodeCredential = DeviceCodeCredential$instance;
457
467
 
458
468
  export interface DeviceCodeCredentialOptions$instance extends TokenCredentialOptions {
459
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
469
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
460
470
  AuthenticationRecord: AuthenticationRecord;
461
471
  ClientId: string;
462
472
  DeviceCodeCallback: Func<DeviceCodeInfo, CancellationToken, Task>;
@@ -492,7 +502,7 @@ export const EnvironmentCredential: {
492
502
  export type EnvironmentCredential = EnvironmentCredential$instance;
493
503
 
494
504
  export interface EnvironmentCredentialOptions$instance extends TokenCredentialOptions {
495
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
505
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
496
506
  DisableInstanceDiscovery: boolean;
497
507
  }
498
508
 
@@ -527,7 +537,7 @@ export const InteractiveBrowserCredential: {
527
537
  export type InteractiveBrowserCredential = InteractiveBrowserCredential$instance;
528
538
 
529
539
  export interface InteractiveBrowserCredentialOptions$instance extends TokenCredentialOptions {
530
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
540
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
531
541
  AuthenticationRecord: AuthenticationRecord;
532
542
  BrowserCustomization: BrowserCustomizationOptions;
533
543
  ClientId: string;
@@ -556,6 +566,7 @@ export interface ManagedIdentityCredential$instance extends TokenCredential {
556
566
 
557
567
 
558
568
  export const ManagedIdentityCredential: {
569
+ new(): ManagedIdentityCredential;
559
570
  new(clientId: string, options: TokenCredentialOptions): ManagedIdentityCredential;
560
571
  new(resourceId: ResourceIdentifier, options: TokenCredentialOptions): ManagedIdentityCredential;
561
572
  new(id: ManagedIdentityId): ManagedIdentityCredential;
@@ -601,6 +612,7 @@ export interface OnBehalfOfCredential$instance extends TokenCredential {
601
612
 
602
613
 
603
614
  export const OnBehalfOfCredential: {
615
+ new(): OnBehalfOfCredential;
604
616
  new(tenantId: string, clientId: string, clientCertificate: X509Certificate2, userAssertion: string): OnBehalfOfCredential;
605
617
  new(tenantId: string, clientId: string, clientCertificate: X509Certificate2, userAssertion: string, options: OnBehalfOfCredentialOptions): OnBehalfOfCredential;
606
618
  new(tenantId: string, clientId: string, clientSecret: string, userAssertion: string): OnBehalfOfCredential;
@@ -613,7 +625,7 @@ export const OnBehalfOfCredential: {
613
625
  export type OnBehalfOfCredential = OnBehalfOfCredential$instance;
614
626
 
615
627
  export interface OnBehalfOfCredentialOptions$instance extends TokenCredentialOptions {
616
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
628
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
617
629
  DisableInstanceDiscovery: boolean;
618
630
  SendCertificateChain: boolean;
619
631
  TokenCachePersistenceOptions: TokenCachePersistenceOptions;
@@ -728,11 +740,19 @@ export const TokenCredentialOptions: {
728
740
 
729
741
  export type TokenCredentialOptions = TokenCredentialOptions$instance;
730
742
 
731
- export interface UnsafeTokenCacheOptions$instance extends TokenCachePersistenceOptions {
743
+ export abstract class UnsafeTokenCacheOptions$protected {
744
+ protected abstract RefreshCacheAsync(): Task<ReadOnlyMemory<System_Internal.Byte>>;
745
+ protected RefreshCacheAsync(args: TokenCacheRefreshArgs, cancellationToken?: CancellationToken): Task<TokenCacheData>;
746
+ protected abstract TokenCacheUpdatedAsync(tokenCacheUpdatedArgs: TokenCacheUpdatedArgs): Task;
747
+ }
748
+
749
+
750
+ export interface UnsafeTokenCacheOptions$instance extends UnsafeTokenCacheOptions$protected, TokenCachePersistenceOptions {
732
751
  }
733
752
 
734
753
 
735
754
  export const UnsafeTokenCacheOptions: {
755
+ new(): UnsafeTokenCacheOptions;
736
756
  };
737
757
 
738
758
 
@@ -751,6 +771,7 @@ export interface UsernamePasswordCredential$instance extends TokenCredential {
751
771
 
752
772
 
753
773
  export const UsernamePasswordCredential: {
774
+ new(): UsernamePasswordCredential;
754
775
  new(username: string, password: string, tenantId: string, clientId: string): UsernamePasswordCredential;
755
776
  new(username: string, password: string, tenantId: string, clientId: string, options: TokenCredentialOptions): UsernamePasswordCredential;
756
777
  new(username: string, password: string, tenantId: string, clientId: string, options: UsernamePasswordCredentialOptions): UsernamePasswordCredential;
@@ -760,7 +781,7 @@ export const UsernamePasswordCredential: {
760
781
  export type UsernamePasswordCredential = UsernamePasswordCredential$instance;
761
782
 
762
783
  export interface UsernamePasswordCredentialOptions$instance extends TokenCredentialOptions {
763
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
784
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
764
785
  DisableInstanceDiscovery: boolean;
765
786
  TokenCachePersistenceOptions: TokenCachePersistenceOptions;
766
787
  }
@@ -790,7 +811,7 @@ export const VisualStudioCodeCredential: {
790
811
  export type VisualStudioCodeCredential = VisualStudioCodeCredential$instance;
791
812
 
792
813
  export interface VisualStudioCodeCredentialOptions$instance extends TokenCredentialOptions {
793
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
814
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
794
815
  TenantId: string;
795
816
  }
796
817
 
@@ -819,7 +840,7 @@ export const VisualStudioCredential: {
819
840
  export type VisualStudioCredential = VisualStudioCredential$instance;
820
841
 
821
842
  export interface VisualStudioCredentialOptions$instance extends TokenCredentialOptions {
822
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
843
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
823
844
  ProcessTimeout: Nullable<TimeSpan>;
824
845
  TenantId: string;
825
846
  }
@@ -849,7 +870,7 @@ export const WorkloadIdentityCredential: {
849
870
  export type WorkloadIdentityCredential = WorkloadIdentityCredential$instance;
850
871
 
851
872
  export interface WorkloadIdentityCredentialOptions$instance extends TokenCredentialOptions {
852
- readonly AdditionallyAllowedTenants: IList<System_Internal.String>;
873
+ AdditionallyAllowedTenants: IList<System_Internal.String>;
853
874
  ClientId: string;
854
875
  DisableInstanceDiscovery: boolean;
855
876
  TenantId: string;
@@ -12,7 +12,7 @@ import type { AuthenticationToken, GetTokenOptions } from './System.ClientModel.
12
12
  import type { IList, IReadOnlyCollection, IReadOnlyDictionary } from '@tsonic/dotnet/System.Collections.Generic.js';
13
13
  import type { Stream } from '@tsonic/dotnet/System.IO.js';
14
14
  import type { Boolean as ClrBoolean, Byte, DateTimeOffset, Exception, Func, Int32, Nullable, Object as ClrObject, ReadOnlyMemory, String as ClrString, TimeSpan, Uri, ValueType, Void } from '@tsonic/dotnet/System.js';
15
- import type { ISerializable } from '@tsonic/dotnet/System.Runtime.Serialization.js';
15
+ import type { ISerializable, SerializationInfo, StreamingContext } from '@tsonic/dotnet/System.Runtime.Serialization.js';
16
16
  import type { X509Certificate2 } from '@tsonic/dotnet/System.Security.Cryptography.X509Certificates.js';
17
17
  import type { CancellationToken } from '@tsonic/dotnet/System.Threading.js';
18
18
  import type { Task, ValueTask } from '@tsonic/dotnet/System.Threading.Tasks.js';
@@ -15,6 +15,28 @@
15
15
  "isSealed": true,
16
16
  "isStatic": false,
17
17
  "arity": 0,
18
+ "baseType": {
19
+ "stableId": "System.Private.CoreLib:System.Enum",
20
+ "clrName": "System.Enum"
21
+ },
22
+ "interfaces": [
23
+ {
24
+ "stableId": "System.Private.CoreLib:System.IComparable",
25
+ "clrName": "System.IComparable"
26
+ },
27
+ {
28
+ "stableId": "System.Private.CoreLib:System.ISpanFormattable",
29
+ "clrName": "System.ISpanFormattable"
30
+ },
31
+ {
32
+ "stableId": "System.Private.CoreLib:System.IFormattable",
33
+ "clrName": "System.IFormattable"
34
+ },
35
+ {
36
+ "stableId": "System.Private.CoreLib:System.IConvertible",
37
+ "clrName": "System.IConvertible"
38
+ }
39
+ ],
18
40
  "methods": [],
19
41
  "properties": [],
20
42
  "fields": [
@@ -26,6 +48,7 @@
26
48
  "isStatic": false,
27
49
  "isReadOnly": false,
28
50
  "isLiteral": false,
51
+ "visibility": "Public",
29
52
  "declaringClrType": "Azure.Messaging.CloudEventDataFormat",
30
53
  "declaringAssemblyName": "Azure.Core"
31
54
  },
@@ -37,6 +60,7 @@
37
60
  "isStatic": true,
38
61
  "isReadOnly": false,
39
62
  "isLiteral": true,
63
+ "visibility": "Public",
40
64
  "declaringClrType": "Azure.Messaging.CloudEventDataFormat",
41
65
  "declaringAssemblyName": "Azure.Core"
42
66
  },
@@ -48,6 +72,7 @@
48
72
  "isStatic": true,
49
73
  "isReadOnly": false,
50
74
  "isLiteral": true,
75
+ "visibility": "Public",
51
76
  "declaringClrType": "Azure.Messaging.CloudEventDataFormat",
52
77
  "declaringAssemblyName": "Azure.Core"
53
78
  }
@@ -66,6 +91,10 @@
66
91
  "isSealed": false,
67
92
  "isStatic": false,
68
93
  "arity": 0,
94
+ "baseType": {
95
+ "stableId": "System.Private.CoreLib:System.Object",
96
+ "clrName": "System.Object"
97
+ },
69
98
  "methods": [
70
99
  {
71
100
  "stableId": "Azure.Core:Azure.Messaging.CloudEvent::ParseMany(System.BinaryData,System.Boolean):Azure.Messaging.CloudEvent[]",
@@ -82,6 +111,7 @@
82
111
  "isVirtual": false,
83
112
  "isOverride": false,
84
113
  "isSealed": false,
114
+ "visibility": "Public",
85
115
  "declaringClrType": "Azure.Messaging.CloudEvent",
86
116
  "declaringAssemblyName": "Azure.Core",
87
117
  "isExtensionMethod": false
@@ -101,6 +131,7 @@
101
131
  "isVirtual": false,
102
132
  "isOverride": false,
103
133
  "isSealed": false,
134
+ "visibility": "Public",
104
135
  "declaringClrType": "Azure.Messaging.CloudEvent",
105
136
  "declaringAssemblyName": "Azure.Core",
106
137
  "isExtensionMethod": false
@@ -122,6 +153,7 @@
122
153
  "isAbstract": false,
123
154
  "isVirtual": false,
124
155
  "isOverride": false,
156
+ "visibility": "Public",
125
157
  "declaringClrType": "Azure.Messaging.CloudEvent",
126
158
  "declaringAssemblyName": "Azure.Core"
127
159
  },
@@ -140,6 +172,7 @@
140
172
  "isAbstract": false,
141
173
  "isVirtual": false,
142
174
  "isOverride": false,
175
+ "visibility": "Public",
143
176
  "declaringClrType": "Azure.Messaging.CloudEvent",
144
177
  "declaringAssemblyName": "Azure.Core"
145
178
  },
@@ -158,6 +191,7 @@
158
191
  "isAbstract": false,
159
192
  "isVirtual": false,
160
193
  "isOverride": false,
194
+ "visibility": "Public",
161
195
  "declaringClrType": "Azure.Messaging.CloudEvent",
162
196
  "declaringAssemblyName": "Azure.Core"
163
197
  },
@@ -176,6 +210,7 @@
176
210
  "isAbstract": false,
177
211
  "isVirtual": false,
178
212
  "isOverride": false,
213
+ "visibility": "Public",
179
214
  "declaringClrType": "Azure.Messaging.CloudEvent",
180
215
  "declaringAssemblyName": "Azure.Core"
181
216
  },
@@ -194,6 +229,7 @@
194
229
  "isAbstract": false,
195
230
  "isVirtual": false,
196
231
  "isOverride": false,
232
+ "visibility": "Public",
197
233
  "declaringClrType": "Azure.Messaging.CloudEvent",
198
234
  "declaringAssemblyName": "Azure.Core"
199
235
  },
@@ -212,6 +248,7 @@
212
248
  "isAbstract": false,
213
249
  "isVirtual": false,
214
250
  "isOverride": false,
251
+ "visibility": "Public",
215
252
  "declaringClrType": "Azure.Messaging.CloudEvent",
216
253
  "declaringAssemblyName": "Azure.Core"
217
254
  },
@@ -230,6 +267,7 @@
230
267
  "isAbstract": false,
231
268
  "isVirtual": false,
232
269
  "isOverride": false,
270
+ "visibility": "Public",
233
271
  "declaringClrType": "Azure.Messaging.CloudEvent",
234
272
  "declaringAssemblyName": "Azure.Core"
235
273
  },
@@ -248,6 +286,7 @@
248
286
  "isAbstract": false,
249
287
  "isVirtual": false,
250
288
  "isOverride": false,
289
+ "visibility": "Public",
251
290
  "declaringClrType": "Azure.Messaging.CloudEvent",
252
291
  "declaringAssemblyName": "Azure.Core"
253
292
  },
@@ -266,6 +305,7 @@
266
305
  "isAbstract": false,
267
306
  "isVirtual": false,
268
307
  "isOverride": false,
308
+ "visibility": "Public",
269
309
  "declaringClrType": "Azure.Messaging.CloudEvent",
270
310
  "declaringAssemblyName": "Azure.Core"
271
311
  }
@@ -280,6 +320,7 @@
280
320
  "normalizedSignature": "constructor|(System.String,System.String,System.Object,System.Type):void|static=false",
281
321
  "isStatic": false,
282
322
  "parameterCount": 4,
323
+ "visibility": "Public",
283
324
  "declaringClrType": "Azure.Messaging.CloudEvent",
284
325
  "declaringAssemblyName": "Azure.Core"
285
326
  },
@@ -290,6 +331,7 @@
290
331
  "normalizedSignature": "constructor|(System.String,System.String,System.BinaryData,System.String,Azure.Messaging.CloudEventDataFormat):void|static=false",
291
332
  "isStatic": false,
292
333
  "parameterCount": 5,
334
+ "visibility": "Public",
293
335
  "declaringClrType": "Azure.Messaging.CloudEvent",
294
336
  "declaringAssemblyName": "Azure.Core"
295
337
  }
@@ -306,6 +348,10 @@
306
348
  "isSealed": false,
307
349
  "isStatic": false,
308
350
  "arity": 0,
351
+ "baseType": {
352
+ "stableId": "System.Private.CoreLib:System.Object",
353
+ "clrName": "System.Object"
354
+ },
309
355
  "methods": [],
310
356
  "properties": [
311
357
  {
@@ -323,6 +369,7 @@
323
369
  "isAbstract": false,
324
370
  "isVirtual": true,
325
371
  "isOverride": false,
372
+ "visibility": "Public",
326
373
  "declaringClrType": "Azure.Messaging.MessageContent",
327
374
  "declaringAssemblyName": "Azure.Core"
328
375
  },
@@ -341,6 +388,26 @@
341
388
  "isAbstract": false,
342
389
  "isVirtual": true,
343
390
  "isOverride": false,
391
+ "visibility": "Public",
392
+ "declaringClrType": "Azure.Messaging.MessageContent",
393
+ "declaringAssemblyName": "Azure.Core"
394
+ },
395
+ {
396
+ "stableId": "Azure.Core:Azure.Messaging.MessageContent::ContentTypeCore:System.Nullable_1[[Azure.Core.ContentType,Azure.Core,Version=1.47.1.0,Culture=neutral,PublicKeyToken=92742159e12e44c8]]",
397
+ "clrName": "ContentTypeCore",
398
+ "metadataToken": 385876053,
399
+ "canonicalSignature": ":System.Nullable_1[[Azure.Core.ContentType,Azure.Core,Version=1.47.1.0,Culture=neutral,PublicKeyToken=92742159e12e44c8]]",
400
+ "normalizedSignature": "ContentTypeCore|:System.Nullable_1[[Azure.Core.ContentType,Azure.Core,Version=1.47.1.0,Culture=neutral,PublicKeyToken=92742159e12e44c8]]|static=false|accessor=getset",
401
+ "emitScope": "ClassSurface",
402
+ "provenance": "Original",
403
+ "isIndexer": false,
404
+ "hasGetter": true,
405
+ "hasSetter": true,
406
+ "isStatic": false,
407
+ "isAbstract": false,
408
+ "isVirtual": true,
409
+ "isOverride": false,
410
+ "visibility": "Protected",
344
411
  "declaringClrType": "Azure.Messaging.MessageContent",
345
412
  "declaringAssemblyName": "Azure.Core"
346
413
  },
@@ -359,6 +426,7 @@
359
426
  "isAbstract": false,
360
427
  "isVirtual": true,
361
428
  "isOverride": false,
429
+ "visibility": "Public",
362
430
  "declaringClrType": "Azure.Messaging.MessageContent",
363
431
  "declaringAssemblyName": "Azure.Core"
364
432
  }
@@ -373,6 +441,7 @@
373
441
  "normalizedSignature": "constructor|():void|static=false",
374
442
  "isStatic": false,
375
443
  "parameterCount": 0,
444
+ "visibility": "Public",
376
445
  "declaringClrType": "Azure.Messaging.MessageContent",
377
446
  "declaringAssemblyName": "Azure.Core"
378
447
  }
@@ -45,7 +45,12 @@ export const CloudEvent: {
45
45
 
46
46
  export type CloudEvent = CloudEvent$instance;
47
47
 
48
- export interface MessageContent$instance {
48
+ export abstract class MessageContent$protected {
49
+ protected ContentTypeCore: Nullable<ContentType>;
50
+ }
51
+
52
+
53
+ export interface MessageContent$instance extends MessageContent$protected {
49
54
  ContentType: Nullable<ContentType>;
50
55
  get Data(): BinaryData | undefined;
51
56
  set Data(value: BinaryData);
package/Azure.d.ts CHANGED
@@ -8,7 +8,7 @@ import * as Internal from './Azure/internal/index.js';
8
8
  // Cross-namespace type imports for constraints
9
9
  import type { HttpPipeline, HttpPipelinePolicy } from './Azure.Core.Pipeline/internal/index.js';
10
10
  import type { JsonPropertyNames, ObjectSerializer } from './Azure.Core.Serialization/internal/index.js';
11
- import type { ClientOptions, DelayStrategy, HttpPipelinePosition, RehydrationToken, RequestFailedDetailsParser, ResponseClassificationHandler, ResponseHeaders } from './Azure.Core/internal/index.js';
11
+ import type { ClientOptions, DelayStrategy, HttpHeader, HttpPipelinePosition, RehydrationToken, RequestFailedDetailsParser, ResponseClassificationHandler, ResponseHeaders } from './Azure.Core/internal/index.js';
12
12
  import type { IJsonModel_1, IPersistableModel_1, ModelReaderWriterOptions } from './System.ClientModel.Primitives/internal/index.js';
13
13
  import type { ApiKeyCredential } from './System.ClientModel/internal/index.js';
14
14
  import type { BinaryData } from './System/internal/index.js';
@@ -15,6 +15,16 @@
15
15
  "isSealed": true,
16
16
  "isStatic": false,
17
17
  "arity": 0,
18
+ "baseType": {
19
+ "stableId": "System.Private.CoreLib:System.SystemException",
20
+ "clrName": "System.SystemException"
21
+ },
22
+ "interfaces": [
23
+ {
24
+ "stableId": "System.Private.CoreLib:System.Runtime.Serialization.ISerializable",
25
+ "clrName": "System.Runtime.Serialization.ISerializable"
26
+ }
27
+ ],
18
28
  "methods": [],
19
29
  "properties": [],
20
30
  "fields": [],
@@ -32,6 +42,10 @@
32
42
  "isSealed": true,
33
43
  "isStatic": true,
34
44
  "arity": 0,
45
+ "baseType": {
46
+ "stableId": "System.Private.CoreLib:System.Object",
47
+ "clrName": "System.Object"
48
+ },
35
49
  "methods": [],
36
50
  "properties": [],
37
51
  "fields": [
@@ -43,6 +57,7 @@
43
57
  "isStatic": true,
44
58
  "isReadOnly": false,
45
59
  "isLiteral": true,
60
+ "visibility": "Public",
46
61
  "declaringClrType": "Microsoft.Data.SqlDbTypeExtensions",
47
62
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
48
63
  },
@@ -54,6 +69,7 @@
54
69
  "isStatic": true,
55
70
  "isReadOnly": false,
56
71
  "isLiteral": true,
72
+ "visibility": "Public",
57
73
  "declaringClrType": "Microsoft.Data.SqlDbTypeExtensions",
58
74
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
59
75
  }