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 +1 -1
- package/dist/types.d.ts +4 -4
- package/package.json +1 -1
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.
|
|
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
|
|
188
|
-
password
|
|
189
|
-
host
|
|
187
|
+
username?: string
|
|
188
|
+
password?: string
|
|
189
|
+
host?: string
|
|
190
190
|
url?: string
|
|
191
|
-
port
|
|
191
|
+
port?: number
|
|
192
192
|
ssl?: boolean
|
|
193
193
|
pool?: PoolConfig
|
|
194
194
|
}
|
package/package.json
CHANGED