@tsonic/efcore-sqlite 10.0.1 → 10.0.2

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.
Files changed (46) hide show
  1. package/Microsoft.Data.Sqlite/bindings.json +948 -1
  2. package/Microsoft.Data.Sqlite/internal/index.d.ts +51 -6
  3. package/Microsoft.DotNet.PlatformAbstractions/bindings.json +10 -0
  4. package/Microsoft.EntityFrameworkCore/bindings.json +113 -0
  5. package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +31 -0
  6. package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +21 -0
  7. package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +25 -0
  8. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +197 -2
  9. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +30 -6
  10. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.d.ts +3 -2
  11. package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +557 -0
  12. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +35 -4
  13. package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -3
  14. package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/bindings.json +52 -0
  15. package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/internal/index.d.ts +7 -2
  16. package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.d.ts +1 -1
  17. package/Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal/bindings.json +37 -0
  18. package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/bindings.json +190 -0
  19. package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/internal/index.d.ts +24 -4
  20. package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal.d.ts +3 -2
  21. package/Microsoft.EntityFrameworkCore.Sqlite.Internal/bindings.json +62 -0
  22. package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/bindings.json +26 -0
  23. package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/bindings.json +98 -0
  24. package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/internal/index.d.ts +9 -2
  25. package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal.d.ts +1 -1
  26. package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/bindings.json +1541 -79
  27. package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +131 -19
  28. package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.d.ts +5 -4
  29. package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/bindings.json +45 -0
  30. package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/internal/index.d.ts +8 -3
  31. package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal.d.ts +2 -2
  32. package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/bindings.json +749 -9
  33. package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +98 -14
  34. package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.d.ts +3 -2
  35. package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/bindings.json +55 -0
  36. package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/bindings.json +194 -2
  37. package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +24 -5
  38. package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.d.ts +3 -2
  39. package/Microsoft.Extensions.DependencyInjection/bindings.json +6 -0
  40. package/Microsoft.Extensions.DependencyModel/bindings.json +213 -0
  41. package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +6 -1
  42. package/Microsoft.Extensions.DependencyModel.Resolution/bindings.json +63 -0
  43. package/SQLitePCL/bindings.json +1398 -9
  44. package/SQLitePCL/internal/index.d.ts +40 -10
  45. package/System.Collections.Generic/bindings.json +10 -0
  46. package/package.json +1 -1
