@tsonic/efcore-sqlite 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.
@@ -277,7 +277,8 @@ export interface SqliteConnectionStringBuilder$instance extends DbConnectionStri
277
277
  Cache: SqliteCacheMode;
278
278
  DataSource: string;
279
279
  DefaultTimeout: int;
280
- ForeignKeys: Nullable_1<System_Internal.Boolean>;
280
+ get ForeignKeys(): Nullable_1<System_Internal.Boolean>;
281
+ set ForeignKeys(value: Nullable_1<System_Internal.Boolean> | boolean);
281
282
  readonly Keys: ICollection;
282
283
  Mode: SqliteOpenMode;
283
284
  Password: string;
@@ -252,9 +252,8 @@ export interface __Ext_System_Collections_Generic_IEnumerable_1<T> {
252
252
 
253
253
  // Internal helper types for sticky extension scopes
254
254
  type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
255
- type __TsonicMergeExtMaps<A, B> = Omit<A, keyof B> & B;
255
+ type __TsonicMergeExtMaps<A, B> = A & B;
256
256
  type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
257
- type __TsonicPreferExt<A, B> = Omit<A, keyof B> & B;
258
257
 
259
258
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
260
259
  type __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape> =
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsonic/efcore-sqlite",
3
- "version": "10.0.27",
3
+ "version": "10.0.32",
4
4
  "description": "TypeScript type definitions for Microsoft.EntityFrameworkCore.Sqlite (+ dependencies) for .NET 10",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -19,9 +19,9 @@
19
19
  "url": "https://github.com/tsoniclang/efcore-sqlite.git"
20
20
  },
21
21
  "peerDependencies": {
22
- "@tsonic/core": "10.0.27",
23
- "@tsonic/dotnet": "10.0.27",
24
- "@tsonic/microsoft-extensions": "10.0.27",
25
- "@tsonic/efcore": "10.0.27"
22
+ "@tsonic/core": "10.0.32",
23
+ "@tsonic/dotnet": "10.0.32",
24
+ "@tsonic/microsoft-extensions": "10.0.32",
25
+ "@tsonic/efcore": "10.0.32"
26
26
  }
27
27
  }