@tsonic/efcore 10.0.26 → 10.0.31

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.
@@ -190,7 +190,7 @@ export interface CollectionEntry$instance extends NavigationEntry$instance, Micr
190
190
 
191
191
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
192
192
 
193
- CurrentValue: IEnumerable | unknown;
193
+ CurrentValue: unknown;
194
194
  IsModified: boolean;
195
195
  FindEntry(entity: unknown): EntityEntry | undefined;
196
196
  GetInternalTargetEntry(entity: unknown): InternalEntityEntry | undefined;
@@ -845,11 +845,11 @@ export interface MemberEntry$instance extends Microsoft_EntityFrameworkCore_Infr
845
845
 
846
846
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
847
847
 
848
- CurrentValue: IEnumerable | unknown;
848
+ CurrentValue: unknown;
849
849
  readonly EntityEntry: EntityEntry;
850
850
  readonly InternalEntry: IInternalEntry;
851
851
  IsModified: boolean;
852
- readonly Metadata: INavigationBase | IPropertyBase;
852
+ readonly Metadata: IProperty | IPropertyBase;
853
853
  Equals(obj: unknown): boolean;
854
854
  GetHashCode(): int;
855
855
  ToString(): string | undefined;
@@ -2346,7 +2346,8 @@ export interface IMutableEntityTypeMappingFragment$instance extends IReadOnlyEnt
2346
2346
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableEntityTypeMappingFragment: never;
2347
2347
 
2348
2348
  readonly EntityType: IMutableEntityType;
2349
- IsTableExcludedFromMigrations: Nullable_1<System_Internal.Boolean>;
2349
+ get IsTableExcludedFromMigrations(): Nullable_1<System_Internal.Boolean>;
2350
+ set IsTableExcludedFromMigrations(value: Nullable_1<System_Internal.Boolean> | boolean);
2350
2351
  readonly StoreObject: StoreObjectIdentifier;
2351
2352
  AddAnnotation(name: string, value: unknown): IAnnotation;
2352
2353
  AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
@@ -2675,8 +2676,10 @@ export interface IMutableSequence$instance extends IReadOnlySequence, IReadOnlyA
2675
2676
  readonly Model: IMutableModel;
2676
2677
  StartValue: long;
2677
2678
  IncrementBy: int;
2678
- MinValue: Nullable_1<System_Internal.Int64>;
2679
- MaxValue: Nullable_1<System_Internal.Int64>;
2679
+ get MinValue(): Nullable_1<System_Internal.Int64>;
2680
+ set MinValue(value: Nullable_1<System_Internal.Int64> | long);
2681
+ get MaxValue(): Nullable_1<System_Internal.Int64>;
2682
+ set MaxValue(value: Nullable_1<System_Internal.Int64> | long);
2680
2683
  Type: Type;
2681
2684
  IsCyclic: boolean;
2682
2685
  readonly Name: string;
@@ -2134,7 +2134,8 @@ export interface EntityTypeMappingFragment$instance extends ConventionAnnotatabl
2134
2134
  readonly EntityType: IReadOnlyEntityType;
2135
2135
  readonly IsInModel: boolean;
2136
2136
  readonly IsReadOnly: boolean;
2137
- IsTableExcludedFromMigrations: Nullable_1<System_Internal.Boolean>;
2137
+ get IsTableExcludedFromMigrations(): Nullable_1<System_Internal.Boolean>;
2138
+ set IsTableExcludedFromMigrations(value: Nullable_1<System_Internal.Boolean> | boolean);
2138
2139
  readonly StoreObject: StoreObjectIdentifier;
2139
2140
  GetConfigurationSource(): ConfigurationSource;
2140
2141
  GetIsTableExcludedFromMigrationsConfigurationSource(): Nullable_1<ConfigurationSource>;
@@ -4309,7 +4310,8 @@ export interface QueryFilter$instance extends Microsoft_EntityFrameworkCore_Meta
4309
4310
 
4310
4311
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IQueryFilter: never;
4311
4312
 
4312
- ConfigurationSource: Nullable_1<ConfigurationSource>;
4313
+ get ConfigurationSource(): Nullable_1<ConfigurationSource>;
4314
+ set ConfigurationSource(value: Nullable_1<ConfigurationSource> | ConfigurationSource);
4313
4315
  readonly Expression: LambdaExpression;
