dbgate-types 6.0.0 → 6.1.0
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 +4 -2
- package/dialect.d.ts +2 -0
- package/package.json +1 -1
package/dbinfo.d.ts
CHANGED
|
@@ -75,7 +75,7 @@ export interface DatabaseObjectInfo extends NamedObjectInfo {
|
|
|
75
75
|
modifyDate?: string;
|
|
76
76
|
hashCode?: string;
|
|
77
77
|
objectTypeField?: string;
|
|
78
|
-
|
|
78
|
+
objectComment?: string;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
export interface SqlObjectInfo extends DatabaseObjectInfo {
|
|
@@ -132,7 +132,9 @@ export interface CallableObjectInfo extends SqlObjectInfo {
|
|
|
132
132
|
|
|
133
133
|
export interface ProcedureInfo extends CallableObjectInfo {}
|
|
134
134
|
|
|
135
|
-
export interface FunctionInfo extends CallableObjectInfo {
|
|
135
|
+
export interface FunctionInfo extends CallableObjectInfo {
|
|
136
|
+
returnType?: string;
|
|
137
|
+
}
|
|
136
138
|
|
|
137
139
|
export interface TriggerInfo extends SqlObjectInfo {}
|
|
138
140
|
|
package/dialect.d.ts
CHANGED
package/package.json
CHANGED