@tsonic/efcore 10.0.2 → 10.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +18 -35
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +28 -69
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +153 -261
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +43 -55
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +8 -16
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +24 -46
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +8 -50
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +160 -247
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +5 -9
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +0 -3
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +304 -407
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +130 -268
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +266 -598
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +6 -15
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +436 -763
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +95 -116
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +56 -64
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +229 -347
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +2 -6
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +468 -719
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +151 -301
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +144 -335
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +4 -10
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +73 -102
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +244 -452
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +19 -47
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +3 -32
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +3 -9
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +114 -133
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +21 -43
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +21 -49
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
- package/package.json +1 -1
|
@@ -43,8 +43,7 @@ export interface DatabaseModelFactory$instance {
|
|
|
43
43
|
}
|
|
44
44
|
|
|
45
45
|
|
|
46
|
-
export const DatabaseModelFactory: {
|
|
47
|
-
new(): DatabaseModelFactory;
|
|
46
|
+
export const DatabaseModelFactory: (abstract new() => DatabaseModelFactory) & {
|
|
48
47
|
};
|
|
49
48
|
|
|
50
49
|
|
|
@@ -68,12 +67,8 @@ export const DatabaseModelFactoryOptions: {
|
|
|
68
67
|
|
|
69
68
|
export type DatabaseModelFactoryOptions = DatabaseModelFactoryOptions$instance;
|
|
70
69
|
|
|
71
|
-
export
|
|
72
|
-
|
|
73
|
-
}
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
export interface ProviderCodeGenerator$instance extends ProviderCodeGenerator$protected {
|
|
70
|
+
export interface ProviderCodeGenerator$instance {
|
|
71
|
+
readonly Dependencies: ProviderCodeGeneratorDependencies;
|
|
77
72
|
GenerateContextOptions(): MethodCallCodeFragment | undefined;
|
|
78
73
|
GenerateProviderOptions(): MethodCallCodeFragment | undefined;
|
|
79
74
|
GenerateUseProvider(connectionString: string, providerOptions: MethodCallCodeFragment): MethodCallCodeFragment;
|
|
@@ -81,8 +76,7 @@ export interface ProviderCodeGenerator$instance extends ProviderCodeGenerator$pr
|
|
|
81
76
|
}
|
|
82
77
|
|
|
83
78
|
|
|
84
|
-
export const ProviderCodeGenerator: {
|
|
85
|
-
new(dependencies: ProviderCodeGeneratorDependencies): ProviderCodeGenerator;
|
|
79
|
+
export const ProviderCodeGenerator: (abstract new(dependencies: ProviderCodeGeneratorDependencies) => ProviderCodeGenerator) & {
|
|
86
80
|
};
|
|
87
81
|
|
|
88
82
|
|
|
@@ -15,36 +15,32 @@ import type { ReferentialAction } from "../../Microsoft.EntityFrameworkCore.Migr
|
|
|
15
15
|
import type { IEnumerable, IList, IReadOnlyDictionary } from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
16
16
|
import type { Boolean as ClrBoolean, Func, Int32, Int64, Nullable, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
17
17
|
|
|
18
|
-
export
|
|
19
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
20
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
21
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
export interface DatabaseColumn$instance extends DatabaseColumn$protected, Annotatable {
|
|
18
|
+
export interface DatabaseColumn$instance extends Annotatable {
|
|
26
19
|
get Collation(): string | undefined;
|
|
27
|
-
set Collation(value: string);
|
|
20
|
+
set Collation(value: string | undefined);
|
|
28
21
|
get Comment(): string | undefined;
|
|
29
|
-
set Comment(value: string);
|
|
22
|
+
set Comment(value: string | undefined);
|
|
30
23
|
get ComputedColumnSql(): string | undefined;
|
|
31
|
-
set ComputedColumnSql(value: string);
|
|
24
|
+
set ComputedColumnSql(value: string | undefined);
|
|
32
25
|
get DefaultValue(): unknown | undefined;
|
|
33
|
-
set DefaultValue(value: unknown);
|
|
26
|
+
set DefaultValue(value: unknown | undefined);
|
|
34
27
|
get DefaultValueSql(): string | undefined;
|
|
35
|
-
set DefaultValueSql(value: string);
|
|
28
|
+
set DefaultValueSql(value: string | undefined);
|
|
36
29
|
IsNullable: boolean;
|
|
37
30
|
IsStored: Nullable<System_Internal.Boolean>;
|
|
38
31
|
Name: string;
|
|
39
|
-
StoreType: string;
|
|
32
|
+
get StoreType(): string | undefined;
|
|
33
|
+
set StoreType(value: string | undefined);
|
|
40
34
|
Table: DatabaseTable;
|
|
41
35
|
ValueGenerated: Nullable<ValueGenerated>;
|
|
42
36
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
43
37
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
38
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
44
39
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
45
40
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
46
41
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
47
42
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
43
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
48
44
|
AnnotationsToDebugString(indent?: int): string;
|
|
49
45
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
50
46
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -57,6 +53,7 @@ export interface DatabaseColumn$instance extends DatabaseColumn$protected, Annot
|
|
|
57
53
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
58
54
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
59
55
|
SetAnnotation(name: string, value: unknown): void;
|
|
56
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
60
57
|
ToString(): string;
|
|
61
58
|
}
|
|
62
59
|
|
|
@@ -75,26 +72,22 @@ export interface __DatabaseColumn$views {
|
|
|
75
72
|
export type DatabaseColumn = DatabaseColumn$instance & __DatabaseColumn$views;
|
|
76
73
|
|
|
77
74
|
|
|
78
|
-
export
|
|
79
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
80
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
81
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
export interface DatabaseForeignKey$instance extends DatabaseForeignKey$protected, Annotatable {
|
|
75
|
+
export interface DatabaseForeignKey$instance extends Annotatable {
|
|
86
76
|
readonly Columns: IList<DatabaseColumn>;
|
|
87
|
-
Name: string;
|
|
77
|
+
get Name(): string | undefined;
|
|
78
|
+
set Name(value: string | undefined);
|
|
88
79
|
OnDelete: Nullable<ReferentialAction>;
|
|
89
80
|
readonly PrincipalColumns: IList<DatabaseColumn>;
|
|
90
81
|
PrincipalTable: DatabaseTable;
|
|
91
82
|
Table: DatabaseTable;
|
|
92
83
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
93
84
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
85
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
94
86
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
95
87
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
96
88
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
97
89
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
90
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
98
91
|
AnnotationsToDebugString(indent?: int): string;
|
|
99
92
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
100
93
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -107,6 +100,7 @@ export interface DatabaseForeignKey$instance extends DatabaseForeignKey$protecte
|
|
|
107
100
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
108
101
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
109
102
|
SetAnnotation(name: string, value: unknown): void;
|
|
103
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
110
104
|
ToString(): string;
|
|
111
105
|
}
|
|
112
106
|
|
|
@@ -125,27 +119,24 @@ export interface __DatabaseForeignKey$views {
|
|
|
125
119
|
export type DatabaseForeignKey = DatabaseForeignKey$instance & __DatabaseForeignKey$views;
|
|
126
120
|
|
|
127
121
|
|
|
128
|
-
export
|
|
129
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
130
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
131
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
132
|
-
}
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
export interface DatabaseIndex$instance extends DatabaseIndex$protected, Annotatable {
|
|
122
|
+
export interface DatabaseIndex$instance extends Annotatable {
|
|
136
123
|
readonly Columns: IList<DatabaseColumn>;
|
|
137
124
|
get Filter(): string | undefined;
|
|
138
|
-
set Filter(value: string);
|
|
125
|
+
set Filter(value: string | undefined);
|
|
139
126
|
IsDescending: IList<System_Internal.Boolean>;
|
|
140
127
|
IsUnique: boolean;
|
|
141
|
-
Name: string;
|
|
142
|
-
|
|
128
|
+
get Name(): string | undefined;
|
|
129
|
+
set Name(value: string | undefined);
|
|
130
|
+
get Table(): DatabaseTable | undefined;
|
|
131
|
+
set Table(value: DatabaseTable | undefined);
|
|
143
132
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
144
133
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
134
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
145
135
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
146
136
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
147
137
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
148
138
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
139
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
149
140
|
AnnotationsToDebugString(indent?: int): string;
|
|
150
141
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
151
142
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -158,6 +149,7 @@ export interface DatabaseIndex$instance extends DatabaseIndex$protected, Annotat
|
|
|
158
149
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
159
150
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
160
151
|
SetAnnotation(name: string, value: unknown): void;
|
|
152
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
161
153
|
ToString(): string;
|
|
162
154
|
}
|
|
163
155
|
|
|
@@ -176,28 +168,23 @@ export interface __DatabaseIndex$views {
|
|
|
176
168
|
export type DatabaseIndex = DatabaseIndex$instance & __DatabaseIndex$views;
|
|
177
169
|
|
|
178
170
|
|
|
179
|
-
export
|
|
180
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
181
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
182
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
export interface DatabaseModel$instance extends DatabaseModel$protected, Annotatable {
|
|
171
|
+
export interface DatabaseModel$instance extends Annotatable {
|
|
187
172
|
get Collation(): string | undefined;
|
|
188
|
-
set Collation(value: string);
|
|
173
|
+
set Collation(value: string | undefined);
|
|
189
174
|
get DatabaseName(): string | undefined;
|
|
190
|
-
set DatabaseName(value: string);
|
|
175
|
+
set DatabaseName(value: string | undefined);
|
|
191
176
|
get DefaultSchema(): string | undefined;
|
|
192
|
-
set DefaultSchema(value: string);
|
|
177
|
+
set DefaultSchema(value: string | undefined);
|
|
193
178
|
readonly Sequences: IList<DatabaseSequence>;
|
|
194
179
|
readonly Tables: IList<DatabaseTable>;
|
|
195
180
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
196
181
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
182
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
197
183
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
198
184
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
199
185
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
200
186
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
187
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
201
188
|
AnnotationsToDebugString(indent?: int): string;
|
|
202
189
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
203
190
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -210,6 +197,7 @@ export interface DatabaseModel$instance extends DatabaseModel$protected, Annotat
|
|
|
210
197
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
211
198
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
212
199
|
SetAnnotation(name: string, value: unknown): void;
|
|
200
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
213
201
|
}
|
|
214
202
|
|
|
215
203
|
|
|
@@ -227,23 +215,20 @@ export interface __DatabaseModel$views {
|
|
|
227
215
|
export type DatabaseModel = DatabaseModel$instance & __DatabaseModel$views;
|
|
228
216
|
|
|
229
217
|
|
|
230
|
-
export
|
|
231
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
232
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
233
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
234
|
-
}
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
export interface DatabasePrimaryKey$instance extends DatabasePrimaryKey$protected, Annotatable {
|
|
218
|
+
export interface DatabasePrimaryKey$instance extends Annotatable {
|
|
238
219
|
readonly Columns: IList<DatabaseColumn>;
|
|
239
|
-
Name: string;
|
|
240
|
-
|
|
220
|
+
get Name(): string | undefined;
|
|
221
|
+
set Name(value: string | undefined);
|
|
222
|
+
get Table(): DatabaseTable | undefined;
|
|
223
|
+
set Table(value: DatabaseTable | undefined);
|
|
241
224
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
242
225
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
226
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
243
227
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
244
228
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
245
229
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
246
230
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
231
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
247
232
|
AnnotationsToDebugString(indent?: int): string;
|
|
248
233
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
249
234
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -256,6 +241,7 @@ export interface DatabasePrimaryKey$instance extends DatabasePrimaryKey$protecte
|
|
|
256
241
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
257
242
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
258
243
|
SetAnnotation(name: string, value: unknown): void;
|
|
244
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
259
245
|
ToString(): string;
|
|
260
246
|
}
|
|
261
247
|
|
|
@@ -274,29 +260,26 @@ export interface __DatabasePrimaryKey$views {
|
|
|
274
260
|
export type DatabasePrimaryKey = DatabasePrimaryKey$instance & __DatabasePrimaryKey$views;
|
|
275
261
|
|
|
276
262
|
|
|
277
|
-
export
|
|
278
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
279
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
280
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
281
|
-
}
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
export interface DatabaseSequence$instance extends DatabaseSequence$protected, Annotatable {
|
|
263
|
+
export interface DatabaseSequence$instance extends Annotatable {
|
|
285
264
|
Database: DatabaseModel;
|
|
286
265
|
IncrementBy: Nullable<System_Internal.Int32>;
|
|
287
266
|
IsCyclic: Nullable<System_Internal.Boolean>;
|
|
288
267
|
MaxValue: Nullable<System_Internal.Int64>;
|
|
289
268
|
MinValue: Nullable<System_Internal.Int64>;
|
|
290
269
|
Name: string;
|
|
291
|
-
Schema: string;
|
|
270
|
+
get Schema(): string | undefined;
|
|
271
|
+
set Schema(value: string | undefined);
|
|
292
272
|
StartValue: Nullable<System_Internal.Int64>;
|
|
293
|
-
StoreType: string;
|
|
273
|
+
get StoreType(): string | undefined;
|
|
274
|
+
set StoreType(value: string | undefined);
|
|
294
275
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
295
276
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
277
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
296
278
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
297
279
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
298
280
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
299
281
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
282
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
300
283
|
AnnotationsToDebugString(indent?: int): string;
|
|
301
284
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
302
285
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -309,6 +292,7 @@ export interface DatabaseSequence$instance extends DatabaseSequence$protected, A
|
|
|
309
292
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
310
293
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
311
294
|
SetAnnotation(name: string, value: unknown): void;
|
|
295
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
312
296
|
ToString(): string;
|
|
313
297
|
}
|
|
314
298
|
|
|
@@ -327,32 +311,29 @@ export interface __DatabaseSequence$views {
|
|
|
327
311
|
export type DatabaseSequence = DatabaseSequence$instance & __DatabaseSequence$views;
|
|
328
312
|
|
|
329
313
|
|
|
330
|
-
export
|
|
331
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
332
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
333
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
334
|
-
}
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
export interface DatabaseTable$instance extends DatabaseTable$protected, Annotatable {
|
|
314
|
+
export interface DatabaseTable$instance extends Annotatable {
|
|
338
315
|
readonly Columns: IList<DatabaseColumn>;
|
|
339
316
|
get Comment(): string | undefined;
|
|
340
|
-
set Comment(value: string);
|
|
341
|
-
Database: DatabaseModel;
|
|
317
|
+
set Comment(value: string | undefined);
|
|
318
|
+
get Database(): DatabaseModel | undefined;
|
|
319
|
+
set Database(value: DatabaseModel | undefined);
|
|
342
320
|
readonly ForeignKeys: IList<DatabaseForeignKey>;
|
|
343
321
|
readonly Indexes: IList<DatabaseIndex>;
|
|
344
322
|
Name: string;
|
|
345
323
|
get PrimaryKey(): DatabasePrimaryKey | undefined;
|
|
346
|
-
set PrimaryKey(value: DatabasePrimaryKey);
|
|
347
|
-
Schema: string;
|
|
324
|
+
set PrimaryKey(value: DatabasePrimaryKey | undefined);
|
|
325
|
+
get Schema(): string | undefined;
|
|
326
|
+
set Schema(value: string | undefined);
|
|
348
327
|
readonly Triggers: IList<DatabaseTrigger>;
|
|
349
328
|
readonly UniqueConstraints: IList<DatabaseUniqueConstraint>;
|
|
350
329
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
351
330
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
331
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
352
332
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
353
333
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
354
334
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
355
335
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
336
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
356
337
|
AnnotationsToDebugString(indent?: int): string;
|
|
357
338
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
358
339
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -365,6 +346,7 @@ export interface DatabaseTable$instance extends DatabaseTable$protected, Annotat
|
|
|
365
346
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
366
347
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
367
348
|
SetAnnotation(name: string, value: unknown): void;
|
|
349
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
368
350
|
ToString(): string;
|
|
369
351
|
}
|
|
370
352
|
|
|
@@ -383,21 +365,16 @@ export interface __DatabaseTable$views {
|
|
|
383
365
|
export type DatabaseTable = DatabaseTable$instance & __DatabaseTable$views;
|
|
384
366
|
|
|
385
367
|
|
|
386
|
-
export
|
|
387
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
388
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
389
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
390
|
-
}
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
export interface DatabaseTrigger$instance extends DatabaseTrigger$protected, Annotatable {
|
|
368
|
+
export interface DatabaseTrigger$instance extends Annotatable {
|
|
394
369
|
Name: string;
|
|
395
370
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
396
371
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
372
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
397
373
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
398
374
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
399
375
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
400
376
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
377
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
401
378
|
AnnotationsToDebugString(indent?: int): string;
|
|
402
379
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
403
380
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -410,6 +387,7 @@ export interface DatabaseTrigger$instance extends DatabaseTrigger$protected, Ann
|
|
|
410
387
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
411
388
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
412
389
|
SetAnnotation(name: string, value: unknown): void;
|
|
390
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
413
391
|
}
|
|
414
392
|
|
|
415
393
|
|
|
@@ -427,23 +405,19 @@ export interface __DatabaseTrigger$views {
|
|
|
427
405
|
export type DatabaseTrigger = DatabaseTrigger$instance & __DatabaseTrigger$views;
|
|
428
406
|
|
|
429
407
|
|
|
430
|
-
export
|
|
431
|
-
protected AddAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
432
|
-
protected AddRuntimeAnnotation5(name: string, annotation: Annotation): Annotation;
|
|
433
|
-
protected SetAnnotation3(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
434
|
-
}
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
export interface DatabaseUniqueConstraint$instance extends DatabaseUniqueConstraint$protected, Annotatable {
|
|
408
|
+
export interface DatabaseUniqueConstraint$instance extends Annotatable {
|
|
438
409
|
readonly Columns: IList<DatabaseColumn>;
|
|
439
|
-
Name: string;
|
|
410
|
+
get Name(): string | undefined;
|
|
411
|
+
set Name(value: string | undefined);
|
|
440
412
|
Table: DatabaseTable;
|
|
441
413
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
442
414
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
415
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
443
416
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
444
417
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
445
418
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
446
419
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
420
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
447
421
|
AnnotationsToDebugString(indent?: int): string;
|
|
448
422
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
449
423
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -456,6 +430,7 @@ export interface DatabaseUniqueConstraint$instance extends DatabaseUniqueConstra
|
|
|
456
430
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
457
431
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
458
432
|
SetAnnotation(name: string, value: unknown): void;
|
|
433
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
459
434
|
ToString(): string;
|
|
460
435
|
}
|
|
461
436
|
|
|
@@ -474,20 +449,15 @@ export interface __DatabaseUniqueConstraint$views {
|
|
|
474
449
|
export type DatabaseUniqueConstraint = DatabaseUniqueConstraint$instance & __DatabaseUniqueConstraint$views;
|
|
475
450
|
|
|
476
451
|
|
|
477
|
-
export
|
|
478
|
-
protected AddAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
479
|
-
protected AddRuntimeAnnotation7(name: string, annotation: Annotation): Annotation;
|
|
480
|
-
protected SetAnnotation4(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
export interface DatabaseView$instance extends DatabaseView$protected, DatabaseTable$instance {
|
|
452
|
+
export interface DatabaseView$instance extends DatabaseTable$instance {
|
|
485
453
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
486
454
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
455
|
+
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
487
456
|
AddAnnotations(annotations: IEnumerable<IAnnotation>): void;
|
|
488
457
|
AddAnnotations(annotations: IReadOnlyDictionary<System_Internal.String, unknown>): void;
|
|
489
458
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
490
459
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
460
|
+
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
491
461
|
AnnotationsToDebugString(indent?: int): string;
|
|
492
462
|
FindAnnotation(name: string): IAnnotation | undefined;
|
|
493
463
|
FindAnnotation(name: string): Annotation | undefined;
|
|
@@ -500,6 +470,7 @@ export interface DatabaseView$instance extends DatabaseView$protected, DatabaseT
|
|
|
500
470
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
501
471
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
502
472
|
SetAnnotation(name: string, value: unknown): void;
|
|
473
|
+
SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
|
|
503
474
|
}
|
|
504
475
|
|
|
505
476
|
|