@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
@@ -6,18 +6,26 @@
6
6
  import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
7
7
 
8
8
  // Import types from other namespaces
9
- import type { ClientOptions, DelayStrategy, HttpMessage, Request, RequestFailedDetailsParser, ResponseClassifier, TokenCredential } from "../../Azure.Core/internal/index.js";
9
+ import type { ClientOptions, DelayStrategy, HttpMessage, Request, RequestFailedDetailsParser, ResponseClassifier, TokenCredential, TokenRequestContext } from "../../Azure.Core/internal/index.js";
10
10
  import type { RequestContext, Response } from "../../Azure/internal/index.js";
11
11
  import type { IDictionary, IEnumerable, IList } from "@tsonic/dotnet/System.Collections.Generic.js";
12
12
  import * as System_Internal from "@tsonic/dotnet/System.js";
13
- import type { Boolean as ClrBoolean, Func, IDisposable, Int32, Object as ClrObject, ReadOnlyMemory, String as ClrString, Void } from "@tsonic/dotnet/System.js";
13
+ import type { Boolean as ClrBoolean, Exception, Func, IDisposable, Int32, Object as ClrObject, ReadOnlyMemory, String as ClrString, Void } from "@tsonic/dotnet/System.js";
14
14
  import type { HttpClient, HttpMessageHandler } from "@tsonic/dotnet/System.Net.Http.js";
15
15
  import type { SslPolicyErrors } from "@tsonic/dotnet/System.Net.Security.js";
16
16
  import type { X509Certificate2, X509Chain } from "@tsonic/dotnet/System.Security.Cryptography.X509Certificates.js";
17
17
  import type { CancellationToken } from "@tsonic/dotnet/System.Threading.js";
18
18
  import type { ValueTask } from "@tsonic/dotnet/System.Threading.Tasks.js";
19
19
 
