@tsonic/efcore-npgsql 10.0.27 → 10.0.32
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/Npgsql/internal/index.d.ts +2 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata/internal/index.d.ts +2 -1
- package/Npgsql.EntityFrameworkCore.PostgreSQL.Metadata.Internal/internal/index.d.ts +6 -3
- package/Npgsql.Internal/internal/index.d.ts +2 -1
- package/Npgsql.Replication.PgOutput.Messages/internal/index.d.ts +2 -1
- package/Npgsql.Schema/internal/index.d.ts +28 -14
- package/__internal/extensions/index.d.ts +2 -3
- package/package.json +5 -5
|
@@ -185,7 +185,8 @@ export type NpgsqlBatch = NpgsqlBatch$instance;
|
|
|
185
185
|
export interface NpgsqlBatchCommand$instance extends DbBatchCommand {
|
|
186
186
|
readonly __tsonic_type_Npgsql_NpgsqlBatchCommand: never;
|
|
187
187
|
|
|
188
|
-
AppendErrorBarrier: Nullable_1<System_Internal.Boolean>;
|
|
188
|
+
get AppendErrorBarrier(): Nullable_1<System_Internal.Boolean>;
|
|
189
|
+
set AppendErrorBarrier(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
189
190
|
readonly CanCreateParameter: boolean;
|
|
190
191
|
CommandText: string;
|
|
191
192
|
CommandType: CommandType;
|
|
@@ -57,7 +57,8 @@ export interface PostgresCollation$instance {
|
|
|
57
57
|
readonly __tsonic_type_Npgsql_EntityFrameworkCore_PostgreSQL_Metadata_PostgresCollation: never;
|
|
58
58
|
|
|
59
59
|
readonly Annotatable: Annotatable;
|
|
60
|
-
IsDeterministic: Nullable_1<System_Internal.Boolean>;
|
|
60
|
+
get IsDeterministic(): Nullable_1<System_Internal.Boolean>;
|
|
61
|
+
set IsDeterministic(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
61
62
|
LcCollate: string;
|
|
62
63
|
LcCtype: string;
|
|
63
64
|
readonly Name: string;
|
|
@@ -20,10 +20,13 @@ export interface IdentitySequenceOptionsData$instance {
|
|
|
20
20
|
|
|
21
21
|
IncrementBy: long;
|
|
22
22
|
IsCyclic: boolean;
|
|
23
|
-
MaxValue: Nullable_1<System_Internal.Int64>;
|
|
24
|
-
|
|
23
|
+
get MaxValue(): Nullable_1<System_Internal.Int64>;
|
|
24
|
+
set MaxValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
25
|
+
get MinValue(): Nullable_1<System_Internal.Int64>;
|
|
26
|
+
set MinValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
25
27
|
NumbersToCache: long;
|
|
26
|
-
StartValue: Nullable_1<System_Internal.Int64>;
|
|
28
|
+
get StartValue(): Nullable_1<System_Internal.Int64>;
|
|
29
|
+
set StartValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
27
30
|
Equals(other: IdentitySequenceOptionsData): boolean;
|
|
28
31
|
Equals(obj: unknown): boolean;
|
|
29
32
|
GetHashCode(): int;
|
|
@@ -519,7 +519,8 @@ export interface PgTypeInfo$instance {
|
|
|
519
519
|
|
|
520
520
|
readonly Options: PgSerializerOptions;
|
|
521
521
|
readonly PgTypeId: Nullable_1<PgTypeId>;
|
|
522
|
-
PreferredFormat: Nullable_1<DataFormat>;
|
|
522
|
+
get PreferredFormat(): Nullable_1<DataFormat>;
|
|
523
|
+
set PreferredFormat(value: Nullable_1<DataFormat> | DataFormat);
|
|
523
524
|
SupportsReading: boolean;
|
|
524
525
|
SupportsWriting: boolean;
|
|
525
526
|
readonly Type: Type;
|
|
@@ -449,7 +449,8 @@ export type StreamStopMessage = StreamStopMessage$instance;
|
|
|
449
449
|
export interface TransactionalMessage$instance extends PgOutputReplicationMessage {
|
|
450
450
|
readonly __tsonic_type_Npgsql_Replication_PgOutput_Messages_TransactionalMessage: never;
|
|
451
451
|
|
|
452
|
-
TransactionXid: Nullable_1<System_Internal.UInt32>;
|
|
452
|
+
get TransactionXid(): Nullable_1<System_Internal.UInt32>;
|
|
453
|
+
set TransactionXid(value: Nullable_1<System_Internal.UInt32> | uint);
|
|
453
454
|
}
|
|
454
455
|
|
|
455
456
|
|
|
@@ -16,7 +16,8 @@ import type { Boolean as ClrBoolean, Int16, Int32, Nullable_1, Object as ClrObje
|
|
|
16
16
|
export interface NpgsqlDbColumn$instance extends DbColumn {
|
|
17
17
|
readonly __tsonic_type_Npgsql_Schema_NpgsqlDbColumn: never;
|
|
18
18
|
|
|
19
|
-
AllowDBNull: Nullable_1<System_Internal.Boolean>;
|
|
19
|
+
get AllowDBNull(): Nullable_1<System_Internal.Boolean>;
|
|
20
|
+
set AllowDBNull(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
20
21
|
BaseCatalogName: string;
|
|
21
22
|
get BaseColumnName(): string | undefined;
|
|
22
23
|
set BaseColumnName(value: string | undefined);
|
|
@@ -25,25 +26,38 @@ export interface NpgsqlDbColumn$instance extends DbColumn {
|
|
|
25
26
|
BaseServerName: string;
|
|
26
27
|
get BaseTableName(): string | undefined;
|
|
27
28
|
set BaseTableName(value: string | undefined);
|
|
28
|
-
ColumnAttributeNumber: Nullable_1<System_Internal.Int16>;
|
|
29
|
+
get ColumnAttributeNumber(): Nullable_1<System_Internal.Int16>;
|
|
30
|
+
set ColumnAttributeNumber(value: Nullable_1<System_Internal.Int16> | short);
|
|
29
31
|
ColumnName: string;
|
|
30
|
-
ColumnOrdinal: Nullable_1<System_Internal.Int32>;
|
|
31
|
-
|
|
32
|
+
get ColumnOrdinal(): Nullable_1<System_Internal.Int32>;
|
|
33
|
+
set ColumnOrdinal(value: Nullable_1<System_Internal.Int32> | int);
|
|
34
|
+
get ColumnSize(): Nullable_1<System_Internal.Int32>;
|
|
35
|
+
set ColumnSize(value: Nullable_1<System_Internal.Int32> | int);
|
|
32
36
|
get DataType(): Type | undefined;
|
|
33
37
|
set DataType(value: Type | undefined);
|
|
34
38
|
DataTypeName: string;
|
|
35
39
|
get DefaultValue(): string | undefined;
|
|
36
40
|
set DefaultValue(value: string | undefined);
|
|
37
|
-
IsAliased: Nullable_1<System_Internal.Boolean>;
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
41
|
+
get IsAliased(): Nullable_1<System_Internal.Boolean>;
|
|
42
|
+
set IsAliased(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
43
|
+
get IsAutoIncrement(): Nullable_1<System_Internal.Boolean>;
|
|
44
|
+
set IsAutoIncrement(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
45
|
+
get IsIdentity(): Nullable_1<System_Internal.Boolean>;
|
|
46
|
+
set IsIdentity(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
47
|
+
get IsKey(): Nullable_1<System_Internal.Boolean>;
|
|
48
|
+
set IsKey(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
49
|
+
get IsLong(): Nullable_1<System_Internal.Boolean>;
|
|
50
|
+
set IsLong(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
51
|
+
get IsReadOnly(): Nullable_1<System_Internal.Boolean>;
|
|
52
|
+
set IsReadOnly(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
53
|
+
get IsUnique(): Nullable_1<System_Internal.Boolean>;
|
|
54
|
+
set IsUnique(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
55
|
+
get NpgsqlDbType(): Nullable_1<NpgsqlDbType>;
|
|
56
|
+
set NpgsqlDbType(value: Nullable_1<NpgsqlDbType> | NpgsqlDbType);
|
|
57
|
+
get NumericPrecision(): Nullable_1<System_Internal.Int32>;
|
|
58
|
+
set NumericPrecision(value: Nullable_1<System_Internal.Int32> | int);
|
|
59
|
+
get NumericScale(): Nullable_1<System_Internal.Int32>;
|
|
60
|
+
set NumericScale(value: Nullable_1<System_Internal.Int32> | int);
|
|
47
61
|
PostgresType: PostgresType;
|
|
48
62
|
TableOID: uint;
|
|
49
63
|
TypeOID: uint;
|
|
@@ -791,14 +791,13 @@ export interface __Ext_Npgsql_Replication_Internal_LogicalReplicationConnection
|
|
|
791
791
|
|
|
792
792
|
// Internal helper types for sticky extension scopes
|
|
793
793
|
type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
|
|
794
|
-
type __TsonicMergeExtMaps<A, B> =
|
|
794
|
+
type __TsonicMergeExtMaps<A, B> = A & B;
|
|
795
795
|
type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
|
|
796
|
-
type __TsonicPreferExt<A, B> = Omit<A, keyof B> & B;
|
|
797
796
|
|
|
798
797
|
// Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
|
|
799
798
|
type __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape> =
|
|
800
799
|
(
|
|
801
|
-
(TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) & (TShape extends Microsoft_EntityFrameworkCore.ModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_ModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? __Ext_Microsoft_EntityFrameworkCore_IConventionModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IConventionRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_IEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? __Ext_Microsoft_EntityFrameworkCore_IIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? __Ext_Microsoft_EntityFrameworkCore_IMutableIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_IMutableModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IMutableRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_IProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Migrations.MigrationBuilder ? __Ext_Microsoft_EntityFrameworkCore_MigrationBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Migrations_Operations.AlterDatabaseOperation ? __Ext_Microsoft_EntityFrameworkCore_AlterDatabaseOperation : {}) & (TShape extends Microsoft_EntityFrameworkCore_Scaffolding_Metadata.DatabaseModel ? __Ext_Microsoft_EntityFrameworkCore_DatabaseModel : {}) & (TShape extends NpgsqlTypes.NpgsqlCube ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlCube : {}) & (TShape extends NpgsqlTypes.NpgsqlRange_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlRange_1<T0> : {}) & (TShape extends NpgsqlTypes.NpgsqlTsQuery ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlTsQuery : {}) & (TShape extends
|
|
800
|
+
(TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) & (TShape extends Microsoft_EntityFrameworkCore.ModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_ModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? __Ext_Microsoft_EntityFrameworkCore_IConventionModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IConventionRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_IEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? __Ext_Microsoft_EntityFrameworkCore_IIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? __Ext_Microsoft_EntityFrameworkCore_IMutableIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_IMutableModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IMutableRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_IProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Migrations.MigrationBuilder ? __Ext_Microsoft_EntityFrameworkCore_MigrationBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Migrations_Operations.AlterDatabaseOperation ? __Ext_Microsoft_EntityFrameworkCore_AlterDatabaseOperation : {}) & (TShape extends Microsoft_EntityFrameworkCore_Scaffolding_Metadata.DatabaseModel ? __Ext_Microsoft_EntityFrameworkCore_DatabaseModel : {}) & (TShape extends NpgsqlTypes.NpgsqlCube ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlCube : {}) & (TShape extends NpgsqlTypes.NpgsqlRange_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlRange_1<T0> : {}) & (TShape extends NpgsqlTypes.NpgsqlTsQuery ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlTsQuery : {}) & (TShape extends NpgsqlTypes.NpgsqlTsVector ? __Ext_Microsoft_EntityFrameworkCore_NpgsqlTsVector : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T0> : {}) & (TShape extends System_Collections_Generic.List_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_List_1<T0> : {}) & (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> : {})
|
|
802
801
|
);
|
|
803
802
|
|
|
804
803
|
interface __TsonicExtApplier_Microsoft_EntityFrameworkCore {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/efcore-npgsql",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.32",
|
|
4
4
|
"description": "TypeScript type definitions for Npgsql.EntityFrameworkCore.PostgreSQL (+ dependencies) for .NET 10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -20,9 +20,9 @@
|
|
|
20
20
|
"url": "https://github.com/tsoniclang/efcore-npgsql.git"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
|
-
"@tsonic/core": "10.0.
|
|
24
|
-
"@tsonic/dotnet": "10.0.
|
|
25
|
-
"@tsonic/microsoft-extensions": "10.0.
|
|
26
|
-
"@tsonic/efcore": "10.0.
|
|
23
|
+
"@tsonic/core": "10.0.32",
|
|
24
|
+
"@tsonic/dotnet": "10.0.32",
|
|
25
|
+
"@tsonic/microsoft-extensions": "10.0.32",
|
|
26
|
+
"@tsonic/efcore": "10.0.32"
|
|
27
27
|
}
|
|
28
28
|
}
|