dbgate-types 5.5.7-alpha.16 → 5.5.7-alpha.26
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/dbinfo.d.ts +3 -2
- package/dialect.d.ts +2 -0
- package/package.json +1 -1
package/dbinfo.d.ts
CHANGED
|
@@ -3,7 +3,6 @@ export interface NamedObjectInfo {
|
|
|
3
3
|
schemaName?: string;
|
|
4
4
|
contentHash?: string;
|
|
5
5
|
engine?: string;
|
|
6
|
-
undropPureName?: string;
|
|
7
6
|
}
|
|
8
7
|
|
|
9
8
|
export interface ColumnReference {
|
|
@@ -35,7 +34,9 @@ export interface ForeignKeyInfo extends ColumnsConstraintInfo {
|
|
|
35
34
|
export interface IndexInfo extends ColumnsConstraintInfo {
|
|
36
35
|
isUnique: boolean;
|
|
37
36
|
// indexType: 'normal' | 'clustered' | 'xml' | 'spatial' | 'fulltext';
|
|
38
|
-
indexType
|
|
37
|
+
indexType?: string;
|
|
38
|
+
// condition for filtered index (SQL Server)
|
|
39
|
+
filterDefinition?: string;
|
|
39
40
|
}
|
|
40
41
|
|
|
41
42
|
export interface UniqueInfo extends ColumnsConstraintInfo {}
|
package/dialect.d.ts
CHANGED
package/package.json
CHANGED