@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
@@ -24,7 +24,7 @@ import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.
24
24
  import type { IEnumerable } from "@tsonic/dotnet/System.Collections.js";
25
25
  import type { Stream } from "@tsonic/dotnet/System.IO.js";
26
26
  import * as System_Lib from "@tsonic/dotnet/System.js";
27
- import type { AsyncCallback, Boolean as ClrBoolean, Byte, Char, DateTimeOffset, Enum, Exception, Func, IAsyncResult, ICloneable, IComparable, IConvertible, IDisposable, IEquatable, IFormattable, Int32, Int64, IntPtr, ISpanFormattable, MulticastDelegate, Nullable, Object as ClrObject, ReadOnlyMemory, ReadOnlySpan, String as ClrString, TimeSpan, Type, UInt16, Uri, ValueType, Void } from "@tsonic/dotnet/System.js";
27
+ import type { AsyncCallback, Boolean as ClrBoolean, Byte, Char, DateTimeOffset, Double, Enum, Exception, Func, IAsyncResult, ICloneable, IComparable, IConvertible, IDisposable, IEquatable, IFormattable, Int32, Int64, IntPtr, ISpanFormattable, MulticastDelegate, Nullable, Object as ClrObject, ReadOnlyMemory, ReadOnlySpan, String as ClrString, TimeSpan, Type, UInt16, Uri, ValueType, Void } from "@tsonic/dotnet/System.js";
28
28
  import type { Assembly } from "@tsonic/dotnet/System.Reflection.js";
29
29
  import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization.js";
