@tsonic/efcore-npgsql 10.0.5 → 10.0.7
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 +197 -121
- 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 +19 -17
- package/Npgsql.TypeMapping/internal/index.d.ts +5 -3
- package/Npgsql.Util/internal/index.d.ts +4 -2
- package/NpgsqlTypes/internal/index.d.ts +78 -24
- 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;
|
|
@@ -357,7 +377,7 @@ export interface NpgsqlPath$instance {
|
|
|
357
377
|
CopyTo(array: NpgsqlPoint[], arrayIndex: int): void;
|
|
358
378
|
Equals(other: NpgsqlPath): boolean;
|
|
359
379
|
Equals(obj: unknown): boolean;
|
|
360
|
-
GetEnumerator():
|
|
380
|
+
GetEnumerator(): IEnumerator_1<NpgsqlPoint>;
|
|
361
381
|
GetHashCode(): int;
|
|
362
382
|
IndexOf(item: NpgsqlPoint): int;
|
|
363
383
|
Insert(index: int, item: NpgsqlPoint): void;
|
|
@@ -369,8 +389,8 @@ export interface NpgsqlPath$instance {
|
|
|
369
389
|
|
|
370
390
|
export const NpgsqlPath: {
|
|
371
391
|
new(): NpgsqlPath;
|
|
372
|
-
new(points:
|
|
373
|
-
new(points:
|
|
392
|
+
new(points: IEnumerable_1<NpgsqlPoint>, open: boolean): NpgsqlPath;
|
|
393
|
+
new(points: IEnumerable_1<NpgsqlPoint>): NpgsqlPath;
|
|
374
394
|
new(points: NpgsqlPoint[]): NpgsqlPath;
|
|
375
395
|
new(open: boolean): NpgsqlPath;
|
|
376
396
|
new(capacity: int, open: boolean): NpgsqlPath;
|
|
@@ -381,6 +401,8 @@ export const NpgsqlPath: {
|
|
|
381
401
|
export type NpgsqlPath = NpgsqlPath$instance;
|
|
382
402
|
|
|
383
403
|
export interface NpgsqlPoint$instance {
|
|
404
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlPoint: never;
|
|
405
|
+
|
|
384
406
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
385
407
|
|
|
386
408
|
X: double;
|
|
@@ -401,6 +423,8 @@ export const NpgsqlPoint: {
|
|
|
401
423
|
export type NpgsqlPoint = NpgsqlPoint$instance;
|
|
402
424
|
|
|
403
425
|
export interface NpgsqlPolygon$instance {
|
|
426
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlPolygon: never;
|
|
427
|
+
|
|
404
428
|
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
405
429
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
406
430
|
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
@@ -417,7 +441,7 @@ export interface NpgsqlPolygon$instance {
|
|
|
417
441
|
CopyTo(array: NpgsqlPoint[], arrayIndex: int): void;
|
|
418
442
|
Equals(other: NpgsqlPolygon): boolean;
|
|
419
443
|
Equals(obj: unknown): boolean;
|
|
420
|
-
GetEnumerator():
|
|
444
|
+
GetEnumerator(): IEnumerator_1<NpgsqlPoint>;
|
|
421
445
|
GetHashCode(): int;
|
|
422
446
|
IndexOf(item: NpgsqlPoint): int;
|
|
423
447
|
Insert(index: int, item: NpgsqlPoint): void;
|
|
@@ -429,7 +453,7 @@ export interface NpgsqlPolygon$instance {
|
|
|
429
453
|
|
|
430
454
|
export const NpgsqlPolygon: {
|
|
431
455
|
new(): NpgsqlPolygon;
|
|
432
|
-
new(points:
|
|
456
|
+
new(points: IEnumerable_1<NpgsqlPoint>): NpgsqlPolygon;
|
|
433
457
|
new(points: NpgsqlPoint[]): NpgsqlPolygon;
|
|
434
458
|
new(capacity: int): NpgsqlPolygon;
|
|
435
459
|
};
|
|
@@ -438,6 +462,8 @@ export const NpgsqlPolygon: {
|
|
|
438
462
|
export type NpgsqlPolygon = NpgsqlPolygon$instance;
|
|
439
463
|
|
|
440
464
|
export interface NpgsqlRange_1$instance<T> {
|
|
465
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlRange_1: never;
|
|
466
|
+
|
|
441
467
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
442
468
|
|
|
443
469
|
readonly IsEmpty: boolean;
|
|
@@ -466,6 +492,8 @@ export const NpgsqlRange_1: {
|
|
|
466
492
|
export type NpgsqlRange_1<T> = NpgsqlRange_1$instance<T>;
|
|
467
493
|
|
|
468
494
|
export interface NpgsqlTid$instance {
|
|
495
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTid: never;
|
|
496
|
+
|
|
469
497
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
470
498
|
|
|
471
499
|
readonly BlockNumber: uint;
|
|
@@ -486,6 +514,8 @@ export const NpgsqlTid: {
|
|
|
486
514
|
export type NpgsqlTid = NpgsqlTid$instance;
|
|
487
515
|
|
|
488
516
|
export interface NpgsqlTsVector_Lexeme$instance {
|
|
517
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsVector_Lexeme: never;
|
|
518
|
+
|
|
489
519
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
490
520
|
|
|
491
521
|
readonly Count: int;
|
|
@@ -500,13 +530,15 @@ export interface NpgsqlTsVector_Lexeme$instance {
|
|
|
500
530
|
|
|
501
531
|
export const NpgsqlTsVector_Lexeme: {
|
|
502
532
|
new(text: string): NpgsqlTsVector_Lexeme;
|
|
503
|
-
new(text: string, wordEntryPositions:
|
|
533
|
+
new(text: string, wordEntryPositions: List_1<NpgsqlTsVector_Lexeme_WordEntryPos>): NpgsqlTsVector_Lexeme;
|
|
504
534
|
};
|
|
505
535
|
|
|
506
536
|
|
|
507
537
|
export type NpgsqlTsVector_Lexeme = NpgsqlTsVector_Lexeme$instance;
|
|
508
538
|
|
|
509
539
|
export interface NpgsqlTsVector_Lexeme_WordEntryPos$instance {
|
|
540
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsVector_Lexeme_WordEntryPos: never;
|
|
541
|
+
|
|
510
542
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
511
543
|
|
|
512
544
|
readonly Pos: int;
|
|
@@ -526,6 +558,8 @@ export const NpgsqlTsVector_Lexeme_WordEntryPos: {
|
|
|
526
558
|
export type NpgsqlTsVector_Lexeme_WordEntryPos = NpgsqlTsVector_Lexeme_WordEntryPos$instance;
|
|
527
559
|
|
|
528
560
|
export interface NpgsqlRange_1_RangeTypeConverter$instance<T> extends TypeConverter {
|
|
561
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlRange_1_RangeTypeConverter: never;
|
|
562
|
+
|
|
529
563
|
CanConvertFrom(context: ITypeDescriptorContext, sourceType: Type): boolean;
|
|
530
564
|
CanConvertTo(context: ITypeDescriptorContext, destinationType: Type): boolean;
|
|
531
565
|
ConvertFrom(context: ITypeDescriptorContext, culture: CultureInfo, value: unknown): unknown | undefined;
|
|
@@ -542,6 +576,8 @@ export const NpgsqlRange_1_RangeTypeConverter: {
|
|
|
542
576
|
export type NpgsqlRange_1_RangeTypeConverter<T> = NpgsqlRange_1_RangeTypeConverter$instance<T>;
|
|
543
577
|
|
|
544
578
|
export interface NpgsqlTsQuery$instance {
|
|
579
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQuery: never;
|
|
580
|
+
|
|
545
581
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
546
582
|
|
|
547
583
|
readonly Kind: NpgsqlTsQuery_NodeKind;
|
|
@@ -561,6 +597,8 @@ export const NpgsqlTsQuery: (abstract new(kind: NpgsqlTsQuery_NodeKind) => Npgsq
|
|
|
561
597
|
export type NpgsqlTsQuery = NpgsqlTsQuery$instance;
|
|
562
598
|
|
|
563
599
|
export interface NpgsqlTsQueryAnd$instance extends NpgsqlTsQueryBinOp {
|
|
600
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryAnd: never;
|
|
601
|
+
|
|
564
602
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
565
603
|
|
|
566
604
|
Equals(other: NpgsqlTsQuery): boolean;
|
|
@@ -577,6 +615,8 @@ export const NpgsqlTsQueryAnd: {
|
|
|
577
615
|
export type NpgsqlTsQueryAnd = NpgsqlTsQueryAnd$instance;
|
|
578
616
|
|
|
579
617
|
export interface NpgsqlTsQueryBinOp$instance extends NpgsqlTsQuery {
|
|
618
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryBinOp: never;
|
|
619
|
+
|
|
580
620
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
581
621
|
|
|
582
622
|
Left: NpgsqlTsQuery;
|
|
@@ -591,6 +631,8 @@ export const NpgsqlTsQueryBinOp: (abstract new(kind: NpgsqlTsQuery_NodeKind, lef
|
|
|
591
631
|
export type NpgsqlTsQueryBinOp = NpgsqlTsQueryBinOp$instance;
|
|
592
632
|
|
|
593
633
|
export interface NpgsqlTsQueryEmpty$instance extends NpgsqlTsQuery {
|
|
634
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryEmpty: never;
|
|
635
|
+
|
|
594
636
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
595
637
|
|
|
596
638
|
Equals(other: NpgsqlTsQuery): boolean;
|
|
@@ -607,6 +649,8 @@ export const NpgsqlTsQueryEmpty: {
|
|
|
607
649
|
export type NpgsqlTsQueryEmpty = NpgsqlTsQueryEmpty$instance;
|
|
608
650
|
|
|
609
651
|
export interface NpgsqlTsQueryFollowedBy$instance extends NpgsqlTsQueryBinOp {
|
|
652
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryFollowedBy: never;
|
|
653
|
+
|
|
610
654
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
611
655
|
|
|
612
656
|
Distance: short;
|
|
@@ -624,6 +668,8 @@ export const NpgsqlTsQueryFollowedBy: {
|
|
|
624
668
|
export type NpgsqlTsQueryFollowedBy = NpgsqlTsQueryFollowedBy$instance;
|
|
625
669
|
|
|
626
670
|
export interface NpgsqlTsQueryLexeme$instance extends NpgsqlTsQuery {
|
|
671
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryLexeme: never;
|
|
672
|
+
|
|
627
673
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
628
674
|
|
|
629
675
|
IsPrefixSearch: boolean;
|
|
@@ -645,6 +691,8 @@ export const NpgsqlTsQueryLexeme: {
|
|
|
645
691
|
export type NpgsqlTsQueryLexeme = NpgsqlTsQueryLexeme$instance;
|
|
646
692
|
|
|
647
693
|
export interface NpgsqlTsQueryNot$instance extends NpgsqlTsQuery {
|
|
694
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryNot: never;
|
|
695
|
+
|
|
648
696
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
649
697
|
|
|
650
698
|
Child: NpgsqlTsQuery;
|
|
@@ -662,6 +710,8 @@ export const NpgsqlTsQueryNot: {
|
|
|
662
710
|
export type NpgsqlTsQueryNot = NpgsqlTsQueryNot$instance;
|
|
663
711
|
|
|
664
712
|
export interface NpgsqlTsQueryOr$instance extends NpgsqlTsQueryBinOp {
|
|
713
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsQueryOr: never;
|
|
714
|
+
|
|
665
715
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
666
716
|
|
|
667
717
|
Equals(other: NpgsqlTsQuery): boolean;
|
|
@@ -678,6 +728,8 @@ export const NpgsqlTsQueryOr: {
|
|
|
678
728
|
export type NpgsqlTsQueryOr = NpgsqlTsQueryOr$instance;
|
|
679
729
|
|
|
680
730
|
export interface NpgsqlTsVector$instance {
|
|
731
|
+
readonly __tsonic_type_NpgsqlTypes_NpgsqlTsVector: never;
|
|
732
|
+
|
|
681
733
|
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
682
734
|
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
683
735
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
@@ -686,7 +738,7 @@ export interface NpgsqlTsVector$instance {
|
|
|
686
738
|
readonly [index: number]: NpgsqlTsVector_Lexeme;
|
|
687
739
|
Equals(other: NpgsqlTsVector): boolean;
|
|
688
740
|
Equals(obj: unknown): boolean;
|
|
689
|
-
GetEnumerator():
|
|
741
|
+
GetEnumerator(): IEnumerator_1<NpgsqlTsVector_Lexeme>;
|
|
690
742
|
GetHashCode(): int;
|
|
691
743
|
ToString(): string;
|
|
692
744
|
}
|
|
@@ -701,6 +753,8 @@ export const NpgsqlTsVector: {
|
|
|
701
753
|
export type NpgsqlTsVector = NpgsqlTsVector$instance;
|
|
702
754
|
|
|
703
755
|
export interface PgNameAttribute$instance extends Attribute {
|
|
756
|
+
readonly __tsonic_type_NpgsqlTypes_PgNameAttribute: never;
|
|
757
|
+
|
|
704
758
|
readonly PgName: string;
|
|
705
759
|
}
|
|
706
760
|
|