@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,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": "Microsoft.IdentityModel.Abstractions.EventLogLevel",
30
53
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
31
54
  },
@@ -37,6 +60,7 @@
37
60
  "isStatic": true,
38
61
  "isReadOnly": false,
39
62
  "isLiteral": true,
63
+ "visibility": "Public",
40
64
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.EventLogLevel",
41
65
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
42
66
  },
@@ -48,6 +72,7 @@
48
72
  "isStatic": true,
49
73
  "isReadOnly": false,
50
74
  "isLiteral": true,
75
+ "visibility": "Public",
51
76
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.EventLogLevel",
52
77
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
53
78
  },
@@ -59,6 +84,7 @@
59
84
  "isStatic": true,
60
85
  "isReadOnly": false,
61
86
  "isLiteral": true,
87
+ "visibility": "Public",
62
88
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.EventLogLevel",
63
89
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
64
90
  },
@@ -70,6 +96,7 @@
70
96
  "isStatic": true,
71
97
  "isReadOnly": false,
72
98
  "isLiteral": true,
99
+ "visibility": "Public",
73
100
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.EventLogLevel",
74
101
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
75
102
  },
@@ -81,6 +108,7 @@
81
108
  "isStatic": true,
82
109
  "isReadOnly": false,
83
110
  "isLiteral": true,
111
+ "visibility": "Public",
84
112
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.EventLogLevel",
85
113
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
86
114
  },
@@ -92,6 +120,7 @@
92
120
  "isStatic": true,
93
121
  "isReadOnly": false,
94
122
  "isLiteral": true,
123
+ "visibility": "Public",
95
124
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.EventLogLevel",
96
125
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
97
126
  }
@@ -126,6 +155,7 @@
126
155
  "isVirtual": true,
127
156
  "isOverride": false,
128
157
  "isSealed": false,
158
+ "visibility": "Public",
129
159
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.IIdentityLogger",
130
160
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
131
161
  "isExtensionMethod": false
@@ -145,6 +175,7 @@
145
175
  "isVirtual": true,
146
176
  "isOverride": false,
147
177
  "isSealed": false,
178
+ "visibility": "Public",
148
179
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.IIdentityLogger",
149
180
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
150
181
  "isExtensionMethod": false
@@ -182,6 +213,7 @@
182
213
  "isVirtual": true,
183
214
  "isOverride": false,
184
215
  "isSealed": false,
216
+ "visibility": "Public",
185
217
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
186
218
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
187
219
  "isExtensionMethod": false
@@ -201,6 +233,7 @@
201
233
  "isVirtual": true,
202
234
  "isOverride": false,
203
235
  "isSealed": false,
236
+ "visibility": "Public",
204
237
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
205
238
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
206
239
  "isExtensionMethod": false
@@ -220,6 +253,7 @@
220
253
  "isVirtual": true,
221
254
  "isOverride": false,
222
255
  "isSealed": false,
256
+ "visibility": "Public",
223
257
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
224
258
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
225
259
  "isExtensionMethod": false
@@ -239,6 +273,7 @@
239
273
  "isVirtual": true,
240
274
  "isOverride": false,
241
275
  "isSealed": false,
276
+ "visibility": "Public",
242
277
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
243
278
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
244
279
  "isExtensionMethod": false
@@ -258,6 +293,7 @@
258
293
  "isVirtual": true,
259
294
  "isOverride": false,
260
295
  "isSealed": false,
296
+ "visibility": "Public",
261
297
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
262
298
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
263
299
  "isExtensionMethod": false
@@ -279,6 +315,7 @@
279
315
  "isAbstract": true,
280
316
  "isVirtual": true,
281
317
  "isOverride": false,
318
+ "visibility": "Public",
282
319
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
283
320
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
284
321
  }
@@ -298,6 +335,10 @@
298
335
  "isSealed": false,
299
336
  "isStatic": false,
300
337
  "arity": 0,
338
+ "baseType": {
339
+ "stableId": "System.Private.CoreLib:System.Object",
340
+ "clrName": "System.Object"
341
+ },
301
342
  "methods": [],
302
343
  "properties": [
303
344
  {
@@ -315,6 +356,7 @@
315
356
  "isAbstract": false,
316
357
  "isVirtual": false,
317
358
  "isOverride": false,
359
+ "visibility": "Public",
318
360
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.LogEntry",
319
361
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
320
362
  },
@@ -333,6 +375,7 @@
333
375
  "isAbstract": false,
334
376
  "isVirtual": false,
335
377
  "isOverride": false,
378
+ "visibility": "Public",
336
379
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.LogEntry",
337
380
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
338
381
  },
@@ -351,6 +394,7 @@
351
394
  "isAbstract": false,
352
395
  "isVirtual": false,
