dbgate-types 7.1.3-alpha.3 → 7.1.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/engines.d.ts +5 -0
- package/package.json +1 -1
package/engines.d.ts
CHANGED
|
@@ -59,6 +59,7 @@ export interface QueryOptions {
|
|
|
59
59
|
importSqlDump?: boolean;
|
|
60
60
|
range?: { offset: number; limit: number };
|
|
61
61
|
readonly?: boolean;
|
|
62
|
+
commandTimeout?: number;
|
|
62
63
|
}
|
|
63
64
|
|
|
64
65
|
export interface WriteTableOptions {
|
|
@@ -423,6 +424,10 @@ export interface EngineDriver<TClient = any, TDataBase = any> extends FilterBeha
|
|
|
423
424
|
engine: string;
|
|
424
425
|
conid?: string;
|
|
425
426
|
};
|
|
427
|
+
|
|
428
|
+
setTransactionIsolationLevel?(dbhan: DatabaseHandle<TClient, TDataBase>, level: string): Promise<void>;
|
|
429
|
+
isolationLevels?: string[];
|
|
430
|
+
defaultIsolationLevel?: string;
|
|
426
431
|
}
|
|
427
432
|
|
|
428
433
|
export interface DatabaseModification {
|
package/package.json
CHANGED