@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
@@ -51,7 +51,12 @@ export enum SqliteType {
51
51
  }
52
52
 
53
53
 
54
- export interface SqliteBlob$instance extends Stream {
54
+ export abstract class SqliteBlob$protected {
55
+ protected Dispose(disposing: boolean): void;
56
+ }
57
+
58
+
59
+ export interface SqliteBlob$instance extends SqliteBlob$protected, Stream {
55
60
  readonly CanRead: boolean;
56
61
  readonly CanSeek: boolean;
57
62
  readonly CanWrite: boolean;
@@ -75,7 +80,19 @@ export const SqliteBlob: {
75
80
 
76
81
  export type SqliteBlob = SqliteBlob$instance;
77
82
 
78
- export interface SqliteCommand$instance extends DbCommand {
83
+ export abstract class SqliteCommand$protected {
84
+ protected DataReader: SqliteDataReader | undefined;
85
+ protected DbConnection: DbConnection | undefined;
86
+ protected readonly DbParameterCollection: DbParameterCollection;
87
+ protected DbTransaction: DbTransaction | undefined;
88
+ protected CreateDbParameter(): DbParameter;
89
+ protected Dispose(disposing: boolean): void;
90
+ protected ExecuteDbDataReader(behavior: CommandBehavior): DbDataReader;
91
+ protected ExecuteDbDataReaderAsync(behavior: CommandBehavior, cancellationToken: CancellationToken): Task<DbDataReader>;
92
+ }
93
+
94
+
95
+ export interface SqliteCommand$instance extends SqliteCommand$protected, DbCommand {
79
96
  CommandText: string;
80
97
  CommandTimeout: int;
81
98
  CommandType: CommandType;
@@ -110,7 +127,16 @@ export const SqliteCommand: {
110
127
 
111
128
  export type SqliteCommand = SqliteCommand$instance;
112
129
 
113
- export interface SqliteConnection$instance extends DbConnection {
130
+ export abstract class SqliteConnection$protected {
131
+ protected readonly DbProviderFactory: DbProviderFactory;
132
+ protected Transaction: SqliteTransaction | undefined;
133
+ protected BeginDbTransaction(isolationLevel: IsolationLevel): DbTransaction;
134
+ protected CreateDbCommand(): DbCommand;
135
+ protected Dispose(disposing: boolean): void;
136
+ }
137
+
138
+
139
+ export interface SqliteConnection$instance extends SqliteConnection$protected, DbConnection {
114
140
  ConnectionString: string;
115
141
  readonly Database: string;
116
142
  readonly DataSource: string;
@@ -260,7 +286,12 @@ export const SqliteConnectionStringBuilder: {
260
286
 
261
287
  export type SqliteConnectionStringBuilder = SqliteConnectionStringBuilder$instance;
262
288
 
263
- export interface SqliteDataReader$instance extends DbDataReader {
289
+ export abstract class SqliteDataReader$protected {
290
+ protected Dispose(disposing: boolean): void;
291
+ }
292
+
293
+
294
+ export interface SqliteDataReader$instance extends SqliteDataReader$protected, DbDataReader {
264
295
  readonly Depth: int;
265
296
  readonly FieldCount: int;
266
297
  readonly Handle: sqlite3_stmt | undefined;
@@ -368,7 +399,15 @@ export const SqliteParameter: {
368
399
 
369
400
  export type SqliteParameter = SqliteParameter$instance;
370
401
 
371
- export interface SqliteParameterCollection$instance extends DbParameterCollection {
402
+ export abstract class SqliteParameterCollection$protected {
403
+ protected GetParameter(index: int): DbParameter;
404
+ protected GetParameter(parameterName: string): DbParameter;
405
+ protected SetParameter(index: int, value: DbParameter): void;
406
+ protected SetParameter(parameterName: string, value: DbParameter): void;
407
+ }
408
+
409
+
410
+ export interface SqliteParameterCollection$instance extends SqliteParameterCollection$protected, DbParameterCollection {
372
411
  readonly Count: int;
373
412
  readonly SyncRoot: unknown;
374
413
  Add(value: unknown): int;
@@ -409,7 +448,13 @@ export const SqliteParameterCollection: {
409
448
 
410
449
  export type SqliteParameterCollection = SqliteParameterCollection$instance;
411
450
 
412
- export interface SqliteTransaction$instance extends DbTransaction {
451
+ export abstract class SqliteTransaction$protected {
452
+ protected readonly DbConnection: DbConnection | undefined;
453
+ protected Dispose(disposing: boolean): void;
454
+ }
455
+
456
+
457
+ export interface SqliteTransaction$instance extends SqliteTransaction$protected, DbTransaction {
413
458
  readonly Connection: SqliteConnection | undefined;
414
459
  readonly IsolationLevel: IsolationLevel;
415
460
  readonly SupportsSavepoints: boolean;
@@ -15,6 +15,10 @@
15
15
  "isSealed": true,
16
16
  "isStatic": false,
17
17
  "arity": 0,
18
+ "baseType": {
19
+ "stableId": "System.Private.CoreLib:System.ValueType",
20
+ "clrName": "System.ValueType"
21
+ },
18
22
  "methods": [
19
23
  {
20
24
  "stableId": "Microsoft.Extensions.DependencyModel:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner::Add(System.Int32):System.Void",
@@ -31,6 +35,7 @@
31
35
  "isVirtual": false,
32
36
  "isOverride": false,
33
37
  "isSealed": false,
38
+ "visibility": "Public",
34
39
  "declaringClrType": "Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner",
35
40
  "declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
36
41
  "isExtensionMethod": false
@@ -50,6 +55,7 @@
50
55
  "isVirtual": false,
51
56
  "isOverride": false,
52
57
  "isSealed": false,
58
+ "visibility": "Public",
53
59
  "declaringClrType": "Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner",
54
60
  "declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
55
61
  "isExtensionMethod": false
@@ -69,6 +75,7 @@
69
75
  "isVirtual": false,
70
76
  "isOverride": false,
71
77
  "isSealed": false,
78
+ "visibility": "Public",
72
79
  "declaringClrType": "Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner",
73
80
  "declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
74
81
  "isExtensionMethod": false
@@ -88,6 +95,7 @@
88
95
  "isVirtual": false,
89
96
  "isOverride": false,
90
97
  "isSealed": false,
98
+ "visibility": "Public",
91
99
  "declaringClrType": "Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner",
92
100
  "declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
93
101
  "isExtensionMethod": false
@@ -107,6 +115,7 @@
107
115
  "isVirtual": false,
108
116
  "isOverride": false,
109
117
  "isSealed": false,
118
+ "visibility": "Public",
110
119
  "declaringClrType": "Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner",
111
120
  "declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
112
121
  "isExtensionMethod": false
@@ -128,6 +137,7 @@
128
137
  "isAbstract": false,
129
138
  "isVirtual": false,
130
139
  "isOverride": false,
140
+ "visibility": "Public",
131
141
  "declaringClrType": "Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner",
132
142
  "declaringAssemblyName": "Microsoft.Extensions.DependencyModel"
133
143
  }