dbgate-types 4.6.3 → 4.7.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/dbinfo.d.ts +8 -1
- package/index.d.ts +1 -0
- package/package.json +1 -1
package/dbinfo.d.ts
CHANGED
|
@@ -54,6 +54,9 @@ export interface ColumnInfo extends NamedObjectInfo {
|
|
|
54
54
|
isSparse?: boolean;
|
|
55
55
|
defaultValue?: string;
|
|
56
56
|
defaultConstraint?: string;
|
|
57
|
+
columnComment?: string;
|
|
58
|
+
isUnsigned?: boolean;
|
|
59
|
+
isZerofill?: boolean;
|
|
57
60
|
}
|
|
58
61
|
|
|
59
62
|
export interface DatabaseObjectInfo extends NamedObjectInfo {
|
|
@@ -63,6 +66,7 @@ export interface DatabaseObjectInfo extends NamedObjectInfo {
|
|
|
63
66
|
modifyDate?: string;
|
|
64
67
|
hashCode?: string;
|
|
65
68
|
objectTypeField?: string;
|
|
69
|
+
obejctComment?: string;
|
|
66
70
|
}
|
|
67
71
|
|
|
68
72
|
export interface SqlObjectInfo extends DatabaseObjectInfo {
|
|
@@ -81,6 +85,7 @@ export interface TableInfo extends DatabaseObjectInfo {
|
|
|
81
85
|
preloadedRows?: any[];
|
|
82
86
|
preloadedRowsKey?: string[];
|
|
83
87
|
preloadedRowsInsertOnly?: string[];
|
|
88
|
+
tableRowCount?: number | string;
|
|
84
89
|
__isDynamicStructure?: boolean;
|
|
85
90
|
}
|
|
86
91
|
|
|
@@ -92,7 +97,9 @@ export interface ViewInfo extends SqlObjectInfo {
|
|
|
92
97
|
|
|
93
98
|
export interface ProcedureInfo extends SqlObjectInfo {}
|
|
94
99
|
|
|
95
|
-
export interface FunctionInfo extends SqlObjectInfo {
|
|
100
|
+
export interface FunctionInfo extends SqlObjectInfo {
|
|
101
|
+
// returnDataType?: string;
|
|
102
|
+
}
|
|
96
103
|
|
|
97
104
|
export interface TriggerInfo extends SqlObjectInfo {}
|
|
98
105
|
|
package/index.d.ts
CHANGED
package/package.json
CHANGED