20
- export interface BearerTokenAuthenticationPolicy$instance extends HttpPipelinePolicy {
20
+ export abstract class BearerTokenAuthenticationPolicy$protected {
21
+ protected AuthorizeRequest(message: HttpMessage): void;
22
+ protected AuthorizeRequestAsync(message: HttpMessage): ValueTask;
23
+ protected AuthorizeRequestOnChallenge(message: HttpMessage): boolean;
24
+ protected AuthorizeRequestOnChallengeAsync(message: HttpMessage): ValueTask<System_Internal.Boolean>;
25
+ }
26
+
27
+
28
+ export interface BearerTokenAuthenticationPolicy$instance extends BearerTokenAuthenticationPolicy$protected, HttpPipelinePolicy {
21
29
  Process(message: HttpMessage, pipeline: ReadOnlyMemory<HttpPipelinePolicy>): void;
22
30
  ProcessAsync(message: HttpMessage, pipeline: ReadOnlyMemory<HttpPipelinePolicy>): ValueTask;
23
31
  }
@@ -106,6 +114,9 @@ export interface HttpPipelinePolicy$instance {
106
114
 
107
115
 
108
116
  export const HttpPipelinePolicy: {
117
+ new(): HttpPipelinePolicy;
118
+ ProcessNext(message: HttpMessage, pipeline: ReadOnlyMemory<HttpPipelinePolicy>): void;
119
+ ProcessNextAsync(message: HttpMessage, pipeline: ReadOnlyMemory<HttpPipelinePolicy>): ValueTask;
109
120
  };
110
121
 
111
122
 
@@ -122,6 +133,7 @@ export interface HttpPipelineSynchronousPolicy$instance extends HttpPipelinePoli
122
133
 
123
134
 
124
135
  export const HttpPipelineSynchronousPolicy: {
136
+ new(): HttpPipelineSynchronousPolicy;
125
137
  };
126
138
 
127
139
 
@@ -135,6 +147,7 @@ export interface HttpPipelineTransport$instance {
135
147
 
136
148
 
137
149
  export const HttpPipelineTransport: {
150
+ new(): HttpPipelineTransport;
138
151
  };
139
152
 
140
153
 
@@ -169,7 +182,17 @@ export const RedirectPolicy: {
169
182
 
170
183
  export type RedirectPolicy = RedirectPolicy$instance;
171
184
 
172
- export interface RetryPolicy$instance extends HttpPipelinePolicy {
185
+ export abstract class RetryPolicy$protected {
186
+ protected OnRequestSent(message: HttpMessage): void;
187
+ protected OnRequestSentAsync(message: HttpMessage): ValueTask;
188
+ protected OnSendingRequest(message: HttpMessage): void;
189
+ protected OnSendingRequestAsync(message: HttpMessage): ValueTask;
190
+ protected ShouldRetry(message: HttpMessage, exception: Exception): boolean;
191
+ protected ShouldRetryAsync(message: HttpMessage, exception: Exception): ValueTask<System_Internal.Boolean>;
192
+ }
193
+
194
+
195
+ export interface RetryPolicy$instance extends RetryPolicy$protected, HttpPipelinePolicy {
173
196
  Process(message: HttpMessage, pipeline: ReadOnlyMemory<HttpPipelinePolicy>): void;
174
197
  ProcessAsync(message: HttpMessage, pipeline: ReadOnlyMemory<HttpPipelinePolicy>): ValueTask;
175
198
  }
@@ -6,10 +6,10 @@
6
6
  import * as Internal from './Azure.Core.Pipeline/internal/index.js';
7
7
 
8
8
  // Cross-namespace type imports for constraints
9
- import type { ClientOptions, DelayStrategy, HttpMessage, Request, RequestFailedDetailsParser, ResponseClassifier, TokenCredential } from './Azure.Core/internal/index.js';
9
+ import type { ClientOptions, DelayStrategy, HttpMessage, Request, RequestFailedDetailsParser, ResponseClassifier, TokenCredential, TokenRequestContext } from './Azure.Core/internal/index.js';
10
10
  import type { RequestContext, Response } from './Azure/internal/index.js';
11
11
  import type { IDictionary, IEnumerable, IList } from '@tsonic/dotnet/System.Collections.Generic.js';
12
- import type { Boolean as ClrBoolean, Func, IDisposable, Int32, Object as ClrObject, ReadOnlyMemory, String as ClrString, Void } from '@tsonic/dotnet/System.js';
12
+ import type { Boolean as ClrBoolean, Exception, Func, IDisposable, Int32, Object as ClrObject, ReadOnlyMemory, String as ClrString, Void } from '@tsonic/dotnet/System.js';
13
13
  import type { HttpClient, HttpMessageHandler } from '@tsonic/dotnet/System.Net.Http.js';
14
14
  import type { SslPolicyErrors } from '@tsonic/dotnet/System.Net.Security.js';
15
15
  import type { X509Certificate2, X509Chain } from '@tsonic/dotnet/System.Security.Cryptography.X509Certificates.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.Core.Serialization.JsonPropertyNames",
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.Core.Serialization.JsonPropertyNames",
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.Core.Serialization.JsonPropertyNames",
52
77
  "declaringAssemblyName": "Azure.Core"
53
78
  }
@@ -82,6 +107,7 @@
82
107
  "isVirtual": true,
83
108
  "isOverride": false,
84
109
  "isSealed": false,
110
+ "visibility": "Public",
85
111
  "declaringClrType": "Azure.Core.Serialization.IMemberNameConverter",
86
112
  "declaringAssemblyName": "Azure.Core",
87
113
  "isExtensionMethod": false
@@ -103,6 +129,20 @@
103
129
  "isSealed": true,
104
130
  "isStatic": false,
105
131
  "arity": 0,
132
+ "baseType": {
133
+ "stableId": "System.Private.CoreLib:System.Object",
134
+ "clrName": "System.Object"
135
+ },
136
+ "interfaces": [
137
+ {
138
+ "stableId": "System.Private.CoreLib:System.IDisposable",
139
+ "clrName": "System.IDisposable"
140
+ },
141
+ {
142
+ "stableId": "System.Linq.Expressions:System.Dynamic.IDynamicMetaObjectProvider",
143
+ "clrName": "System.Dynamic.IDynamicMetaObjectProvider"
144
+ }
145
+ ],
106
146
  "methods": [
107
147
  {
108
148
  "stableId": "Azure.Core:Azure.Core.Serialization.DynamicData::ToString():System.String",
@@ -119,6 +159,7 @@
119
159
  "isVirtual": true,
120
160
  "isOverride": true,
121
161
  "isSealed": false,
162
+ "visibility": "Public",
122
163
  "declaringClrType": "Azure.Core.Serialization.DynamicData",
123
164
  "declaringAssemblyName": "Azure.Core",
124
165
  "isExtensionMethod": false
@@ -138,6 +179,7 @@
138
179
  "isVirtual": true,
139
180
  "isOverride": false,
140
181
  "isSealed": true,
182
+ "visibility": "Public",
141
183
  "declaringClrType": "Azure.Core.Serialization.DynamicData",
142
184
  "declaringAssemblyName": "Azure.Core",
143
185
  "isExtensionMethod": false
@@ -157,6 +199,7 @@
157
199
  "isVirtual": true,
158
200
  "isOverride": true,
159
201
  "isSealed": false,
202
+ "visibility": "Public",
160
203
  "declaringClrType": "Azure.Core.Serialization.DynamicData",
161
204
  "declaringAssemblyName": "Azure.Core",
162
205
  "isExtensionMethod": false
@@ -176,6 +219,7 @@
176
219
  "isVirtual": true,
177
220
  "isOverride": true,
178
221
  "isSealed": false,
222
+ "visibility": "Public",
179
223
  "declaringClrType": "Azure.Core.Serialization.DynamicData",
180
224
  "declaringAssemblyName": "Azure.Core",
181
225
  "isExtensionMethod": false
@@ -197,6 +241,16 @@
197
241
  "isSealed": false,
198
242
  "isStatic": false,
199
243
  "arity": 0,
244
+ "baseType": {
245
+ "stableId": "Azure.Core:Azure.Core.Serialization.ObjectSerializer",
246
+ "clrName": "Azure.Core.Serialization.ObjectSerializer"
247
+ },
248
+ "interfaces": [
249
+ {
250
+ "stableId": "Azure.Core:Azure.Core.Serialization.IMemberNameConverter",
251
+ "clrName": "Azure.Core.Serialization.IMemberNameConverter"
252
+ }
253
+ ],
200
254
  "methods": [
201
255
  {
202
256
  "stableId": "Azure.Core:Azure.Core.Serialization.JsonObjectSerializer::Serialize(System.IO.Stream,System.Object,System.Type,System.Threading.CancellationToken):System.Void",
@@ -213,6 +267,7 @@
213
267
  "isVirtual": true,
214
268
  "isOverride": true,
215
269
  "isSealed": false,
270
+ "visibility": "Public",
216
271
  "declaringClrType": "Azure.Core.Serialization.JsonObjectSerializer",
217
272
  "declaringAssemblyName": "Azure.Core",
218
273
  "isExtensionMethod": false
@@ -232,6 +287,7 @@
232
287
  "isVirtual": true,
233
288
  "isOverride": true,
234
289
  "isSealed": false,
290
+ "visibility": "Public",
235
291
  "declaringClrType": "Azure.Core.Serialization.JsonObjectSerializer",
236
292
  "declaringAssemblyName": "Azure.Core",
237
293
  "isExtensionMethod": false
@@ -251,6 +307,7 @@
251
307
  "isVirtual": true,
252
308
  "isOverride": true,
253
309
  "isSealed": false,
310
+ "visibility": "Public",
254
311
  "declaringClrType": "Azure.Core.Serialization.JsonObjectSerializer",
255
312
  "declaringAssemblyName": "Azure.Core",
256
313
  "isExtensionMethod": false
@@ -270,6 +327,7 @@
270
327
  "isVirtual": true,
271
328
  "isOverride": true,
272
329
  "isSealed": false,
330
+ "visibility": "Public",
273
331
  "declaringClrType": "Azure.Core.Serialization.JsonObjectSerializer",
274
332
  "declaringAssemblyName": "Azure.Core",
275
333
  "isExtensionMethod": false
@@ -289,6 +347,7 @@
289
347
  "isVirtual": true,
290
348
  "isOverride": true,
291
349
  "isSealed": false,
350
+ "visibility": "Public",
292
351
  "declaringClrType": "Azure.Core.Serialization.JsonObjectSerializer",
293
352
  "declaringAssemblyName": "Azure.Core",
294
353
  "isExtensionMethod": false
@@ -308,6 +367,7 @@
308
367
  "isVirtual": true,
309
368
  "isOverride": true,
310
369
  "isSealed": false,
370
+ "visibility": "Public",
311
371
  "declaringClrType": "Azure.Core.Serialization.JsonObjectSerializer",
312
372
  "declaringAssemblyName": "Azure.Core",
313
373
  "isExtensionMethod": false
@@ -327,6 +387,7 @@
327
387
  "isVirtual": true,
328
388
  "isOverride": false,
329
389
  "isSealed": false,
390
+ "visibility": "Public",
330
391
  "declaringClrType": "Azure.Core.Serialization.IMemberNameConverter",
331
392
  "declaringAssemblyName": "Azure.Core",
332
393
  "isExtensionMethod": false,
@@ -347,6 +408,7 @@
347
408
  "isVirtual": true,
348
409
  "isOverride": false,
349
410
  "isSealed": false,
411
+ "visibility": "Public",
350
412
  "declaringClrType": "Azure.Core.Serialization.JsonObjectSerializer",
351
413
  "declaringAssemblyName": "Azure.Core",
352
414
  "isExtensionMethod": false
@@ -366,6 +428,7 @@
366
428
  "isVirtual": true,
367
429
  "isOverride": false,
368
430
  "isSealed": false,
431
+ "visibility": "Public",
369
432
  "declaringClrType": "Azure.Core.Serialization.JsonObjectSerializer",
370
433
  "declaringAssemblyName": "Azure.Core",
371
434
  "isExtensionMethod": false
@@ -387,6 +450,7 @@
387
450
  "isAbstract": false,
388
451
  "isVirtual": false,
389
452
  "isOverride": false,
453
+ "visibility": "Public",
390
454
  "declaringClrType": "Azure.Core.Serialization.JsonObjectSerializer",
391
455
  "declaringAssemblyName": "Azure.Core"
392
456
  }
@@ -401,6 +465,7 @@
401
465
  "normalizedSignature": "constructor|():void|static=false",
402
466
  "isStatic": false,
403
467
  "parameterCount": 0,
468
+ "visibility": "Public",
404
469
  "declaringClrType": "Azure.Core.Serialization.JsonObjectSerializer",
405
470
  "declaringAssemblyName": "Azure.Core"
406
471
  },
@@ -411,6 +476,7 @@
411
476
  "normalizedSignature": "constructor|(System.Text.Json.JsonSerializerOptions):void|static=false",
412
477
  "isStatic": false,
413
478
  "parameterCount": 1,
479
+ "visibility": "Public",
414
480
  "declaringClrType": "Azure.Core.Serialization.JsonObjectSerializer",
415
481
  "declaringAssemblyName": "Azure.Core"
416
482
  }
@@ -427,6 +493,10 @@
427
493
  "isSealed": false,
428
494
  "isStatic": false,
429
495
  "arity": 0,
496
+ "baseType": {
497
+ "stableId": "System.Private.CoreLib:System.Object",
498
+ "clrName": "System.Object"
499
+ },
430
500
  "methods": [
431
501
  {
432
502
  "stableId": "Azure.Core:Azure.Core.Serialization.ObjectSerializer::Serialize(System.IO.Stream,System.Object,System.Type,System.Threading.CancellationToken):System.Void",
@@ -443,6 +513,7 @@
443
513
  "isVirtual": true,
444
514
  "isOverride": false,
445
515
  "isSealed": false,
516
+ "visibility": "Public",
446
517
  "declaringClrType": "Azure.Core.Serialization.ObjectSerializer",
447
518
  "declaringAssemblyName": "Azure.Core",
448
519
  "isExtensionMethod": false
@@ -462,6 +533,7 @@
462
533
  "isVirtual": true,
463
534
  "isOverride": false,
464
535
  "isSealed": false,
536
+ "visibility": "Public",
465
537
  "declaringClrType": "Azure.Core.Serialization.ObjectSerializer",
466
538
  "declaringAssemblyName": "Azure.Core",
467
539
  "isExtensionMethod": false
@@ -481,6 +553,7 @@
481
553
  "isVirtual": true,
482
554
  "isOverride": false,
483
555
  "isSealed": false,
556
+ "visibility": "Public",
484
557
  "declaringClrType": "Azure.Core.Serialization.ObjectSerializer",
485
558
  "declaringAssemblyName": "Azure.Core",
486
559
  "isExtensionMethod": false
@@ -500,6 +573,7 @@
500
573
  "isVirtual": true,
501
574
  "isOverride": false,
502
575
  "isSealed": false,
576
+ "visibility": "Public",
503
577
  "declaringClrType": "Azure.Core.Serialization.ObjectSerializer",
504
578
  "declaringAssemblyName": "Azure.Core",
505
579
  "isExtensionMethod": false
@@ -519,6 +593,7 @@
519
593
  "isVirtual": true,
520
594
  "isOverride": false,
521
595
  "isSealed": false,
596
+ "visibility": "Public",
522
597
  "declaringClrType": "Azure.Core.Serialization.ObjectSerializer",
523
598
  "declaringAssemblyName": "Azure.Core",
524
599
  "isExtensionMethod": false
@@ -538,6 +613,7 @@
538
613
  "isVirtual": true,
539
614
  "isOverride": false,
540
615
  "isSealed": false,
616
+ "visibility": "Public",
541
617
  "declaringClrType": "Azure.Core.Serialization.ObjectSerializer",
542
618
  "declaringAssemblyName": "Azure.Core",
543
619
  "isExtensionMethod": false
@@ -546,7 +622,19 @@
546
622
  "properties": [],
547
623
  "fields": [],
548
624
  "events": [],
549
- "constructors": []
625
+ "constructors": [
626
+ {
627
+ "stableId": "Azure.Core:Azure.Core.Serialization.ObjectSerializer::.ctor():void",
628
+ "metadataToken": 100665081,
629
+ "canonicalSignature": "():void",
630
+ "normalizedSignature": "constructor|():void|static=false",
631
+ "isStatic": false,
632
+ "parameterCount": 0,
633
+ "visibility": "Protected",
634
+ "declaringClrType": "Azure.Core.Serialization.ObjectSerializer",
635
+ "declaringAssemblyName": "Azure.Core"
636
+ }
637
+ ]
550
638
  }
551
639
  ]
552
640
  }
@@ -83,6 +83,7 @@ export interface ObjectSerializer$instance {
83
83
 
84
84
 
85
85
  export const ObjectSerializer: {
86
+ new(): ObjectSerializer;
86
87
  };
87
88
 
88
89
 
package/Azure.Core.d.ts CHANGED
@@ -16,7 +16,7 @@ import type { ReadOnlySequence } from '@tsonic/dotnet/System.Buffers.js';
16
16
  import type { IDictionary, IEnumerable as IEnumerable__System_Collections_Generic, IEnumerator, IList, IReadOnlyDictionary } from '@tsonic/dotnet/System.Collections.Generic.js';
17
17
  import type { IEnumerable } from '@tsonic/dotnet/System.Collections.js';
18
18
  import type { Stream } from '@tsonic/dotnet/System.IO.js';
19
- 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';
19
+ 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';
20
20
  import type { Assembly } from '@tsonic/dotnet/System.Reflection.js';
21
21
  import type { ISerializable } from '@tsonic/dotnet/System.Runtime.Serialization.js';
22
22
  import type { Utf8JsonReader, Utf8JsonWriter } from '@tsonic/dotnet/System.Text.Json.js';