4314
4316
  readonly Key: string | undefined;
4315
4317
  }
@@ -4605,8 +4607,10 @@ export interface Sequence$instance extends ConventionAnnotatable {
4605
4607
  IsCyclic: boolean;
4606
4608
  readonly IsInModel: boolean;
4607
4609
  readonly IsReadOnly: boolean;
4608
- MaxValue: Nullable_1<System_Internal.Int64>;
4609
- MinValue: Nullable_1<System_Internal.Int64>;
4610
+ get MaxValue(): Nullable_1<System_Internal.Int64>;
4611
+ set MaxValue(value: Nullable_1<System_Internal.Int64> | long);
4612
+ get MinValue(): Nullable_1<System_Internal.Int64>;
4613
+ set MinValue(value: Nullable_1<System_Internal.Int64> | long);
4610
4614
  readonly Model: IReadOnlyModel;
4611
4615
  readonly ModelSchema: string | undefined;
4612
4616
  Name: string;
@@ -5648,8 +5652,10 @@ export interface TableMappingBase_1$instance<TColumnMapping extends IColumnMappi
5648
5652
  readonly ColumnMappings: List_1<TColumnMapping>;
5649
5653
  readonly IncludesDerivedTypes: Nullable_1<System_Internal.Boolean>;
5650
5654
  readonly IsReadOnly: boolean;
5651
- IsSharedTablePrincipal: Nullable_1<System_Internal.Boolean>;
5652
- IsSplitEntityTypePrincipal: Nullable_1<System_Internal.Boolean>;
5655
+ get IsSharedTablePrincipal(): Nullable_1<System_Internal.Boolean>;
5656
+ set IsSharedTablePrincipal(value: Nullable_1<System_Internal.Boolean> | boolean);
5657
+ get IsSplitEntityTypePrincipal(): Nullable_1<System_Internal.Boolean>;
5658
+ set IsSplitEntityTypePrincipal(value: Nullable_1<System_Internal.Boolean> | boolean);
5653
5659
  readonly Table: ITable | TableBase;
5654
5660
  readonly TypeBase: ITypeBase;
5655
5661
  AddColumnMapping(columnMapping: TColumnMapping): boolean;
@@ -331,15 +331,21 @@ export interface ColumnOperation$instance extends MigrationOperation$instance {
331
331
  set DefaultValue(value: unknown | undefined);
332
332
  get DefaultValueSql(): string | undefined;
333
333
  set DefaultValueSql(value: string | undefined);
334
- IsFixedLength: Nullable_1<System_Internal.Boolean>;
334
+ get IsFixedLength(): Nullable_1<System_Internal.Boolean>;
335
+ set IsFixedLength(value: Nullable_1<System_Internal.Boolean> | boolean);
335
336
  IsNullable: boolean;
336
337
  IsRowVersion: boolean;
337
- IsStored: Nullable_1<System_Internal.Boolean>;
338
- IsUnicode: Nullable_1<System_Internal.Boolean>;
339
- MaxLength: Nullable_1<System_Internal.Int32>;
338
+ get IsStored(): Nullable_1<System_Internal.Boolean>;
339
+ set IsStored(value: Nullable_1<System_Internal.Boolean> | boolean);
340
+ get IsUnicode(): Nullable_1<System_Internal.Boolean>;
341
+ set IsUnicode(value: Nullable_1<System_Internal.Boolean> | boolean);
342
+ get MaxLength(): Nullable_1<System_Internal.Int32>;
343
+ set MaxLength(value: Nullable_1<System_Internal.Int32> | int);
340
344
  Name: string;
341
- Precision: Nullable_1<System_Internal.Int32>;
342
- Scale: Nullable_1<System_Internal.Int32>;
345
+ get Precision(): Nullable_1<System_Internal.Int32>;
346
+ set Precision(value: Nullable_1<System_Internal.Int32> | int);
347
+ get Scale(): Nullable_1<System_Internal.Int32>;
348
+ set Scale(value: Nullable_1<System_Internal.Int32> | int);
343
349
  get Schema(): string | undefined;
344
350
  set Schema(value: string | undefined);
345
351
  Table: string;
@@ -993,7 +999,8 @@ export interface RestartSequenceOperation$instance extends MigrationOperation$in
993
999
  Name: string;
994
1000
  get Schema(): string | undefined;
995
1001
  set Schema(value: string | undefined);
996
- StartValue: Nullable_1<System_Internal.Int64>;
1002
+ get StartValue(): Nullable_1<System_Internal.Int64>;
1003
+ set StartValue(value: Nullable_1<System_Internal.Int64> | long);
997
1004
  }
998
1005
 
999
1006
 
@@ -1020,8 +1027,10 @@ export interface SequenceOperation$instance extends MigrationOperation$instance
1020
1027
 
1021
1028
  IncrementBy: int;
1022
1029
  IsCyclic: boolean;
1023
- MaxValue: Nullable_1<System_Internal.Int64>;
1024
- MinValue: Nullable_1<System_Internal.Int64>;
1030
+ get MaxValue(): Nullable_1<System_Internal.Int64>;
1031
+ set MaxValue(value: Nullable_1<System_Internal.Int64> | long);
1032
+ get MinValue(): Nullable_1<System_Internal.Int64>;
1033
+ set MinValue(value: Nullable_1<System_Internal.Int64> | long);
1025
1034
  }
