@tsonic/efcore-sqlite 10.0.1 → 10.0.3
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.Data.Sqlite/bindings.json +948 -1
- package/Microsoft.Data.Sqlite/internal/index.d.ts +31 -11
- package/Microsoft.DotNet.PlatformAbstractions/bindings.json +10 -0
- package/Microsoft.EntityFrameworkCore/bindings.json +113 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +31 -0
- package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +21 -0
- package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +25 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +197 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +10 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +557 -0
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +30 -3
- package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/bindings.json +52 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/internal/index.d.ts +2 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal/bindings.json +37 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/bindings.json +190 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/internal/index.d.ts +13 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal/bindings.json +62 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/bindings.json +26 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/bindings.json +98 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/internal/index.d.ts +4 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/bindings.json +1541 -79
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +55 -4
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.d.ts +5 -4
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/bindings.json +45 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/internal/index.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/bindings.json +749 -9
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +28 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/bindings.json +55 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/internal/index.d.ts +0 -5
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/bindings.json +194 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +9 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.d.ts +3 -2
- package/Microsoft.Extensions.DependencyInjection/bindings.json +6 -0
- package/Microsoft.Extensions.DependencyModel/bindings.json +213 -0
- package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +4 -3
- package/Microsoft.Extensions.DependencyModel.Resolution/bindings.json +63 -0
- package/SQLitePCL/bindings.json +1398 -9
- package/SQLitePCL/internal/index.d.ts +10 -10
- package/System.Collections.Generic/bindings.json +10 -0
- 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
|
-
|
|
232
|
-
|
|
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
|
-
|
|
246
|
+
Name: string;
|
|
247
247
|
}
|
|
248
248
|
|
|
249
249
|
|
|
@@ -398,6 +398,7 @@ export type rollback_hook_info = rollback_hook_info$instance;
|
|
|
398
398
|
|
|
399
399
|
export interface SafeGCHandle$instance extends SafeHandle {
|
|
400
400
|
readonly IsInvalid: boolean;
|
|
401
|
+
ReleaseHandle(): boolean;
|
|
401
402
|
}
|
|
402
403
|
|
|
403
404
|
|
|
@@ -414,11 +415,11 @@ export interface sqlite3$instance extends SafeHandle {
|
|
|
414
415
|
GetOrCreateExtra<T extends IDisposable>(f: Func<T>): T;
|
|
415
416
|
manual_close(): int;
|
|
416
417
|
manual_close_v2(): int;
|
|
418
|
+
ReleaseHandle(): boolean;
|
|
417
419
|
}
|
|
418
420
|
|
|
419
421
|
|
|
420
422
|
export const sqlite3: {
|
|
421
|
-
new(): sqlite3;
|
|
422
423
|
};
|
|
423
424
|
|
|
424
425
|
|
|
@@ -427,11 +428,11 @@ export type sqlite3 = sqlite3$instance;
|
|
|
427
428
|
export interface sqlite3_backup$instance extends SafeHandle {
|
|
428
429
|
readonly IsInvalid: boolean;
|
|
429
430
|
manual_close(): int;
|
|
431
|
+
ReleaseHandle(): boolean;
|
|
430
432
|
}
|
|
431
433
|
|
|
432
434
|
|
|
433
435
|
export const sqlite3_backup: {
|
|
434
|
-
new(): sqlite3_backup;
|
|
435
436
|
From(p: nint): sqlite3_backup;
|
|
436
437
|
};
|
|
437
438
|
|
|
@@ -441,11 +442,11 @@ export type sqlite3_backup = sqlite3_backup$instance;
|
|
|
441
442
|
export interface sqlite3_blob$instance extends SafeHandle {
|
|
442
443
|
readonly IsInvalid: boolean;
|
|
443
444
|
manual_close(): int;
|
|
445
|
+
ReleaseHandle(): boolean;
|
|
444
446
|
}
|
|
445
447
|
|
|
446
448
|
|
|
447
449
|
export const sqlite3_blob: {
|
|
448
|
-
new(): sqlite3_blob;
|
|
449
450
|
};
|
|
450
451
|
|
|
451
452
|
|
|
@@ -456,8 +457,7 @@ export interface sqlite3_context$instance {
|
|
|
456
457
|
}
|
|
457
458
|
|
|
458
459
|
|
|
459
|
-
export const sqlite3_context: {
|
|
460
|
-
new(): sqlite3_context;
|
|
460
|
+
export const sqlite3_context: (abstract new(user_data: unknown) => sqlite3_context) & {
|
|
461
461
|
};
|
|
462
462
|
|
|
463
463
|
|
|
@@ -466,11 +466,11 @@ export type sqlite3_context = sqlite3_context$instance;
|
|
|
466
466
|
export interface sqlite3_snapshot$instance extends SafeHandle {
|
|
467
467
|
readonly IsInvalid: boolean;
|
|
468
468
|
manual_close(): void;
|
|
469
|
+
ReleaseHandle(): boolean;
|
|
469
470
|
}
|
|
470
471
|
|
|
471
472
|
|
|
472
473
|
export const sqlite3_snapshot: {
|
|
473
|
-
new(): sqlite3_snapshot;
|
|
474
474
|
};
|
|
475
475
|
|
|
476
476
|
|
|
@@ -479,11 +479,11 @@ export type sqlite3_snapshot = sqlite3_snapshot$instance;
|
|
|
479
479
|
export interface sqlite3_stmt$instance extends SafeHandle {
|
|
480
480
|
readonly IsInvalid: boolean;
|
|
481
481
|
manual_close(): int;
|
|
482
|
+
ReleaseHandle(): boolean;
|
|
482
483
|
}
|
|
483
484
|
|
|
484
485
|
|
|
485
486
|
export const sqlite3_stmt: {
|
|
486
|
-
new(): sqlite3_stmt;
|
|
487
487
|
};
|
|
488
488
|
|
|
489
489
|
|
|
@@ -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
|