@stackpress/inquire-mysql2 0.5.7 → 0.5.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/cjs/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import Mysql2Connection from './Connection';
2
2
  import { connect } from './helpers';
3
- export type * from './types';
3
+ export type { Results, Resource, Connector } from './types';
4
4
  export { Mysql2Connection, connect };
5
5
  export default connect;
package/esm/index.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import Mysql2Connection from './Connection';
2
2
  import { connect } from './helpers';
3
- export type * from './types';
3
+ export type { Results, Resource, Connector } from './types';
4
4
  export { Mysql2Connection, connect };
5
5
  export default connect;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@stackpress/inquire-mysql2",
4
- "version": "0.5.7",
4
+ "version": "0.5.9",
5
5
  "license": "Apache-2.0",
6
6
  "description": "Generic typed mysql2",
7
7
  "author": "Chris <chris@incept.asia>",
@@ -62,7 +62,7 @@
62
62
  "test": "DATABASE_URL=test ts-mocha -p ./tsconfig.cjs.json tests/*.test.ts"
63
63
  },
64
64
  "dependencies": {
65
- "@stackpress/inquire": "0.5.7"
65
+ "@stackpress/inquire": "0.5.9"
66
66
  },
67
67
  "peerDependencies": {
68
68
  "mysql2": "^3.11.5"