@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.
- package/Microsoft.Data.Sqlite/bindings.json +948 -1
- package/Microsoft.Data.Sqlite/internal/index.d.ts +51 -6
- 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 +30 -6
- 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 +35 -4
- 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 +7 -2
- 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 +24 -4
- 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 +9 -2
- 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 +131 -19
- 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 +8 -3
- 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 +98 -14
- 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.Update.Internal/bindings.json +194 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +24 -5
- 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 +6 -1
- package/Microsoft.Extensions.DependencyModel.Resolution/bindings.json +63 -0
- package/SQLitePCL/bindings.json +1398 -9
- package/SQLitePCL/internal/index.d.ts +40 -10
- package/System.Collections.Generic/bindings.json +10 -0
- package/package.json +1 -1
|
@@ -5,16 +5,20 @@
|
|
|
5
5
|
// Primitive type aliases from @tsonic/core
|
|
6
6
|
import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
|
|
7
7
|
|
|
8
|
+
// Import support types from @tsonic/core
|
|
9
|
+
import type { ptr } from "@tsonic/core/types.js";
|
|
10
|
+
|
|
8
11
|
// Import types from other namespaces
|
|
9
12
|
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
10
|
-
import type {
|
|
13
|
+
import type { Dictionary } from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
14
|
+
import type { Boolean as ClrBoolean, Nullable, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
11
15
|
import type { ModelBuilder } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.js";
|
|
12
16
|
import type { IConventionPropertyBuilder } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Builders.js";
|
|
13
17
|
import * as Microsoft_EntityFrameworkCore_Metadata_Conventions_Infrastructure_Internal from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.js";
|
|
14
18
|
import type { IProviderConventionSetBuilder, ProviderConventionSetBuilderDependencies, RelationalConventionSetBuilder, RelationalConventionSetBuilderDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.js";
|
|
15
19
|
import * as Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Conventions.js";
|
|
16
20
|
import type { ConventionSet, IConvention, IConventionContext, IEntityTypeAnnotationChangedConvention, IEntityTypeBaseTypeChangedConvention, IEntityTypePrimaryKeyChangedConvention, IForeignKeyAddedConvention, IForeignKeyOwnershipChangedConvention, IForeignKeyPropertiesChangedConvention, IForeignKeyRemovedConvention, IModelFinalizedConvention, IModelFinalizingConvention, IPropertyAnnotationChangedConvention, RelationalRuntimeModelConvention, RelationalValueGenerationConvention, SharedTableConvention, StoreGenerationConvention } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Conventions.js";
|
|
17
|
-
import type { IConventionAnnotation } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js";
|
|
21
|
+
import type { IConventionAnnotation, IConventionProperty, IProperty, RuntimeProperty, StoreObjectIdentifier, ValueGenerated } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js";
|
|
18
22
|
|
|
19
23
|
export interface SqliteConventionSetBuilder$instance extends RelationalConventionSetBuilder {
|
|
20
24
|
CreateConventionSet(): ConventionSet;
|
|
@@ -30,7 +34,12 @@ export const SqliteConventionSetBuilder: {
|
|
|
30
34
|
|
|
31
35
|
export type SqliteConventionSetBuilder = SqliteConventionSetBuilder$instance;
|
|
32
36
|
|
|
33
|
-
export
|
|
37
|
+
export abstract class SqliteRuntimeModelConvention$protected {
|
|
38
|
+
protected ProcessPropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IProperty, runtimeProperty: RuntimeProperty, runtime: boolean): void;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
|
|
42
|
+
export interface SqliteRuntimeModelConvention$instance extends SqliteRuntimeModelConvention$protected, RelationalRuntimeModelConvention {
|
|
34
43
|
}
|
|
35
44
|
|
|
36
45
|
|
|
@@ -41,7 +50,12 @@ export const SqliteRuntimeModelConvention: {
|
|
|
41
50
|
|
|
42
51
|
export type SqliteRuntimeModelConvention = SqliteRuntimeModelConvention$instance;
|
|
43
52
|
|
|
44
|
-
export
|
|
53
|
+
export abstract class SqliteSharedTableConvention$protected {
|
|
54
|
+
protected readonly CheckConstraintsUniqueAcrossTables: boolean;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
|
|
58
|
+
export interface SqliteSharedTableConvention$instance extends SqliteSharedTableConvention$protected, SharedTableConvention {
|
|
45
59
|
}
|
|
46
60
|
|
|
47
61
|
|
|
@@ -52,7 +66,12 @@ export const SqliteSharedTableConvention: {
|
|
|
52
66
|
|
|
53
67
|
export type SqliteSharedTableConvention = SqliteSharedTableConvention$instance;
|
|
54
68
|
|
|
55
|
-
export
|
|
69
|
+
export abstract class SqliteStoreGenerationConvention$protected {
|
|
70
|
+
protected Validate(property: IConventionProperty, storeObject: StoreObjectIdentifier): void;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
export interface SqliteStoreGenerationConvention$instance extends SqliteStoreGenerationConvention$protected, StoreGenerationConvention {
|
|
56
75
|
ProcessPropertyAnnotationChanged(propertyBuilder: IConventionPropertyBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext<IConventionAnnotation>): void;
|
|
57
76
|
}
|
|
58
77
|
|
|
@@ -64,7 +83,12 @@ export const SqliteStoreGenerationConvention: {
|
|
|
64
83
|
|
|
65
84
|
export type SqliteStoreGenerationConvention = SqliteStoreGenerationConvention$instance;
|
|
66
85
|
|
|
67
|
-
export
|
|
86
|
+
export abstract class SqliteValueGenerationConvention$protected {
|
|
87
|
+
protected GetValueGenerated(property: IConventionProperty): Nullable<ValueGenerated>;
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
export interface SqliteValueGenerationConvention$instance extends SqliteValueGenerationConvention$protected, RelationalValueGenerationConvention {
|
|
68
92
|
ProcessPropertyAnnotationChanged(propertyBuilder: IConventionPropertyBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext<IConventionAnnotation>): void;
|
|
69
93
|
}
|
|
70
94
|
|
|
@@ -6,12 +6,13 @@
|
|
|
6
6
|
import * as Internal from './Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.js';
|
|
7
7
|
|
|
8
8
|
// Cross-namespace type imports for constraints
|
|
9
|
-
import type {
|
|
9
|
+
import type { Dictionary } from '@tsonic/dotnet/System.Collections.Generic.js';
|
|
10
|
+
import type { Boolean as ClrBoolean, Nullable, Object as ClrObject, String as ClrString, Void } from '@tsonic/dotnet/System.js';
|
|
10
11
|
import type { ModelBuilder } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.js';
|
|
11
12
|
import type { IConventionPropertyBuilder } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Builders.js';
|
|
12
13
|
import type { IProviderConventionSetBuilder, ProviderConventionSetBuilderDependencies, RelationalConventionSetBuilder, RelationalConventionSetBuilderDependencies } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.js';
|
|
13
14
|
import type { ConventionSet, IConvention, IConventionContext, IEntityTypeAnnotationChangedConvention, IEntityTypeBaseTypeChangedConvention, IEntityTypePrimaryKeyChangedConvention, IForeignKeyAddedConvention, IForeignKeyOwnershipChangedConvention, IForeignKeyPropertiesChangedConvention, IForeignKeyRemovedConvention, IModelFinalizedConvention, IModelFinalizingConvention, IPropertyAnnotationChangedConvention, RelationalRuntimeModelConvention, RelationalValueGenerationConvention, SharedTableConvention, StoreGenerationConvention } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Conventions.js';
|
|
14
|
-
import type { IConventionAnnotation } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js';
|
|
15
|
+
import type { IConventionAnnotation, IConventionProperty, IProperty, RuntimeProperty, StoreObjectIdentifier, ValueGenerated } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js';
|
|
15
16
|
|
|
16
17
|
// Public API exports (curated - no internal $instance/$views leakage)
|
|
17
18
|
export { SqliteConventionSetBuilder as SqliteConventionSetBuilder } from './Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.js';
|