@maestro-js/db 1.0.0-alpha.17 → 1.0.0-alpha.18
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 +2 -1
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -98,6 +98,7 @@ declare function mysqlDbDriver(config: MysqlDbDriverConfig): DbDriver;
|
|
|
98
98
|
type KeysWithFallback = keyof Db.Provider.Keys extends never ? {
|
|
99
99
|
default: unknown;
|
|
100
100
|
} : Db.Provider.Keys;
|
|
101
|
+
type DbMysqlLogMessage = MysqlDbDriverLogMessageData;
|
|
101
102
|
/**
|
|
102
103
|
* Creates a new connection pool using the supplied options.
|
|
103
104
|
*/
|
|
@@ -212,7 +213,7 @@ declare namespace Db {
|
|
|
212
213
|
namespace drivers {
|
|
213
214
|
namespace mysql {
|
|
214
215
|
/** Log event data emitted by the MySQL driver for query and transaction lifecycle events */
|
|
215
|
-
type MysqlDbDriverLogMessageData =
|
|
216
|
+
type MysqlDbDriverLogMessageData = DbMysqlLogMessage;
|
|
216
217
|
}
|
|
217
218
|
}
|
|
218
219
|
namespace Provider {
|
package/package.json
CHANGED
|
@@ -11,18 +11,18 @@
|
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"iso-fns2": "npm:iso-fns@2.0.0-alpha.26",
|
|
13
13
|
"mysql2": "^3.15.3",
|
|
14
|
-
"@maestro-js/context": "1.0.0-alpha.
|
|
15
|
-
"@maestro-js/helpers": "1.0.0-alpha.
|
|
16
|
-
"@maestro-js/service-registry": "1.0.0-alpha.
|
|
14
|
+
"@maestro-js/context": "1.0.0-alpha.18",
|
|
15
|
+
"@maestro-js/helpers": "1.0.0-alpha.18",
|
|
16
|
+
"@maestro-js/service-registry": "1.0.0-alpha.18"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@maestro-js/log": "1.0.0-alpha.
|
|
19
|
+
"@maestro-js/log": "1.0.0-alpha.18"
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/node": "^22.19.11",
|
|
23
|
-
"@maestro-js/log": "1.0.0-alpha.
|
|
23
|
+
"@maestro-js/log": "1.0.0-alpha.18"
|
|
24
24
|
},
|
|
25
|
-
"version": "1.0.0-alpha.
|
|
25
|
+
"version": "1.0.0-alpha.18",
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"access": "restricted"
|
|
28
28
|
},
|