@quillsql/node 0.4.8 → 0.4.9

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/dist/index.d.ts CHANGED
@@ -37,3 +37,4 @@ export declare class Quill {
37
37
  private postQuill;
38
38
  close(): Promise<void>;
39
39
  }
40
+ export { QuillQueryParams as QuillRequest } from "./models/Quill";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quillsql/node",
3
- "version": "0.4.8",
3
+ "version": "0.4.9",
4
4
  "description": "Quill Server SDK for Node.js",
5
5
  "main": "dist/index.js",
6
6
  "module": "./dist/index.js",
package/src/index.ts CHANGED
@@ -303,3 +303,5 @@ module.exports.getColumnInfoBySchemaByDatabase =
303
303
  module.exports.connectToDatabase = connectToDatabase;
304
304
  module.exports.runQueryByDatabase = runQueryByDatabase;
305
305
  module.exports.DatabaseType = DatabaseType;
306
+
307
+ export { QuillQueryParams as QuillRequest } from "./models/Quill";