353
396
  "isOverride": false,
397
+ "visibility": "Public",
354
398
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.LogEntry",
355
399
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
356
400
  }
@@ -365,6 +409,7 @@
365
409
  "normalizedSignature": "constructor|():void|static=false",
366
410
  "isStatic": false,
367
411
  "parameterCount": 0,
412
+ "visibility": "Public",
368
413
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.LogEntry",
369
414
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
370
415
  }
@@ -381,6 +426,16 @@
381
426
  "isSealed": true,
382
427
  "isStatic": false,
383
428
  "arity": 0,
429
+ "baseType": {
430
+ "stableId": "System.Private.CoreLib:System.Object",
431
+ "clrName": "System.Object"
432
+ },
433
+ "interfaces": [
434
+ {
435
+ "stableId": "Microsoft.IdentityModel.Abstractions:Microsoft.IdentityModel.Abstractions.IIdentityLogger",
436
+ "clrName": "Microsoft.IdentityModel.Abstractions.IIdentityLogger"
437
+ }
438
+ ],
384
439
  "methods": [
385
440
  {
386
441
  "stableId": "Microsoft.IdentityModel.Abstractions:Microsoft.IdentityModel.Abstractions.NullIdentityModelLogger::IsEnabled(Microsoft.IdentityModel.Abstractions.EventLogLevel):System.Boolean",
@@ -397,6 +452,7 @@
397
452
  "isVirtual": true,
398
453
  "isOverride": false,
399
454
  "isSealed": true,
455
+ "visibility": "Public",
400
456
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.NullIdentityModelLogger",
401
457
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
402
458
  "isExtensionMethod": false
@@ -416,6 +472,7 @@
416
472
  "isVirtual": true,
417
473
  "isOverride": false,
418
474
  "isSealed": true,
475
+ "visibility": "Public",
419
476
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.NullIdentityModelLogger",
420
477
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
421
478
  "isExtensionMethod": false
@@ -435,6 +492,7 @@
435
492
  "isVirtual": true,
436
493
  "isOverride": false,
437
494
  "isSealed": false,
495
+ "visibility": "Public",
438
496
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.IIdentityLogger",
439
497
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
440
498
  "isExtensionMethod": false,
@@ -455,6 +513,7 @@
455
513
  "isVirtual": true,
456
514
  "isOverride": false,
457
515
  "isSealed": false,
516
+ "visibility": "Public",
458
517
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.IIdentityLogger",
459
518
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
460
519
  "isExtensionMethod": false,
@@ -477,6 +536,7 @@
477
536
  "isAbstract": false,
478
537
  "isVirtual": false,
479
538
  "isOverride": false,
539
+ "visibility": "Public",
480
540
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.NullIdentityModelLogger",
481
541
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
482
542
  }
@@ -496,6 +556,16 @@
496
556
  "isSealed": false,
497
557
  "isStatic": false,
498
558
  "arity": 0,
559
+ "baseType": {
560
+ "stableId": "System.Private.CoreLib:System.Object",
561
+ "clrName": "System.Object"
562
+ },
563
+ "interfaces": [
564
+ {
565
+ "stableId": "Microsoft.IdentityModel.Abstractions:Microsoft.IdentityModel.Abstractions.ITelemetryClient",
566
+ "clrName": "Microsoft.IdentityModel.Abstractions.ITelemetryClient"
567
+ }
568
+ ],
499
569
  "methods": [
500
570
  {
501
571
  "stableId": "Microsoft.IdentityModel.Abstractions:Microsoft.IdentityModel.Abstractions.NullTelemetryClient::IsEnabled():System.Boolean",
@@ -512,6 +582,7 @@
512
582
  "isVirtual": true,
513
583
  "isOverride": false,
514
584
  "isSealed": true,
585
+ "visibility": "Public",
515
586
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.NullTelemetryClient",
516
587
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
517
588
  "isExtensionMethod": false
@@ -531,6 +602,7 @@
531
602
  "isVirtual": true,
532
603
  "isOverride": false,
533
604
  "isSealed": true,
605
+ "visibility": "Public",
534
606
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.NullTelemetryClient",
535
607
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
536
608
  "isExtensionMethod": false
@@ -550,6 +622,7 @@
550
622
  "isVirtual": true,
551
623
  "isOverride": false,
552
624
  "isSealed": true,
625
+ "visibility": "Public",
553
626
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.NullTelemetryClient",
554
627
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
555
628
  "isExtensionMethod": false
@@ -569,6 +642,7 @@
569
642
  "isVirtual": true,
570
643
  "isOverride": false,
571
644
  "isSealed": true,
645
+ "visibility": "Public",
572
646
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.NullTelemetryClient",
573
647
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
574
648
  "isExtensionMethod": false
@@ -588,6 +662,7 @@
588
662
  "isVirtual": true,
589
663
  "isOverride": false,
590
664
  "isSealed": true,
665
+ "visibility": "Public",
591
666
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.NullTelemetryClient",
592
667
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
593
668
  "isExtensionMethod": false
@@ -607,6 +682,7 @@
607
682
  "isVirtual": true,
608
683
  "isOverride": false,
609
684
  "isSealed": false,
685
+ "visibility": "Public",
610
686
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
611
687
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
612
688
  "isExtensionMethod": false,
@@ -627,6 +703,7 @@
627
703
  "isVirtual": true,
628
704
  "isOverride": false,
629
705
  "isSealed": false,
706
+ "visibility": "Public",
630
707
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
631
708
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
632
709
  "isExtensionMethod": false,
@@ -647,6 +724,7 @@
647
724
  "isVirtual": true,
648
725
  "isOverride": false,
649
726
  "isSealed": false,
727
+ "visibility": "Public",
650
728
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
651
729
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
652
730
  "isExtensionMethod": false,
@@ -667,6 +745,7 @@
667
745
  "isVirtual": true,
668
746
  "isOverride": false,
669
747
  "isSealed": false,
748
+ "visibility": "Public",
670
749
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
671
750
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
672
751
  "isExtensionMethod": false,
@@ -687,6 +766,7 @@
687
766
  "isVirtual": true,
688
767
  "isOverride": false,
689
768
  "isSealed": false,
769
+ "visibility": "Public",
690
770
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
691
771
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
692
772
  "isExtensionMethod": false,
@@ -709,6 +789,7 @@
709
789
  "isAbstract": false,
710
790
  "isVirtual": true,
711
791
  "isOverride": false,
792
+ "visibility": "Public",
712
793
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.NullTelemetryClient",
713
794
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
714
795
  },
@@ -727,6 +808,7 @@
727
808
  "isAbstract": false,
728
809
  "isVirtual": false,
729
810
  "isOverride": false,
811
+ "visibility": "Public",
730
812
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.NullTelemetryClient",
731
813
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
732
814
  },
@@ -745,6 +827,7 @@
745
827
  "isAbstract": false,
746
828
  "isVirtual": true,
747
829
  "isOverride": false,
830
+ "visibility": "Public",
748
831
  "sourceInterface": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
749
832
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ITelemetryClient",
750
833
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
@@ -765,6 +848,10 @@
765
848
  "isSealed": false,
766
849
  "isStatic": false,
767
850
  "arity": 0,
851
+ "baseType": {
852
+ "stableId": "System.Private.CoreLib:System.Object",
853
+ "clrName": "System.Object"
854
+ },
768
855
  "methods": [
769
856
  {
770
857
  "stableId": "Microsoft.IdentityModel.Abstractions:Microsoft.IdentityModel.Abstractions.TelemetryEventDetails::SetProperty(System.String,System.String):System.Void",
@@ -781,6 +868,7 @@
781
868
  "isVirtual": true,
782
869
  "isOverride": false,
783
870
  "isSealed": false,
871
+ "visibility": "Public",
784
872
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.TelemetryEventDetails",
785
873
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
786
874
  "isExtensionMethod": false
@@ -800,6 +888,7 @@
800
888
  "isVirtual": true,
801
889
  "isOverride": false,
802
890
  "isSealed": false,
891
+ "visibility": "Public",
803
892
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.TelemetryEventDetails",
804
893
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
805
894
  "isExtensionMethod": false
@@ -819,6 +908,7 @@
819
908
  "isVirtual": true,
820
909
  "isOverride": false,
821
910
  "isSealed": false,
911
+ "visibility": "Public",
822
912
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.TelemetryEventDetails",
823
913
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
824
914
  "isExtensionMethod": false
@@ -838,6 +928,7 @@
838
928
  "isVirtual": true,
839
929
  "isOverride": false,
840
930
  "isSealed": false,
931
+ "visibility": "Public",
841
932
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.TelemetryEventDetails",
842
933
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
843
934
  "isExtensionMethod": false
@@ -857,6 +948,7 @@
857
948
  "isVirtual": true,
858
949
  "isOverride": false,
859
950
  "isSealed": false,
951
+ "visibility": "Public",
860
952
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.TelemetryEventDetails",
861
953
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
862
954
  "isExtensionMethod": false
@@ -876,12 +968,32 @@
876
968
  "isVirtual": true,
877
969
  "isOverride": false,
878
970
  "isSealed": false,
971
+ "visibility": "Public",
879
972
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.TelemetryEventDetails",
880
973
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions",
881
974
  "isExtensionMethod": false
882
975
  }
883
976
  ],
884
977
  "properties": [
978
+ {
979
+ "stableId": "Microsoft.IdentityModel.Abstractions:Microsoft.IdentityModel.Abstractions.TelemetryEventDetails::PropertyValues:System.Collections.Generic.IDictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]",
980
+ "clrName": "PropertyValues",
981
+ "metadataToken": 385875976,
982
+ "canonicalSignature": ":System.Collections.Generic.IDictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]",
983
+ "normalizedSignature": "PropertyValues|:System.Collections.Generic.IDictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]|static=false|accessor=get",
984
+ "emitScope": "ClassSurface",
985
+ "provenance": "Original",
986
+ "isIndexer": false,
987
+ "hasGetter": true,
988
+ "hasSetter": false,
989
+ "isStatic": false,
990
+ "isAbstract": false,
991
+ "isVirtual": false,
992
+ "isOverride": false,
993
+ "visibility": "ProtectedInternal",
994
+ "declaringClrType": "Microsoft.IdentityModel.Abstractions.TelemetryEventDetails",
995
+ "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
996
+ },
885
997
  {
886
998
  "stableId": "Microsoft.IdentityModel.Abstractions:Microsoft.IdentityModel.Abstractions.TelemetryEventDetails::Name:System.String",
887
999
  "clrName": "Name",
@@ -897,6 +1009,7 @@
897
1009
  "isAbstract": false,
898
1010
  "isVirtual": true,
899
1011
  "isOverride": false,
1012
+ "visibility": "Public",
900
1013
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.TelemetryEventDetails",
901
1014
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
902
1015
  },
@@ -915,13 +1028,26 @@
915
1028
  "isAbstract": false,
916
1029
  "isVirtual": true,
917
1030
  "isOverride": false,
1031
+ "visibility": "Public",
918
1032
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.TelemetryEventDetails",
919
1033
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
920
1034
  }
921
1035
  ],