1026
1035
 
1027
1036
 
@@ -400,7 +400,8 @@ export interface EntityMaterializerSourceParameters$instance {
400
400
  readonly __tsonic_iface_System_IEquatable_1: never;
401
401
 
402
402
  InstanceName: string;
403
- QueryTrackingBehavior: Nullable_1<QueryTrackingBehavior>;
403
+ get QueryTrackingBehavior(): Nullable_1<QueryTrackingBehavior>;
404
+ set QueryTrackingBehavior(value: Nullable_1<QueryTrackingBehavior> | QueryTrackingBehavior);
404
405
  StructuralType: ITypeBase;
405
406
  Deconstruct(StructuralType: ITypeBase, InstanceName: string, QueryTrackingBehavior: Nullable_1<QueryTrackingBehavior>): void;
406
407
  Equals(obj: unknown): boolean;
@@ -452,7 +453,8 @@ export interface StructuralTypeMaterializerSourceParameters$instance {
452
453
  ClrType: Type;
453
454
  InstanceName: string;
454
455
  IsNullable: boolean;
455
- QueryTrackingBehavior: Nullable_1<QueryTrackingBehavior>;
456
+ get QueryTrackingBehavior(): Nullable_1<QueryTrackingBehavior>;
457
+ set QueryTrackingBehavior(value: Nullable_1<QueryTrackingBehavior> | QueryTrackingBehavior);
456
458
  StructuralType: ITypeBase;
457
459
  Deconstruct(StructuralType: ITypeBase, InstanceName: string, ClrType: Type, IsNullable: boolean, QueryTrackingBehavior: Nullable_1<QueryTrackingBehavior>): void;
458
460
  Equals(obj: unknown): boolean;
@@ -2186,7 +2188,8 @@ export type RelationalQueryableMethodTranslatingExpressionVisitorDependencies =
2186
2188
  export interface RelationalQueryCompilationContext$instance extends QueryCompilationContext {
2187
2189
  readonly __tsonic_type_Microsoft_EntityFrameworkCore_Query_RelationalQueryCompilationContext: never;
2188
2190
 
2189
- QuerySplittingBehavior: Nullable_1<QuerySplittingBehavior>;
2191
+ get QuerySplittingBehavior(): Nullable_1<QuerySplittingBehavior>;
2192
+ set QuerySplittingBehavior(value: Nullable_1<QuerySplittingBehavior> | QuerySplittingBehavior);
2190
2193
  readonly RelationalDependencies: RelationalQueryCompilationContextDependencies;
2191
2194
  readonly SqlAliasManager: SqlAliasManager;
2192
2195
  }
@@ -1512,7 +1512,8 @@ export interface SingleQueryResultCoordinator$instance {
1512
1512
  readonly __tsonic_type_Microsoft_EntityFrameworkCore_Query_Internal_SingleQueryResultCoordinator: never;
1513
1513
 
1514
1514
  readonly Collections: IList_1<SingleQueryCollectionContext | undefined>;
1515
- HasNext: Nullable_1<System_Internal.Boolean>;
1515
+ get HasNext(): Nullable_1<System_Internal.Boolean>;
1516
+ set HasNext(value: Nullable_1<System_Internal.Boolean> | boolean);
1516
1517
  readonly ResultContext: ResultContext;
1517
1518
  ResultReady: boolean;
1518
1519
  SetSingleQueryCollectionContext(collectionId: int, singleQueryCollectionContext: SingleQueryCollectionContext): void;
@@ -1547,7 +1548,8 @@ export interface SplitQueryDataReaderContext$instance {
1547
1548
  readonly __tsonic_type_Microsoft_EntityFrameworkCore_Query_Internal_SplitQueryDataReaderContext: never;
1548
1549
 
1549
1550
  readonly DataReader: RelationalDataReader;
1550
- HasNext: Nullable_1<System_Internal.Boolean>;
1551
+ get HasNext(): Nullable_1<System_Internal.Boolean>;
1552
+ set HasNext(value: Nullable_1<System_Internal.Boolean> | boolean);
1551
1553
  }
1552
1554
 
1553
1555
 
@@ -1592,7 +1594,8 @@ export interface SplitQueryResultCoordinator$instance {
1592
1594
 
1593
1595
  readonly Collections: IList_1<SplitQueryCollectionContext | undefined>;
1594
1596
  readonly DataReaders: IList_1<SplitQueryDataReaderContext | undefined>;
1595
- HasNext: Nullable_1<System_Internal.Boolean>;
1597
+ get HasNext(): Nullable_1<System_Internal.Boolean>;
1598
+ set HasNext(value: Nullable_1<System_Internal.Boolean> | boolean);
1596
1599
  readonly ResultContext: ResultContext;
1597
1600
  SetDataReader(collectionId: int, relationalDataReader: RelationalDataReader): void;
1598
1601
  SetSplitQueryCollectionContext(collectionId: int, splitQueryCollectionContext: SplitQueryCollectionContext): void;
@@ -33,12 +33,14 @@ export interface DatabaseColumn$instance extends Annotatable {
33
33
  get DefaultValueSql(): string | undefined;
34
34
  set DefaultValueSql(value: string | undefined);
35
35
  IsNullable: boolean;
36
- IsStored: Nullable_1<System_Internal.Boolean>;
36
+ get IsStored(): Nullable_1<System_Internal.Boolean>;
37
+ set IsStored(value: Nullable_1<System_Internal.Boolean> | boolean);
37
38
  Name: string;
38
39
  get StoreType(): string | undefined;
39
40
  set StoreType(value: string | undefined);
40
41
  Table: DatabaseTable;
41
- ValueGenerated: Nullable_1<ValueGenerated>;
42
+ get ValueGenerated(): Nullable_1<ValueGenerated>;
43
+ set ValueGenerated(value: Nullable_1<ValueGenerated> | ValueGenerated);
42
44
  ToString(): string;
43
45
  }
44
46
 
@@ -67,7 +69,8 @@ export interface DatabaseForeignKey$instance extends Annotatable {
67
69
  readonly Columns: IList_1<DatabaseColumn>;
68
70
  get Name(): string | undefined;
69
71
  set Name(value: string | undefined);
70
- OnDelete: Nullable_1<ReferentialAction>;
72
+ get OnDelete(): Nullable_1<ReferentialAction>;
73
+ set OnDelete(value: Nullable_1<ReferentialAction> | ReferentialAction);
71
74
  readonly PrincipalColumns: IList_1<DatabaseColumn>;
72
75
  PrincipalTable: DatabaseTable;
73
76
  Table: DatabaseTable;
@@ -193,14 +196,19 @@ export interface DatabaseSequence$instance extends Annotatable {
193
196
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
194
197
 
195
198
  Database: DatabaseModel;
196
- IncrementBy: Nullable_1<System_Internal.Int32>;
197
- IsCyclic: Nullable_1<System_Internal.Boolean>;
198
- MaxValue: Nullable_1<System_Internal.Int64>;
199
- MinValue: Nullable_1<System_Internal.Int64>;
199
+ get IncrementBy(): Nullable_1<System_Internal.Int32>;
200
+ set IncrementBy(value: Nullable_1<System_Internal.Int32> | int);
201
+ get IsCyclic(): Nullable_1<System_Internal.Boolean>;
202
+ set IsCyclic(value: Nullable_1<System_Internal.Boolean> | boolean);
203
+ get MaxValue(): Nullable_1<System_Internal.Int64>;
204
+ set MaxValue(value: Nullable_1<System_Internal.Int64> | long);
205
+ get MinValue(): Nullable_1<System_Internal.Int64>;
206
+ set MinValue(value: Nullable_1<System_Internal.Int64> | long);
200
207
  Name: string;
201
208
  get Schema(): string | undefined;
202
209
  set Schema(value: string | undefined);
203
- StartValue: Nullable_1<System_Internal.Int64>;
210
+ get StartValue(): Nullable_1<System_Internal.Int64>;
211
+ set StartValue(value: Nullable_1<System_Internal.Int64> | long);
204
212
  get StoreType(): string | undefined;
205
213
  set StoreType(value: string | undefined);
206
214
  ToString(): string;
@@ -254,7 +254,8 @@ export interface IRelationalConnection$instance extends IRelationalTransactionMa
254
254
  DbConnection: DbConnection;
255
255
  readonly Context: DbContext;
256
256
  readonly ConnectionId: Guid;
257
- CommandTimeout: Nullable_1<System_Internal.Int32>;
257
+ get CommandTimeout(): Nullable_1<System_Internal.Int32>;
258
+ set CommandTimeout(value: Nullable_1<System_Internal.Int32> | int);
258
259
  readonly CurrentTransaction: IDbContextTransaction | undefined;
259
260
  BeginTransaction(): IDbContextTransaction;
260
261
  BeginTransaction(isolationLevel: IsolationLevel): IDbContextTransaction;
@@ -494,19 +495,26 @@ export interface RelationalTypeMappingInfo$instance {
494
495
  get ClrType(): Type | undefined;
495
496
  set ClrType(value: Type | undefined);
496
497
  readonly CoreTypeMappingInfo: TypeMappingInfo;
497
- DbType: Nullable_1<DbType>;
498
+ get DbType(): Nullable_1<DbType>;
499
+ set DbType(value: Nullable_1<DbType> | DbType);
498
500
  get ElementTypeMapping(): RelationalTypeMapping | undefined;
499
501
  set ElementTypeMapping(value: RelationalTypeMapping | undefined);
500
- IsFixedLength: Nullable_1<System_Internal.Boolean>;
502
+ get IsFixedLength(): Nullable_1<System_Internal.Boolean>;
503
+ set IsFixedLength(value: Nullable_1<System_Internal.Boolean> | boolean);
501
504
  IsKey: boolean;
502
505
  IsKeyOrIndex: boolean;
503
- IsRowVersion: Nullable_1<System_Internal.Boolean>;
504
- IsUnicode: Nullable_1<System_Internal.Boolean>;
506
+ get IsRowVersion(): Nullable_1<System_Internal.Boolean>;
507
+ set IsRowVersion(value: Nullable_1<System_Internal.Boolean> | boolean);
508
+ get IsUnicode(): Nullable_1<System_Internal.Boolean>;
509
+ set IsUnicode(value: Nullable_1<System_Internal.Boolean> | boolean);
505
510
  get JsonValueReaderWriter(): JsonValueReaderWriter | undefined;
506
511
  set JsonValueReaderWriter(value: JsonValueReaderWriter | undefined);
507
- Precision: Nullable_1<System_Internal.Int32>;
508
- Scale: Nullable_1<System_Internal.Int32>;
509
- Size: Nullable_1<System_Internal.Int32>;
512
+ get Precision(): Nullable_1<System_Internal.Int32>;
513
+ set Precision(value: Nullable_1<System_Internal.Int32> | int);
514
+ get Scale(): Nullable_1<System_Internal.Int32>;
515
+ set Scale(value: Nullable_1<System_Internal.Int32> | int);
516
+ get Size(): Nullable_1<System_Internal.Int32>;
517
+ set Size(value: Nullable_1<System_Internal.Int32> | int);
510
518
  get StoreTypeName(): string | undefined;
511
519
  set StoreTypeName(value: string | undefined);
512
520
  get StoreTypeNameBase(): string | undefined;
@@ -544,13 +552,18 @@ export interface TypeMappingInfo$instance {
544
552
  set ElementTypeMapping(value: CoreTypeMapping | undefined);
545
553
  IsKey: boolean;
546
554
  IsKeyOrIndex: boolean;
547
- IsRowVersion: Nullable_1<System_Internal.Boolean>;
548
- IsUnicode: Nullable_1<System_Internal.Boolean>;
555
+ get IsRowVersion(): Nullable_1<System_Internal.Boolean>;
556
+ set IsRowVersion(value: Nullable_1<System_Internal.Boolean> | boolean);
557
+ get IsUnicode(): Nullable_1<System_Internal.Boolean>;
558
+ set IsUnicode(value: Nullable_1<System_Internal.Boolean> | boolean);
549
559
  get JsonValueReaderWriter(): JsonValueReaderWriter | undefined;
550
560
  set JsonValueReaderWriter(value: JsonValueReaderWriter | undefined);
551
- Precision: Nullable_1<System_Internal.Int32>;
552
- Scale: Nullable_1<System_Internal.Int32>;
553
- Size: Nullable_1<System_Internal.Int32>;
561
+ get Precision(): Nullable_1<System_Internal.Int32>;
562
+ set Precision(value: Nullable_1<System_Internal.Int32> | int);
563
+ get Scale(): Nullable_1<System_Internal.Int32>;
564
+ set Scale(value: Nullable_1<System_Internal.Int32> | int);
565
+ get Size(): Nullable_1<System_Internal.Int32>;
566
+ set Size(value: Nullable_1<System_Internal.Int32> | int);
554
567
  Equals(obj: unknown): boolean;
555
568
  Equals(other: TypeMappingInfo): boolean;
556
569
  GetHashCode(): int;
@@ -1306,7 +1319,8 @@ export interface RelationalConnection$instance {
1306
1319
  readonly __tsonic_iface_System_IAsyncDisposable: never;
1307
1320
  readonly __tsonic_iface_System_IDisposable: never;
1308
1321
 
1309
- CommandTimeout: Nullable_1<System_Internal.Int32>;
1322
+ get CommandTimeout(): Nullable_1<System_Internal.Int32>;
1323
+ set CommandTimeout(value: Nullable_1<System_Internal.Int32> | int);
1310
1324
  readonly ConnectionId: Guid;
1311
1325
  get ConnectionString(): string | undefined;
1312
1326
  set ConnectionString(value: string | undefined);
@@ -249,7 +249,8 @@ export interface ColumnModificationParameters$instance {
249
249
  set GenerateParameterName(value: Func_1<System_Internal.String> | undefined);
250
250
  IsCondition: boolean;
251
251
  IsKey: boolean;
252
- IsNullable: Nullable_1<System_Internal.Boolean>;
252
+ get IsNullable(): Nullable_1<System_Internal.Boolean>;
253
+ set IsNullable(value: Nullable_1<System_Internal.Boolean> | boolean);
253
254
  IsRead: boolean;
254
255
  IsWrite: boolean;
255
256
  get JsonPath(): string | undefined;
@@ -1801,9 +1801,9 @@ export interface __Ext_System_Transactions_DatabaseFacade {
1801
1801
 
1802
1802
  // Internal helper types for sticky extension scopes
1803
1803
  type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
1804
- type __TsonicMergeExtMaps<A, B> = Omit<A, keyof B> & B;
1804
+ type __TsonicMergeExtMaps<A, B> = A & B;
1805
1805
  type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
1806
- type __TsonicPreferExt<A, B> = Omit<A, keyof B> & B;
1806
+ type __TsonicPreferExt<A, B> = A & B;
1807
1807
 
1808
1808
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
1809
1809
  type __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape> =
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsonic/efcore",
3
- "version": "10.0.26",
3
+ "version": "10.0.31",
4
4
  "description": "TypeScript type definitions for Microsoft.EntityFrameworkCore.* for .NET 10",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -19,8 +19,8 @@
19
19
  "url": "https://github.com/tsoniclang/efcore.git"
20
20
  },
21
21
  "peerDependencies": {
22
- "@tsonic/core": "10.0.26",
23
- "@tsonic/dotnet": "10.0.26",
24
- "@tsonic/microsoft-extensions": "10.0.26"
22
+ "@tsonic/core": "10.0.31",
23
+ "@tsonic/dotnet": "10.0.31",
24
+ "@tsonic/microsoft-extensions": "10.0.31"
25
25
  }
26
26
  }