dbgate-types 6.7.2-alpha.1 → 6.7.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/dumper.d.ts CHANGED
@@ -16,6 +16,7 @@ export interface SqlDumper extends AlterProcessor {
16
16
  transform(type: TransformType, dumpExpr: () => void);
17
17
  createDatabase(name: string);
18
18
  dropDatabase(name: string);
19
+ comment(value: string);
19
20
 
20
21
  callableTemplate(func: CallableObjectInfo);
21
22
 
package/engines.d.ts CHANGED
@@ -238,6 +238,7 @@ export interface EngineDriver<TClient = any, TDataBase = any> extends FilterBeha
238
238
  supportsDatabaseRestore?: boolean;
239
239
  supportsServerSummary?: boolean;
240
240
  supportsDatabaseProfiler?: boolean;
241
+ supportsIncrementalAnalysis?: boolean;
241
242
  requiresDefaultSortCriteria?: boolean;
242
243
  profilerFormatterFunction?: string;
243
244
  profilerTimestampFunction?: string;
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "6.7.2-alpha.1",
2
+ "version": "6.7.3",
3
3
  "name": "dbgate-types",
4
4
  "homepage": "https://dbgate.org/",
5
5
  "repository": {