@tsonic/efcore-npgsql 10.0.1 → 10.0.5
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/Microsoft.EntityFrameworkCore/bindings.json +737 -0
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +20 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +5 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection/bindings.json +6 -0
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Npgsql/bindings.json +3099 -41
- package/Npgsql/internal/index.d.ts +231 -75
- package/Npgsql.BackendMessages/bindings.json +7 -0
- package/Npgsql.BackendMessages/internal/index.d.ts +0 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL/bindings.json +39 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL/internal/index.d.ts +4 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Design.Internal/bindings.json +179 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Design.Internal/internal/index.d.ts +11 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Diagnostics.Internal/bindings.json +22 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal/bindings.json +8 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/bindings.json +59 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/internal/index.d.ts +7 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal/bindings.json +275 -16
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal/internal/index.d.ts +37 -9
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal.d.ts +1 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.d.ts +2 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal/bindings.json +120 -31
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal/internal/index.d.ts +9 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal.d.ts +3 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/bindings.json +150 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/internal/index.d.ts +8 -11
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions/bindings.json +480 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions/internal/index.d.ts +49 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions.d.ts +4 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal/bindings.json +85 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal/internal/index.d.ts +4 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations/bindings.json +763 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations/internal/index.d.ts +44 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal/bindings.json +94 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal/internal/index.d.ts +9 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal.d.ts +2 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Operations/bindings.json +42 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Operations/internal/index.d.ts +10 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.d.ts +5 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query/bindings.json +31 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query/internal/index.d.ts +2 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.ExpressionTranslators.Internal/bindings.json +410 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.ExpressionTranslators.Internal/internal/index.d.ts +69 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions/bindings.json +53 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/bindings.json +1093 -9
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/internal/index.d.ts +91 -3
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal/bindings.json +2356 -296
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal/internal/index.d.ts +112 -5
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal.d.ts +6 -5
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Scaffolding.Internal/bindings.json +25 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Scaffolding.Internal/internal/index.d.ts +4 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal/bindings.json +508 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal/internal/index.d.ts +55 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Json/bindings.json +23 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Json/internal/index.d.ts +0 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping/bindings.json +4017 -129
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping/internal/index.d.ts +210 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.d.ts +5 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.ValueConversion/bindings.json +16 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal/bindings.json +257 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal/internal/index.d.ts +24 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal.d.ts +5 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration/bindings.json +20 -0
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal/bindings.json +137 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal/internal/index.d.ts +21 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal.d.ts +3 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.d.ts +1 -1
- package/Npgsql.Internal/bindings.json +884 -15
- package/Npgsql.Internal/internal/index.d.ts +41 -18
- package/Npgsql.Internal.Postgres/bindings.json +81 -0
- package/Npgsql.Internal.Postgres/internal/index.d.ts +6 -0
- package/Npgsql.Internal.d.ts +1 -1
- package/Npgsql.NameTranslation/bindings.json +30 -0
- package/Npgsql.NameTranslation/internal/index.d.ts +4 -0
- package/Npgsql.PostgresTypes/bindings.json +144 -12
- package/Npgsql.PostgresTypes/internal/index.d.ts +12 -18
- package/Npgsql.Replication/bindings.json +166 -11
- package/Npgsql.Replication/internal/index.d.ts +12 -7
- package/Npgsql.Replication.Internal/bindings.json +26 -1
- package/Npgsql.Replication.Internal/internal/index.d.ts +1 -1
- package/Npgsql.Replication.PgOutput/bindings.json +160 -6
- package/Npgsql.Replication.PgOutput/internal/index.d.ts +7 -5
- package/Npgsql.Replication.PgOutput.Messages/bindings.json +513 -83
- package/Npgsql.Replication.PgOutput.Messages/internal/index.d.ts +43 -66
- package/Npgsql.Replication.TestDecoding/bindings.json +40 -2
- package/Npgsql.Replication.TestDecoding/internal/index.d.ts +3 -1
- package/Npgsql.Schema/bindings.json +87 -54
- package/Npgsql.Schema/internal/index.d.ts +34 -28
- package/Npgsql.TypeMapping/bindings.json +17 -0
- package/Npgsql.TypeMapping/internal/index.d.ts +2 -0
- package/Npgsql.Util/bindings.json +4 -0
- package/Npgsql.d.ts +1 -1
- package/NpgsqlTypes/bindings.json +871 -4
- package/NpgsqlTypes/internal/index.d.ts +67 -7
- package/__internal/extensions/index.d.ts +752 -12
- package/package.json +1 -1
|
@@ -19,7 +19,7 @@ import type { IEnumerable, IReadOnlyList, List } from "@tsonic/dotnet/System.Col
|
|
|
19
19
|
import type { DbType } from "@tsonic/dotnet/System.Data.js";
|
|
20
20
|
import type { Stream, TextReader } from "@tsonic/dotnet/System.IO.js";
|
|
21
21
|
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
22
|
-
import type { AsyncCallback, Boolean as ClrBoolean, Byte, Char, Double, Enum, Func, IAsyncDisposable, IAsyncResult, ICloneable, IComparable, IConvertible, IDisposable, IEquatable, IFormattable, Int16, Int32, Int64, IntPtr, ISpanFormattable, Memory, MulticastDelegate, Nullable, Object as ClrObject, ReadOnlyMemory, ReadOnlySpan, Single, Span, String as ClrString, TimeSpan, Type, UInt16, UInt32, UInt64, ValueType, Version, Void } from "@tsonic/dotnet/System.js";
|
|
22
|
+
import type { ArgumentOutOfRangeException, AsyncCallback, Boolean as ClrBoolean, Byte, Char, Double, Enum, Func, IAsyncDisposable, IAsyncResult, ICloneable, IComparable, IConvertible, IDisposable, IEquatable, IFormattable, Int16, Int32, Int64, IntPtr, ISpanFormattable, Memory, MulticastDelegate, Nullable, Object as ClrObject, ReadOnlyMemory, ReadOnlySpan, Single, Span, String as ClrString, TimeSpan, Type, UInt16, UInt32, UInt64, ValueType, Version, Void } from "@tsonic/dotnet/System.js";
|
|
23
23
|
import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization.js";
|
|
24
24
|
import type { ISerializable } from "@tsonic/dotnet/System.Runtime.Serialization.js";
|
|
25
25
|
import type { Encoding } from "@tsonic/dotnet/System.Text.js";
|
|
@@ -50,6 +50,8 @@ export type TypeInfoFactory = (options: PgSerializerOptions, mapping: TypeInfoMa
|
|
|
50
50
|
|
|
51
51
|
|
|
52
52
|
export interface IDbTypeResolver$instance {
|
|
53
|
+
readonly __tsonic_iface_Npgsql_Internal_IDbTypeResolver: never;
|
|
54
|
+
|
|
53
55
|
GetDataTypeName(dbType: DbType, type: Type): string | undefined;
|
|
54
56
|
GetDbType(dataTypeName: DataTypeName): Nullable<DbType>;
|
|
55
57
|
}
|
|
@@ -58,6 +60,8 @@ export interface IDbTypeResolver$instance {
|
|
|
58
60
|
export type IDbTypeResolver = IDbTypeResolver$instance;
|
|
59
61
|
|
|
60
62
|
export interface INpgsqlDatabaseInfoFactory$instance {
|
|
63
|
+
readonly __tsonic_iface_Npgsql_Internal_INpgsqlDatabaseInfoFactory: never;
|
|
64
|
+
|
|
61
65
|
Load(conn: NpgsqlConnector, timeout: NpgsqlTimeout, async: boolean): Task<NpgsqlDatabaseInfo | undefined>;
|
|
62
66
|
}
|
|
63
67
|
|
|
@@ -65,6 +69,8 @@ export interface INpgsqlDatabaseInfoFactory$instance {
|
|
|
65
69
|
export type INpgsqlDatabaseInfoFactory = INpgsqlDatabaseInfoFactory$instance;
|
|
66
70
|
|
|
67
71
|
export interface IPgTypeInfoResolver$instance {
|
|
72
|
+
readonly __tsonic_iface_Npgsql_Internal_IPgTypeInfoResolver: never;
|
|
73
|
+
|
|
68
74
|
GetTypeInfo(type: Type, dataTypeName: Nullable<DataTypeName>, options: PgSerializerOptions): PgTypeInfo | undefined;
|
|
69
75
|
}
|
|
70
76
|
|
|
@@ -72,6 +78,8 @@ export interface IPgTypeInfoResolver$instance {
|
|
|
72
78
|
export type IPgTypeInfoResolver = IPgTypeInfoResolver$instance;
|
|
73
79
|
|
|
74
80
|
export interface BufferRequirements$instance {
|
|
81
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
82
|
+
|
|
75
83
|
readonly Read: Size;
|
|
76
84
|
readonly Write: Size;
|
|
77
85
|
Combine(read: Size, write: Size): BufferRequirements;
|
|
@@ -96,6 +104,9 @@ export const BufferRequirements: {
|
|
|
96
104
|
export type BufferRequirements = BufferRequirements$instance;
|
|
97
105
|
|
|
98
106
|
export interface NestedReadScope$instance {
|
|
107
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
108
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
109
|
+
|
|
99
110
|
Dispose(): void;
|
|
100
111
|
DisposeAsync(): ValueTask;
|
|
101
112
|
}
|
|
@@ -109,6 +120,8 @@ export const NestedReadScope: {
|
|
|
109
120
|
export type NestedReadScope = NestedReadScope$instance;
|
|
110
121
|
|
|
111
122
|
export interface NestedWriteScope$instance {
|
|
123
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
124
|
+
|
|
112
125
|
Dispose(): void;
|
|
113
126
|
}
|
|
114
127
|
|
|
@@ -135,6 +148,8 @@ export const PgConverterResolution: {
|
|
|
135
148
|
export type PgConverterResolution = PgConverterResolution$instance;
|
|
136
149
|
|
|
137
150
|
export interface Size$instance {
|
|
151
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
152
|
+
|
|
138
153
|
readonly Kind: SizeKind;
|
|
139
154
|
readonly Value: int;
|
|
140
155
|
Combine(other: Size): Size;
|
|
@@ -176,7 +191,7 @@ export interface TypeInfoMapping$instance {
|
|
|
176
191
|
MatchRequirement: MatchRequirement;
|
|
177
192
|
Type: Type;
|
|
178
193
|
get TypeMatchPredicate(): Func<Type | undefined, System_Internal.Boolean> | undefined;
|
|
179
|
-
set TypeMatchPredicate(value: Func<Type | undefined, System_Internal.Boolean>);
|
|
194
|
+
set TypeMatchPredicate(value: Func<Type | undefined, System_Internal.Boolean> | undefined);
|
|
180
195
|
DataTypeNameEquals(dataTypeName: string): boolean;
|
|
181
196
|
TypeEquals(type: Type): boolean;
|
|
182
197
|
}
|
|
@@ -194,7 +209,7 @@ export interface ValueMetadata$instance {
|
|
|
194
209
|
Format: DataFormat;
|
|
195
210
|
Size: Size;
|
|
196
211
|
get WriteState(): unknown | undefined;
|
|
197
|
-
set WriteState(value: unknown);
|
|
212
|
+
set WriteState(value: unknown | undefined);
|
|
198
213
|
}
|
|
199
214
|
|
|
200
215
|
|
|
@@ -210,18 +225,25 @@ export interface DbTypeResolverFactory$instance {
|
|
|
210
225
|
}
|
|
211
226
|
|
|
212
227
|
|
|
213
|
-
export const DbTypeResolverFactory: {
|
|
228
|
+
export const DbTypeResolverFactory: (abstract new() => DbTypeResolverFactory) & {
|
|
214
229
|
};
|
|
215
230
|
|
|
216
231
|
|
|
217
232
|
export type DbTypeResolverFactory = DbTypeResolverFactory$instance;
|
|
218
233
|
|
|
219
234
|
export interface DynamicTypeInfoResolver$instance {
|
|
235
|
+
readonly __tsonic_iface_Npgsql_Internal_IPgTypeInfoResolver: never;
|
|
236
|
+
|
|
237
|
+
GetMappings(type: Type, dataTypeName: DataTypeName, options: PgSerializerOptions): unknown | undefined;
|
|
220
238
|
GetTypeInfo(type: Type, dataTypeName: Nullable<DataTypeName>, options: PgSerializerOptions): PgTypeInfo | undefined;
|
|
221
239
|
}
|
|
222
240
|
|
|
223
241
|
|
|
224
|
-
export const DynamicTypeInfoResolver: {
|
|
242
|
+
export const DynamicTypeInfoResolver: (abstract new() => DynamicTypeInfoResolver) & {
|
|
243
|
+
CreateCollection(baseCollection?: TypeInfoMappingCollection): unknown;
|
|
244
|
+
IsArrayDataTypeName(dataTypeName: DataTypeName, options: PgSerializerOptions, elementDataTypeName: DataTypeName): boolean;
|
|
245
|
+
IsArrayLikeType(type: Type, elementType: Type): boolean;
|
|
246
|
+
IsTypeOrNullableOfType(type: Type, predicate: Func<Type, System_Internal.Boolean>, matchedType: Type): boolean;
|
|
225
247
|
};
|
|
226
248
|
|
|
227
249
|
|
|
@@ -237,21 +259,20 @@ export type DynamicTypeInfoResolver = DynamicTypeInfoResolver$instance & __Dynam
|
|
|
237
259
|
export interface NpgsqlConnector$instance {
|
|
238
260
|
readonly DatabaseInfo: NpgsqlDatabaseInfo;
|
|
239
261
|
readonly Settings: NpgsqlConnectionStringBuilder;
|
|
240
|
-
|
|
262
|
+
TextEncoding: Encoding;
|
|
241
263
|
CreateBatch(): NpgsqlBatch;
|
|
242
264
|
CreateCommand(cmdText?: string): NpgsqlCommand;
|
|
243
265
|
}
|
|
244
266
|
|
|
245
267
|
|
|
246
268
|
export const NpgsqlConnector: {
|
|
247
|
-
new(): NpgsqlConnector;
|
|
248
269
|
};
|
|
249
270
|
|
|
250
271
|
|
|
251
272
|
export type NpgsqlConnector = NpgsqlConnector$instance;
|
|
252
273
|
|
|
253
274
|
export interface NpgsqlDatabaseInfo$instance {
|
|
254
|
-
|
|
275
|
+
HasIntegerDateTimes: boolean;
|
|
255
276
|
readonly Host: string;
|
|
256
277
|
readonly Name: string;
|
|
257
278
|
readonly Port: int;
|
|
@@ -264,16 +285,18 @@ export interface NpgsqlDatabaseInfo$instance {
|
|
|
264
285
|
readonly SupportsEnumTypes: boolean;
|
|
265
286
|
readonly SupportsMultirangeTypes: boolean;
|
|
266
287
|
readonly SupportsRangeTypes: boolean;
|
|
267
|
-
|
|
288
|
+
SupportsTransactions: boolean;
|
|
268
289
|
readonly SupportsUnlisten: boolean;
|
|
269
290
|
readonly Version: Version;
|
|
270
291
|
GetPostgresType(oid: uint): PostgresType;
|
|
271
292
|
GetPostgresType(pgName: string): PostgresType;
|
|
293
|
+
GetTypes(): IEnumerable<PostgresType>;
|
|
272
294
|
TryGetPostgresTypeByName(pgName: string, pgType: PostgresType): boolean;
|
|
273
295
|
}
|
|
274
296
|
|
|
275
297
|
|
|
276
|
-
export const NpgsqlDatabaseInfo: {
|
|
298
|
+
export const NpgsqlDatabaseInfo: (abstract new(host: string, port: int, databaseName: string, version: Version) => NpgsqlDatabaseInfo) & (abstract new(host: string, port: int, databaseName: string, version: Version, serverVersion: string) => NpgsqlDatabaseInfo) & {
|
|
299
|
+
ParseServerVersion(value: string): Version;
|
|
277
300
|
RegisterFactory(factory: INpgsqlDatabaseInfoFactory): void;
|
|
278
301
|
};
|
|
279
302
|
|
|
@@ -285,12 +308,14 @@ export interface PgBufferedConverter_1$instance<T> extends PgConverter_1<T> {
|
|
|
285
308
|
Read(reader: PgReader): T;
|
|
286
309
|
ReadAsync(reader: PgReader, cancellationToken?: CancellationToken): ValueTask<T>;
|
|
287
310
|
ReadAsync(reader: PgReader, cancellationToken?: CancellationToken): ValueTask<T>;
|
|
311
|
+
ReadCore(reader: PgReader): T;
|
|
288
312
|
Write(writer: PgWriter, value: T): void;
|
|
289
313
|
WriteAsync(writer: PgWriter, value: T, cancellationToken?: CancellationToken): ValueTask;
|
|
314
|
+
WriteCore(writer: PgWriter, value: T): void;
|
|
290
315
|
}
|
|
291
316
|
|
|
292
317
|
|
|
293
|
-
export const PgBufferedConverter_1: {
|
|
318
|
+
export const PgBufferedConverter_1: (abstract new<T>(customDbNullPredicate: boolean) => PgBufferedConverter_1<T>) & {
|
|
294
319
|
};
|
|
295
320
|
|
|
296
321
|
|
|
@@ -311,6 +336,7 @@ export type PgConverter = PgConverter$instance;
|
|
|
311
336
|
export interface PgConverter_1$instance<T> extends PgConverter {
|
|
312
337
|
GetSize(context: SizeContext, value: T, writeState: unknown): Size;
|
|
313
338
|
IsDbNull(value: T, writeState: unknown): boolean;
|
|
339
|
+
IsDbNullValue(value: T, writeState: unknown): boolean;
|
|
314
340
|
Read(reader: PgReader): T;
|
|
315
341
|
ReadAsync(reader: PgReader, cancellationToken?: CancellationToken): ValueTask<T>;
|
|
316
342
|
Write(writer: PgWriter, value: T): void;
|
|
@@ -342,7 +368,7 @@ export interface PgConverterResolver_1$instance<T> extends PgConverterResolver {
|
|
|
342
368
|
}
|
|
343
369
|
|
|
344
370
|
|
|
345
|
-
export const PgConverterResolver_1: {
|
|
371
|
+
export const PgConverterResolver_1: (abstract new<T>() => PgConverterResolver_1<T>) & {
|
|
346
372
|
};
|
|
347
373
|
|
|
348
374
|
|
|
@@ -388,7 +414,6 @@ export interface PgReader$instance {
|
|
|
388
414
|
|
|
389
415
|
|
|
390
416
|
export const PgReader: {
|
|
391
|
-
new(): PgReader;
|
|
392
417
|
};
|
|
393
418
|
|
|
394
419
|
|
|
@@ -417,7 +442,7 @@ export interface PgSerializerOptions$instance {
|
|
|
417
442
|
EnableDateTimeInfinityConversions: boolean;
|
|
418
443
|
TextEncoding: Encoding;
|
|
419
444
|
readonly TimeZone: string;
|
|
420
|
-
|
|
445
|
+
TypeInfoResolver: IPgTypeInfoResolver;
|
|
421
446
|
GetArrayElementTypeId(arrayTypeId: PgTypeId): PgTypeId;
|
|
422
447
|
GetArrayTypeId(elementTypeId: PgTypeId): PgTypeId;
|
|
423
448
|
GetDataTypeName(pgTypeId: PgTypeId): DataTypeName;
|
|
@@ -433,7 +458,6 @@ export interface PgSerializerOptions$instance {
|
|
|
433
458
|
|
|
434
459
|
|
|
435
460
|
export const PgSerializerOptions: {
|
|
436
|
-
new(): PgSerializerOptions;
|
|
437
461
|
IsWellKnownTextType(type: Type): boolean;
|
|
438
462
|
};
|
|
439
463
|
|
|
@@ -445,7 +469,7 @@ export interface PgStreamingConverter_1$instance<T> extends PgConverter_1<T> {
|
|
|
445
469
|
}
|
|
446
470
|
|
|
447
471
|
|
|
448
|
-
export const PgStreamingConverter_1: {
|
|
472
|
+
export const PgStreamingConverter_1: (abstract new<T>(customDbNullPredicate: boolean) => PgStreamingConverter_1<T>) & {
|
|
449
473
|
};
|
|
450
474
|
|
|
451
475
|
|
|
@@ -481,7 +505,7 @@ export interface PgTypeInfoResolverFactory$instance {
|
|
|
481
505
|
}
|
|
482
506
|
|
|
483
507
|
|
|
484
|
-
export const PgTypeInfoResolverFactory: {
|
|
508
|
+
export const PgTypeInfoResolverFactory: (abstract new() => PgTypeInfoResolverFactory) & {
|
|
485
509
|
};
|
|
486
510
|
|
|
487
511
|
|
|
@@ -514,7 +538,6 @@ export interface PgWriter$instance {
|
|
|
514
538
|
|
|
515
539
|
|
|
516
540
|
export const PgWriter: {
|
|
517
|
-
new(): PgWriter;
|
|
518
541
|
};
|
|
519
542
|
|
|
520
543
|
|
|
@@ -15,6 +15,19 @@
|
|
|
15
15
|
"isSealed": true,
|
|
16
16
|
"isStatic": false,
|
|
17
17
|
"arity": 0,
|
|
18
|
+
"baseType": {
|
|
19
|
+
"stableId": "System.Private.CoreLib:System.ValueType",
|
|
20
|
+
"clrName": "System.ValueType"
|
|
21
|
+
},
|
|
22
|
+
"interfaces": [
|
|
23
|
+
{
|
|
24
|
+
"stableId": "System.Private.CoreLib:System.IEquatable\u00601",
|
|
25
|
+
"clrName": "System.IEquatable\u00601",
|
|
26
|
+
"typeArguments": [
|
|
27
|
+
"DataTypeName"
|
|
28
|
+
]
|
|
29
|
+
}
|
|
30
|
+
],
|
|
18
31
|
"methods": [
|
|
19
32
|
{
|
|
20
33
|
"stableId": "Npgsql:Npgsql.Internal.Postgres.DataTypeName::GetUnqualifiedName(System.String):System.String",
|
|
@@ -31,6 +44,7 @@
|
|
|
31
44
|
"isVirtual": false,
|
|
32
45
|
"isOverride": false,
|
|
33
46
|
"isSealed": false,
|
|
47
|
+
"visibility": "Public",
|
|
34
48
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
35
49
|
"declaringAssemblyName": "Npgsql",
|
|
36
50
|
"isExtensionMethod": false
|
|
@@ -50,6 +64,7 @@
|
|
|
50
64
|
"isVirtual": false,
|
|
51
65
|
"isOverride": false,
|
|
52
66
|
"isSealed": false,
|
|
67
|
+
"visibility": "Public",
|
|
53
68
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
54
69
|
"declaringAssemblyName": "Npgsql",
|
|
55
70
|
"isExtensionMethod": false
|
|
@@ -69,6 +84,7 @@
|
|
|
69
84
|
"isVirtual": false,
|
|
70
85
|
"isOverride": false,
|
|
71
86
|
"isSealed": false,
|
|
87
|
+
"visibility": "Public",
|
|
72
88
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
73
89
|
"declaringAssemblyName": "Npgsql",
|
|
74
90
|
"isExtensionMethod": false
|
|
@@ -88,6 +104,7 @@
|
|
|
88
104
|
"isVirtual": false,
|
|
89
105
|
"isOverride": false,
|
|
90
106
|
"isSealed": false,
|
|
107
|
+
"visibility": "Public",
|
|
91
108
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
92
109
|
"declaringAssemblyName": "Npgsql",
|
|
93
110
|
"isExtensionMethod": false
|
|
@@ -107,6 +124,7 @@
|
|
|
107
124
|
"isVirtual": true,
|
|
108
125
|
"isOverride": true,
|
|
109
126
|
"isSealed": false,
|
|
127
|
+
"visibility": "Public",
|
|
110
128
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
111
129
|
"declaringAssemblyName": "Npgsql",
|
|
112
130
|
"isExtensionMethod": false
|
|
@@ -126,6 +144,7 @@
|
|
|
126
144
|
"isVirtual": true,
|
|
127
145
|
"isOverride": false,
|
|
128
146
|
"isSealed": true,
|
|
147
|
+
"visibility": "Public",
|
|
129
148
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
130
149
|
"declaringAssemblyName": "Npgsql",
|
|
131
150
|
"isExtensionMethod": false
|
|
@@ -145,6 +164,7 @@
|
|
|
145
164
|
"isVirtual": true,
|
|
146
165
|
"isOverride": true,
|
|
147
166
|
"isSealed": false,
|
|
167
|
+
"visibility": "Public",
|
|
148
168
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
149
169
|
"declaringAssemblyName": "Npgsql",
|
|
150
170
|
"isExtensionMethod": false
|
|
@@ -164,6 +184,7 @@
|
|
|
164
184
|
"isVirtual": true,
|
|
165
185
|
"isOverride": true,
|
|
166
186
|
"isSealed": false,
|
|
187
|
+
"visibility": "Public",
|
|
167
188
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
168
189
|
"declaringAssemblyName": "Npgsql",
|
|
169
190
|
"isExtensionMethod": false
|
|
@@ -185,6 +206,7 @@
|
|
|
185
206
|
"isAbstract": false,
|
|
186
207
|
"isVirtual": false,
|
|
187
208
|
"isOverride": false,
|
|
209
|
+
"visibility": "Public",
|
|
188
210
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
189
211
|
"declaringAssemblyName": "Npgsql"
|
|
190
212
|
},
|
|
@@ -203,6 +225,7 @@
|
|
|
203
225
|
"isAbstract": false,
|
|
204
226
|
"isVirtual": false,
|
|
205
227
|
"isOverride": false,
|
|
228
|
+
"visibility": "Public",
|
|
206
229
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
207
230
|
"declaringAssemblyName": "Npgsql"
|
|
208
231
|
},
|
|
@@ -221,6 +244,7 @@
|
|
|
221
244
|
"isAbstract": false,
|
|
222
245
|
"isVirtual": false,
|
|
223
246
|
"isOverride": false,
|
|
247
|
+
"visibility": "Public",
|
|
224
248
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
225
249
|
"declaringAssemblyName": "Npgsql"
|
|
226
250
|
},
|
|
@@ -239,6 +263,7 @@
|
|
|
239
263
|
"isAbstract": false,
|
|
240
264
|
"isVirtual": false,
|
|
241
265
|
"isOverride": false,
|
|
266
|
+
"visibility": "Public",
|
|
242
267
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
243
268
|
"declaringAssemblyName": "Npgsql"
|
|
244
269
|
},
|
|
@@ -257,6 +282,7 @@
|
|
|
257
282
|
"isAbstract": false,
|
|
258
283
|
"isVirtual": false,
|
|
259
284
|
"isOverride": false,
|
|
285
|
+
"visibility": "Public",
|
|
260
286
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
261
287
|
"declaringAssemblyName": "Npgsql"
|
|
262
288
|
},
|
|
@@ -275,6 +301,7 @@
|
|
|
275
301
|
"isAbstract": false,
|
|
276
302
|
"isVirtual": false,
|
|
277
303
|
"isOverride": false,
|
|
304
|
+
"visibility": "Public",
|
|
278
305
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
279
306
|
"declaringAssemblyName": "Npgsql"
|
|
280
307
|
},
|
|
@@ -293,6 +320,7 @@
|
|
|
293
320
|
"isAbstract": false,
|
|
294
321
|
"isVirtual": false,
|
|
295
322
|
"isOverride": false,
|
|
323
|
+
"visibility": "Public",
|
|
296
324
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
297
325
|
"declaringAssemblyName": "Npgsql"
|
|
298
326
|
},
|
|
@@ -311,6 +339,7 @@
|
|
|
311
339
|
"isAbstract": false,
|
|
312
340
|
"isVirtual": false,
|
|
313
341
|
"isOverride": false,
|
|
342
|
+
"visibility": "Public",
|
|
314
343
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
315
344
|
"declaringAssemblyName": "Npgsql"
|
|
316
345
|
}
|
|
@@ -325,6 +354,7 @@
|
|
|
325
354
|
"normalizedSignature": "constructor|(System.String):void|static=false",
|
|
326
355
|
"isStatic": false,
|
|
327
356
|
"parameterCount": 1,
|
|
357
|
+
"visibility": "Public",
|
|
328
358
|
"declaringClrType": "Npgsql.Internal.Postgres.DataTypeName",
|
|
329
359
|
"declaringAssemblyName": "Npgsql"
|
|
330
360
|
}
|
|
@@ -341,6 +371,10 @@
|
|
|
341
371
|
"isSealed": true,
|
|
342
372
|
"isStatic": false,
|
|
343
373
|
"arity": 0,
|
|
374
|
+
"baseType": {
|
|
375
|
+
"stableId": "System.Private.CoreLib:System.ValueType",
|
|
376
|
+
"clrName": "System.ValueType"
|
|
377
|
+
},
|
|
344
378
|
"methods": [],
|
|
345
379
|
"properties": [
|
|
346
380
|
{
|
|
@@ -358,6 +392,7 @@
|
|
|
358
392
|
"isAbstract": false,
|
|
359
393
|
"isVirtual": false,
|
|
360
394
|
"isOverride": false,
|
|
395
|
+
"visibility": "Public",
|
|
361
396
|
"declaringClrType": "Npgsql.Internal.Postgres.Field",
|
|
362
397
|
"declaringAssemblyName": "Npgsql"
|
|
363
398
|
},
|
|
@@ -376,6 +411,7 @@
|
|
|
376
411
|
"isAbstract": false,
|
|
377
412
|
"isVirtual": false,
|
|
378
413
|
"isOverride": false,
|
|
414
|
+
"visibility": "Public",
|
|
379
415
|
"declaringClrType": "Npgsql.Internal.Postgres.Field",
|
|
380
416
|
"declaringAssemblyName": "Npgsql"
|
|
381
417
|
},
|
|
@@ -394,6 +430,7 @@
|
|
|
394
430
|
"isAbstract": false,
|
|
395
431
|
"isVirtual": false,
|
|
396
432
|
"isOverride": false,
|
|
433
|
+
"visibility": "Public",
|
|
397
434
|
"declaringClrType": "Npgsql.Internal.Postgres.Field",
|
|
398
435
|
"declaringAssemblyName": "Npgsql"
|
|
399
436
|
}
|
|
@@ -408,6 +445,7 @@
|
|
|
408
445
|
"normalizedSignature": "constructor|(System.String,Npgsql.Internal.Postgres.PgTypeId,System.Int32):void|static=false",
|
|
409
446
|
"isStatic": false,
|
|
410
447
|
"parameterCount": 3,
|
|
448
|
+
"visibility": "Public",
|
|
411
449
|
"declaringClrType": "Npgsql.Internal.Postgres.Field",
|
|
412
450
|
"declaringAssemblyName": "Npgsql"
|
|
413
451
|
}
|
|
@@ -424,6 +462,19 @@
|
|
|
424
462
|
"isSealed": true,
|
|
425
463
|
"isStatic": false,
|
|
426
464
|
"arity": 0,
|
|
465
|
+
"baseType": {
|
|
466
|
+
"stableId": "System.Private.CoreLib:System.ValueType",
|
|
467
|
+
"clrName": "System.ValueType"
|
|
468
|
+
},
|
|
469
|
+
"interfaces": [
|
|
470
|
+
{
|
|
471
|
+
"stableId": "System.Private.CoreLib:System.IEquatable\u00601",
|
|
472
|
+
"clrName": "System.IEquatable\u00601",
|
|
473
|
+
"typeArguments": [
|
|
474
|
+
"Oid"
|
|
475
|
+
]
|
|
476
|
+
}
|
|
477
|
+
],
|
|
427
478
|
"methods": [
|
|
428
479
|
{
|
|
429
480
|
"stableId": "Npgsql:Npgsql.Internal.Postgres.Oid::ToString():System.String",
|
|
@@ -440,6 +491,7 @@
|
|
|
440
491
|
"isVirtual": true,
|
|
441
492
|
"isOverride": true,
|
|
442
493
|
"isSealed": false,
|
|
494
|
+
"visibility": "Public",
|
|
443
495
|
"declaringClrType": "Npgsql.Internal.Postgres.Oid",
|
|
444
496
|
"declaringAssemblyName": "Npgsql",
|
|
445
497
|
"isExtensionMethod": false
|
|
@@ -459,6 +511,7 @@
|
|
|
459
511
|
"isVirtual": true,
|
|
460
512
|
"isOverride": false,
|
|
461
513
|
"isSealed": true,
|
|
514
|
+
"visibility": "Public",
|
|
462
515
|
"declaringClrType": "Npgsql.Internal.Postgres.Oid",
|
|
463
516
|
"declaringAssemblyName": "Npgsql",
|
|
464
517
|
"isExtensionMethod": false
|
|
@@ -478,6 +531,7 @@
|
|
|
478
531
|
"isVirtual": true,
|
|
479
532
|
"isOverride": true,
|
|
480
533
|
"isSealed": false,
|
|
534
|
+
"visibility": "Public",
|
|
481
535
|
"declaringClrType": "Npgsql.Internal.Postgres.Oid",
|
|
482
536
|
"declaringAssemblyName": "Npgsql",
|
|
483
537
|
"isExtensionMethod": false
|
|
@@ -497,6 +551,7 @@
|
|
|
497
551
|
"isVirtual": true,
|
|
498
552
|
"isOverride": true,
|
|
499
553
|
"isSealed": false,
|
|
554
|
+
"visibility": "Public",
|
|
500
555
|
"declaringClrType": "Npgsql.Internal.Postgres.Oid",
|
|
501
556
|
"declaringAssemblyName": "Npgsql",
|
|
502
557
|
"isExtensionMethod": false
|
|
@@ -518,6 +573,7 @@
|
|
|
518
573
|
"isAbstract": false,
|
|
519
574
|
"isVirtual": false,
|
|
520
575
|
"isOverride": false,
|
|
576
|
+
"visibility": "Public",
|
|
521
577
|
"declaringClrType": "Npgsql.Internal.Postgres.Oid",
|
|
522
578
|
"declaringAssemblyName": "Npgsql"
|
|
523
579
|
},
|
|
@@ -536,6 +592,7 @@
|
|
|
536
592
|
"isAbstract": false,
|
|
537
593
|
"isVirtual": false,
|
|
538
594
|
"isOverride": false,
|
|
595
|
+
"visibility": "Public",
|
|
539
596
|
"declaringClrType": "Npgsql.Internal.Postgres.Oid",
|
|
540
597
|
"declaringAssemblyName": "Npgsql"
|
|
541
598
|
}
|
|
@@ -550,6 +607,7 @@
|
|
|
550
607
|
"normalizedSignature": "constructor|(System.UInt32):void|static=false",
|
|
551
608
|
"isStatic": false,
|
|
552
609
|
"parameterCount": 1,
|
|
610
|
+
"visibility": "Public",
|
|
553
611
|
"declaringClrType": "Npgsql.Internal.Postgres.Oid",
|
|
554
612
|
"declaringAssemblyName": "Npgsql"
|
|
555
613
|
}
|
|
@@ -566,6 +624,19 @@
|
|
|
566
624
|
"isSealed": true,
|
|
567
625
|
"isStatic": false,
|
|
568
626
|
"arity": 0,
|
|
627
|
+
"baseType": {
|
|
628
|
+
"stableId": "System.Private.CoreLib:System.ValueType",
|
|
629
|
+
"clrName": "System.ValueType"
|
|
630
|
+
},
|
|
631
|
+
"interfaces": [
|
|
632
|
+
{
|
|
633
|
+
"stableId": "System.Private.CoreLib:System.IEquatable\u00601",
|
|
634
|
+
"clrName": "System.IEquatable\u00601",
|
|
635
|
+
"typeArguments": [
|
|
636
|
+
"PgTypeId"
|
|
637
|
+
]
|
|
638
|
+
}
|
|
639
|
+
],
|
|
569
640
|
"methods": [
|
|
570
641
|
{
|
|
571
642
|
"stableId": "Npgsql:Npgsql.Internal.Postgres.PgTypeId::ToString():System.String",
|
|
@@ -582,6 +653,7 @@
|
|
|
582
653
|
"isVirtual": true,
|
|
583
654
|
"isOverride": true,
|
|
584
655
|
"isSealed": false,
|
|
656
|
+
"visibility": "Public",
|
|
585
657
|
"declaringClrType": "Npgsql.Internal.Postgres.PgTypeId",
|
|
586
658
|
"declaringAssemblyName": "Npgsql",
|
|
587
659
|
"isExtensionMethod": false
|
|
@@ -601,6 +673,7 @@
|
|
|
601
673
|
"isVirtual": true,
|
|
602
674
|
"isOverride": false,
|
|
603
675
|
"isSealed": true,
|
|
676
|
+
"visibility": "Public",
|
|
604
677
|
"declaringClrType": "Npgsql.Internal.Postgres.PgTypeId",
|
|
605
678
|
"declaringAssemblyName": "Npgsql",
|
|
606
679
|
"isExtensionMethod": false
|
|
@@ -620,6 +693,7 @@
|
|
|
620
693
|
"isVirtual": true,
|
|
621
694
|
"isOverride": true,
|
|
622
695
|
"isSealed": false,
|
|
696
|
+
"visibility": "Public",
|
|
623
697
|
"declaringClrType": "Npgsql.Internal.Postgres.PgTypeId",
|
|
624
698
|
"declaringAssemblyName": "Npgsql",
|
|
625
699
|
"isExtensionMethod": false
|
|
@@ -639,6 +713,7 @@
|
|
|
639
713
|
"isVirtual": true,
|
|
640
714
|
"isOverride": true,
|
|
641
715
|
"isSealed": false,
|
|
716
|
+
"visibility": "Public",
|
|
642
717
|
"declaringClrType": "Npgsql.Internal.Postgres.PgTypeId",
|
|
643
718
|
"declaringAssemblyName": "Npgsql",
|
|
644
719
|
"isExtensionMethod": false
|
|
@@ -660,6 +735,7 @@
|
|
|
660
735
|
"isAbstract": false,
|
|
661
736
|
"isVirtual": false,
|
|
662
737
|
"isOverride": false,
|
|
738
|
+
"visibility": "Public",
|
|
663
739
|
"declaringClrType": "Npgsql.Internal.Postgres.PgTypeId",
|
|
664
740
|
"declaringAssemblyName": "Npgsql"
|
|
665
741
|
},
|
|
@@ -678,6 +754,7 @@
|
|
|
678
754
|
"isAbstract": false,
|
|
679
755
|
"isVirtual": false,
|
|
680
756
|
"isOverride": false,
|
|
757
|
+
"visibility": "Public",
|
|
681
758
|
"declaringClrType": "Npgsql.Internal.Postgres.PgTypeId",
|
|
682
759
|
"declaringAssemblyName": "Npgsql"
|
|
683
760
|
},
|
|
@@ -696,6 +773,7 @@
|
|
|
696
773
|
"isAbstract": false,
|
|
697
774
|
"isVirtual": false,
|
|
698
775
|
"isOverride": false,
|
|
776
|
+
"visibility": "Public",
|
|
699
777
|
"declaringClrType": "Npgsql.Internal.Postgres.PgTypeId",
|
|
700
778
|
"declaringAssemblyName": "Npgsql"
|
|
701
779
|
},
|
|
@@ -714,6 +792,7 @@
|
|
|
714
792
|
"isAbstract": false,
|
|
715
793
|
"isVirtual": false,
|
|
716
794
|
"isOverride": false,
|
|
795
|
+
"visibility": "Public",
|
|
717
796
|
"declaringClrType": "Npgsql.Internal.Postgres.PgTypeId",
|
|
718
797
|
"declaringAssemblyName": "Npgsql"
|
|
719
798
|
}
|
|
@@ -728,6 +807,7 @@
|
|
|
728
807
|
"normalizedSignature": "constructor|(Npgsql.Internal.Postgres.DataTypeName):void|static=false",
|
|
729
808
|
"isStatic": false,
|
|
730
809
|
"parameterCount": 1,
|
|
810
|
+
"visibility": "Public",
|
|
731
811
|
"declaringClrType": "Npgsql.Internal.Postgres.PgTypeId",
|
|
732
812
|
"declaringAssemblyName": "Npgsql"
|
|
733
813
|
},
|
|
@@ -738,6 +818,7 @@
|
|
|
738
818
|
"normalizedSignature": "constructor|(Npgsql.Internal.Postgres.Oid):void|static=false",
|
|
739
819
|
"isStatic": false,
|
|
740
820
|
"parameterCount": 1,
|
|
821
|
+
"visibility": "Public",
|
|
741
822
|
"declaringClrType": "Npgsql.Internal.Postgres.PgTypeId",
|
|
742
823
|
"declaringAssemblyName": "Npgsql"
|
|
743
824
|
}
|
|
@@ -10,6 +10,8 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
10
10
|
import type { Boolean as ClrBoolean, IEquatable, Int32, Object as ClrObject, String as ClrString, UInt32, ValueType } from "@tsonic/dotnet/System.js";
|
|
11
11
|
|
|
12
12
|
export interface DataTypeName$instance {
|
|
13
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
14
|
+
|
|
13
15
|
readonly DisplayName: string;
|
|
14
16
|
readonly IsArray: boolean;
|
|
15
17
|
readonly IsUnqualified: boolean;
|
|
@@ -51,6 +53,8 @@ export const Field: {
|
|
|
51
53
|
export type Field = Field$instance;
|
|
52
54
|
|
|
53
55
|
export interface Oid$instance {
|
|
56
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
57
|
+
|
|
54
58
|
Value: uint;
|
|
55
59
|
Equals(other: Oid): boolean;
|
|
56
60
|
Equals(obj: unknown): boolean;
|
|
@@ -68,6 +72,8 @@ export const Oid: {
|
|
|
68
72
|
export type Oid = Oid$instance;
|
|
69
73
|
|
|
70
74
|
export interface PgTypeId$instance {
|
|
75
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
76
|
+
|
|
71
77
|
readonly DataTypeName: DataTypeName;
|
|
72
78
|
readonly IsDataTypeName: boolean;
|
|
73
79
|
readonly IsOid: boolean;
|
package/Npgsql.Internal.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ import type { ReadOnlySequence } from '@tsonic/dotnet/System.Buffers.js';
|
|
|
15
15
|
import type { IEnumerable, IReadOnlyList, List } from '@tsonic/dotnet/System.Collections.Generic.js';
|
|
16
16
|
import type { DbType } from '@tsonic/dotnet/System.Data.js';
|
|
17
17
|
import type { Stream, TextReader } from '@tsonic/dotnet/System.IO.js';
|
|
18
|
-
import type { AsyncCallback, Boolean as ClrBoolean, Byte, Char, Double, Enum, Func, IAsyncDisposable, IAsyncResult, ICloneable, IComparable, IConvertible, IDisposable, IEquatable, IFormattable, Int16, Int32, Int64, IntPtr, ISpanFormattable, Memory, MulticastDelegate, Nullable, Object as ClrObject, ReadOnlyMemory, ReadOnlySpan, Single, Span, String as ClrString, TimeSpan, Type, UInt16, UInt32, UInt64, ValueType, Version, Void } from '@tsonic/dotnet/System.js';
|
|
18
|
+
import type { ArgumentOutOfRangeException, AsyncCallback, Boolean as ClrBoolean, Byte, Char, Double, Enum, Func, IAsyncDisposable, IAsyncResult, ICloneable, IComparable, IConvertible, IDisposable, IEquatable, IFormattable, Int16, Int32, Int64, IntPtr, ISpanFormattable, Memory, MulticastDelegate, Nullable, Object as ClrObject, ReadOnlyMemory, ReadOnlySpan, Single, Span, String as ClrString, TimeSpan, Type, UInt16, UInt32, UInt64, ValueType, Version, Void } from '@tsonic/dotnet/System.js';
|
|
19
19
|
import type { ISerializable } from '@tsonic/dotnet/System.Runtime.Serialization.js';
|
|
20
20
|
import type { Encoding } from '@tsonic/dotnet/System.Text.js';
|
|
21
21
|
import type { CancellationToken } from '@tsonic/dotnet/System.Threading.js';
|