@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
|
@@ -129,6 +129,8 @@ export enum NpgsqlTsVector_Lexeme_Weight {
|
|
|
129
129
|
|
|
130
130
|
|
|
131
131
|
export interface NpgsqlBox$instance {
|
|
132
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
133
|
+
|
|
132
134
|
readonly Bottom: double;
|
|
133
135
|
readonly Height: double;
|
|
134
136
|
readonly IsEmpty: boolean;
|
|
@@ -157,6 +159,8 @@ export const NpgsqlBox: {
|
|
|
157
159
|
export type NpgsqlBox = NpgsqlBox$instance;
|
|
158
160
|
|
|
159
161
|
export interface NpgsqlCidr$instance {
|
|
162
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
163
|
+
|
|
160
164
|
readonly Address: IPAddress;
|
|
161
165
|
readonly Netmask: byte;
|
|
162
166
|
Deconstruct(address: IPAddress, netmask: byte): void;
|
|
@@ -176,6 +180,8 @@ export const NpgsqlCidr: {
|
|
|
176
180
|
export type NpgsqlCidr = NpgsqlCidr$instance;
|
|
177
181
|
|
|
178
182
|
export interface NpgsqlCircle$instance {
|
|
183
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
184
|
+
|
|
179
185
|
Center: NpgsqlPoint;
|
|
180
186
|
Radius: double;
|
|
181
187
|
X: double;
|
|
@@ -198,6 +204,8 @@ export const NpgsqlCircle: {
|
|
|
198
204
|
export type NpgsqlCircle = NpgsqlCircle$instance;
|
|
199
205
|
|
|
200
206
|
export interface NpgsqlCube$instance {
|
|
207
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
208
|
+
|
|
201
209
|
readonly Dimensions: int;
|
|
202
210
|
readonly IsPoint: boolean;
|
|
203
211
|
readonly LowerLeft: IReadOnlyList<System_Internal.Double>;
|
|
@@ -223,6 +231,8 @@ export const NpgsqlCube: {
|
|
|
223
231
|
export type NpgsqlCube = NpgsqlCube$instance;
|
|
224
232
|
|
|
225
233
|
export interface NpgsqlInet$instance {
|
|
234
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
235
|
+
|
|
226
236
|
readonly Address: IPAddress;
|
|
227
237
|
readonly Netmask: byte;
|
|
228
238
|
Deconstruct(address: IPAddress, netmask: byte): void;
|
|
@@ -243,6 +253,8 @@ export const NpgsqlInet: {
|
|
|
243
253
|
export type NpgsqlInet = NpgsqlInet$instance;
|
|
244
254
|
|
|
245
255
|
export interface NpgsqlInterval$instance {
|
|
256
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
257
|
+
|
|
246
258
|
readonly Days: int;
|
|
247
259
|
readonly Months: int;
|
|
248
260
|
readonly Time: long;
|
|
@@ -260,6 +272,8 @@ export const NpgsqlInterval: {
|
|
|
260
272
|
export type NpgsqlInterval = NpgsqlInterval$instance;
|
|
261
273
|
|
|
262
274
|
export interface NpgsqlLine$instance {
|
|
275
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
276
|
+
|
|
263
277
|
A: double;
|
|
264
278
|
B: double;
|
|
265
279
|
C: double;
|
|
@@ -279,6 +293,9 @@ export const NpgsqlLine: {
|
|
|
279
293
|
export type NpgsqlLine = NpgsqlLine$instance;
|
|
280
294
|
|
|
281
295
|
export interface NpgsqlLogSequenceNumber$instance {
|
|
296
|
+
readonly __tsonic_iface_System_IComparable_1: never;
|
|
297
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
298
|
+
|
|
282
299
|
CompareTo(value: NpgsqlLogSequenceNumber): int;
|
|
283
300
|
Equals(other: NpgsqlLogSequenceNumber): boolean;
|
|
284
301
|
Equals(obj: unknown): boolean;
|
|
@@ -302,6 +319,8 @@ export const NpgsqlLogSequenceNumber: {
|
|
|
302
319
|
export type NpgsqlLogSequenceNumber = NpgsqlLogSequenceNumber$instance;
|
|
303
320
|
|
|
304
321
|
export interface NpgsqlLSeg$instance {
|
|
322
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
323
|
+
|
|
305
324
|
End: NpgsqlPoint;
|
|
306
325
|
Start: NpgsqlPoint;
|
|
307
326
|
Deconstruct(start: NpgsqlPoint, end: NpgsqlPoint): void;
|
|
@@ -321,10 +340,16 @@ export const NpgsqlLSeg: {
|
|
|
321
340
|
export type NpgsqlLSeg = NpgsqlLSeg$instance;
|
|
322
341
|
|
|
323
342
|
export interface NpgsqlPath$instance {
|
|
343
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
344
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
345
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
346
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
347
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
348
|
+
|
|
324
349
|
readonly Capacity: int;
|
|
325
350
|
readonly Count: int;
|
|
326
351
|
readonly IsReadOnly: boolean;
|
|
327
|
-
|
|
352
|
+
[index: number]: NpgsqlPoint;
|
|
328
353
|
Open: boolean;
|
|
329
354
|
Add(item: NpgsqlPoint): void;
|
|
330
355
|
Clear(): void;
|
|
@@ -356,6 +381,8 @@ export const NpgsqlPath: {
|
|
|
356
381
|
export type NpgsqlPath = NpgsqlPath$instance;
|
|
357
382
|
|
|
358
383
|
export interface NpgsqlPoint$instance {
|
|
384
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
385
|
+
|
|
359
386
|
X: double;
|
|
360
387
|
Y: double;
|
|
361
388
|
Deconstruct(x: double, y: double): void;
|
|
@@ -374,10 +401,16 @@ export const NpgsqlPoint: {
|
|
|
374
401
|
export type NpgsqlPoint = NpgsqlPoint$instance;
|
|
375
402
|
|
|
376
403
|
export interface NpgsqlPolygon$instance {
|
|
404
|
+
readonly __tsonic_iface_System_Collections_Generic_ICollection_1: never;
|
|
405
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
406
|
+
readonly __tsonic_iface_System_Collections_Generic_IList_1: never;
|
|
407
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
408
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
409
|
+
|
|
377
410
|
readonly Capacity: int;
|
|
378
411
|
readonly Count: int;
|
|
379
412
|
readonly IsReadOnly: boolean;
|
|
380
|
-
|
|
413
|
+
[index: number]: NpgsqlPoint;
|
|
381
414
|
Add(item: NpgsqlPoint): void;
|
|
382
415
|
Clear(): void;
|
|
383
416
|
Contains(item: NpgsqlPoint): boolean;
|
|
@@ -405,6 +438,8 @@ export const NpgsqlPolygon: {
|
|
|
405
438
|
export type NpgsqlPolygon = NpgsqlPolygon$instance;
|
|
406
439
|
|
|
407
440
|
export interface NpgsqlRange_1$instance<T> {
|
|
441
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
442
|
+
|
|
408
443
|
readonly IsEmpty: boolean;
|
|
409
444
|
readonly LowerBound: T;
|
|
410
445
|
readonly LowerBoundInfinite: boolean;
|
|
@@ -431,6 +466,8 @@ export const NpgsqlRange_1: {
|
|
|
431
466
|
export type NpgsqlRange_1<T> = NpgsqlRange_1$instance<T>;
|
|
432
467
|
|
|
433
468
|
export interface NpgsqlTid$instance {
|
|
469
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
470
|
+
|
|
434
471
|
readonly BlockNumber: uint;
|
|
435
472
|
readonly OffsetNumber: ushort;
|
|
436
473
|
Deconstruct(blockNumber: uint, offsetNumber: ushort): void;
|
|
@@ -449,8 +486,10 @@ export const NpgsqlTid: {
|
|
|
449
486
|
export type NpgsqlTid = NpgsqlTid$instance;
|
|
450
487
|
|
|
451
488
|
export interface NpgsqlTsVector_Lexeme$instance {
|
|
489
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
490
|
+
|
|
452
491
|
readonly Count: int;
|
|
453
|
-
|
|
492
|
+
[index: number]: NpgsqlTsVector_Lexeme_WordEntryPos;
|
|
454
493
|
Text: string;
|
|
455
494
|
Equals(o: NpgsqlTsVector_Lexeme): boolean;
|
|
456
495
|
Equals(o: unknown): boolean;
|
|
@@ -468,6 +507,8 @@ export const NpgsqlTsVector_Lexeme: {
|
|
|
468
507
|
export type NpgsqlTsVector_Lexeme = NpgsqlTsVector_Lexeme$instance;
|
|
469
508
|
|
|
470
509
|
export interface NpgsqlTsVector_Lexeme_WordEntryPos$instance {
|
|
510
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
511
|
+
|
|
471
512
|
readonly Pos: int;
|
|
472
513
|
readonly Weight: NpgsqlTsVector_Lexeme_Weight;
|
|
473
514
|
Equals(o: NpgsqlTsVector_Lexeme_WordEntryPos): boolean;
|
|
@@ -501,6 +542,8 @@ export const NpgsqlRange_1_RangeTypeConverter: {
|
|
|
501
542
|
export type NpgsqlRange_1_RangeTypeConverter<T> = NpgsqlRange_1_RangeTypeConverter$instance<T>;
|
|
502
543
|
|
|
503
544
|
export interface NpgsqlTsQuery$instance {
|
|
545
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
546
|
+
|
|
504
547
|
readonly Kind: NpgsqlTsQuery_NodeKind;
|
|
505
548
|
Equals(obj: unknown): boolean;
|
|
506
549
|
Equals(other: NpgsqlTsQuery): boolean;
|
|
@@ -510,7 +553,7 @@ export interface NpgsqlTsQuery$instance {
|
|
|
510
553
|
}
|
|
511
554
|
|
|
512
555
|
|
|
513
|
-
export const NpgsqlTsQuery: {
|
|
556
|
+
export const NpgsqlTsQuery: (abstract new(kind: NpgsqlTsQuery_NodeKind) => NpgsqlTsQuery) & {
|
|
514
557
|
Parse(value: string): NpgsqlTsQuery;
|
|
515
558
|
};
|
|
516
559
|
|
|
@@ -518,6 +561,8 @@ export const NpgsqlTsQuery: {
|
|
|
518
561
|
export type NpgsqlTsQuery = NpgsqlTsQuery$instance;
|
|
519
562
|
|
|
520
563
|
export interface NpgsqlTsQueryAnd$instance extends NpgsqlTsQueryBinOp {
|
|
564
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
565
|
+
|
|
521
566
|
Equals(other: NpgsqlTsQuery): boolean;
|
|
522
567
|
Equals(obj: unknown): boolean;
|
|
523
568
|
GetHashCode(): int;
|
|
@@ -532,18 +577,22 @@ export const NpgsqlTsQueryAnd: {
|
|
|
532
577
|
export type NpgsqlTsQueryAnd = NpgsqlTsQueryAnd$instance;
|
|
533
578
|
|
|
534
579
|
export interface NpgsqlTsQueryBinOp$instance extends NpgsqlTsQuery {
|
|
580
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
581
|
+
|
|
535
582
|
Left: NpgsqlTsQuery;
|
|
536
583
|
Right: NpgsqlTsQuery;
|
|
537
584
|
}
|
|
538
585
|
|
|
539
586
|
|
|
540
|
-
export const NpgsqlTsQueryBinOp: {
|
|
587
|
+
export const NpgsqlTsQueryBinOp: (abstract new(kind: NpgsqlTsQuery_NodeKind, left: NpgsqlTsQuery, right: NpgsqlTsQuery) => NpgsqlTsQueryBinOp) & {
|
|
541
588
|
};
|
|
542
589
|
|
|
543
590
|
|
|
544
591
|
export type NpgsqlTsQueryBinOp = NpgsqlTsQueryBinOp$instance;
|
|
545
592
|
|
|
546
593
|
export interface NpgsqlTsQueryEmpty$instance extends NpgsqlTsQuery {
|
|
594
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
595
|
+
|
|
547
596
|
Equals(other: NpgsqlTsQuery): boolean;
|
|
548
597
|
Equals(obj: unknown): boolean;
|
|
549
598
|
GetHashCode(): int;
|
|
@@ -558,6 +607,8 @@ export const NpgsqlTsQueryEmpty: {
|
|
|
558
607
|
export type NpgsqlTsQueryEmpty = NpgsqlTsQueryEmpty$instance;
|
|
559
608
|
|
|
560
609
|
export interface NpgsqlTsQueryFollowedBy$instance extends NpgsqlTsQueryBinOp {
|
|
610
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
611
|
+
|
|
561
612
|
Distance: short;
|
|
562
613
|
Equals(other: NpgsqlTsQuery): boolean;
|
|
563
614
|
Equals(obj: unknown): boolean;
|
|
@@ -573,6 +624,8 @@ export const NpgsqlTsQueryFollowedBy: {
|
|
|
573
624
|
export type NpgsqlTsQueryFollowedBy = NpgsqlTsQueryFollowedBy$instance;
|
|
574
625
|
|
|
575
626
|
export interface NpgsqlTsQueryLexeme$instance extends NpgsqlTsQuery {
|
|
627
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
628
|
+
|
|
576
629
|
IsPrefixSearch: boolean;
|
|
577
630
|
Text: string;
|
|
578
631
|
Weights: NpgsqlTsQueryLexeme_Weight;
|
|
@@ -592,6 +645,8 @@ export const NpgsqlTsQueryLexeme: {
|
|
|
592
645
|
export type NpgsqlTsQueryLexeme = NpgsqlTsQueryLexeme$instance;
|
|
593
646
|
|
|
594
647
|
export interface NpgsqlTsQueryNot$instance extends NpgsqlTsQuery {
|
|
648
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
649
|
+
|
|
595
650
|
Child: NpgsqlTsQuery;
|
|
596
651
|
Equals(other: NpgsqlTsQuery): boolean;
|
|
597
652
|
Equals(obj: unknown): boolean;
|
|
@@ -607,6 +662,8 @@ export const NpgsqlTsQueryNot: {
|
|
|
607
662
|
export type NpgsqlTsQueryNot = NpgsqlTsQueryNot$instance;
|
|
608
663
|
|
|
609
664
|
export interface NpgsqlTsQueryOr$instance extends NpgsqlTsQueryBinOp {
|
|
665
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
666
|
+
|
|
610
667
|
Equals(other: NpgsqlTsQuery): boolean;
|
|
611
668
|
Equals(obj: unknown): boolean;
|
|
612
669
|
GetHashCode(): int;
|
|
@@ -621,8 +678,12 @@ export const NpgsqlTsQueryOr: {
|
|
|
621
678
|
export type NpgsqlTsQueryOr = NpgsqlTsQueryOr$instance;
|
|
622
679
|
|
|
623
680
|
export interface NpgsqlTsVector$instance {
|
|
681
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
682
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
683
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
684
|
+
|
|
624
685
|
readonly Count: int;
|
|
625
|
-
readonly
|
|
686
|
+
readonly [index: number]: NpgsqlTsVector_Lexeme;
|
|
626
687
|
Equals(other: NpgsqlTsVector): boolean;
|
|
627
688
|
Equals(obj: unknown): boolean;
|
|
628
689
|
GetEnumerator(): IEnumerator<NpgsqlTsVector_Lexeme>;
|
|
@@ -632,7 +693,6 @@ export interface NpgsqlTsVector$instance {
|
|
|
632
693
|
|
|
633
694
|
|
|
634
695
|
export const NpgsqlTsVector: {
|
|
635
|
-
new(): NpgsqlTsVector;
|
|
636
696
|
readonly Empty: NpgsqlTsVector;
|
|
637
697
|
Parse(value: string): NpgsqlTsVector;
|
|
638
698
|
};
|