30
30
  import type { ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization.js";
@@ -187,7 +187,7 @@ export type HttpHeader = HttpHeader$instance;
187
187
 
188
188
  export interface MessageProcessingContext$instance {
189
189
  RetryNumber: int;
190
- readonly StartTime: DateTimeOffset;
190
+ StartTime: DateTimeOffset;
191
191
  }
192
192
 
193
193
 
@@ -325,7 +325,12 @@ export const TokenRequestContext: {
325
325
 
326
326
  export type TokenRequestContext = TokenRequestContext$instance;
327
327
 
328
- export interface AzureCoreContext$instance extends ModelReaderWriterContext {
328
+ export abstract class AzureCoreContext$protected {
329
+ protected TryGetTypeBuilderCore(type: Type, builder: ModelReaderWriterTypeBuilder): boolean;
330
+ }
331
+
332
+
333
+ export interface AzureCoreContext$instance extends AzureCoreContext$protected, ModelReaderWriterContext {
329
334
  }
330
335
 
331
336
 
@@ -351,20 +356,30 @@ export interface ClientOptions$instance {
351
356
 
352
357
 
353
358
  export const ClientOptions: {
354
- readonly Default: ClientOptions;
359
+ new(): ClientOptions;
360
+ new(diagnostics: DiagnosticsOptions): ClientOptions;
361
+ Default: ClientOptions;
355
362
  };
356
363
 
357
364
 
358
365
  export type ClientOptions = ClientOptions$instance;
359
366
 
360
- export interface DelayStrategy$instance {
367
+ export abstract class DelayStrategy$protected {
368
+ protected abstract GetNextDelayCore(response: Response, retryNumber: int): TimeSpan;
369
+ }
370
+
371
+
372
+ export interface DelayStrategy$instance extends DelayStrategy$protected {
361
373
  GetNextDelay(response: Response, retryNumber: int): TimeSpan;
362
374
  }
363
375
 
364
376
 
365
377
  export const DelayStrategy: {
378
+ new(maxDelay: Nullable<TimeSpan>, jitterFactor: double): DelayStrategy;
366
379
  CreateExponentialDelayStrategy(initialDelay?: Nullable<TimeSpan>, maxDelay?: Nullable<TimeSpan>): DelayStrategy;
367
380
  CreateFixedDelayStrategy(delay?: Nullable<TimeSpan>): DelayStrategy;
381
+ Max(val1: TimeSpan, val2: TimeSpan): TimeSpan;
382
+ Min(val1: TimeSpan, val2: TimeSpan): TimeSpan;
368
383
  };
369
384
 
370
385
 
@@ -378,8 +393,8 @@ export interface DiagnosticsOptions$instance {
378
393
  IsLoggingEnabled: boolean;
379
394
  IsTelemetryEnabled: boolean;
380
395
  LoggedContentSizeLimit: int;
381
- readonly LoggedHeaderNames: IList<System_Internal.String>;
382
- readonly LoggedQueryParameters: IList<System_Internal.String>;
396
+ LoggedHeaderNames: IList<System_Internal.String>;
397
+ LoggedQueryParameters: IList<System_Internal.String>;
383
398
  }
384
399
 
385
400
 
@@ -394,7 +409,7 @@ export type DiagnosticsOptions = DiagnosticsOptions$instance;
394
409
 
395
410
  export interface HttpMessage$instance {
396
411
  BufferResponse: boolean;
397
- readonly CancellationToken: CancellationToken;
412
+ CancellationToken: CancellationToken;
398
413
  readonly HasResponse: boolean;
399
414
  NetworkTimeout: Nullable<TimeSpan>;
400
415
  readonly ProcessingContext: MessageProcessingContext;
@@ -417,7 +432,18 @@ export const HttpMessage: {
417
432
 
418
433
  export type HttpMessage = HttpMessage$instance;
419
434
 
420
- export interface Request$instance {
435
+ export abstract class Request$protected {
436
+ protected abstract AddHeader(name: string, value: string): void;
437
+ protected abstract ContainsHeader(name: string): boolean;
438
+ protected abstract EnumerateHeaders(): IEnumerable__System_Collections_Generic<HttpHeader>;
439
+ protected abstract RemoveHeader(name: string): boolean;
440
+ protected SetHeader(name: string, value: string): void;
441
+ protected abstract TryGetHeader(name: string, value: string): boolean;
442
+ protected abstract TryGetHeaderValues(name: string, values: IEnumerable__System_Collections_Generic<System_Internal.String>): boolean;
443
+ }
444
+
445
+
446
+ export interface Request$instance extends Request$protected {
421
447
  ClientRequestId: string;
422
448
  Content: RequestContent;
423
449
  readonly Headers: RequestHeaders;
@@ -428,6 +454,7 @@ export interface Request$instance {
428
454
 
429
455
 
430
456
  export const Request: {
457
+ new(): Request;
431
458
  };
432
459
 
433
460
 
@@ -442,6 +469,7 @@ export interface RequestContent$instance {
442
469
 
443
470
 
444
471
  export const RequestContent: {
472
+ new(): RequestContent;
445
473
  Create(content: DynamicData): RequestContent;
446
474
  Create(content: BinaryData): RequestContent;
447
475
  Create(bytes: ReadOnlySequence<System_Internal.Byte>): RequestContent;
@@ -465,6 +493,7 @@ export interface RequestFailedDetailsParser$instance {
465
493
 
466
494
 
467
495
  export const RequestFailedDetailsParser: {
496
+ new(): RequestFailedDetailsParser;
468
497
  };
469
498
 
470
499
 
@@ -531,6 +560,7 @@ export interface ResponseClassificationHandler$instance {
531
560
 
532
561
 
533
562
  export const ResponseClassificationHandler: {
563
+ new(): ResponseClassificationHandler;
534
564
  };
535
565
 
536
566
 
@@ -606,6 +636,7 @@ export interface TokenCredential$instance extends AuthenticationTokenProvider {
606
636
 
607
637
 
608
638
  export const TokenCredential: {
639
+ new(): TokenCredential;
609
640
  };
610
641
 
611
642
 
@@ -31,6 +31,7 @@
31
31
  "isVirtual": true,
32
32
  "isOverride": false,
33
33
  "isSealed": false,
34
+ "visibility": "Public",
34
35
  "declaringClrType": "Azure.Core.Cryptography.IKeyEncryptionKey",
35
36
  "declaringAssemblyName": "Azure.Core",
36
37
  "isExtensionMethod": false
@@ -50,6 +51,7 @@
50
51
  "isVirtual": true,
51
52
  "isOverride": false,
52
53
  "isSealed": false,
54
+ "visibility": "Public",
53
55
  "declaringClrType": "Azure.Core.Cryptography.IKeyEncryptionKey",
54
56
  "declaringAssemblyName": "Azure.Core",
55
57
  "isExtensionMethod": false
@@ -71,6 +73,7 @@
71
73
  "isAbstract": true,
72
74
  "isVirtual": true,
73
75
  "isOverride": false,
76
+ "visibility": "Public",
74
77
  "declaringClrType": "Azure.Core.Cryptography.IKeyEncryptionKey",
75
78
  "declaringAssemblyName": "Azure.Core"
76
79
  }
@@ -106,6 +109,7 @@
106
109
  "isVirtual": true,
107
110
  "isOverride": false,
108
111
  "isSealed": false,
112
+ "visibility": "Public",
109
113
  "declaringClrType": "Azure.Core.Cryptography.IKeyEncryptionKeyResolver",
110
114
  "declaringAssemblyName": "Azure.Core",
111
115
  "isExtensionMethod": false
@@ -125,6 +129,7 @@
125
129
  "isVirtual": true,
126
130
  "isOverride": false,
127
131
  "isSealed": false,
132
+ "visibility": "Public",
128
133
  "declaringClrType": "Azure.Core.Cryptography.IKeyEncryptionKeyResolver",
129
134
  "declaringAssemblyName": "Azure.Core",
130
135
  "isExtensionMethod": false
@@ -15,7 +15,57 @@
15
15
  "isSealed": false,
16
16
  "isStatic": false,
17
17
  "arity": 0,
18
+ "baseType": {
19
+ "stableId": "System.Private.CoreLib:System.Diagnostics.Tracing.EventListener",
20
+ "clrName": "System.Diagnostics.Tracing.EventListener"
21
+ },
22
+ "interfaces": [
23
+ {
24
+ "stableId": "System.Private.CoreLib:System.IDisposable",
25
+ "clrName": "System.IDisposable"
26
+ }
27
+ ],
18
28
  "methods": [
29
+ {
30
+ "stableId": "Azure.Core:Azure.Core.Diagnostics.AzureEventSourceListener::OnEventSourceCreated(System.Diagnostics.Tracing.EventSource):System.Void",
31
+ "clrName": "OnEventSourceCreated",
32
+ "metadataToken": 100665121,
33
+ "canonicalSignature": "(System.Diagnostics.Tracing.EventSource):System.Void",
34
+ "normalizedSignature": "OnEventSourceCreated|(System.Diagnostics.Tracing.EventSource):System.Void|static=false",
35
+ "emitScope": "ClassSurface",
36
+ "provenance": "Original",
37
+ "arity": 0,
38
+ "parameterCount": 1,
39
+ "isStatic": false,
40
+ "isAbstract": false,
41
+ "isVirtual": true,
42
+ "isOverride": true,
43
+ "isSealed": true,
44
+ "visibility": "Protected",
45
+ "declaringClrType": "Azure.Core.Diagnostics.AzureEventSourceListener",
46
+ "declaringAssemblyName": "Azure.Core",
47
+ "isExtensionMethod": false
48
+ },
49
+ {
50
+ "stableId": "Azure.Core:Azure.Core.Diagnostics.AzureEventSourceListener::OnEventWritten(System.Diagnostics.Tracing.EventWrittenEventArgs):System.Void",
51
+ "clrName": "OnEventWritten",
52
+ "metadataToken": 100665122,
53
+ "canonicalSignature": "(System.Diagnostics.Tracing.EventWrittenEventArgs):System.Void",
54
+ "normalizedSignature": "OnEventWritten|(System.Diagnostics.Tracing.EventWrittenEventArgs):System.Void|static=false",
55
+ "emitScope": "ClassSurface",
56
+ "provenance": "Original",
57
+ "arity": 0,
58
+ "parameterCount": 1,
59
+ "isStatic": false,
60
+ "isAbstract": false,
61
+ "isVirtual": true,
62
+ "isOverride": true,
63
+ "isSealed": true,
64
+ "visibility": "Protected",
65
+ "declaringClrType": "Azure.Core.Diagnostics.AzureEventSourceListener",
66
+ "declaringAssemblyName": "Azure.Core",
67
+ "isExtensionMethod": false
68
+ },
19
69
  {
20
70
  "stableId": "Azure.Core:Azure.Core.Diagnostics.AzureEventSourceListener::CreateConsoleLogger(System.Diagnostics.Tracing.EventLevel):Azure.Core.Diagnostics.AzureEventSourceListener",
21
71
  "clrName": "CreateConsoleLogger",
@@ -31,6 +81,7 @@
31
81
  "isVirtual": false,
32
82
  "isOverride": false,
33
83
  "isSealed": false,
84
+ "visibility": "Public",
34
85
  "declaringClrType": "Azure.Core.Diagnostics.AzureEventSourceListener",
35
86
  "declaringAssemblyName": "Azure.Core",
36
87
  "isExtensionMethod": false
@@ -50,6 +101,7 @@
50
101
  "isVirtual": false,
51
102
  "isOverride": false,
52
103
  "isSealed": false,
104
+ "visibility": "Public",
53
105
  "declaringClrType": "Azure.Core.Diagnostics.AzureEventSourceListener",
54
106
  "declaringAssemblyName": "Azure.Core",
55
107
  "isExtensionMethod": false
@@ -65,6 +117,7 @@
65
117
  "isStatic": true,
66
118
  "isReadOnly": false,
67
119
  "isLiteral": true,
120
+ "visibility": "Public",
68
121
  "declaringClrType": "Azure.Core.Diagnostics.AzureEventSourceListener",
69
122
  "declaringAssemblyName": "Azure.Core"
70
123
  },
@@ -76,6 +129,7 @@
76
129
  "isStatic": true,
77
130
  "isReadOnly": false,
78
131
  "isLiteral": true,
132
+ "visibility": "Public",
79
133
  "declaringClrType": "Azure.Core.Diagnostics.AzureEventSourceListener",
80
134
  "declaringAssemblyName": "Azure.Core"
81
135
  }
@@ -89,6 +143,7 @@
89
143
  "normalizedSignature": "constructor|(System.Action_1[[System.Diagnostics.Tracing.EventWrittenEventArgs,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Diagnostics.Tracing.EventLevel):void|static=false",
90
144
  "isStatic": false,
91
145
  "parameterCount": 2,
146
+ "visibility": "Public",
92
147
  "declaringClrType": "Azure.Core.Diagnostics.AzureEventSourceListener",
93
148
  "declaringAssemblyName": "Azure.Core"
94
149
  },
@@ -99,6 +154,7 @@
99
154
  "normalizedSignature": "constructor|(System.Action_2[[System.Diagnostics.Tracing.EventWrittenEventArgs,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Diagnostics.Tracing.EventLevel):void|static=false",
100
155
  "isStatic": false,
101
156
  "parameterCount": 2,
157
+ "visibility": "Public",
102
158
  "declaringClrType": "Azure.Core.Diagnostics.AzureEventSourceListener",
103
159
  "declaringAssemblyName": "Azure.Core"
104
160
  }
@@ -7,11 +7,17 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
7
7
 
8
8
  // Import types from other namespaces
9
9
  import * as System_Diagnostics_Tracing_Internal from "@tsonic/dotnet/System.Diagnostics.Tracing.js";
10
- import type { EventLevel, EventListener, EventWrittenEventArgs } from "@tsonic/dotnet/System.Diagnostics.Tracing.js";
10
+ import type { EventLevel, EventListener, EventSource, EventWrittenEventArgs } from "@tsonic/dotnet/System.Diagnostics.Tracing.js";
11
11
  import * as System_Internal from "@tsonic/dotnet/System.js";
12
- import type { Action, IDisposable, String as ClrString } from "@tsonic/dotnet/System.js";
12
+ import type { Action, IDisposable, String as ClrString, Void } from "@tsonic/dotnet/System.js";
13
13
 
14
- export interface AzureEventSourceListener$instance extends EventListener {
14
+ export abstract class AzureEventSourceListener$protected {
15
+ protected OnEventSourceCreated(eventSource: EventSource): void;
16
+ protected OnEventWritten(eventData: EventWrittenEventArgs): void;
17
+ }
18
+
19
+
20
+ export interface AzureEventSourceListener$instance extends AzureEventSourceListener$protected, EventListener {
15
21
  }
16
22
 
17
23
 
@@ -6,8 +6,8 @@
6
6
  import * as Internal from './Azure.Core.Diagnostics/internal/index.js';
7
7
 
8
8
  // Cross-namespace type imports for constraints
9
- import type { EventLevel, EventListener, EventWrittenEventArgs } from '@tsonic/dotnet/System.Diagnostics.Tracing.js';
10
- import type { Action, IDisposable, String as ClrString } from '@tsonic/dotnet/System.js';
9
+ import type { EventLevel, EventListener, EventSource, EventWrittenEventArgs } from '@tsonic/dotnet/System.Diagnostics.Tracing.js';
10
+ import type { Action, IDisposable, String as ClrString, Void } from '@tsonic/dotnet/System.js';
11
11
 
12
12
  // Public API exports (curated - no internal $instance/$views leakage)
13
13
  export { AzureEventSourceListener as AzureEventSourceListener } from './Azure.Core.Diagnostics/internal/index.js';
@@ -15,6 +15,10 @@
15
15
  "isSealed": false,
16
16
  "isStatic": false,
17
17
  "arity": 2,
18
+ "typeParameters": [
19
+ "TClient",
20
+ "TOptions"
21
+ ],
18
22
  "methods": [],
19
23
  "properties": [],
20
24
  "fields": [],
@@ -48,6 +52,7 @@
48
52
  "isVirtual": true,
49
53
  "isOverride": false,
50
54
  "isSealed": false,
55
+ "visibility": "Public",
51
56
  "declaringClrType": "Azure.Core.Extensions.IAzureClientFactoryBuilder",
52
57
  "declaringAssemblyName": "Azure.Core",
53
58
  "isExtensionMethod": false
@@ -69,6 +74,15 @@
69
74
  "isSealed": false,
70
75
  "isStatic": false,
71
76
  "arity": 1,
77
+ "interfaces": [
78
+ {
79
+ "stableId": "Azure.Core:Azure.Core.Extensions.IAzureClientFactoryBuilder",
80
+ "clrName": "Azure.Core.Extensions.IAzureClientFactoryBuilder"
81
+ }
82
+ ],
83
+ "typeParameters": [
84
+ "TConfiguration"
85
+ ],
72
86
  "methods": [
73
87
  {
74
88
  "stableId": "Azure.Core:Azure.Core.Extensions.IAzureClientFactoryBuilderWithConfiguration\u00601::RegisterClientFactory(TConfiguration):IAzureClientBuilder_2",
@@ -85,6 +99,7 @@
85
99
  "isVirtual": true,
86
100
  "isOverride": false,
87
101
  "isSealed": false,
102
+ "visibility": "Public",
88
103
  "declaringClrType": "Azure.Core.Extensions.IAzureClientFactoryBuilderWithConfiguration\u00601",
89
104
  "declaringAssemblyName": "Azure.Core",
90
105
  "isExtensionMethod": false
@@ -104,6 +119,7 @@
104
119
  "isVirtual": true,
105
120
  "isOverride": false,
106
121
  "isSealed": false,
122
+ "visibility": "Public",
107
123
  "declaringClrType": "Azure.Core.Extensions.IAzureClientFactoryBuilder",
108
124
  "declaringAssemblyName": "Azure.Core",
109
125
  "isExtensionMethod": false
@@ -141,6 +157,7 @@
141
157
  "isVirtual": true,
142
158
  "isOverride": false,
143
159
  "isSealed": false,
160
+ "visibility": "Public",
144
161
  "declaringClrType": "Azure.Core.Extensions.IAzureClientFactoryBuilderWithCredential",
145
162
  "declaringAssemblyName": "Azure.Core",
146
163
  "isExtensionMethod": false