922
1036
  "fields": [],
923
1037
  "events": [],
924
- "constructors": []
1038
+ "constructors": [
1039
+ {
1040
+ "stableId": "Microsoft.IdentityModel.Abstractions:Microsoft.IdentityModel.Abstractions.TelemetryEventDetails::.ctor():void",
1041
+ "metadataToken": 100663339,
1042
+ "canonicalSignature": "():void",
1043
+ "normalizedSignature": "constructor|():void|static=false",
1044
+ "isStatic": false,
1045
+ "parameterCount": 0,
1046
+ "visibility": "Protected",
1047
+ "declaringClrType": "Microsoft.IdentityModel.Abstractions.TelemetryEventDetails",
1048
+ "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
1049
+ }
1050
+ ]
925
1051
  },
926
1052
  {
927
1053
  "stableId": "Microsoft.IdentityModel.Abstractions:Microsoft.IdentityModel.Abstractions.ObservabilityConstants",
@@ -934,6 +1060,10 @@
934
1060
  "isSealed": true,
935
1061
  "isStatic": true,
936
1062
  "arity": 0,
1063
+ "baseType": {
1064
+ "stableId": "System.Private.CoreLib:System.Object",
1065
+ "clrName": "System.Object"
1066
+ },
937
1067
  "methods": [],
938
1068
  "properties": [],
939
1069
  "fields": [
@@ -945,6 +1075,7 @@
945
1075
  "isStatic": true,
946
1076
  "isReadOnly": false,
947
1077
  "isLiteral": true,
1078
+ "visibility": "Public",
948
1079
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ObservabilityConstants",
949
1080
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
950
1081
  },
@@ -956,6 +1087,7 @@
956
1087
  "isStatic": true,
957
1088
  "isReadOnly": false,
958
1089
  "isLiteral": true,
1090
+ "visibility": "Public",
959
1091
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ObservabilityConstants",
960
1092
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
961
1093
  },
@@ -967,6 +1099,7 @@
967
1099
  "isStatic": true,
968
1100
  "isReadOnly": false,
969
1101
  "isLiteral": true,
1102
+ "visibility": "Public",
970
1103
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ObservabilityConstants",
971
1104
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
972
1105
  },
@@ -978,6 +1111,7 @@
978
1111
  "isStatic": true,
979
1112
  "isReadOnly": false,
980
1113
  "isLiteral": true,
1114
+ "visibility": "Public",
981
1115
  "declaringClrType": "Microsoft.IdentityModel.Abstractions.ObservabilityConstants",
982
1116
  "declaringAssemblyName": "Microsoft.IdentityModel.Abstractions"
983
1117
  }
@@ -115,6 +115,7 @@ export interface TelemetryEventDetails$instance {
115
115
 
116
116
 
117
117
  export const TelemetryEventDetails: {
118
+ new(): TelemetryEventDetails;
118
119
  };
119
120
 
120
121