@tsonic/dotnet 10.0.27 → 10.0.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/System.Data.Common/internal/index.d.ts +28 -14
- package/System.IO/internal/index.d.ts +2 -1
- package/System.Net.Http.Headers/internal/index.d.ts +48 -24
- package/System.Net.ServerSentEvents/internal/index.d.ts +2 -1
- package/System.Net.Sockets/internal/index.d.ts +2 -1
- package/System.Security.Cryptography/internal/index.d.ts +4 -2
- package/System.Security.Cryptography.X509Certificates/internal/index.d.ts +10 -5
- package/System.Text.Json/internal/index.d.ts +4 -2
- package/System.Text.Json.Serialization.Metadata/internal/index.d.ts +14 -7
- package/__internal/extensions/index.d.ts +2 -2
- package/package.json +2 -2
|
@@ -392,7 +392,8 @@ export type DbBatchCommandCollection = DbBatchCommandCollection$instance & __DbB
|
|
|
392
392
|
export interface DbColumn$instance {
|
|
393
393
|
readonly __tsonic_type_System_Data_Common_DbColumn: never;
|
|
394
394
|
|
|
395
|
-
AllowDBNull: Nullable_1<System_Internal.Boolean>;
|
|
395
|
+
get AllowDBNull(): Nullable_1<System_Internal.Boolean>;
|
|
396
|
+
set AllowDBNull(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
396
397
|
get BaseCatalogName(): string | undefined;
|
|
397
398
|
set BaseCatalogName(value: string | undefined);
|
|
398
399
|
get BaseColumnName(): string | undefined;
|
|
@@ -404,23 +405,36 @@ export interface DbColumn$instance {
|
|
|
404
405
|
get BaseTableName(): string | undefined;
|
|
405
406
|
set BaseTableName(value: string | undefined);
|
|
406
407
|
ColumnName: string;
|
|
407
|
-
ColumnOrdinal: Nullable_1<System_Internal.Int32>;
|
|
408
|
-
|
|
408
|
+
get ColumnOrdinal(): Nullable_1<System_Internal.Int32>;
|
|
409
|
+
set ColumnOrdinal(value: Nullable_1<System_Internal.Int32> | int);
|
|
410
|
+
get ColumnSize(): Nullable_1<System_Internal.Int32>;
|
|
411
|
+
set ColumnSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
409
412
|
get DataType(): Type | undefined;
|
|
410
413
|
set DataType(value: Type | undefined);
|
|
411
414
|
get DataTypeName(): string | undefined;
|
|
412
415
|
set DataTypeName(value: string | undefined);
|
|
413
|
-
IsAliased: Nullable_1<System_Internal.Boolean>;
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
416
|
+
get IsAliased(): Nullable_1<System_Internal.Boolean>;
|
|
417
|
+
set IsAliased(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
418
|
+
get IsAutoIncrement(): Nullable_1<System_Internal.Boolean>;
|
|
419
|
+
set IsAutoIncrement(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
420
|
+
get IsExpression(): Nullable_1<System_Internal.Boolean>;
|
|
421
|
+
set IsExpression(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
422
|
+
get IsHidden(): Nullable_1<System_Internal.Boolean>;
|
|
423
|
+
set IsHidden(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
424
|
+
get IsIdentity(): Nullable_1<System_Internal.Boolean>;
|
|
425
|
+
set IsIdentity(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
426
|
+
get IsKey(): Nullable_1<System_Internal.Boolean>;
|
|
427
|
+
set IsKey(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
428
|
+
get IsLong(): Nullable_1<System_Internal.Boolean>;
|
|
429
|
+
set IsLong(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
430
|
+
get IsReadOnly(): Nullable_1<System_Internal.Boolean>;
|
|
431
|
+
set IsReadOnly(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
432
|
+
get IsUnique(): Nullable_1<System_Internal.Boolean>;
|
|
433
|
+
set IsUnique(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
434
|
+
get NumericPrecision(): Nullable_1<System_Internal.Int32>;
|
|
435
|
+
set NumericPrecision(value: Nullable_1<System_Internal.Int32> | int);
|
|
436
|
+
get NumericScale(): Nullable_1<System_Internal.Int32>;
|
|
437
|
+
set NumericScale(value: Nullable_1<System_Internal.Int32> | int);
|
|
424
438
|
get UdtAssemblyQualifiedName(): string | undefined;
|
|
425
439
|
set UdtAssemblyQualifiedName(value: string | undefined);
|
|
426
440
|
}
|
|
@@ -737,7 +737,8 @@ export interface FileStreamOptions$instance {
|
|
|
737
737
|
Options: FileOptions;
|
|
738
738
|
PreallocationSize: long;
|
|
739
739
|
Share: FileShare;
|
|
740
|
-
UnixCreateMode: Nullable_1<UnixFileMode>;
|
|
740
|
+
get UnixCreateMode(): Nullable_1<UnixFileMode>;
|
|
741
|
+
set UnixCreateMode(value: Nullable_1<UnixFileMode> | UnixFileMode);
|
|
741
742
|
}
|
|
742
743
|
|
|
743
744
|
|
|
@@ -161,10 +161,13 @@ export interface CacheControlHeaderValue$instance extends System_Internal.IClone
|
|
|
161
161
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
162
162
|
|
|
163
163
|
readonly Extensions: ICollection_1<NameValueHeaderValue>;
|
|
164
|
-
MaxAge: Nullable_1<TimeSpan>;
|
|
164
|
+
get MaxAge(): Nullable_1<TimeSpan>;
|
|
165
|
+
set MaxAge(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
165
166
|
MaxStale: boolean;
|
|
166
|
-
MaxStaleLimit: Nullable_1<TimeSpan>;
|
|
167
|
-
|
|
167
|
+
get MaxStaleLimit(): Nullable_1<TimeSpan>;
|
|
168
|
+
set MaxStaleLimit(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
169
|
+
get MinFresh(): Nullable_1<TimeSpan>;
|
|
170
|
+
set MinFresh(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
168
171
|
MustRevalidate: boolean;
|
|
169
172
|
NoCache: boolean;
|
|
170
173
|
readonly NoCacheHeaders: ICollection_1<System_Internal.String>;
|
|
@@ -175,7 +178,8 @@ export interface CacheControlHeaderValue$instance extends System_Internal.IClone
|
|
|
175
178
|
readonly PrivateHeaders: ICollection_1<System_Internal.String>;
|
|
176
179
|
ProxyRevalidate: boolean;
|
|
177
180
|
Public: boolean;
|
|
178
|
-
SharedMaxAge: Nullable_1<TimeSpan>;
|
|
181
|
+
get SharedMaxAge(): Nullable_1<TimeSpan>;
|
|
182
|
+
set SharedMaxAge(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
179
183
|
Equals(obj: unknown): boolean;
|
|
180
184
|
GetHashCode(): int;
|
|
181
185
|
ToString(): string;
|
|
@@ -201,18 +205,22 @@ export interface ContentDispositionHeaderValue$instance extends System_Internal.
|
|
|
201
205
|
|
|
202
206
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
203
207
|
|
|
204
|
-
CreationDate: Nullable_1<DateTimeOffset>;
|
|
208
|
+
get CreationDate(): Nullable_1<DateTimeOffset>;
|
|
209
|
+
set CreationDate(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
205
210
|
DispositionType: string;
|
|
206
211
|
get FileName(): string | undefined;
|
|
207
212
|
set FileName(value: string | undefined);
|
|
208
213
|
get FileNameStar(): string | undefined;
|
|
209
214
|
set FileNameStar(value: string | undefined);
|
|
210
|
-
ModificationDate: Nullable_1<DateTimeOffset>;
|
|
215
|
+
get ModificationDate(): Nullable_1<DateTimeOffset>;
|
|
216
|
+
set ModificationDate(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
211
217
|
get Name(): string | undefined;
|
|
212
218
|
set Name(value: string | undefined);
|
|
213
219
|
readonly Parameters: ICollection_1<NameValueHeaderValue>;
|
|
214
|
-
ReadDate: Nullable_1<DateTimeOffset>;
|
|
215
|
-
|
|
220
|
+
get ReadDate(): Nullable_1<DateTimeOffset>;
|
|
221
|
+
set ReadDate(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
222
|
+
get Size(): Nullable_1<System_Internal.Int64>;
|
|
223
|
+
set Size(value: Nullable_1<System_Internal.Int64> | long);
|
|
216
224
|
Equals(obj: unknown): boolean;
|
|
217
225
|
GetHashCode(): int;
|
|
218
226
|
ToString(): string;
|
|
@@ -306,7 +314,8 @@ export interface HttpContentHeaders$instance extends HttpHeaders$instance {
|
|
|
306
314
|
set ContentDisposition(value: ContentDispositionHeaderValue | undefined);
|
|
307
315
|
readonly ContentEncoding: ICollection_1<System_Internal.String>;
|
|
308
316
|
readonly ContentLanguage: ICollection_1<System_Internal.String>;
|
|
309
|
-
ContentLength: Nullable_1<System_Internal.Int64>;
|
|
317
|
+
get ContentLength(): Nullable_1<System_Internal.Int64>;
|
|
318
|
+
set ContentLength(value: Nullable_1<System_Internal.Int64> | long);
|
|
310
319
|
get ContentLocation(): Uri | undefined;
|
|
311
320
|
set ContentLocation(value: Uri | undefined);
|
|
312
321
|
get ContentMD5(): byte[] | undefined;
|
|
@@ -315,8 +324,10 @@ export interface HttpContentHeaders$instance extends HttpHeaders$instance {
|
|
|
315
324
|
set ContentRange(value: ContentRangeHeaderValue | undefined);
|
|
316
325
|
get ContentType(): MediaTypeHeaderValue | undefined;
|
|
317
326
|
set ContentType(value: MediaTypeHeaderValue | undefined);
|
|
318
|
-
Expires: Nullable_1<DateTimeOffset>;
|
|
319
|
-
|
|
327
|
+
get Expires(): Nullable_1<DateTimeOffset>;
|
|
328
|
+
set Expires(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
329
|
+
get LastModified(): Nullable_1<DateTimeOffset>;
|
|
330
|
+
set LastModified(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
320
331
|
}
|
|
321
332
|
|
|
322
333
|
|
|
@@ -414,21 +425,27 @@ export interface HttpRequestHeaders$instance extends HttpHeaders$instance {
|
|
|
414
425
|
get CacheControl(): CacheControlHeaderValue | undefined;
|
|
415
426
|
set CacheControl(value: CacheControlHeaderValue | undefined);
|
|
416
427
|
readonly Connection: HttpHeaderValueCollection_1<System_Internal.String>;
|
|
417
|
-
ConnectionClose: Nullable_1<System_Internal.Boolean>;
|
|
418
|
-
|
|
428
|
+
get ConnectionClose(): Nullable_1<System_Internal.Boolean>;
|
|
429
|
+
set ConnectionClose(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
430
|
+
get Date(): Nullable_1<DateTimeOffset>;
|
|
431
|
+
set Date(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
419
432
|
readonly Expect: HttpHeaderValueCollection_1<NameValueWithParametersHeaderValue>;
|
|
420
|
-
ExpectContinue: Nullable_1<System_Internal.Boolean>;
|
|
433
|
+
get ExpectContinue(): Nullable_1<System_Internal.Boolean>;
|
|
434
|
+
set ExpectContinue(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
421
435
|
get From(): string | undefined;
|
|
422
436
|
set From(value: string | undefined);
|
|
423
437
|
get Host(): string | undefined;
|
|
424
438
|
set Host(value: string | undefined);
|
|
425
439
|
readonly IfMatch: HttpHeaderValueCollection_1<EntityTagHeaderValue>;
|
|
426
|
-
IfModifiedSince: Nullable_1<DateTimeOffset>;
|
|
440
|
+
get IfModifiedSince(): Nullable_1<DateTimeOffset>;
|
|
441
|
+
set IfModifiedSince(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
427
442
|
readonly IfNoneMatch: HttpHeaderValueCollection_1<EntityTagHeaderValue>;
|
|
428
443
|
get IfRange(): RangeConditionHeaderValue | undefined;
|
|
429
444
|
set IfRange(value: RangeConditionHeaderValue | undefined);
|
|
430
|
-
IfUnmodifiedSince: Nullable_1<DateTimeOffset>;
|
|
431
|
-
|
|
445
|
+
get IfUnmodifiedSince(): Nullable_1<DateTimeOffset>;
|
|
446
|
+
set IfUnmodifiedSince(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
447
|
+
get MaxForwards(): Nullable_1<System_Internal.Int32>;
|
|
448
|
+
set MaxForwards(value: Nullable_1<System_Internal.Int32> | int);
|
|
432
449
|
readonly Pragma: HttpHeaderValueCollection_1<NameValueHeaderValue>;
|
|
433
450
|
get Protocol(): string | undefined;
|
|
434
451
|
set Protocol(value: string | undefined);
|
|
@@ -441,7 +458,8 @@ export interface HttpRequestHeaders$instance extends HttpHeaders$instance {
|
|
|
441
458
|
readonly TE: HttpHeaderValueCollection_1<TransferCodingWithQualityHeaderValue>;
|
|
442
459
|
readonly Trailer: HttpHeaderValueCollection_1<System_Internal.String>;
|
|
443
460
|
readonly TransferEncoding: HttpHeaderValueCollection_1<TransferCodingHeaderValue>;
|
|
444
|
-
TransferEncodingChunked: Nullable_1<System_Internal.Boolean>;
|
|
461
|
+
get TransferEncodingChunked(): Nullable_1<System_Internal.Boolean>;
|
|
462
|
+
set TransferEncodingChunked(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
445
463
|
readonly Upgrade: HttpHeaderValueCollection_1<ProductHeaderValue>;
|
|
446
464
|
readonly UserAgent: HttpHeaderValueCollection_1<ProductInfoHeaderValue>;
|
|
447
465
|
readonly Via: HttpHeaderValueCollection_1<ViaHeaderValue>;
|
|
@@ -468,12 +486,15 @@ export interface HttpResponseHeaders$instance extends HttpHeaders$instance {
|
|
|
468
486
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
469
487
|
|
|
470
488
|
readonly AcceptRanges: HttpHeaderValueCollection_1<System_Internal.String>;
|
|
471
|
-
Age: Nullable_1<TimeSpan>;
|
|
489
|
+
get Age(): Nullable_1<TimeSpan>;
|
|
490
|
+
set Age(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
472
491
|
get CacheControl(): CacheControlHeaderValue | undefined;
|
|
473
492
|
set CacheControl(value: CacheControlHeaderValue | undefined);
|
|
474
493
|
readonly Connection: HttpHeaderValueCollection_1<System_Internal.String>;
|
|
475
|
-
ConnectionClose: Nullable_1<System_Internal.Boolean>;
|
|
476
|
-
|
|
494
|
+
get ConnectionClose(): Nullable_1<System_Internal.Boolean>;
|
|
495
|
+
set ConnectionClose(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
496
|
+
get Date(): Nullable_1<DateTimeOffset>;
|
|
497
|
+
set Date(value: Nullable_1<DateTimeOffset> | DateTimeOffset);
|
|
477
498
|
get ETag(): EntityTagHeaderValue | undefined;
|
|
478
499
|
set ETag(value: EntityTagHeaderValue | undefined);
|
|
479
500
|
get Location(): Uri | undefined;
|
|
@@ -485,7 +506,8 @@ export interface HttpResponseHeaders$instance extends HttpHeaders$instance {
|
|
|
485
506
|
readonly Server: HttpHeaderValueCollection_1<ProductInfoHeaderValue>;
|
|
486
507
|
readonly Trailer: HttpHeaderValueCollection_1<System_Internal.String>;
|
|
487
508
|
readonly TransferEncoding: HttpHeaderValueCollection_1<TransferCodingHeaderValue>;
|
|
488
|
-
TransferEncodingChunked: Nullable_1<System_Internal.Boolean>;
|
|
509
|
+
get TransferEncodingChunked(): Nullable_1<System_Internal.Boolean>;
|
|
510
|
+
set TransferEncodingChunked(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
489
511
|
readonly Upgrade: HttpHeaderValueCollection_1<ProductHeaderValue>;
|
|
490
512
|
readonly Vary: HttpHeaderValueCollection_1<System_Internal.String>;
|
|
491
513
|
readonly Via: HttpHeaderValueCollection_1<ViaHeaderValue>;
|
|
@@ -542,7 +564,8 @@ export interface MediaTypeWithQualityHeaderValue$instance extends MediaTypeHeade
|
|
|
542
564
|
|
|
543
565
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
544
566
|
|
|
545
|
-
Quality: Nullable_1<System_Internal.Double>;
|
|
567
|
+
get Quality(): Nullable_1<System_Internal.Double>;
|
|
568
|
+
set Quality(value: Nullable_1<System_Internal.Double> | double);
|
|
546
569
|
}
|
|
547
570
|
|
|
548
571
|
|
|
@@ -840,7 +863,8 @@ export interface TransferCodingWithQualityHeaderValue$instance extends TransferC
|
|
|
840
863
|
|
|
841
864
|
readonly __tsonic_iface_System_ICloneable: never;
|
|
842
865
|
|
|
843
|
-
Quality: Nullable_1<System_Internal.Double>;
|
|
866
|
+
get Quality(): Nullable_1<System_Internal.Double>;
|
|
867
|
+
set Quality(value: Nullable_1<System_Internal.Double> | double);
|
|
844
868
|
}
|
|
845
869
|
|
|
846
870
|
|
|
@@ -27,7 +27,8 @@ export interface SseItem_1$instance<T> {
|
|
|
27
27
|
get EventId(): string | undefined;
|
|
28
28
|
set EventId(value: string | undefined);
|
|
29
29
|
readonly EventType: string;
|
|
30
|
-
ReconnectionInterval: Nullable_1<TimeSpan>;
|
|
30
|
+
get ReconnectionInterval(): Nullable_1<TimeSpan>;
|
|
31
|
+
set ReconnectionInterval(value: Nullable_1<TimeSpan> | TimeSpan);
|
|
31
32
|
}
|
|
32
33
|
|
|
33
34
|
|
|
@@ -610,7 +610,8 @@ export interface SendPacketsElement$instance {
|
|
|
610
610
|
set FilePath(value: string | undefined);
|
|
611
611
|
get FileStream(): FileStream | undefined;
|
|
612
612
|
set FileStream(value: FileStream | undefined);
|
|
613
|
-
MemoryBuffer: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>;
|
|
613
|
+
get MemoryBuffer(): Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>>;
|
|
614
|
+
set MemoryBuffer(value: Nullable_1<ReadOnlyMemory_1<System_Internal.Byte>> | ReadOnlyMemory_1<System_Internal.Byte>);
|
|
614
615
|
readonly Offset: int;
|
|
615
616
|
OffsetLong: long;
|
|
616
617
|
}
|
|
@@ -1031,9 +1031,11 @@ export type CngKeyBlobFormat = CngKeyBlobFormat$instance & __CngKeyBlobFormat$vi
|
|
|
1031
1031
|
export interface CngKeyCreationParameters$instance {
|
|
1032
1032
|
readonly __tsonic_type_System_Security_Cryptography_CngKeyCreationParameters: never;
|
|
1033
1033
|
|
|
1034
|
-
ExportPolicy: Nullable_1<CngExportPolicies>;
|
|
1034
|
+
get ExportPolicy(): Nullable_1<CngExportPolicies>;
|
|
1035
|
+
set ExportPolicy(value: Nullable_1<CngExportPolicies> | CngExportPolicies);
|
|
1035
1036
|
KeyCreationOptions: CngKeyCreationOptions;
|
|
1036
|
-
KeyUsage: Nullable_1<CngKeyUsages>;
|
|
1037
|
+
get KeyUsage(): Nullable_1<CngKeyUsages>;
|
|
1038
|
+
set KeyUsage(value: Nullable_1<CngKeyUsages> | CngKeyUsages);
|
|
1037
1039
|
readonly Parameters: CngPropertyCollection;
|
|
1038
1040
|
ParentWindowHandle: nint;
|
|
1039
1041
|
Provider: CngProvider;
|
|
@@ -340,16 +340,21 @@ export interface Pkcs12LoaderLimits$instance {
|
|
|
340
340
|
AllowDuplicateAttributes: boolean;
|
|
341
341
|
IgnoreEncryptedAuthSafes: boolean;
|
|
342
342
|
IgnorePrivateKeys: boolean;
|
|
343
|
-
IndividualKdfIterationLimit: Nullable_1<System_Internal.Int32>;
|
|
343
|
+
get IndividualKdfIterationLimit(): Nullable_1<System_Internal.Int32>;
|
|
344
|
+
set IndividualKdfIterationLimit(value: Nullable_1<System_Internal.Int32> | int);
|
|
344
345
|
readonly IsReadOnly: boolean;
|
|
345
|
-
MacIterationLimit: Nullable_1<System_Internal.Int32>;
|
|
346
|
-
|
|
347
|
-
|
|
346
|
+
get MacIterationLimit(): Nullable_1<System_Internal.Int32>;
|
|
347
|
+
set MacIterationLimit(value: Nullable_1<System_Internal.Int32> | int);
|
|
348
|
+
get MaxCertificates(): Nullable_1<System_Internal.Int32>;
|
|
349
|
+
set MaxCertificates(value: Nullable_1<System_Internal.Int32> | int);
|
|
350
|
+
get MaxKeys(): Nullable_1<System_Internal.Int32>;
|
|
351
|
+
set MaxKeys(value: Nullable_1<System_Internal.Int32> | int);
|
|
348
352
|
PreserveCertificateAlias: boolean;
|
|
349
353
|
PreserveKeyName: boolean;
|
|
350
354
|
PreserveStorageProvider: boolean;
|
|
351
355
|
PreserveUnknownAttributes: boolean;
|
|
352
|
-
TotalKdfIterationLimit: Nullable_1<System_Internal.Int32>;
|
|
356
|
+
get TotalKdfIterationLimit(): Nullable_1<System_Internal.Int32>;
|
|
357
|
+
set TotalKdfIterationLimit(value: Nullable_1<System_Internal.Int32> | int);
|
|
353
358
|
MakeReadOnly(): void;
|
|
354
359
|
}
|
|
355
360
|
|
|
@@ -427,8 +427,10 @@ export interface JsonException$instance extends Exception {
|
|
|
427
427
|
|
|
428
428
|
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
429
429
|
|
|
430
|
-
BytePositionInLine: Nullable_1<System_Internal.Int64>;
|
|
431
|
-
|
|
430
|
+
get BytePositionInLine(): Nullable_1<System_Internal.Int64>;
|
|
431
|
+
set BytePositionInLine(value: Nullable_1<System_Internal.Int64> | long);
|
|
432
|
+
get LineNumber(): Nullable_1<System_Internal.Int64>;
|
|
433
|
+
set LineNumber(value: Nullable_1<System_Internal.Int64> | long);
|
|
432
434
|
readonly Message: string;
|
|
433
435
|
get Path(): string | undefined;
|
|
434
436
|
set Path(value: string | undefined);
|
|
@@ -195,8 +195,10 @@ export interface JsonPropertyInfo$instance {
|
|
|
195
195
|
IsRequired: boolean;
|
|
196
196
|
IsSetNullable: boolean;
|
|
197
197
|
Name: string;
|
|
198
|
-
NumberHandling: Nullable_1<JsonNumberHandling>;
|
|
199
|
-
|
|
198
|
+
get NumberHandling(): Nullable_1<JsonNumberHandling>;
|
|
199
|
+
set NumberHandling(value: Nullable_1<JsonNumberHandling> | JsonNumberHandling);
|
|
200
|
+
get ObjectCreationHandling(): Nullable_1<JsonObjectCreationHandling>;
|
|
201
|
+
set ObjectCreationHandling(value: Nullable_1<JsonObjectCreationHandling> | JsonObjectCreationHandling);
|
|
200
202
|
readonly Options: JsonSerializerOptions;
|
|
201
203
|
Order: int;
|
|
202
204
|
readonly PropertyType: Type;
|
|
@@ -224,14 +226,16 @@ export interface JsonPropertyInfoValues_1$instance<T> {
|
|
|
224
226
|
get Getter(): Func_2<unknown, T | undefined> | undefined;
|
|
225
227
|
set Getter(value: Func_2<unknown, T | undefined> | undefined);
|
|
226
228
|
HasJsonInclude: boolean;
|
|
227
|
-
IgnoreCondition: Nullable_1<JsonIgnoreCondition>;
|
|
229
|
+
get IgnoreCondition(): Nullable_1<JsonIgnoreCondition>;
|
|
230
|
+
set IgnoreCondition(value: Nullable_1<JsonIgnoreCondition> | JsonIgnoreCondition);
|
|
228
231
|
IsExtensionData: boolean;
|
|
229
232
|
IsProperty: boolean;
|
|
230
233
|
IsPublic: boolean;
|
|
231
234
|
IsVirtual: boolean;
|
|
232
235
|
get JsonPropertyName(): string | undefined;
|
|
233
236
|
set JsonPropertyName(value: string | undefined);
|
|
234
|
-
NumberHandling: Nullable_1<JsonNumberHandling>;
|
|
237
|
+
get NumberHandling(): Nullable_1<JsonNumberHandling>;
|
|
238
|
+
set NumberHandling(value: Nullable_1<JsonNumberHandling> | JsonNumberHandling);
|
|
235
239
|
PropertyName: string;
|
|
236
240
|
PropertyTypeInfo: JsonTypeInfo;
|
|
237
241
|
get Setter(): Action_2<unknown, T | undefined> | undefined;
|
|
@@ -258,7 +262,8 @@ export interface JsonTypeInfo$instance {
|
|
|
258
262
|
IsReadOnly: boolean;
|
|
259
263
|
readonly KeyType: Type | undefined;
|
|
260
264
|
readonly Kind: JsonTypeInfoKind;
|
|
261
|
-
NumberHandling: Nullable_1<JsonNumberHandling>;
|
|
265
|
+
get NumberHandling(): Nullable_1<JsonNumberHandling>;
|
|
266
|
+
set NumberHandling(value: Nullable_1<JsonNumberHandling> | JsonNumberHandling);
|
|
262
267
|
get OnDeserialized(): Action_1<unknown> | undefined;
|
|
263
268
|
set OnDeserialized(value: Action_1<unknown> | undefined);
|
|
264
269
|
get OnDeserializing(): Action_1<unknown> | undefined;
|
|
@@ -272,10 +277,12 @@ export interface JsonTypeInfo$instance {
|
|
|
272
277
|
set OriginatingResolver(value: IJsonTypeInfoResolver | undefined);
|
|
273
278
|
get PolymorphismOptions(): JsonPolymorphismOptions | undefined;
|
|
274
279
|
set PolymorphismOptions(value: JsonPolymorphismOptions | undefined);
|
|
275
|
-
PreferredPropertyObjectCreationHandling: Nullable_1<JsonObjectCreationHandling>;
|
|
280
|
+
get PreferredPropertyObjectCreationHandling(): Nullable_1<JsonObjectCreationHandling>;
|
|
281
|
+
set PreferredPropertyObjectCreationHandling(value: Nullable_1<JsonObjectCreationHandling> | JsonObjectCreationHandling);
|
|
276
282
|
readonly Properties: IList_1<JsonPropertyInfo>;
|
|
277
283
|
readonly Type: Type;
|
|
278
|
-
UnmappedMemberHandling: Nullable_1<JsonUnmappedMemberHandling>;
|
|
284
|
+
get UnmappedMemberHandling(): Nullable_1<JsonUnmappedMemberHandling>;
|
|
285
|
+
set UnmappedMemberHandling(value: Nullable_1<JsonUnmappedMemberHandling> | JsonUnmappedMemberHandling);
|
|
279
286
|
CreateJsonPropertyInfo(propertyType: Type, name: string): JsonPropertyInfo;
|
|
280
287
|
MakeReadOnly(): void;
|
|
281
288
|
}
|
|
@@ -2222,9 +2222,9 @@ export interface __Ext_System_Xml_XPath_XNode {
|
|
|
2222
2222
|
|
|
2223
2223
|
// Internal helper types for sticky extension scopes
|
|
2224
2224
|
type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
|
|
2225
|
-
type __TsonicMergeExtMaps<A, B> =
|
|
2225
|
+
type __TsonicMergeExtMaps<A, B> = A & B;
|
|
2226
2226
|
type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
|
|
2227
|
-
type __TsonicPreferExt<A, B> =
|
|
2227
|
+
type __TsonicPreferExt<A, B> = A & B;
|
|
2228
2228
|
|
|
2229
2229
|
// Generic helper type for extension methods in namespace: System
|
|
2230
2230
|
type __TsonicExtSurface_System<TShape> =
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/dotnet",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.31",
|
|
4
4
|
"description": "TypeScript type definitions for .NET 10 BCL (Base Class Library)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -18,6 +18,6 @@
|
|
|
18
18
|
"url": "https://github.com/tsoniclang/dotnet.git"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"@tsonic/core": "10.0.
|
|
21
|
+
"@tsonic/core": "10.0.31"
|
|
22
22
|
}
|
|
23
23
|
}
|