@tsonic/efcore-npgsql 10.0.5 → 10.0.8
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/internal/index.d.ts +282 -280
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +3 -3
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +5 -5
- package/Npgsql/internal/index.d.ts +199 -125
- package/Npgsql.BackendMessages/internal/index.d.ts +4 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL/internal/index.d.ts +10 -8
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Design.Internal/internal/index.d.ts +20 -14
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Diagnostics.Internal/internal/index.d.ts +4 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Extensions.Internal/internal/index.d.ts +4 -4
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure/internal/index.d.ts +16 -12
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Infrastructure.Internal/internal/index.d.ts +33 -25
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Internal/internal/index.d.ts +35 -33
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/internal/index.d.ts +24 -14
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Conventions/internal/index.d.ts +37 -23
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal/internal/index.d.ts +17 -13
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations/internal/index.d.ts +9 -7
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Internal/internal/index.d.ts +23 -19
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Migrations.Operations/internal/index.d.ts +11 -7
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query/internal/index.d.ts +14 -12
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.ExpressionTranslators.Internal/internal/index.d.ts +110 -46
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions/internal/index.d.ts +2 -2
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Expressions.Internal/internal/index.d.ts +73 -41
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Query.Internal/internal/index.d.ts +52 -12
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Scaffolding.Internal/internal/index.d.ts +13 -9
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal/internal/index.d.ts +42 -28
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Json/internal/index.d.ts +16 -12
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.Internal.Mapping/internal/index.d.ts +214 -157
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Storage.ValueConversion/internal/index.d.ts +6 -3
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Update.Internal/internal/index.d.ts +21 -11
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration/internal/index.d.ts +11 -7
- package/Npgsql.EntityFrameworkCore.PostgreSQL.ValueGeneration.Internal/internal/index.d.ts +24 -18
- package/Npgsql.Internal/internal/index.d.ts +113 -65
- package/Npgsql.Internal.Postgres/internal/index.d.ts +10 -2
- package/Npgsql.NameTranslation/internal/index.d.ts +9 -9
- package/Npgsql.PostgresTypes/internal/index.d.ts +25 -5
- package/Npgsql.Replication/internal/index.d.ts +42 -22
- package/Npgsql.Replication.Internal/internal/index.d.ts +9 -7
- package/Npgsql.Replication.PgOutput/internal/index.d.ts +27 -19
- package/Npgsql.Replication.PgOutput.Messages/internal/index.d.ts +71 -7
- package/Npgsql.Replication.TestDecoding/internal/index.d.ts +16 -10
- package/Npgsql.Schema/internal/index.d.ts +20 -19
- package/Npgsql.TypeMapping/internal/index.d.ts +5 -3
- package/Npgsql.Util/internal/index.d.ts +4 -2
- package/NpgsqlTypes/internal/index.d.ts +82 -32
- package/__internal/extensions/index.d.ts +696 -658
- package/package.json +5 -5
|
@@ -9,17 +9,17 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
9
9
|
import type { ptr } from "@tsonic/core/types.js";
|
|
10
10
|
|
|
11
11
|
// Import types from other namespaces
|
|
12
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
13
|
-
import type {
|
|
14
|
-
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections.js";
|
|
15
|
-
import type { IEnumerable } from "@tsonic/dotnet/System.Collections.js";
|
|
16
|
-
import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel.js";
|
|
17
|
-
import type { ITypeDescriptorContext, TypeConverter } from "@tsonic/dotnet/System.ComponentModel.js";
|
|
18
|
-
import type { CultureInfo } from "@tsonic/dotnet/System.Globalization.js";
|
|
19
|
-
import
|
|
20
|
-
import type {
|
|
21
|
-
import
|
|
22
|
-
import type {
|
|
12
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
13
|
+
import type { ICollection_1, IEnumerable_1, IEnumerator_1, IList_1, IReadOnlyList_1, List_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
14
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
15
|
+
import type { IEnumerable } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
16
|
+
import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel/internal/index.js";
|
|
17
|
+
import type { ITypeDescriptorContext, TypeConverter } from "@tsonic/dotnet/System.ComponentModel/internal/index.js";
|
|
18
|
+
import type { CultureInfo } from "@tsonic/dotnet/System.Globalization/internal/index.js";
|
|
19
|
+
import type { IPAddress } from "@tsonic/dotnet/System.Net/internal/index.js";
|
|
20
|
+
import type { StringBuilder } from "@tsonic/dotnet/System.Text/internal/index.js";
|
|
21
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
22
|
+
import type { Attribute, Boolean as ClrBoolean, Byte, Char, Double, Enum, IComparable, IComparable_1, IConvertible, IEquatable_1, IFormattable, Int16, Int32, Int64, ISpanFormattable, Object as ClrObject, ReadOnlySpan_1, String as ClrString, Type, UInt16, UInt32, UInt64, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
23
23
|
|
|
24
24
|
export enum NpgsqlDbType {
|
|
25
25
|
Bigint = 1,
|
|
@@ -129,6 +129,8 @@ export enum NpgsqlTsVector_Lexeme_Weight {
|
|
|
129
129
|
|
|
130
130
|
|
|
131
131
|
export interface NpgsqlBox$instance {
|
|
132
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlBox: never;
|
|
133
|
+
|
|
132
134
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
133
135
|
|
|
134
136
|
readonly Bottom: double;
|
|
@@ -159,6 +161,8 @@ export const NpgsqlBox: {
|
|
|
159
161
|
export type NpgsqlBox = NpgsqlBox$instance;
|
|
160
162
|
|
|
161
163
|
export interface NpgsqlCidr$instance {
|
|
164
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlCidr: never;
|
|
165
|
+
|
|
162
166
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
163
167
|
|
|
164
168
|
readonly Address: IPAddress;
|
|
@@ -180,6 +184,8 @@ export const NpgsqlCidr: {
|
|
|
180
184
|
export type NpgsqlCidr = NpgsqlCidr$instance;
|
|
181
185
|
|
|
182
186
|
export interface NpgsqlCircle$instance {
|
|
187
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlCircle: never;
|
|
188
|
+
|
|
183
189
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
184
190
|
|
|
185
191
|
Center: NpgsqlPoint;
|
|
@@ -204,12 +210,14 @@ export const NpgsqlCircle: {
|
|
|
204
210
|
export type NpgsqlCircle = NpgsqlCircle$instance;
|
|
205
211
|
|
|
206
212
|
export interface NpgsqlCube$instance {
|
|
213
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlCube: never;
|
|
214
|
+
|
|
207
215
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
208
216
|
|
|
209
217
|
readonly Dimensions: int;
|
|
210
218
|
readonly IsPoint: boolean;
|
|
211
|
-
readonly LowerLeft:
|
|
212
|
-
readonly UpperRight:
|
|
219
|
+
readonly LowerLeft: IReadOnlyList_1<System_Internal.Double>;
|
|
220
|
+
readonly UpperRight: IReadOnlyList_1<System_Internal.Double>;
|
|
213
221
|
Equals(other: NpgsqlCube): boolean;
|
|
214
222
|
Equals(obj: unknown): boolean;
|
|
215
223
|
GetHashCode(): int;
|
|
@@ -221,8 +229,8 @@ export interface NpgsqlCube$instance {
|
|
|
221
229
|
export const NpgsqlCube: {
|
|
222
230
|
new(coord: double): NpgsqlCube;
|
|
223
231
|
new(lowerLeft: double, upperRight: double): NpgsqlCube;
|
|
224
|
-
new(coords:
|
|
225
|
-
new(lowerLeft:
|
|
232
|
+
new(coords: IEnumerable_1<System_Internal.Double>): NpgsqlCube;
|
|
233
|
+
new(lowerLeft: IEnumerable_1<System_Internal.Double>, upperRight: IEnumerable_1<System_Internal.Double>): NpgsqlCube;
|
|
226
234
|
new(cube: NpgsqlCube, coord: double): NpgsqlCube;
|
|
227
235
|
new(cube: NpgsqlCube, lowerLeft: double, upperRight: double): NpgsqlCube;
|
|
228
236
|
};
|
|
@@ -231,6 +239,8 @@ export const NpgsqlCube: {
|
|
|
231
239
|
export type NpgsqlCube = NpgsqlCube$instance;
|
|
232
240
|
|
|
233
241
|
export interface NpgsqlInet$instance {
|
|
242
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlInet: never;
|
|
243
|
+
|
|
234
244
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
235
245
|
|
|
236
246
|
readonly Address: IPAddress;
|
|
@@ -253,6 +263,8 @@ export const NpgsqlInet: {
|
|
|
253
263
|
export type NpgsqlInet = NpgsqlInet$instance;
|
|
254
264
|
|
|
255
265
|
export interface NpgsqlInterval$instance {
|
|
266
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlInterval: never;
|
|
267
|
+
|
|
256
268
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
257
269
|
|
|
258
270
|
readonly Days: int;
|
|
@@ -272,6 +284,8 @@ export const NpgsqlInterval: {
|
|
|
272
284
|
export type NpgsqlInterval = NpgsqlInterval$instance;
|
|
273
285
|
|
|
274
286
|
export interface NpgsqlLine$instance {
|
|
287
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlLine: never;
|
|
288
|
+
|
|
275
289
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
276
290
|
|
|
277
291
|
A: double;
|
|
@@ -293,6 +307,8 @@ export const NpgsqlLine: {
|
|
|
293
307
|
export type NpgsqlLine = NpgsqlLine$instance;
|
|
294
308
|
|
|
295
309
|
export interface NpgsqlLogSequenceNumber$instance {
|
|
310
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlLogSequenceNumber: never;
|
|
311
|
+
|
|
296
312
|
readonly __tsonic_iface_System_IComparable_1: never;
|
|
297
313
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
298
314
|
|
|
@@ -308,10 +324,10 @@ export const NpgsqlLogSequenceNumber: {
|
|
|
308
324
|
new(value: ulong): NpgsqlLogSequenceNumber;
|
|
309
325
|
readonly Invalid: NpgsqlLogSequenceNumber;
|
|
310
326
|
Larger(value1: NpgsqlLogSequenceNumber, value2: NpgsqlLogSequenceNumber): NpgsqlLogSequenceNumber;
|
|
311
|
-
Parse(s:
|
|
327
|
+
Parse(s: ReadOnlySpan_1<System_Internal.Char>): NpgsqlLogSequenceNumber;
|
|
312
328
|
Parse(s: string): NpgsqlLogSequenceNumber;
|
|
313
329
|
Smaller(value1: NpgsqlLogSequenceNumber, value2: NpgsqlLogSequenceNumber): NpgsqlLogSequenceNumber;
|
|
314
|
-
TryParse(s:
|
|
330
|
+
TryParse(s: ReadOnlySpan_1<System_Internal.Char>, result: NpgsqlLogSequenceNumber): boolean;
|
|
315
331
|
TryParse(s: string, result: NpgsqlLogSequenceNumber): boolean;
|
|
316
332
|
};
|
|
317
333
|
|
|
@@ -319,6 +335,8 @@ export const NpgsqlLogSequenceNumber: {
|
|
|
319
335
|
export type NpgsqlLogSequenceNumber = NpgsqlLogSequenceNumber$instance;
|
|
320
336
|
|
|
321
337
|
export interface NpgsqlLSeg$instance {
|
|
338
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlLSeg: never;
|
|
339
|
+
|
|
322
340
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
323
341
|
|
|
324
342
|
End: NpgsqlPoint;
|
|
@@ -340,6 +358,8 @@ export const NpgsqlLSeg: {
|
|
|
340
358
|
export type NpgsqlLSeg = NpgsqlLSeg$instance;
|
|
341
359
|
|
|
342
360
|
export interface NpgsqlPath$instance {
|
|
361
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlPath: never;
|
|
362
|
+
|
|
343
363
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
344
364
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
345
365
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -349,7 +369,6 @@ export interface NpgsqlPath$instance {
|
|
|
349
369
|
readonly Capacity: int;
|
|
350
370
|
readonly Count: int;
|
|
351
371
|
readonly IsReadOnly: boolean;
|
|
352
|
-
[index: number]: NpgsqlPoint;
|
|
353
372
|
Open: boolean;
|
|
354
373
|
Add(item: NpgsqlPoint): void;
|
|
355
374
|
Clear(): void;
|
|
@@ -357,7 +376,7 @@ export interface NpgsqlPath$instance {
|
|
|
357
376
|
CopyTo(array: NpgsqlPoint[], arrayIndex: int): void;
|
|
358
377
|
Equals(other: NpgsqlPath): boolean;
|
|
359
378
|
Equals(obj: unknown): boolean;
|
|
360
|
-
GetEnumerator():
|
|
379
|
+
GetEnumerator(): IEnumerator_1<NpgsqlPoint>;
|
|
361
380
|
GetHashCode(): int;
|
|
362
381
|
IndexOf(item: NpgsqlPoint): int;
|
|
363
382
|
Insert(index: int, item: NpgsqlPoint): void;
|
|
@@ -369,8 +388,8 @@ export interface NpgsqlPath$instance {
|
|
|
369
388
|
|
|
370
389
|
export const NpgsqlPath: {
|
|
371
390
|
new(): NpgsqlPath;
|
|
372
|
-
new(points:
|
|
373
|
-
new(points:
|
|
391
|
+
new(points: IEnumerable_1<NpgsqlPoint>, open: boolean): NpgsqlPath;
|
|
392
|
+
new(points: IEnumerable_1<NpgsqlPoint>): NpgsqlPath;
|
|
374
393
|
new(points: NpgsqlPoint[]): NpgsqlPath;
|
|
375
394
|
new(open: boolean): NpgsqlPath;
|
|
376
395
|
new(capacity: int, open: boolean): NpgsqlPath;
|
|
@@ -378,9 +397,11 @@ export const NpgsqlPath: {
|
|
|
378
397
|
};
|
|
379
398
|
|
|
380
399
|
|
|
381
|
-
export type NpgsqlPath = NpgsqlPath$instance;
|
|
400
|
+
export type NpgsqlPath = NpgsqlPath$instance & { [index: number]: NpgsqlPoint; };
|
|
382
401
|
|
|
383
402
|
export interface NpgsqlPoint$instance {
|
|
403
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlPoint: never;
|
|
404
|
+
|
|
384
405
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
385
406
|
|
|
386
407
|
X: double;
|
|
@@ -401,6 +422,8 @@ export const NpgsqlPoint: {
|
|
|
401
422
|
export type NpgsqlPoint = NpgsqlPoint$instance;
|
|
402
423
|
|
|
403
424
|
export interface NpgsqlPolygon$instance {
|
|
425
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlPolygon: never;
|
|
426
|
+
|
|
404
427
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
405
428
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
406
429
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -410,14 +433,13 @@ export interface NpgsqlPolygon$instance {
|
|
|
410
433
|
readonly Capacity: int;
|
|
411
434
|
readonly Count: int;
|
|
412
435
|
readonly IsReadOnly: boolean;
|
|
413
|
-
[index: number]: NpgsqlPoint;
|
|
414
436
|
Add(item: NpgsqlPoint): void;
|
|
415
437
|
Clear(): void;
|
|
416
438
|
Contains(item: NpgsqlPoint): boolean;
|
|
417
439
|
CopyTo(array: NpgsqlPoint[], arrayIndex: int): void;
|
|
418
440
|
Equals(other: NpgsqlPolygon): boolean;
|
|
419
441
|
Equals(obj: unknown): boolean;
|
|
420
|
-
GetEnumerator():
|
|
442
|
+
GetEnumerator(): IEnumerator_1<NpgsqlPoint>;
|
|
421
443
|
GetHashCode(): int;
|
|
422
444
|
IndexOf(item: NpgsqlPoint): int;
|
|
423
445
|
Insert(index: int, item: NpgsqlPoint): void;
|
|
@@ -429,15 +451,17 @@ export interface NpgsqlPolygon$instance {
|
|
|
429
451
|
|
|
430
452
|
export const NpgsqlPolygon: {
|
|
431
453
|
new(): NpgsqlPolygon;
|
|
432
|
-
new(points:
|
|
454
|
+
new(points: IEnumerable_1<NpgsqlPoint>): NpgsqlPolygon;
|
|
433
455
|
new(points: NpgsqlPoint[]): NpgsqlPolygon;
|
|
434
456
|
new(capacity: int): NpgsqlPolygon;
|
|
435
457
|
};
|
|
436
458
|
|
|
437
459
|
|
|
438
|
-
export type NpgsqlPolygon = NpgsqlPolygon$instance;
|
|
460
|
+
export type NpgsqlPolygon = NpgsqlPolygon$instance & { [index: number]: NpgsqlPoint; };
|
|
439
461
|
|
|
440
462
|
export interface NpgsqlRange_1$instance<T> {
|
|
463
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlRange_1: never;
|
|
464
|
+
|
|
441
465
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
442
466
|
|
|
443
467
|
readonly IsEmpty: boolean;
|
|
@@ -466,6 +490,8 @@ export const NpgsqlRange_1: {
|
|
|
466
490
|
export type NpgsqlRange_1<T> = NpgsqlRange_1$instance<T>;
|
|
467
491
|
|
|
468
492
|
export interface NpgsqlTid$instance {
|
|
493
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTid: never;
|
|
494
|
+
|
|
469
495
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
470
496
|
|
|
471
497
|
readonly BlockNumber: uint;
|
|
@@ -486,10 +512,11 @@ export const NpgsqlTid: {
|
|
|
486
512
|
export type NpgsqlTid = NpgsqlTid$instance;
|
|
487
513
|
|
|
488
514
|
export interface NpgsqlTsVector_Lexeme$instance {
|
|
515
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsVector_Lexeme: never;
|
|
516
|
+
|
|
489
517
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
490
518
|
|
|
491
519
|
readonly Count: int;
|
|
492
|
-
[index: number]: NpgsqlTsVector_Lexeme_WordEntryPos;
|
|
493
520
|
Text: string;
|
|
494
521
|
Equals(o: NpgsqlTsVector_Lexeme): boolean;
|
|
495
522
|
Equals(o: unknown): boolean;
|
|
@@ -500,13 +527,15 @@ export interface NpgsqlTsVector_Lexeme$instance {
|
|
|
500
527
|
|
|
501
528
|
export const NpgsqlTsVector_Lexeme: {
|
|
502
529
|
new(text: string): NpgsqlTsVector_Lexeme;
|
|
503
|
-
new(text: string, wordEntryPositions:
|
|
530
|
+
new(text: string, wordEntryPositions: List_1<NpgsqlTsVector_Lexeme_WordEntryPos>): NpgsqlTsVector_Lexeme;
|
|
504
531
|
};
|
|
505
532
|
|
|
506
533
|
|
|
507
|
-
export type NpgsqlTsVector_Lexeme = NpgsqlTsVector_Lexeme$instance;
|
|
534
|
+
export type NpgsqlTsVector_Lexeme = NpgsqlTsVector_Lexeme$instance & { [index: number]: NpgsqlTsVector_Lexeme_WordEntryPos; };
|
|
508
535
|
|
|
509
536
|
export interface NpgsqlTsVector_Lexeme_WordEntryPos$instance {
|
|
537
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsVector_Lexeme_WordEntryPos: never;
|
|
538
|
+
|
|
510
539
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
511
540
|
|
|
512
541
|
readonly Pos: int;
|
|
@@ -526,6 +555,8 @@ export const NpgsqlTsVector_Lexeme_WordEntryPos: {
|
|
|
526
555
|
export type NpgsqlTsVector_Lexeme_WordEntryPos = NpgsqlTsVector_Lexeme_WordEntryPos$instance;
|
|
527
556
|
|
|
528
557
|
export interface NpgsqlRange_1_RangeTypeConverter$instance<T> extends TypeConverter {
|
|
558
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlRange_1_RangeTypeConverter: never;
|
|
559
|
+
|
|
529
560
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
530
561
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
531
562
|
ConvertFrom(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown): unknown | undefined;
|
|
@@ -542,6 +573,8 @@ export const NpgsqlRange_1_RangeTypeConverter: {
|
|
|
542
573
|
export type NpgsqlRange_1_RangeTypeConverter<T> = NpgsqlRange_1_RangeTypeConverter$instance<T>;
|
|
543
574
|
|
|
544
575
|
export interface NpgsqlTsQuery$instance {
|
|
576
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQuery: never;
|
|
577
|
+
|
|
545
578
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
546
579
|
|
|
547
580
|
readonly Kind: NpgsqlTsQuery_NodeKind;
|
|
@@ -561,6 +594,8 @@ export const NpgsqlTsQuery: (abstract new(kind: NpgsqlTsQuery_NodeKind) => Npgsq
|
|
|
561
594
|
export type NpgsqlTsQuery = NpgsqlTsQuery$instance;
|
|
562
595
|
|
|
563
596
|
export interface NpgsqlTsQueryAnd$instance extends NpgsqlTsQueryBinOp {
|
|
597
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryAnd: never;
|
|
598
|
+
|
|
564
599
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
565
600
|
|
|
566
601
|
Equals(other: NpgsqlTsQuery): boolean;
|
|
@@ -577,6 +612,8 @@ export const NpgsqlTsQueryAnd: {
|
|
|
577
612
|
export type NpgsqlTsQueryAnd = NpgsqlTsQueryAnd$instance;
|
|
578
613
|
|
|
579
614
|
export interface NpgsqlTsQueryBinOp$instance extends NpgsqlTsQuery {
|
|
615
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryBinOp: never;
|
|
616
|
+
|
|
580
617
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
581
618
|
|
|
582
619
|
Left: NpgsqlTsQuery;
|
|
@@ -591,6 +628,8 @@ export const NpgsqlTsQueryBinOp: (abstract new(kind: NpgsqlTsQuery_NodeKind, lef
|
|
|
591
628
|
export type NpgsqlTsQueryBinOp = NpgsqlTsQueryBinOp$instance;
|
|
592
629
|
|
|
593
630
|
export interface NpgsqlTsQueryEmpty$instance extends NpgsqlTsQuery {
|
|
631
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryEmpty: never;
|
|
632
|
+
|
|
594
633
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
595
634
|
|
|
596
635
|
Equals(other: NpgsqlTsQuery): boolean;
|
|
@@ -607,6 +646,8 @@ export const NpgsqlTsQueryEmpty: {
|
|
|
607
646
|
export type NpgsqlTsQueryEmpty = NpgsqlTsQueryEmpty$instance;
|
|
608
647
|
|
|
609
648
|
export interface NpgsqlTsQueryFollowedBy$instance extends NpgsqlTsQueryBinOp {
|
|
649
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryFollowedBy: never;
|
|
650
|
+
|
|
610
651
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
611
652
|
|
|
612
653
|
Distance: short;
|
|
@@ -624,6 +665,8 @@ export const NpgsqlTsQueryFollowedBy: {
|
|
|
624
665
|
export type NpgsqlTsQueryFollowedBy = NpgsqlTsQueryFollowedBy$instance;
|
|
625
666
|
|
|
626
667
|
export interface NpgsqlTsQueryLexeme$instance extends NpgsqlTsQuery {
|
|
668
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryLexeme: never;
|
|
669
|
+
|
|
627
670
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
628
671
|
|
|
629
672
|
IsPrefixSearch: boolean;
|
|
@@ -645,6 +688,8 @@ export const NpgsqlTsQueryLexeme: {
|
|
|
645
688
|
export type NpgsqlTsQueryLexeme = NpgsqlTsQueryLexeme$instance;
|
|
646
689
|
|
|
647
690
|
export interface NpgsqlTsQueryNot$instance extends NpgsqlTsQuery {
|
|
691
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryNot: never;
|
|
692
|
+
|
|
648
693
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
649
694
|
|
|
650
695
|
Child: NpgsqlTsQuery;
|
|
@@ -662,6 +707,8 @@ export const NpgsqlTsQueryNot: {
|
|
|
662
707
|
export type NpgsqlTsQueryNot = NpgsqlTsQueryNot$instance;
|
|
663
708
|
|
|
664
709
|
export interface NpgsqlTsQueryOr$instance extends NpgsqlTsQueryBinOp {
|
|
710
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryOr: never;
|
|
711
|
+
|
|
665
712
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
666
713
|
|
|
667
714
|
Equals(other: NpgsqlTsQuery): boolean;
|
|
@@ -678,15 +725,16 @@ export const NpgsqlTsQueryOr: {
|
|
|
678
725
|
export type NpgsqlTsQueryOr = NpgsqlTsQueryOr$instance;
|
|
679
726
|
|
|
680
727
|
export interface NpgsqlTsVector$instance {
|
|
728
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsVector: never;
|
|
729
|
+
|
|
681
730
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
682
731
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
683
732
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
684
733
|
|
|
685
734
|
readonly Count: int;
|
|
686
|
-
readonly [index: number]: NpgsqlTsVector_Lexeme;
|
|
687
735
|
Equals(other: NpgsqlTsVector): boolean;
|
|
688
736
|
Equals(obj: unknown): boolean;
|
|
689
|
-
GetEnumerator():
|
|
737
|
+
GetEnumerator(): IEnumerator_1<NpgsqlTsVector_Lexeme>;
|
|
690
738
|
GetHashCode(): int;
|
|
691
739
|
ToString(): string;
|
|
692
740
|
}
|
|
@@ -698,9 +746,11 @@ export const NpgsqlTsVector: {
|
|
|
698
746
|
};
|
|
699
747
|
|
|
700
748
|
|
|
701
|
-
export type NpgsqlTsVector = NpgsqlTsVector$instance;
|
|
749
|
+
export type NpgsqlTsVector = NpgsqlTsVector$instance & { readonly [index: number]: NpgsqlTsVector_Lexeme; };
|
|
702
750
|
|
|
703
751
|
export interface PgNameAttribute$instance extends Attribute {
|
|
752
|
+
readonly __tsonic_type_NpgsqlTypes_PgNameAttribute: never;
|
|
753
|
+
|
|
704
754
|
readonly PgName: string;
|
|
705
755
|
}
|
|
706
756
|
|