bun-query-builder 0.1.46 → 0.1.47

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/bin/cli.js CHANGED
@@ -30901,7 +30901,7 @@ function getPrefix() {
30901
30901
  }
30902
30902
  var prefix = getPrefix();
30903
30903
  // package.json
30904
- var version2 = "0.1.46";
30904
+ var version2 = "0.1.47";
30905
30905
 
30906
30906
  // bin/cli.ts
30907
30907
  init_actions();
package/dist/types.d.ts CHANGED
@@ -184,11 +184,11 @@ export declare interface PoolConfig {
184
184
  }
185
185
  export declare interface DatabaseConfig {
186
186
  database: string
187
- username: string
188
- password: string
189
- host: string
187
+ username?: string
188
+ password?: string
189
+ host?: string
190
190
  url?: string
191
- port: number
191
+ port?: number
192
192
  ssl?: boolean
193
193
  pool?: PoolConfig
194
194
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "bun-query-builder",
3
3
  "type": "module",
4
- "version": "0.1.46",
4
+ "version": "0.1.47",
5
5
  "description": "A simple yet performant query builder for TypeScript. Built with Bun.",
6
6
  "author": "Chris Breuer <chris@stacksjs.org>",
7
7
  "license": "MIT",