@@ -228,8 +228,8 @@ export const collation_hook_info: {
228
228
  export type collation_hook_info = collation_hook_info$instance;
229
229
 
230
230
  export interface commit_hook_info$instance {
231
- readonly _func: delegate_commit;
232
- readonly _user_data: unknown;
231
+ _func: delegate_commit;
232
+ _user_data: unknown;
233
233
  call(): int;
234
234
  }
235
235
 
@@ -243,7 +243,7 @@ export const commit_hook_info: {
243
243
  export type commit_hook_info = commit_hook_info$instance;
244
244
 
245
245
  export interface EntryPointAttribute$instance extends Attribute {
246
- readonly Name: string;
246
+ Name: string;
247
247
  }
248
248
 
249
249
 
@@ -396,7 +396,12 @@ export const rollback_hook_info: {
396
396
 
397
397
  export type rollback_hook_info = rollback_hook_info$instance;
398
398
 
399
- export interface SafeGCHandle$instance extends SafeHandle {
399
+ export abstract class SafeGCHandle$protected {
400
+ protected ReleaseHandle(): boolean;
401
+ }
402
+
403
+
404
+ export interface SafeGCHandle$instance extends SafeGCHandle$protected, SafeHandle {
400
405
  readonly IsInvalid: boolean;
401
406
  }
402
407
 
@@ -408,7 +413,12 @@ export const SafeGCHandle: {
408
413
 
409
414
  export type SafeGCHandle = SafeGCHandle$instance;
410
415
 
411
- export interface sqlite3$instance extends SafeHandle {
416
+ export abstract class sqlite3$protected {
417
+ protected ReleaseHandle(): boolean;
418
+ }
419
+
420
+
421
+ export interface sqlite3$instance extends sqlite3$protected, SafeHandle {
412
422
  readonly IsInvalid: boolean;
413
423
  enable_sqlite3_next_stmt(enabled: boolean): void;
414
424
  GetOrCreateExtra<T extends IDisposable>(f: Func<T>): T;
@@ -424,7 +434,12 @@ export const sqlite3: {
424
434
 
425
435
  export type sqlite3 = sqlite3$instance;
426
436
 
427
- export interface sqlite3_backup$instance extends SafeHandle {
437
+ export abstract class sqlite3_backup$protected {
438
+ protected ReleaseHandle(): boolean;
439
+ }
440
+
441
+
442
+ export interface sqlite3_backup$instance extends sqlite3_backup$protected, SafeHandle {
428
443
  readonly IsInvalid: boolean;
429
444
  manual_close(): int;
430
445
  }
@@ -438,7 +453,12 @@ export const sqlite3_backup: {
438
453
 
439
454
  export type sqlite3_backup = sqlite3_backup$instance;
440
455
 
441
- export interface sqlite3_blob$instance extends SafeHandle {
456
+ export abstract class sqlite3_blob$protected {
457
+ protected ReleaseHandle(): boolean;
458
+ }
459
+
460
+
461
+ export interface sqlite3_blob$instance extends sqlite3_blob$protected, SafeHandle {
442
462
  readonly IsInvalid: boolean;
443
463
  manual_close(): int;
444
464
  }
@@ -457,13 +477,18 @@ export interface sqlite3_context$instance {
457
477
 
458
478
 
459
479
  export const sqlite3_context: {
460
- new(): sqlite3_context;
480
+ new(user_data: unknown): sqlite3_context;
461
481
  };
462
482
 
463
483
 
464
484
  export type sqlite3_context = sqlite3_context$instance;
465
485
 
466
- export interface sqlite3_snapshot$instance extends SafeHandle {
486
+ export abstract class sqlite3_snapshot$protected {
487
+ protected ReleaseHandle(): boolean;
488
+ }
489
+
490
+
491
+ export interface sqlite3_snapshot$instance extends sqlite3_snapshot$protected, SafeHandle {
467
492
  readonly IsInvalid: boolean;
468
493
  manual_close(): void;
469
494
  }
@@ -476,7 +501,12 @@ export const sqlite3_snapshot: {
476
501
 
477
502
  export type sqlite3_snapshot = sqlite3_snapshot$instance;
478
503
 
479
- export interface sqlite3_stmt$instance extends SafeHandle {
504
+ export abstract class sqlite3_stmt$protected {
505
+ protected ReleaseHandle(): boolean;
506
+ }
507
+
508
+
509
+ export interface sqlite3_stmt$instance extends sqlite3_stmt$protected, SafeHandle {
480
510
  readonly IsInvalid: boolean;
481
511
  manual_close(): int;
482
512
  }
@@ -17,6 +17,10 @@
17
17
  "isSealed": true,
18
18
  "isStatic": true,
19
19
  "arity": 0,
20
+ "baseType": {
21
+ "stableId": "System.Private.CoreLib:System.Object",
22
+ "clrName": "System.Object"
23
+ },
20
24
  "methods": [
21
25
  {
22
26
  "stableId": "Microsoft.Extensions.DependencyModel:System.Collections.Generic.CollectionExtensions::GetDefaultGroup(System.Collections.Generic.IEnumerable_1[[Microsoft.Extensions.DependencyModel.RuntimeAssetGroup,Microsoft.Extensions.DependencyModel,Version=10.0.0.1,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.Extensions.DependencyModel.RuntimeAssetGroup",
@@ -33,6 +37,7 @@
33
37
  "isVirtual": false,
34
38
  "isOverride": false,
35
39
  "isSealed": false,
40
+ "visibility": "Public",
36
41
  "declaringClrType": "System.Collections.Generic.CollectionExtensions",
37
42
  "declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
38
43
  "isExtensionMethod": true
@@ -52,6 +57,7 @@
52
57
  "isVirtual": false,
53
58
  "isOverride": false,
54
59
  "isSealed": false,
60
+ "visibility": "Public",
55
61
  "declaringClrType": "System.Collections.Generic.CollectionExtensions",
56
62
  "declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
57
63
  "isExtensionMethod": true
@@ -71,6 +77,7 @@
71
77
  "isVirtual": false,
72
78
  "isOverride": false,
73
79
  "isSealed": false,
80
+ "visibility": "Public",
74
81
  "declaringClrType": "System.Collections.Generic.CollectionExtensions",
75
82
  "declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
76
83
  "isExtensionMethod": true
@@ -90,6 +97,7 @@
90
97
  "isVirtual": false,
91
98
  "isOverride": false,
92
99
  "isSealed": false,
100
+ "visibility": "Public",
93
101
  "declaringClrType": "System.Collections.Generic.CollectionExtensions",
94
102
  "declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
95
103
  "isExtensionMethod": true
@@ -109,6 +117,7 @@
109
117
  "isVirtual": false,
110
118
  "isOverride": false,
111
119
  "isSealed": false,
120
+ "visibility": "Public",
112
121
  "declaringClrType": "System.Collections.Generic.CollectionExtensions",
113
122
  "declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
114
123
  "isExtensionMethod": true
@@ -128,6 +137,7 @@
128
137
  "isVirtual": false,
129
138
  "isOverride": false,
130
139
  "isSealed": false,
140
+ "visibility": "Public",
131
141
  "declaringClrType": "System.Collections.Generic.CollectionExtensions",
132
142
  "declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
133
143
  "isExtensionMethod": true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsonic/efcore-sqlite",
3
- "version": "10.0.1",
3
+ "version": "10.0.2",
4
4
  "description": "TypeScript type definitions for Microsoft.EntityFrameworkCore.Sqlite (+ dependencies) for .NET 10",
5
5
  "type": "module",
6
6
  "keywords": [