dbgate-types 7.2.4 → 7.2.5
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/engines.d.ts +2 -0
- package/package.json +1 -1
package/engines.d.ts
CHANGED
|
@@ -263,6 +263,8 @@ export interface EngineDriver<TClient = any, TDataBase = any> extends FilterBeha
|
|
|
263
263
|
implicitTransactions?: boolean; // transaction is started with first SQL command, no BEGIN TRANSACTION is needed
|
|
264
264
|
premiumOnly?: boolean;
|
|
265
265
|
supportExecuteQuery?: boolean;
|
|
266
|
+
supportsServerSqlChat?: boolean;
|
|
267
|
+
supportsServerCrossDatabaseQuery?: boolean;
|
|
266
268
|
supportsEditableQueryResults?: boolean;
|
|
267
269
|
enrichColumnMetadata?(
|
|
268
270
|
dbhan: DatabaseHandle<TClient, TDataBase>,
|
package/package.json
CHANGED