@tsonic/efcore-sqlite 0.1.0 → 0.1.1
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 +4 -4
- package/Microsoft.Data.Sqlite/internal/index.d.ts +8 -8
- package/Microsoft.Data.Sqlite/internal/metadata.json +2 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal/internal/index.d.ts +4 -4
- package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/bindings.json +4 -4
- package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/internal/metadata.json +2 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +4 -4
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/bindings.json +22 -22
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +11 -11
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/metadata.json +11 -11
- package/Microsoft.Extensions.DependencyModel/bindings.json +10 -10
- package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +12 -12
- package/Microsoft.Extensions.DependencyModel/internal/metadata.json +4 -4
- package/SQLitePCL/bindings.json +2 -2
- package/SQLitePCL/internal/index.d.ts +3 -3
- package/SQLitePCL/internal/metadata.json +1 -1
- package/package.json +1 -2
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
{
|
|
25
25
|
"stableId": "Microsoft.Data.Sqlite:Microsoft.Data.Sqlite.SqliteCacheMode::DefaultMicrosoft.Data.Sqlite.SqliteCacheMode",
|
|
26
26
|
"clrName": "Default",
|
|
27
|
-
"tsEmitName": "
|
|
27
|
+
"tsEmitName": "default",
|
|
28
28
|
"metadataToken": 67108872,
|
|
29
29
|
"normalizedSignature": "Default|Microsoft.Data.Sqlite.SqliteCacheMode|static=true|const=true",
|
|
30
30
|
"isStatic": true,
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
{
|
|
36
36
|
"stableId": "Microsoft.Data.Sqlite:Microsoft.Data.Sqlite.SqliteCacheMode::PrivateMicrosoft.Data.Sqlite.SqliteCacheMode",
|
|
37
37
|
"clrName": "Private",
|
|
38
|
-
"tsEmitName": "
|
|
38
|
+
"tsEmitName": "private",
|
|
39
39
|
"metadataToken": 67108873,
|
|
40
40
|
"normalizedSignature": "Private|Microsoft.Data.Sqlite.SqliteCacheMode|static=true|const=true",
|
|
41
41
|
"isStatic": true,
|
|
@@ -69,7 +69,7 @@
|
|
|
69
69
|
}
|
|
70
70
|
},
|
|
71
71
|
{
|
|
72
|
-
"tsName": "
|
|
72
|
+
"tsName": "default",
|
|
73
73
|
"isStatic": true,
|
|
74
74
|
"tsSignatureId": "Default|Microsoft.Data.Sqlite.SqliteCacheMode|static=true|const=true",
|
|
75
75
|
"target": {
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
}
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
|
-
"tsName": "
|
|
82
|
+
"tsName": "private",
|
|
83
83
|
"isStatic": true,
|
|
84
84
|
"tsSignatureId": "Private|Microsoft.Data.Sqlite.SqliteCacheMode|static=true|const=true",
|
|
85
85
|
"target": {
|
|
@@ -29,8 +29,8 @@ import type { CancellationToken } from "@tsonic/dotnet/System.Threading.js";
|
|
|
29
29
|
import type { Task } from "@tsonic/dotnet/System.Threading.Tasks.js";
|
|
30
30
|
|
|
31
31
|
export enum SqliteCacheMode {
|
|
32
|
-
|
|
33
|
-
|
|
32
|
+
default = 0,
|
|
33
|
+
private = 1,
|
|
34
34
|
shared = 2
|
|
35
35
|
}
|
|
36
36
|
|
|
@@ -360,9 +360,9 @@ export interface SqliteParameter$instance extends DbParameter {
|
|
|
360
360
|
export const SqliteParameter: {
|
|
361
361
|
new(): SqliteParameter;
|
|
362
362
|
new(name: string, value: unknown): SqliteParameter;
|
|
363
|
-
new(name: string,
|
|
364
|
-
new(name: string,
|
|
365
|
-
new(name: string,
|
|
363
|
+
new(name: string, type: SqliteType): SqliteParameter;
|
|
364
|
+
new(name: string, type: SqliteType, size: int): SqliteParameter;
|
|
365
|
+
new(name: string, type: SqliteType, size: int, sourceColumn: string): SqliteParameter;
|
|
366
366
|
};
|
|
367
367
|
|
|
368
368
|
|
|
@@ -373,9 +373,9 @@ export interface SqliteParameterCollection$instance extends DbParameterCollectio
|
|
|
373
373
|
readonly syncRoot: unknown;
|
|
374
374
|
add(value: unknown): int;
|
|
375
375
|
add(value: SqliteParameter): SqliteParameter;
|
|
376
|
-
add(parameterName: string,
|
|
377
|
-
add(parameterName: string,
|
|
378
|
-
add(parameterName: string,
|
|
376
|
+
add(parameterName: string, type: SqliteType): SqliteParameter;
|
|
377
|
+
add(parameterName: string, type: SqliteType, size: int): SqliteParameter;
|
|
378
|
+
add(parameterName: string, type: SqliteType, size: int, sourceColumn: string): SqliteParameter;
|
|
379
379
|
addRange(values: ClrArray): void;
|
|
380
380
|
addRange(values: IEnumerable__System_Collections_Generic<SqliteParameter>): void;
|
|
381
381
|
addWithValue(parameterName: string, value: unknown): SqliteParameter;
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
{
|
|
30
30
|
"stableId": "Microsoft.Data.Sqlite:Microsoft.Data.Sqlite.SqliteCacheMode::DefaultMicrosoft.Data.Sqlite.SqliteCacheMode",
|
|
31
31
|
"clrName": "Default",
|
|
32
|
-
"tsEmitName": "
|
|
32
|
+
"tsEmitName": "default",
|
|
33
33
|
"normalizedSignature": "Default|Microsoft.Data.Sqlite.SqliteCacheMode|static=true|const=true",
|
|
34
34
|
"isStatic": true,
|
|
35
35
|
"isReadOnly": false,
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
{
|
|
39
39
|
"stableId": "Microsoft.Data.Sqlite:Microsoft.Data.Sqlite.SqliteCacheMode::PrivateMicrosoft.Data.Sqlite.SqliteCacheMode",
|
|
40
40
|
"clrName": "Private",
|
|
41
|
-
"tsEmitName": "
|
|
41
|
+
"tsEmitName": "private",
|
|
42
42
|
"normalizedSignature": "Private|Microsoft.Data.Sqlite.SqliteCacheMode|static=true|const=true",
|
|
43
43
|
"isStatic": true,
|
|
44
44
|
"isReadOnly": false,
|
|
@@ -20,11 +20,11 @@ export abstract class SqliteLoggerExtensions$instance {
|
|
|
20
20
|
static foreignKeyFound(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Scaffolding>, tableName: string, id: long, principalTableName: string, deleteAction: string): void;
|
|
21
21
|
static foreignKeyPrincipalColumnMissingWarning(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Scaffolding>, foreignKeyName: string, tableName: string, principalColumnName: string, principalTableName: string): void;
|
|
22
22
|
static foreignKeyReferencesMissingTableWarning(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Scaffolding>, id: string, tableName: string, principalTableName: string): void;
|
|
23
|
-
static formatWarning(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Scaffolding>, columnName: string, tableName: string,
|
|
23
|
+
static formatWarning(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Scaffolding>, columnName: string, tableName: string, type: string): void;
|
|
24
24
|
static indexFound(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Scaffolding>, indexName: string, tableName: string, unique: Nullable<System_Internal.Boolean>): void;
|
|
25
25
|
static inferringTypes(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Scaffolding>, tableName: string): void;
|
|
26
26
|
static missingTableWarning(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Scaffolding>, tableName: string): void;
|
|
27
|
-
static outOfRangeWarning(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Scaffolding>, columnName: string, tableName: string,
|
|
27
|
+
static outOfRangeWarning(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Scaffolding>, columnName: string, tableName: string, type: string): void;
|
|
28
28
|
static primaryKeyFound(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Scaffolding>, primaryKeyName: string, tableName: string): void;
|
|
29
29
|
static schemaConfiguredWarning(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Model$Validation>, entityType: IEntityType, schema: string): void;
|
|
30
30
|
static schemasNotSupportedWarning(diagnostics: IDiagnosticsLogger<DbLoggerCategory$Scaffolding>): void;
|
|
@@ -69,11 +69,11 @@ export abstract class SqliteStrings$instance {
|
|
|
69
69
|
static readonly executeUpdateJsonPartialUpdateDoesNotSupportUlong: string;
|
|
70
70
|
static readonly migrationScriptGenerationNotSupported: string;
|
|
71
71
|
static readonly sequencesNotSupported: string;
|
|
72
|
-
static aggregateOperationNotSupported(aggregateOperator: unknown,
|
|
72
|
+
static aggregateOperationNotSupported(aggregateOperator: unknown, type: unknown): string;
|
|
73
73
|
static duplicateColumnNameSridMismatch(entityType1: unknown, property1: unknown, entityType2: unknown, property2: unknown, columnName: unknown, table: unknown): string;
|
|
74
74
|
static incompatibleSqlReturningClauseMismatch(table: unknown, entityType: unknown, otherEntityType: unknown, entityTypeWithSqlReturningClause: unknown, entityTypeWithoutSqlReturningClause: unknown): string;
|
|
75
75
|
static invalidMigrationOperation(operation: unknown): string;
|
|
76
|
-
static orderByNotSupported(
|
|
76
|
+
static orderByNotSupported(type: unknown): string;
|
|
77
77
|
static queryingIntoJsonCollectionsNotSupported(sqliteVersion: unknown): string;
|
|
78
78
|
static storedProceduresNotSupported(entityType: unknown): string;
|
|
79
79
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
{
|
|
12
12
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal.SqliteAnnotationProvider::For(Microsoft.EntityFrameworkCore.Metadata.IRelationalModel,System.Boolean):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
|
|
13
13
|
"clrName": "For",
|
|
14
|
-
"tsEmitName": "
|
|
14
|
+
"tsEmitName": "for",
|
|
15
15
|
"metadataToken": 100664144,
|
|
16
16
|
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IRelationalModel,System.Boolean):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
|
|
17
17
|
"normalizedSignature": "For|(Microsoft.EntityFrameworkCore.Metadata.IRelationalModel,System.Boolean):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]|static=false",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
{
|
|
26
26
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal.SqliteAnnotationProvider::For(Microsoft.EntityFrameworkCore.Metadata.IColumn,System.Boolean):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
|
|
27
27
|
"clrName": "For",
|
|
28
|
-
"tsEmitName": "
|
|
28
|
+
"tsEmitName": "for",
|
|
29
29
|
"metadataToken": 100664145,
|
|
30
30
|
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IColumn,System.Boolean):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
|
|
31
31
|
"normalizedSignature": "For|(Microsoft.EntityFrameworkCore.Metadata.IColumn,System.Boolean):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]|static=false",
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
],
|
|
55
55
|
"exposedMethods": [
|
|
56
56
|
{
|
|
57
|
-
"tsName": "
|
|
57
|
+
"tsName": "for",
|
|
58
58
|
"isStatic": false,
|
|
59
59
|
"tsSignatureId": "For|(Microsoft.EntityFrameworkCore.Metadata.IRelationalModel,System.Boolean):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]|static=false",
|
|
60
60
|
"target": {
|
|
@@ -64,7 +64,7 @@
|
|
|
64
64
|
}
|
|
65
65
|
},
|
|
66
66
|
{
|
|
67
|
-
"tsName": "
|
|
67
|
+
"tsName": "for",
|
|
68
68
|
"isStatic": false,
|
|
69
69
|
"tsSignatureId": "For|(Microsoft.EntityFrameworkCore.Metadata.IColumn,System.Boolean):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]|static=false",
|
|
70
70
|
"target": {
|
|
@@ -14,8 +14,8 @@ import * as Microsoft_EntityFrameworkCore_Metadata_Internal from "@tsonic/efcore
|
|
|
14
14
|
import type { IColumn, IRelationalAnnotationProvider, IRelationalModel, RelationalAnnotationProvider, RelationalAnnotationProviderDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js";
|
|
15
15
|
|
|
16
16
|
export interface SqliteAnnotationProvider$instance extends RelationalAnnotationProvider {
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
for(model: IRelationalModel, designTime: boolean): IEnumerable<IAnnotation>;
|
|
18
|
+
for(column: IColumn, designTime: boolean): IEnumerable<IAnnotation>;
|
|
19
19
|
}
|
|
20
20
|
|
|
21
21
|
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
{
|
|
19
19
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal.SqliteAnnotationProvider::For(Microsoft.EntityFrameworkCore.Metadata.IRelationalModel,System.Boolean):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
|
|
20
20
|
"clrName": "For",
|
|
21
|
-
"tsEmitName": "
|
|
21
|
+
"tsEmitName": "for",
|
|
22
22
|
"normalizedSignature": "For|(Microsoft.EntityFrameworkCore.Metadata.IRelationalModel,System.Boolean):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]|static=false",
|
|
23
23
|
"provenance": "Original",
|
|
24
24
|
"emitScope": "ClassSurface",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
{
|
|
35
35
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal.SqliteAnnotationProvider::For(Microsoft.EntityFrameworkCore.Metadata.IColumn,System.Boolean):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
|
|
36
36
|
"clrName": "For",
|
|
37
|
-
"tsEmitName": "
|
|
37
|
+
"tsEmitName": "for",
|
|
38
38
|
"normalizedSignature": "For|(Microsoft.EntityFrameworkCore.Metadata.IColumn,System.Boolean):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]|static=false",
|
|
39
39
|
"provenance": "Original",
|
|
40
40
|
"emitScope": "ClassSurface",
|
|
@@ -295,16 +295,16 @@ export interface SqliteQueryCompilationContext$instance extends RelationalQueryC
|
|
|
295
295
|
|
|
296
296
|
|
|
297
297
|
export const SqliteQueryCompilationContext: {
|
|
298
|
-
new(dependencies: QueryCompilationContextDependencies, relationalDependencies: RelationalQueryCompilationContextDependencies,
|
|
299
|
-
new(dependencies: QueryCompilationContextDependencies, relationalDependencies: RelationalQueryCompilationContextDependencies,
|
|
298
|
+
new(dependencies: QueryCompilationContextDependencies, relationalDependencies: RelationalQueryCompilationContextDependencies, async: boolean): SqliteQueryCompilationContext;
|
|
299
|
+
new(dependencies: QueryCompilationContextDependencies, relationalDependencies: RelationalQueryCompilationContextDependencies, async: boolean, precompiling: boolean): SqliteQueryCompilationContext;
|
|
300
300
|
};
|
|
301
301
|
|
|
302
302
|
|
|
303
303
|
export type SqliteQueryCompilationContext = SqliteQueryCompilationContext$instance;
|
|
304
304
|
|
|
305
305
|
export interface SqliteQueryCompilationContextFactory$instance {
|
|
306
|
-
create(
|
|
307
|
-
createPrecompiled(
|
|
306
|
+
create(async: boolean): QueryCompilationContext;
|
|
307
|
+
createPrecompiled(async: boolean): QueryCompilationContext;
|
|
308
308
|
}
|
|
309
309
|
|
|
310
310
|
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
{
|
|
52
52
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping",
|
|
53
53
|
"clrName": "Default",
|
|
54
|
-
"tsEmitName": "
|
|
54
|
+
"tsEmitName": "default",
|
|
55
55
|
"metadataToken": 385876088,
|
|
56
56
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping",
|
|
57
57
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping|static=true|accessor=get",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
],
|
|
80
80
|
"exposedProperties": [
|
|
81
81
|
{
|
|
82
|
-
"tsName": "
|
|
82
|
+
"tsName": "default",
|
|
83
83
|
"isStatic": true,
|
|
84
84
|
"tsSignatureId": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping|static=true|accessor=get",
|
|
85
85
|
"target": {
|
|
@@ -153,7 +153,7 @@
|
|
|
153
153
|
{
|
|
154
154
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDatabaseCreator::Delete():System.Void",
|
|
155
155
|
"clrName": "Delete",
|
|
156
|
-
"tsEmitName": "
|
|
156
|
+
"tsEmitName": "delete",
|
|
157
157
|
"metadataToken": 100663835,
|
|
158
158
|
"canonicalSignature": "():System.Void",
|
|
159
159
|
"normalizedSignature": "Delete|():System.Void|static=false",
|
|
@@ -212,7 +212,7 @@
|
|
|
212
212
|
}
|
|
213
213
|
},
|
|
214
214
|
{
|
|
215
|
-
"tsName": "
|
|
215
|
+
"tsName": "delete",
|
|
216
216
|
"isStatic": false,
|
|
217
217
|
"tsSignatureId": "Delete|():System.Void|static=false",
|
|
218
218
|
"target": {
|
|
@@ -245,7 +245,7 @@
|
|
|
245
245
|
{
|
|
246
246
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping",
|
|
247
247
|
"clrName": "Default",
|
|
248
|
-
"tsEmitName": "
|
|
248
|
+
"tsEmitName": "default",
|
|
249
249
|
"metadataToken": 385876089,
|
|
250
250
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping",
|
|
251
251
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping|static=true|accessor=get",
|
|
@@ -273,7 +273,7 @@
|
|
|
273
273
|
],
|
|
274
274
|
"exposedProperties": [
|
|
275
275
|
{
|
|
276
|
-
"tsName": "
|
|
276
|
+
"tsName": "default",
|
|
277
277
|
"isStatic": true,
|
|
278
278
|
"tsSignatureId": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping|static=true|accessor=get",
|
|
279
279
|
"target": {
|
|
@@ -306,7 +306,7 @@
|
|
|
306
306
|
{
|
|
307
307
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping",
|
|
308
308
|
"clrName": "Default",
|
|
309
|
-
"tsEmitName": "
|
|
309
|
+
"tsEmitName": "default",
|
|
310
310
|
"metadataToken": 385876091,
|
|
311
311
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping",
|
|
312
312
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping|static=true|accessor=get",
|
|
@@ -334,7 +334,7 @@
|
|
|
334
334
|
],
|
|
335
335
|
"exposedProperties": [
|
|
336
336
|
{
|
|
337
|
-
"tsName": "
|
|
337
|
+
"tsName": "default",
|
|
338
338
|
"isStatic": true,
|
|
339
339
|
"tsSignatureId": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping|static=true|accessor=get",
|
|
340
340
|
"target": {
|
|
@@ -367,7 +367,7 @@
|
|
|
367
367
|
{
|
|
368
368
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping",
|
|
369
369
|
"clrName": "Default",
|
|
370
|
-
"tsEmitName": "
|
|
370
|
+
"tsEmitName": "default",
|
|
371
371
|
"metadataToken": 385876093,
|
|
372
372
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping",
|
|
373
373
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping|static=true|accessor=get",
|
|
@@ -395,7 +395,7 @@
|
|
|
395
395
|
],
|
|
396
396
|
"exposedProperties": [
|
|
397
397
|
{
|
|
398
|
-
"tsName": "
|
|
398
|
+
"tsName": "default",
|
|
399
399
|
"isStatic": true,
|
|
400
400
|
"tsSignatureId": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping|static=true|accessor=get",
|
|
401
401
|
"target": {
|
|
@@ -428,7 +428,7 @@
|
|
|
428
428
|
{
|
|
429
429
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping",
|
|
430
430
|
"clrName": "Default",
|
|
431
|
-
"tsEmitName": "
|
|
431
|
+
"tsEmitName": "default",
|
|
432
432
|
"metadataToken": 385876095,
|
|
433
433
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping",
|
|
434
434
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping|static=true|accessor=get",
|
|
@@ -456,7 +456,7 @@
|
|
|
456
456
|
],
|
|
457
457
|
"exposedProperties": [
|
|
458
458
|
{
|
|
459
|
-
"tsName": "
|
|
459
|
+
"tsName": "default",
|
|
460
460
|
"isStatic": true,
|
|
461
461
|
"tsSignatureId": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping|static=true|accessor=get",
|
|
462
462
|
"target": {
|
|
@@ -489,7 +489,7 @@
|
|
|
489
489
|
{
|
|
490
490
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping",
|
|
491
491
|
"clrName": "Default",
|
|
492
|
-
"tsEmitName": "
|
|
492
|
+
"tsEmitName": "default",
|
|
493
493
|
"metadataToken": 385876097,
|
|
494
494
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping",
|
|
495
495
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping|static=true|accessor=get",
|
|
@@ -517,7 +517,7 @@
|
|
|
517
517
|
],
|
|
518
518
|
"exposedProperties": [
|
|
519
519
|
{
|
|
520
|
-
"tsName": "
|
|
520
|
+
"tsName": "default",
|
|
521
521
|
"isStatic": true,
|
|
522
522
|
"tsSignatureId": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping|static=true|accessor=get",
|
|
523
523
|
"target": {
|
|
@@ -579,7 +579,7 @@
|
|
|
579
579
|
{
|
|
580
580
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping",
|
|
581
581
|
"clrName": "Default",
|
|
582
|
-
"tsEmitName": "
|
|
582
|
+
"tsEmitName": "default",
|
|
583
583
|
"metadataToken": 385876098,
|
|
584
584
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping",
|
|
585
585
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping|static=true|accessor=get",
|
|
@@ -629,7 +629,7 @@
|
|
|
629
629
|
],
|
|
630
630
|
"exposedProperties": [
|
|
631
631
|
{
|
|
632
|
-
"tsName": "
|
|
632
|
+
"tsName": "default",
|
|
633
633
|
"isStatic": true,
|
|
634
634
|
"tsSignatureId": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping|static=true|accessor=get",
|
|
635
635
|
"target": {
|
|
@@ -859,7 +859,7 @@
|
|
|
859
859
|
{
|
|
860
860
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping",
|
|
861
861
|
"clrName": "Default",
|
|
862
|
-
"tsEmitName": "
|
|
862
|
+
"tsEmitName": "default",
|
|
863
863
|
"metadataToken": 385876100,
|
|
864
864
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping",
|
|
865
865
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping|static=true|accessor=get",
|
|
@@ -887,7 +887,7 @@
|
|
|
887
887
|
],
|
|
888
888
|
"exposedProperties": [
|
|
889
889
|
{
|
|
890
|
-
"tsName": "
|
|
890
|
+
"tsName": "default",
|
|
891
891
|
"isStatic": true,
|
|
892
892
|
"tsSignatureId": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping|static=true|accessor=get",
|
|
893
893
|
"target": {
|
|
@@ -920,7 +920,7 @@
|
|
|
920
920
|
{
|
|
921
921
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping",
|
|
922
922
|
"clrName": "Default",
|
|
923
|
-
"tsEmitName": "
|
|
923
|
+
"tsEmitName": "default",
|
|
924
924
|
"metadataToken": 385876101,
|
|
925
925
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping",
|
|
926
926
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping|static=true|accessor=get",
|
|
@@ -948,7 +948,7 @@
|
|
|
948
948
|
],
|
|
949
949
|
"exposedProperties": [
|
|
950
950
|
{
|
|
951
|
-
"tsName": "
|
|
951
|
+
"tsName": "default",
|
|
952
952
|
"isStatic": true,
|
|
953
953
|
"tsSignatureId": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping|static=true|accessor=get",
|
|
954
954
|
"target": {
|
|
@@ -1042,7 +1042,7 @@
|
|
|
1042
1042
|
{
|
|
1043
1043
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping",
|
|
1044
1044
|
"clrName": "Default",
|
|
1045
|
-
"tsEmitName": "
|
|
1045
|
+
"tsEmitName": "default",
|
|
1046
1046
|
"metadataToken": 385876102,
|
|
1047
1047
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping",
|
|
1048
1048
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping|static=true|accessor=get",
|
|
@@ -1070,7 +1070,7 @@
|
|
|
1070
1070
|
],
|
|
1071
1071
|
"exposedProperties": [
|
|
1072
1072
|
{
|
|
1073
|
-
"tsName": "
|
|
1073
|
+
"tsName": "default",
|
|
1074
1074
|
"isStatic": true,
|
|
1075
1075
|
"tsSignatureId": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping|static=true|accessor=get",
|
|
1076
1076
|
"target": {
|
|
@@ -32,7 +32,7 @@ export interface SqliteByteArrayTypeMapping$instance extends ByteArrayTypeMappin
|
|
|
32
32
|
|
|
33
33
|
export const SqliteByteArrayTypeMapping: {
|
|
34
34
|
new(storeType: string, dbType: Nullable<DbType>): SqliteByteArrayTypeMapping;
|
|
35
|
-
readonly
|
|
35
|
+
readonly default: SqliteByteArrayTypeMapping;
|
|
36
36
|
};
|
|
37
37
|
|
|
38
38
|
|
|
@@ -40,7 +40,7 @@ export type SqliteByteArrayTypeMapping = SqliteByteArrayTypeMapping$instance;
|
|
|
40
40
|
|
|
41
41
|
export interface SqliteDatabaseCreator$instance extends RelationalDatabaseCreator {
|
|
42
42
|
create(): void;
|
|
43
|
-
|
|
43
|
+
delete(): void;
|
|
44
44
|
exists(): boolean;
|
|
45
45
|
hasTables(): boolean;
|
|
46
46
|
}
|
|
@@ -59,7 +59,7 @@ export interface SqliteDateOnlyTypeMapping$instance extends DateOnlyTypeMapping
|
|
|
59
59
|
|
|
60
60
|
export const SqliteDateOnlyTypeMapping: {
|
|
61
61
|
new(storeType: string, dbType: Nullable<DbType>): SqliteDateOnlyTypeMapping;
|
|
62
|
-
readonly
|
|
62
|
+
readonly default: SqliteDateOnlyTypeMapping;
|
|
63
63
|
};
|
|
64
64
|
|
|
65
65
|
|
|
@@ -71,7 +71,7 @@ export interface SqliteDateTimeOffsetTypeMapping$instance extends DateTimeOffset
|
|
|
71
71
|
|
|
72
72
|
export const SqliteDateTimeOffsetTypeMapping: {
|
|
73
73
|
new(storeType: string, dbType: Nullable<DbType>): SqliteDateTimeOffsetTypeMapping;
|
|
74
|
-
readonly
|
|
74
|
+
readonly default: SqliteDateTimeOffsetTypeMapping;
|
|
75
75
|
};
|
|
76
76
|
|
|
77
77
|
|
|
@@ -83,7 +83,7 @@ export interface SqliteDateTimeTypeMapping$instance extends DateTimeTypeMapping
|
|
|
83
83
|
|
|
84
84
|
export const SqliteDateTimeTypeMapping: {
|
|
85
85
|
new(storeType: string, dbType: Nullable<DbType>): SqliteDateTimeTypeMapping;
|
|
86
|
-
readonly
|
|
86
|
+
readonly default: SqliteDateTimeTypeMapping;
|
|
87
87
|
};
|
|
88
88
|
|
|
89
89
|
|
|
@@ -95,7 +95,7 @@ export interface SqliteDecimalTypeMapping$instance extends DecimalTypeMapping {
|
|
|
95
95
|
|
|
96
96
|
export const SqliteDecimalTypeMapping: {
|
|
97
97
|
new(storeType: string, dbType: Nullable<DbType>): SqliteDecimalTypeMapping;
|
|
98
|
-
readonly
|
|
98
|
+
readonly default: SqliteDecimalTypeMapping;
|
|
99
99
|
};
|
|
100
100
|
|
|
101
101
|
|
|
@@ -107,7 +107,7 @@ export interface SqliteGuidTypeMapping$instance extends GuidTypeMapping {
|
|
|
107
107
|
|
|
108
108
|
export const SqliteGuidTypeMapping: {
|
|
109
109
|
new(storeType: string, dbType: Nullable<DbType>): SqliteGuidTypeMapping;
|
|
110
|
-
readonly
|
|
110
|
+
readonly default: SqliteGuidTypeMapping;
|
|
111
111
|
};
|
|
112
112
|
|
|
113
113
|
|
|
@@ -121,7 +121,7 @@ export interface SqliteJsonTypeMapping$instance extends JsonTypeMapping {
|
|
|
121
121
|
|
|
122
122
|
export const SqliteJsonTypeMapping: {
|
|
123
123
|
new(storeType: string): SqliteJsonTypeMapping;
|
|
124
|
-
readonly
|
|
124
|
+
readonly default: SqliteJsonTypeMapping;
|
|
125
125
|
};
|
|
126
126
|
|
|
127
127
|
|
|
@@ -166,7 +166,7 @@ export interface SqliteStringTypeMapping$instance extends StringTypeMapping {
|
|
|
166
166
|
|
|
167
167
|
export const SqliteStringTypeMapping: {
|
|
168
168
|
new(storeType: string, dbType: Nullable<DbType>, unicode: boolean, size: Nullable<System_Internal.Int32>): SqliteStringTypeMapping;
|
|
169
|
-
readonly
|
|
169
|
+
readonly default: SqliteStringTypeMapping;
|
|
170
170
|
};
|
|
171
171
|
|
|
172
172
|
|
|
@@ -178,7 +178,7 @@ export interface SqliteTimeOnlyTypeMapping$instance extends TimeOnlyTypeMapping
|
|
|
178
178
|
|
|
179
179
|
export const SqliteTimeOnlyTypeMapping: {
|
|
180
180
|
new(storeType: string, dbType: Nullable<DbType>): SqliteTimeOnlyTypeMapping;
|
|
181
|
-
readonly
|
|
181
|
+
readonly default: SqliteTimeOnlyTypeMapping;
|
|
182
182
|
};
|
|
183
183
|
|
|
184
184
|
|
|
@@ -202,7 +202,7 @@ export interface SqliteULongTypeMapping$instance extends ULongTypeMapping {
|
|
|
202
202
|
|
|
203
203
|
export const SqliteULongTypeMapping: {
|
|
204
204
|
new(storeType: string, dbType: Nullable<DbType>): SqliteULongTypeMapping;
|
|
205
|
-
readonly
|
|
205
|
+
readonly default: SqliteULongTypeMapping;
|
|
206
206
|
};
|
|
207
207
|
|
|
208
208
|
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
{
|
|
53
53
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping",
|
|
54
54
|
"clrName": "Default",
|
|
55
|
-
"tsEmitName": "
|
|
55
|
+
"tsEmitName": "default",
|
|
56
56
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping|static=true|accessor=get",
|
|
57
57
|
"provenance": "Original",
|
|
58
58
|
"emitScope": "ClassSurface",
|
|
@@ -137,7 +137,7 @@
|
|
|
137
137
|
{
|
|
138
138
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDatabaseCreator::Delete():System.Void",
|
|
139
139
|
"clrName": "Delete",
|
|
140
|
-
"tsEmitName": "
|
|
140
|
+
"tsEmitName": "delete",
|
|
141
141
|
"normalizedSignature": "Delete|():System.Void|static=false",
|
|
142
142
|
"provenance": "Original",
|
|
143
143
|
"emitScope": "ClassSurface",
|
|
@@ -177,7 +177,7 @@
|
|
|
177
177
|
{
|
|
178
178
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping",
|
|
179
179
|
"clrName": "Default",
|
|
180
|
-
"tsEmitName": "
|
|
180
|
+
"tsEmitName": "default",
|
|
181
181
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping|static=true|accessor=get",
|
|
182
182
|
"provenance": "Original",
|
|
183
183
|
"emitScope": "ClassSurface",
|
|
@@ -215,7 +215,7 @@
|
|
|
215
215
|
{
|
|
216
216
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping",
|
|
217
217
|
"clrName": "Default",
|
|
218
|
-
"tsEmitName": "
|
|
218
|
+
"tsEmitName": "default",
|
|
219
219
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping|static=true|accessor=get",
|
|
220
220
|
"provenance": "Original",
|
|
221
221
|
"emitScope": "ClassSurface",
|
|
@@ -253,7 +253,7 @@
|
|
|
253
253
|
{
|
|
254
254
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping",
|
|
255
255
|
"clrName": "Default",
|
|
256
|
-
"tsEmitName": "
|
|
256
|
+
"tsEmitName": "default",
|
|
257
257
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping|static=true|accessor=get",
|
|
258
258
|
"provenance": "Original",
|
|
259
259
|
"emitScope": "ClassSurface",
|
|
@@ -291,7 +291,7 @@
|
|
|
291
291
|
{
|
|
292
292
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping",
|
|
293
293
|
"clrName": "Default",
|
|
294
|
-
"tsEmitName": "
|
|
294
|
+
"tsEmitName": "default",
|
|
295
295
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping|static=true|accessor=get",
|
|
296
296
|
"provenance": "Original",
|
|
297
297
|
"emitScope": "ClassSurface",
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
{
|
|
330
330
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping",
|
|
331
331
|
"clrName": "Default",
|
|
332
|
-
"tsEmitName": "
|
|
332
|
+
"tsEmitName": "default",
|
|
333
333
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping|static=true|accessor=get",
|
|
334
334
|
"provenance": "Original",
|
|
335
335
|
"emitScope": "ClassSurface",
|
|
@@ -400,7 +400,7 @@
|
|
|
400
400
|
{
|
|
401
401
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping",
|
|
402
402
|
"clrName": "Default",
|
|
403
|
-
"tsEmitName": "
|
|
403
|
+
"tsEmitName": "default",
|
|
404
404
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping|static=true|accessor=get",
|
|
405
405
|
"provenance": "Original",
|
|
406
406
|
"emitScope": "ClassSurface",
|
|
@@ -565,7 +565,7 @@
|
|
|
565
565
|
{
|
|
566
566
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping",
|
|
567
567
|
"clrName": "Default",
|
|
568
|
-
"tsEmitName": "
|
|
568
|
+
"tsEmitName": "default",
|
|
569
569
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping|static=true|accessor=get",
|
|
570
570
|
"provenance": "Original",
|
|
571
571
|
"emitScope": "ClassSurface",
|
|
@@ -603,7 +603,7 @@
|
|
|
603
603
|
{
|
|
604
604
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping",
|
|
605
605
|
"clrName": "Default",
|
|
606
|
-
"tsEmitName": "
|
|
606
|
+
"tsEmitName": "default",
|
|
607
607
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping|static=true|accessor=get",
|
|
608
608
|
"provenance": "Original",
|
|
609
609
|
"emitScope": "ClassSurface",
|
|
@@ -680,7 +680,7 @@
|
|
|
680
680
|
{
|
|
681
681
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping",
|
|
682
682
|
"clrName": "Default",
|
|
683
|
-
"tsEmitName": "
|
|
683
|
+
"tsEmitName": "default",
|
|
684
684
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping|static=true|accessor=get",
|
|
685
685
|
"provenance": "Original",
|
|
686
686
|
"emitScope": "ClassSurface",
|
|
@@ -310,7 +310,7 @@
|
|
|
310
310
|
}
|
|
311
311
|
},
|
|
312
312
|
{
|
|
313
|
-
"tsName": "
|
|
313
|
+
"tsName": "type",
|
|
314
314
|
"isStatic": false,
|
|
315
315
|
"tsSignatureId": "Type|:System.String|static=false|accessor=get",
|
|
316
316
|
"target": {
|
|
@@ -600,7 +600,7 @@
|
|
|
600
600
|
{
|
|
601
601
|
"stableId": "Microsoft.Extensions.DependencyModel:Microsoft.Extensions.DependencyModel.CompilationOptions::Default:Microsoft.Extensions.DependencyModel.CompilationOptions",
|
|
602
602
|
"clrName": "Default",
|
|
603
|
-
"tsEmitName": "
|
|
603
|
+
"tsEmitName": "default",
|
|
604
604
|
"metadataToken": 385875994,
|
|
605
605
|
"canonicalSignature": ":Microsoft.Extensions.DependencyModel.CompilationOptions",
|
|
606
606
|
"normalizedSignature": "Default|:Microsoft.Extensions.DependencyModel.CompilationOptions|static=true|accessor=get",
|
|
@@ -748,7 +748,7 @@
|
|
|
748
748
|
}
|
|
749
749
|
},
|
|
750
750
|
{
|
|
751
|
-
"tsName": "
|
|
751
|
+
"tsName": "default",
|
|
752
752
|
"isStatic": true,
|
|
753
753
|
"tsSignatureId": "Default|:Microsoft.Extensions.DependencyModel.CompilationOptions|static=true|accessor=get",
|
|
754
754
|
"target": {
|
|
@@ -810,7 +810,7 @@
|
|
|
810
810
|
{
|
|
811
811
|
"stableId": "Microsoft.Extensions.DependencyModel:Microsoft.Extensions.DependencyModel.DependencyContext::Default:Microsoft.Extensions.DependencyModel.DependencyContext",
|
|
812
812
|
"clrName": "Default",
|
|
813
|
-
"tsEmitName": "
|
|
813
|
+
"tsEmitName": "default",
|
|
814
814
|
"metadataToken": 385875997,
|
|
815
815
|
"canonicalSignature": ":Microsoft.Extensions.DependencyModel.DependencyContext",
|
|
816
816
|
"normalizedSignature": "Default|:Microsoft.Extensions.DependencyModel.DependencyContext|static=true|accessor=get",
|
|
@@ -930,7 +930,7 @@
|
|
|
930
930
|
],
|
|
931
931
|
"exposedProperties": [
|
|
932
932
|
{
|
|
933
|
-
"tsName": "
|
|
933
|
+
"tsName": "default",
|
|
934
934
|
"isStatic": true,
|
|
935
935
|
"tsSignatureId": "Default|:Microsoft.Extensions.DependencyModel.DependencyContext|static=true|accessor=get",
|
|
936
936
|
"target": {
|
|
@@ -1137,7 +1137,7 @@
|
|
|
1137
1137
|
{
|
|
1138
1138
|
"stableId": "Microsoft.Extensions.DependencyModel:Microsoft.Extensions.DependencyModel.DependencyContextLoader::Default:Microsoft.Extensions.DependencyModel.DependencyContextLoader",
|
|
1139
1139
|
"clrName": "Default",
|
|
1140
|
-
"tsEmitName": "
|
|
1140
|
+
"tsEmitName": "default",
|
|
1141
1141
|
"metadataToken": 385876004,
|
|
1142
1142
|
"canonicalSignature": ":Microsoft.Extensions.DependencyModel.DependencyContextLoader",
|
|
1143
1143
|
"normalizedSignature": "Default|:Microsoft.Extensions.DependencyModel.DependencyContextLoader|static=true|accessor=get",
|
|
@@ -1177,7 +1177,7 @@
|
|
|
1177
1177
|
],
|
|
1178
1178
|
"exposedProperties": [
|
|
1179
1179
|
{
|
|
1180
|
-
"tsName": "
|
|
1180
|
+
"tsName": "default",
|
|
1181
1181
|
"isStatic": true,
|
|
1182
1182
|
"tsSignatureId": "Default|:Microsoft.Extensions.DependencyModel.DependencyContextLoader|static=true|accessor=get",
|
|
1183
1183
|
"target": {
|
|
@@ -1271,7 +1271,7 @@
|
|
|
1271
1271
|
{
|
|
1272
1272
|
"stableId": "Microsoft.Extensions.DependencyModel:Microsoft.Extensions.DependencyModel.Library::Type:System.String",
|
|
1273
1273
|
"clrName": "Type",
|
|
1274
|
-
"tsEmitName": "
|
|
1274
|
+
"tsEmitName": "type",
|
|
1275
1275
|
"metadataToken": 385876014,
|
|
1276
1276
|
"canonicalSignature": ":System.String",
|
|
1277
1277
|
"normalizedSignature": "Type|:System.String|static=false|accessor=get",
|
|
@@ -1431,7 +1431,7 @@
|
|
|
1431
1431
|
],
|
|
1432
1432
|
"exposedProperties": [
|
|
1433
1433
|
{
|
|
1434
|
-
"tsName": "
|
|
1434
|
+
"tsName": "type",
|
|
1435
1435
|
"isStatic": false,
|
|
1436
1436
|
"tsSignatureId": "Type|:System.String|static=false|accessor=get",
|
|
1437
1437
|
"target": {
|
|
@@ -2311,7 +2311,7 @@
|
|
|
2311
2311
|
}
|
|
2312
2312
|
},
|
|
2313
2313
|
{
|
|
2314
|
-
"tsName": "
|
|
2314
|
+
"tsName": "type",
|
|
2315
2315
|
"isStatic": false,
|
|
2316
2316
|
"tsSignatureId": "Type|:System.String|static=false|accessor=get",
|
|
2317
2317
|
"target": {
|
|
@@ -44,8 +44,8 @@ export interface CompilationLibrary$instance extends Library {
|
|
|
44
44
|
|
|
45
45
|
|
|
46
46
|
export const CompilationLibrary: {
|
|
47
|
-
new(
|
|
48
|
-
new(
|
|
47
|
+
new(type: string, name: string, version: string, hash: string, assemblies: IEnumerable<System_Internal.String>, dependencies: IEnumerable<Dependency>, serviceable: boolean): CompilationLibrary;
|
|
48
|
+
new(type: string, name: string, version: string, hash: string, assemblies: IEnumerable<System_Internal.String>, dependencies: IEnumerable<Dependency>, serviceable: boolean, path: string, hashPath: string): CompilationLibrary;
|
|
49
49
|
};
|
|
50
50
|
|
|
51
51
|
|
|
@@ -69,7 +69,7 @@ export interface CompilationOptions$instance {
|
|
|
69
69
|
|
|
70
70
|
export const CompilationOptions: {
|
|
71
71
|
new(defines: IEnumerable<System_Internal.String>, languageVersion: string, platform: string, allowUnsafe: Nullable<System_Internal.Boolean>, warningsAsErrors: Nullable<System_Internal.Boolean>, optimize: Nullable<System_Internal.Boolean>, keyFile: string, delaySign: Nullable<System_Internal.Boolean>, publicSign: Nullable<System_Internal.Boolean>, debugType: string, emitEntryPoint: Nullable<System_Internal.Boolean>, generateXmlDocumentation: Nullable<System_Internal.Boolean>): CompilationOptions;
|
|
72
|
-
readonly
|
|
72
|
+
readonly default: CompilationOptions;
|
|
73
73
|
};
|
|
74
74
|
|
|
75
75
|
|
|
@@ -87,7 +87,7 @@ export interface DependencyContext$instance {
|
|
|
87
87
|
|
|
88
88
|
export const DependencyContext: {
|
|
89
89
|
new(target: TargetInfo, compilationOptions: CompilationOptions, compileLibraries: IEnumerable<CompilationLibrary>, runtimeLibraries: IEnumerable<RuntimeLibrary>, runtimeGraph: IEnumerable<RuntimeFallbacks>): DependencyContext;
|
|
90
|
-
readonly
|
|
90
|
+
readonly default: DependencyContext | undefined;
|
|
91
91
|
load(assembly: Assembly): DependencyContext | undefined;
|
|
92
92
|
};
|
|
93
93
|
|
|
@@ -121,7 +121,7 @@ export interface DependencyContextLoader$instance {
|
|
|
121
121
|
|
|
122
122
|
export const DependencyContextLoader: {
|
|
123
123
|
new(): DependencyContextLoader;
|
|
124
|
-
readonly
|
|
124
|
+
readonly default: DependencyContextLoader;
|
|
125
125
|
};
|
|
126
126
|
|
|
127
127
|
|
|
@@ -147,15 +147,15 @@ export interface Library$instance {
|
|
|
147
147
|
readonly path: string;
|
|
148
148
|
readonly runtimeStoreManifestName: string | undefined;
|
|
149
149
|
readonly serviceable: boolean;
|
|
150
|
-
readonly
|
|
150
|
+
readonly type: string;
|
|
151
151
|
readonly version: string;
|
|
152
152
|
}
|
|
153
153
|
|
|
154
154
|
|
|
155
155
|
export const Library: {
|
|
156
|
-
new(
|
|
157
|
-
new(
|
|
158
|
-
new(
|
|
156
|
+
new(type: string, name: string, version: string, hash: string, dependencies: IEnumerable<Dependency>, serviceable: boolean): Library;
|
|
157
|
+
new(type: string, name: string, version: string, hash: string, dependencies: IEnumerable<Dependency>, serviceable: boolean, path: string, hashPath: string): Library;
|
|
158
|
+
new(type: string, name: string, version: string, hash: string, dependencies: IEnumerable<Dependency>, serviceable: boolean, path: string, hashPath: string, runtimeStoreManifestName: string): Library;
|
|
159
159
|
};
|
|
160
160
|
|
|
161
161
|
|
|
@@ -244,9 +244,9 @@ export interface RuntimeLibrary$instance extends Library {
|
|
|
244
244
|
|
|
245
245
|
|
|
246
246
|
export const RuntimeLibrary: {
|
|
247
|
-
new(
|
|
248
|
-
new(
|
|
249
|
-
new(
|
|
247
|
+
new(type: string, name: string, version: string, hash: string, runtimeAssemblyGroups: IReadOnlyList<RuntimeAssetGroup>, nativeLibraryGroups: IReadOnlyList<RuntimeAssetGroup>, resourceAssemblies: IEnumerable<ResourceAssembly>, dependencies: IEnumerable<Dependency>, serviceable: boolean): RuntimeLibrary;
|
|
248
|
+
new(type: string, name: string, version: string, hash: string, runtimeAssemblyGroups: IReadOnlyList<RuntimeAssetGroup>, nativeLibraryGroups: IReadOnlyList<RuntimeAssetGroup>, resourceAssemblies: IEnumerable<ResourceAssembly>, dependencies: IEnumerable<Dependency>, serviceable: boolean, path: string, hashPath: string): RuntimeLibrary;
|
|
249
|
+
new(type: string, name: string, version: string, hash: string, runtimeAssemblyGroups: IReadOnlyList<RuntimeAssetGroup>, nativeLibraryGroups: IReadOnlyList<RuntimeAssetGroup>, resourceAssemblies: IEnumerable<ResourceAssembly>, dependencies: IEnumerable<Dependency>, serviceable: boolean, path: string, hashPath: string, runtimeStoreManifestName: string): RuntimeLibrary;
|
|
250
250
|
};
|
|
251
251
|
|
|
252
252
|
|
|
@@ -410,7 +410,7 @@
|
|
|
410
410
|
{
|
|
411
411
|
"stableId": "Microsoft.Extensions.DependencyModel:Microsoft.Extensions.DependencyModel.CompilationOptions::Default:Microsoft.Extensions.DependencyModel.CompilationOptions",
|
|
412
412
|
"clrName": "Default",
|
|
413
|
-
"tsEmitName": "
|
|
413
|
+
"tsEmitName": "default",
|
|
414
414
|
"normalizedSignature": "Default|:Microsoft.Extensions.DependencyModel.CompilationOptions|static=true|accessor=get",
|
|
415
415
|
"provenance": "Original",
|
|
416
416
|
"emitScope": "ClassSurface",
|
|
@@ -481,7 +481,7 @@
|
|
|
481
481
|
{
|
|
482
482
|
"stableId": "Microsoft.Extensions.DependencyModel:Microsoft.Extensions.DependencyModel.DependencyContext::Default:Microsoft.Extensions.DependencyModel.DependencyContext",
|
|
483
483
|
"clrName": "Default",
|
|
484
|
-
"tsEmitName": "
|
|
484
|
+
"tsEmitName": "default",
|
|
485
485
|
"normalizedSignature": "Default|:Microsoft.Extensions.DependencyModel.DependencyContext|static=true|accessor=get",
|
|
486
486
|
"provenance": "Original",
|
|
487
487
|
"emitScope": "ClassSurface",
|
|
@@ -683,7 +683,7 @@
|
|
|
683
683
|
{
|
|
684
684
|
"stableId": "Microsoft.Extensions.DependencyModel:Microsoft.Extensions.DependencyModel.DependencyContextLoader::Default:Microsoft.Extensions.DependencyModel.DependencyContextLoader",
|
|
685
685
|
"clrName": "Default",
|
|
686
|
-
"tsEmitName": "
|
|
686
|
+
"tsEmitName": "default",
|
|
687
687
|
"normalizedSignature": "Default|:Microsoft.Extensions.DependencyModel.DependencyContextLoader|static=true|accessor=get",
|
|
688
688
|
"provenance": "Original",
|
|
689
689
|
"emitScope": "ClassSurface",
|
|
@@ -760,7 +760,7 @@
|
|
|
760
760
|
{
|
|
761
761
|
"stableId": "Microsoft.Extensions.DependencyModel:Microsoft.Extensions.DependencyModel.Library::Type:System.String",
|
|
762
762
|
"clrName": "Type",
|
|
763
|
-
"tsEmitName": "
|
|
763
|
+
"tsEmitName": "type",
|
|
764
764
|
"normalizedSignature": "Type|:System.String|static=false|accessor=get",
|
|
765
765
|
"provenance": "Original",
|
|
766
766
|
"emitScope": "ClassSurface",
|
package/SQLitePCL/bindings.json
CHANGED
|
@@ -6514,7 +6514,7 @@
|
|
|
6514
6514
|
{
|
|
6515
6515
|
"stableId": "SQLitePCLRaw.core:SQLitePCL.sqlite3_backup::From(System.IntPtr):SQLitePCL.sqlite3_backup",
|
|
6516
6516
|
"clrName": "From",
|
|
6517
|
-
"tsEmitName": "
|
|
6517
|
+
"tsEmitName": "from",
|
|
6518
6518
|
"metadataToken": 100663522,
|
|
6519
6519
|
"canonicalSignature": "(System.IntPtr):SQLitePCL.sqlite3_backup",
|
|
6520
6520
|
"normalizedSignature": "From|(System.IntPtr):SQLitePCL.sqlite3_backup|static=true",
|
|
@@ -6561,7 +6561,7 @@
|
|
|
6561
6561
|
"constructors": [],
|
|
6562
6562
|
"exposedMethods": [
|
|
6563
6563
|
{
|
|
6564
|
-
"tsName": "
|
|
6564
|
+
"tsName": "from",
|
|
6565
6565
|
"isStatic": true,
|
|
6566
6566
|
"tsSignatureId": "From|(System.IntPtr):SQLitePCL.sqlite3_backup|static=true",
|
|
6567
6567
|
"target": {
|
|
@@ -52,7 +52,7 @@ export type delegate_rollback = (user_data: unknown) => void;
|
|
|
52
52
|
export type delegate_trace = (user_data: unknown, statement: utf8z) => void;
|
|
53
53
|
|
|
54
54
|
|
|
55
|
-
export type delegate_update = (user_data: unknown,
|
|
55
|
+
export type delegate_update = (user_data: unknown, type: int, database: utf8z, table: utf8z, rowid: long) => void;
|
|
56
56
|
|
|
57
57
|
|
|
58
58
|
export type strdelegate_authorizer = (user_data: unknown, action_code: int, param0: string, param1: string, dbName: string, inner_most_trigger_or_view: string) => int;
|
|
@@ -73,7 +73,7 @@ export type strdelegate_profile = (user_data: unknown, statement: string, ns: lo
|
|
|
73
73
|
export type strdelegate_trace = (user_data: unknown, s: string) => void;
|
|
74
74
|
|
|
75
75
|
|
|
76
|
-
export type strdelegate_update = (user_data: unknown,
|
|
76
|
+
export type strdelegate_update = (user_data: unknown, type: int, database: string, table: string, rowid: long) => void;
|
|
77
77
|
|
|
78
78
|
|
|
79
79
|
export interface IGetFunctionPointer$instance {
|
|
@@ -432,7 +432,7 @@ export interface sqlite3_backup$instance extends SafeHandle {
|
|
|
432
432
|
|
|
433
433
|
export const sqlite3_backup: {
|
|
434
434
|
new(): sqlite3_backup;
|
|
435
|
-
|
|
435
|
+
from(p: nint): sqlite3_backup;
|
|
436
436
|
};
|
|
437
437
|
|
|
438
438
|
|
|
@@ -4306,7 +4306,7 @@
|
|
|
4306
4306
|
{
|
|
4307
4307
|
"stableId": "SQLitePCLRaw.core:SQLitePCL.sqlite3_backup::From(System.IntPtr):SQLitePCL.sqlite3_backup",
|
|
4308
4308
|
"clrName": "From",
|
|
4309
|
-
"tsEmitName": "
|
|
4309
|
+
"tsEmitName": "from",
|
|
4310
4310
|
"normalizedSignature": "From|(System.IntPtr):SQLitePCL.sqlite3_backup|static=true",
|
|
4311
4311
|
"provenance": "Original",
|
|
4312
4312
|
"emitScope": "ClassSurface",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/efcore-sqlite",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "TypeScript type definitions for Microsoft.EntityFrameworkCore.Sqlite (+ dependencies) for .NET 10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -25,4 +25,3 @@
|
|
|
25
25
|
"@tsonic/efcore": "^0.1.0"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
28
|
-
|