@tsonic/efcore-sqlite 10.0.3 → 10.0.7
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/internal/index.d.ts +167 -109
- package/Microsoft.DotNet.PlatformAbstractions/internal/index.d.ts +6 -4
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +54 -54
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +9 -7
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +12 -8
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +45 -13
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +12 -8
- package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/internal/index.d.ts +21 -11
- package/Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal/internal/index.d.ts +11 -5
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/internal/index.d.ts +23 -15
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal/internal/index.d.ts +42 -42
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/internal/index.d.ts +12 -8
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/internal/index.d.ts +18 -8
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +182 -38
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/internal/index.d.ts +18 -10
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +73 -26
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/internal/index.d.ts +22 -12
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +26 -6
- package/Microsoft.EntityFrameworkCore.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +5 -5
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +91 -54
- package/Microsoft.Extensions.DependencyModel.Resolution/internal/index.d.ts +32 -20
- package/SQLitePCL/internal/index.d.ts +115 -43
- package/SQLitePCL.d.ts +3 -0
- package/System.Collections.Generic/internal/index.d.ts +9 -9
- package/System.Collections.Generic.d.ts +3 -0
- package/__internal/extensions/index.d.ts +342 -16
- package/package.json +5 -5
|
@@ -4,41 +4,367 @@
|
|
|
4
4
|
// For each namespace with extension methods, this file exports an ExtensionMethods_<Namespace> helper.
|
|
5
5
|
|
|
6
6
|
// Import namespace modules for cross-namespace type references
|
|
7
|
+
import * as Microsoft_EntityFrameworkCore from "../../Microsoft.EntityFrameworkCore/internal/index.js";
|
|
8
|
+
import * as Microsoft_EntityFrameworkCore_Diagnostics from "../../Microsoft.EntityFrameworkCore.Diagnostics/internal/index.js";
|
|
9
|
+
import * as Microsoft_EntityFrameworkCore_Infrastructure from "../../Microsoft.EntityFrameworkCore.Infrastructure/internal/index.js";
|
|
10
|
+
import * as Microsoft_EntityFrameworkCore_Metadata from "../../Microsoft.EntityFrameworkCore.Metadata/internal/index.js";
|
|
11
|
+
import * as Microsoft_EntityFrameworkCore_Metadata_Builders from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.js";
|
|
12
|
+
import * as Microsoft_EntityFrameworkCore_Migrations from "../../Microsoft.EntityFrameworkCore.Migrations/internal/index.js";
|
|
13
|
+
import * as Microsoft_Extensions_DependencyInjection from "../../Microsoft.Extensions.DependencyInjection/internal/index.js";
|
|
7
14
|
import * as Microsoft_Extensions_DependencyModel from "../../Microsoft.Extensions.DependencyModel/internal/index.js";
|
|
15
|
+
import * as System from "@tsonic/dotnet/System/internal/index.js";
|
|
16
|
+
import * as System_Collections_Generic from "../../System.Collections.Generic/internal/index.js";
|
|
17
|
+
import * as System_Data_Common from "@tsonic/dotnet/System.Data.Common/internal/index.js";
|
|
18
|
+
import * as System_Reflection from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
8
19
|
|
|
9
20
|
// Import primitive type aliases
|
|
10
21
|
import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
|
|
11
22
|
|
|
23
|
+
// Import sticky extension scope helper
|
|
24
|
+
import type { Rewrap } from '@tsonic/core/lang.js';
|
|
25
|
+
|
|
12
26
|
// Import CLR type aliases for generic type arguments
|
|
13
|
-
import * as System_Internal from "
|
|
27
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
14
28
|
|
|
15
29
|
// Import unsafe type markers
|
|
16
30
|
import type { ptr } from '@tsonic/core/types.js';
|
|
17
31
|
|
|
32
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder {
|
|
33
|
+
UseSqlite(sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
|
|
34
|
+
UseSqlite(connectionString: string, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
|
|
35
|
+
UseSqlite(connection: System_Data_Common.DbConnection, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
|
|
36
|
+
UseSqlite(connection: System_Data_Common.DbConnection, contextOwnsConnection: boolean, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1<T> {
|
|
40
|
+
UseSqlite(sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
|
|
41
|
+
UseSqlite(connectionString: string, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
|
|
42
|
+
UseSqlite(connection: System_Data_Common.DbConnection, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
|
|
43
|
+
UseSqlite(connection: System_Data_Common.DbConnection, contextOwnsConnection: boolean, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_DbFunctions {
|
|
47
|
+
Glob(matchExpression: string, pattern: string): Rewrap<this, boolean>;
|
|
48
|
+
Hex(bytes: byte[]): Rewrap<this, string>;
|
|
49
|
+
Unhex(value: string): Rewrap<this, byte[] | undefined>;
|
|
50
|
+
Unhex(value: string, ignoreChars: string): Rewrap<this, byte[] | undefined>;
|
|
51
|
+
Substr(bytes: byte[], startIndex: int): Rewrap<this, byte[]>;
|
|
52
|
+
Substr(bytes: byte[], startIndex: int, length: int): Rewrap<this, byte[]>;
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade {
|
|
56
|
+
IsSqlite(): Rewrap<this, boolean>;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_ColumnBuilder {
|
|
60
|
+
UseAutoincrement(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ColumnBuilder>;
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder {
|
|
64
|
+
UseAutoincrement(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
|
|
65
|
+
HasSrid(srid: int): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<T> {
|
|
69
|
+
UseAutoincrement(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<T>>;
|
|
70
|
+
HasSrid(srid: int): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<T>>;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder {
|
|
74
|
+
UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
|
|
75
|
+
UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
|
|
76
|
+
CanUseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
77
|
+
CanUseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder {
|
|
81
|
+
HasValueGenerationStrategy(strategy: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
|
|
82
|
+
CanSetValueGenerationStrategy(strategy: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
83
|
+
HasSrid(srid: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
|
|
84
|
+
CanSetSrid(srid: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationTableBuilder {
|
|
88
|
+
UseSqlReturningClause(useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationTableBuilder_2<T1, T2> {
|
|
92
|
+
UseSqlReturningClause(useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<T1, T2>>;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder {
|
|
96
|
+
UseAutoincrement(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
|
|
97
|
+
HasSrid(srid: int): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T> {
|
|
101
|
+
UseAutoincrement(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
|
|
102
|
+
HasSrid(srid: int): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
|
|
103
|
+
}
|
|
104
|
+
|
|
105
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_SplitTableBuilder {
|
|
106
|
+
UseSqlReturningClause(useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder>;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_SplitTableBuilder_1<T> {
|
|
110
|
+
UseSqlReturningClause(useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<T>>;
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_TableBuilder {
|
|
114
|
+
UseSqlReturningClause(useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_TableBuilder_1<T> {
|
|
118
|
+
UseSqlReturningClause(useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<T>>;
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType {
|
|
122
|
+
UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
123
|
+
GetUseSqlReturningClauseConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
124
|
+
GetUseSqlReturningClauseConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
125
|
+
UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeMappingFragment {
|
|
129
|
+
UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
130
|
+
GetUseSqlReturningClauseConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionProperty {
|
|
134
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
|
|
135
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
|
|
136
|
+
GetValueGenerationStrategyConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
137
|
+
GetValueGenerationStrategyConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
138
|
+
SetSrid(value: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
139
|
+
GetSridConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionRelationalPropertyOverrides {
|
|
143
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
|
|
144
|
+
GetValueGenerationStrategyConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType {
|
|
148
|
+
UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
|
|
149
|
+
UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityTypeMappingFragment {
|
|
153
|
+
UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableProperty {
|
|
157
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>): Rewrap<this, void>;
|
|
158
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
|
|
159
|
+
SetSrid(value: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableRelationalPropertyOverrides {
|
|
163
|
+
SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>): Rewrap<this, void>;
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType {
|
|
167
|
+
IsSqlReturningClauseUsed(): Rewrap<this, boolean>;
|
|
168
|
+
IsSqlReturningClauseUsed(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityTypeMappingFragment {
|
|
172
|
+
IsSqlReturningClauseUsed(): Rewrap<this, boolean>;
|
|
173
|
+
}
|
|
174
|
+
|
|
175
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty {
|
|
176
|
+
GetValueGenerationStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>;
|
|
177
|
+
GetValueGenerationStrategy(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>;
|
|
178
|
+
GetDefaultValueGenerationStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>;
|
|
179
|
+
GetSrid(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
180
|
+
GetSrid(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
181
|
+
}
|
|
182
|
+
|
|
183
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyRelationalPropertyOverrides {
|
|
184
|
+
GetValueGenerationStrategy(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_ITable {
|
|
188
|
+
IsSqlReturningClauseUsed(): Rewrap<this, boolean>;
|
|
189
|
+
}
|
|
190
|
+
|
|
191
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_Migrations_MigrationBuilder {
|
|
192
|
+
IsSqlite(): Rewrap<this, boolean>;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
export interface __Ext_Microsoft_EntityFrameworkCore_Sqlite_Internal_IDiagnosticsLogger_1<T> {
|
|
196
|
+
SchemaConfiguredWarning(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, schema: string): Rewrap<this, void>;
|
|
197
|
+
SequenceConfiguredWarning(sequence: Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence): Rewrap<this, void>;
|
|
198
|
+
ColumnFound(tableName: string, columnName: string, dataTypeName: string, notNull: boolean, defaultValue: string): Rewrap<this, void>;
|
|
199
|
+
SchemasNotSupportedWarning(): Rewrap<this, void>;
|
|
200
|
+
ForeignKeyReferencesMissingTableWarning(id: string, tableName: string, principalTableName: string): Rewrap<this, void>;
|
|
201
|
+
TableFound(tableName: string): Rewrap<this, void>;
|
|
202
|
+
MissingTableWarning(tableName: string): Rewrap<this, void>;
|
|
203
|
+
ForeignKeyPrincipalColumnMissingWarning(foreignKeyName: string, tableName: string, principalColumnName: string, principalTableName: string): Rewrap<this, void>;
|
|
204
|
+
IndexFound(indexName: string, tableName: string, unique: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
|
|
205
|
+
ForeignKeyFound(tableName: string, id: long, principalTableName: string, deleteAction: string): Rewrap<this, void>;
|
|
206
|
+
PrimaryKeyFound(primaryKeyName: string, tableName: string): Rewrap<this, void>;
|
|
207
|
+
UniqueConstraintFound(uniqueConstraintName: string, tableName: string): Rewrap<this, void>;
|
|
208
|
+
UnexpectedConnectionTypeWarning(connectionType: System.Type): Rewrap<this, void>;
|
|
209
|
+
TableRebuildPendingWarning(operationType: System.Type, tableName: string): Rewrap<this, void>;
|
|
210
|
+
CompositeKeyWithValueGeneration(key: Microsoft_EntityFrameworkCore_Metadata.IKey): Rewrap<this, void>;
|
|
211
|
+
ConflictingValueGenerationStrategiesWarning(sqliteValueGenerationStrategy: Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy, otherValueGenerationStrategy: string, property: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, void>;
|
|
212
|
+
InferringTypes(tableName: string): Rewrap<this, void>;
|
|
213
|
+
OutOfRangeWarning(columnName: string, tableName: string, type: string): Rewrap<this, void>;
|
|
214
|
+
FormatWarning(columnName: string, tableName: string, type: string): Rewrap<this, void>;
|
|
215
|
+
}
|
|
216
|
+
|
|
217
|
+
export interface __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection {
|
|
218
|
+
AddSqlite<TContext>(connectionString: string, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>, optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
219
|
+
AddEntityFrameworkSqlite(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
|
|
220
|
+
}
|
|
221
|
+
|
|
18
222
|
export interface __Ext_Microsoft_Extensions_DependencyModel_DependencyContext {
|
|
19
|
-
GetDefaultNativeAssets():
|
|
20
|
-
GetDefaultNativeRuntimeFileAssets():
|
|
21
|
-
GetRuntimeNativeAssets(runtimeIdentifier: string):
|
|
22
|
-
GetRuntimeNativeRuntimeFileAssets(runtimeIdentifier: string):
|
|
23
|
-
GetDefaultAssemblyNames():
|
|
24
|
-
GetRuntimeAssemblyNames(runtimeIdentifier: string):
|
|
223
|
+
GetDefaultNativeAssets(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
|
|
224
|
+
GetDefaultNativeRuntimeFileAssets(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
|
|
225
|
+
GetRuntimeNativeAssets(runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
|
|
226
|
+
GetRuntimeNativeRuntimeFileAssets(runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
|
|
227
|
+
GetDefaultAssemblyNames(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
|
|
228
|
+
GetRuntimeAssemblyNames(runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
|
|
25
229
|
}
|
|
26
230
|
|
|
27
231
|
export interface __Ext_Microsoft_Extensions_DependencyModel_RuntimeLibrary {
|
|
28
|
-
GetDefaultNativeAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext):
|
|
29
|
-
GetDefaultNativeRuntimeFileAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext):
|
|
30
|
-
GetRuntimeNativeAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string):
|
|
31
|
-
GetRuntimeNativeRuntimeFileAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string):
|
|
32
|
-
GetDefaultAssemblyNames(context: Microsoft_Extensions_DependencyModel.DependencyContext):
|
|
33
|
-
GetRuntimeAssemblyNames(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string):
|
|
232
|
+
GetDefaultNativeAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
|
|
233
|
+
GetDefaultNativeRuntimeFileAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
|
|
234
|
+
GetRuntimeNativeAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
|
|
235
|
+
GetRuntimeNativeRuntimeFileAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
|
|
236
|
+
GetDefaultAssemblyNames(context: Microsoft_Extensions_DependencyModel.DependencyContext): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
|
|
237
|
+
GetRuntimeAssemblyNames(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export interface __Ext_SQLitePCL_ReadOnlySpan_1<T> {
|
|
241
|
+
utf8_span_to_string(): Rewrap<this, string>;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
export interface __Ext_System_Collections_Generic_IEnumerable_1<T> {
|
|
245
|
+
GetDefaultGroup(): Rewrap<this, Microsoft_Extensions_DependencyModel.RuntimeAssetGroup | undefined>;
|
|
246
|
+
GetRuntimeGroup(runtime: string): Rewrap<this, Microsoft_Extensions_DependencyModel.RuntimeAssetGroup | undefined>;
|
|
247
|
+
GetDefaultAssets(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
|
|
248
|
+
GetRuntimeAssets(runtime: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
|
|
249
|
+
GetDefaultRuntimeFileAssets(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
|
|
250
|
+
GetRuntimeFileAssets(runtime: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
|
|
251
|
+
}
|
|
252
|
+
|
|
253
|
+
// Internal helper types for sticky extension scopes
|
|
254
|
+
type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
|
|
255
|
+
type __TsonicMergeExtMaps<A, B> = Omit<A, keyof B> & B;
|
|
256
|
+
type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
|
|
257
|
+
type __TsonicPreferExt<A, B> = Omit<A, keyof B> & B;
|
|
258
|
+
|
|
259
|
+
// Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
|
|
260
|
+
type __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape> =
|
|
261
|
+
(
|
|
262
|
+
(TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeMappingFragment : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IConventionRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityTypeMappingFragment : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IMutableRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityTypeMappingFragment : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITable ? __Ext_Microsoft_EntityFrameworkCore_ITable : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ColumnBuilder ? __Ext_Microsoft_EntityFrameworkCore_ColumnBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder ? __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationTableBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationTableBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder ? __Ext_Microsoft_EntityFrameworkCore_SplitTableBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_SplitTableBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder ? __Ext_Microsoft_EntityFrameworkCore_TableBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_TableBuilder_1<T0> : {})
|
|
263
|
+
);
|
|
264
|
+
|
|
265
|
+
interface __TsonicExtApplier_Microsoft_EntityFrameworkCore {
|
|
266
|
+
__tsonic_shape: unknown;
|
|
267
|
+
__tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore<this["__tsonic_shape"]>;
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
export type ExtensionMethods_Microsoft_EntityFrameworkCore<TShape> =
|
|
271
|
+
TShape extends null | undefined ? TShape
|
|
272
|
+
: TShape extends void ? void
|
|
273
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore", __TsonicExtApplier_Microsoft_EntityFrameworkCore> & __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape>;
|
|
274
|
+
|
|
275
|
+
// Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Migrations
|
|
276
|
+
type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations<TShape> =
|
|
277
|
+
(
|
|
278
|
+
(TShape extends Microsoft_EntityFrameworkCore_Migrations.MigrationBuilder ? __Ext_Microsoft_EntityFrameworkCore_Migrations_MigrationBuilder : {})
|
|
279
|
+
);
|
|
280
|
+
|
|
281
|
+
interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations {
|
|
282
|
+
__tsonic_shape: unknown;
|
|
283
|
+
__tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations<this["__tsonic_shape"]>;
|
|
284
|
+
}
|
|
285
|
+
|
|
286
|
+
export type ExtensionMethods_Microsoft_EntityFrameworkCore_Migrations<TShape> =
|
|
287
|
+
TShape extends null | undefined ? TShape
|
|
288
|
+
: TShape extends void ? void
|
|
289
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Migrations", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations<TShape>;
|
|
290
|
+
|
|
291
|
+
// Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Sqlite.Internal
|
|
292
|
+
type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Sqlite_Internal<TShape> =
|
|
293
|
+
(
|
|
294
|
+
(TShape extends Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Sqlite_Internal_IDiagnosticsLogger_1<T0> : {})
|
|
295
|
+
);
|
|
296
|
+
|
|
297
|
+
interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Sqlite_Internal {
|
|
298
|
+
__tsonic_shape: unknown;
|
|
299
|
+
__tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Sqlite_Internal<this["__tsonic_shape"]>;
|
|
34
300
|
}
|
|
35
301
|
|
|
302
|
+
export type ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<TShape> =
|
|
303
|
+
TShape extends null | undefined ? TShape
|
|
304
|
+
: TShape extends void ? void
|
|
305
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Sqlite.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Sqlite_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Sqlite_Internal<TShape>;
|
|
306
|
+
|
|
307
|
+
// Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyInjection
|
|
308
|
+
type __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<TShape> =
|
|
309
|
+
(
|
|
310
|
+
(TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection : {})
|
|
311
|
+
);
|
|
312
|
+
|
|
313
|
+
interface __TsonicExtApplier_Microsoft_Extensions_DependencyInjection {
|
|
314
|
+
__tsonic_shape: unknown;
|
|
315
|
+
__tsonic_type: __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<this["__tsonic_shape"]>;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
export type ExtensionMethods_Microsoft_Extensions_DependencyInjection<TShape> =
|
|
319
|
+
TShape extends null | undefined ? TShape
|
|
320
|
+
: TShape extends void ? void
|
|
321
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection> & __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<TShape>;
|
|
322
|
+
|
|
36
323
|
// Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyModel
|
|
324
|
+
type __TsonicExtSurface_Microsoft_Extensions_DependencyModel<TShape> =
|
|
325
|
+
(
|
|
326
|
+
(TShape extends Microsoft_Extensions_DependencyModel.DependencyContext ? __Ext_Microsoft_Extensions_DependencyModel_DependencyContext : {}) & (TShape extends Microsoft_Extensions_DependencyModel.RuntimeLibrary ? __Ext_Microsoft_Extensions_DependencyModel_RuntimeLibrary : {})
|
|
327
|
+
);
|
|
328
|
+
|
|
329
|
+
interface __TsonicExtApplier_Microsoft_Extensions_DependencyModel {
|
|
330
|
+
__tsonic_shape: unknown;
|
|
331
|
+
__tsonic_type: __TsonicExtSurface_Microsoft_Extensions_DependencyModel<this["__tsonic_shape"]>;
|
|
332
|
+
}
|
|
333
|
+
|
|
37
334
|
export type ExtensionMethods_Microsoft_Extensions_DependencyModel<TShape> =
|
|
38
335
|
TShape extends null | undefined ? TShape
|
|
39
336
|
: TShape extends void ? void
|
|
40
|
-
: TShape &
|
|
41
|
-
|
|
42
|
-
|
|
337
|
+
: TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyModel", __TsonicExtApplier_Microsoft_Extensions_DependencyModel> & __TsonicExtSurface_Microsoft_Extensions_DependencyModel<TShape>;
|
|
338
|
+
|
|
339
|
+
// Generic helper type for extension methods in namespace: SQLitePCL
|
|
340
|
+
type __TsonicExtSurface_SQLitePCL<TShape> =
|
|
341
|
+
(
|
|
342
|
+
(TShape extends System.ReadOnlySpan_1<infer T0> ? __Ext_SQLitePCL_ReadOnlySpan_1<T0> : {})
|
|
343
|
+
);
|
|
344
|
+
|
|
345
|
+
interface __TsonicExtApplier_SQLitePCL {
|
|
346
|
+
__tsonic_shape: unknown;
|
|
347
|
+
__tsonic_type: __TsonicExtSurface_SQLitePCL<this["__tsonic_shape"]>;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
export type ExtensionMethods_SQLitePCL<TShape> =
|
|
351
|
+
TShape extends null | undefined ? TShape
|
|
352
|
+
: TShape extends void ? void
|
|
353
|
+
: TShape & __TsonicWithExt<TShape, "SQLitePCL", __TsonicExtApplier_SQLitePCL> & __TsonicExtSurface_SQLitePCL<TShape>;
|
|
354
|
+
|
|
355
|
+
// Generic helper type for extension methods in namespace: System.Collections.Generic
|
|
356
|
+
type __TsonicExtSurface_System_Collections_Generic<TShape> =
|
|
357
|
+
(
|
|
358
|
+
(TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_System_Collections_Generic_IEnumerable_1<T0> : {}) & (TShape extends (infer T)[] ? __Ext_System_Collections_Generic_IEnumerable_1<T> : {})
|
|
43
359
|
);
|
|
44
360
|
|
|
361
|
+
interface __TsonicExtApplier_System_Collections_Generic {
|
|
362
|
+
__tsonic_shape: unknown;
|
|
363
|
+
__tsonic_type: __TsonicExtSurface_System_Collections_Generic<this["__tsonic_shape"]>;
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
export type ExtensionMethods_System_Collections_Generic<TShape> =
|
|
367
|
+
TShape extends null | undefined ? TShape
|
|
368
|
+
: TShape extends void ? void
|
|
369
|
+
: TShape & __TsonicWithExt<TShape, "System.Collections.Generic", __TsonicExtApplier_System_Collections_Generic> & __TsonicExtSurface_System_Collections_Generic<TShape>;
|
|
370
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/efcore-sqlite",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.7",
|
|
4
4
|
"description": "TypeScript type definitions for Microsoft.EntityFrameworkCore.Sqlite (+ dependencies) for .NET 10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"url": "https://github.com/tsoniclang/efcore-sqlite.git"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@tsonic/core": "^10.0.
|
|
23
|
-
"@tsonic/dotnet": "^10.0.
|
|
24
|
-
"@tsonic/microsoft-extensions": "^10.0.
|
|
25
|
-
"@tsonic/efcore": "^10.0.
|
|
22
|
+
"@tsonic/core": "^10.0.9",
|
|
23
|
+
"@tsonic/dotnet": "^10.0.7",
|
|
24
|
+
"@tsonic/microsoft-extensions": "^10.0.6",
|
|
25
|
+
"@tsonic/efcore": "^10.0.8"
|
|
26
26
|
}
|
|
27
27
|
}
|