@maestro-js/db 1.0.0-alpha.23 → 1.0.0-alpha.3
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 +1 -2
- package/package.json +6 -6
package/dist/index.d.ts
CHANGED
|
@@ -98,7 +98,6 @@ 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;
|
|
102
101
|
/**
|
|
103
102
|
* Creates a new connection pool using the supplied options.
|
|
104
103
|
*/
|
|
@@ -213,7 +212,7 @@ declare namespace Db {
|
|
|
213
212
|
namespace drivers {
|
|
214
213
|
namespace mysql {
|
|
215
214
|
/** Log event data emitted by the MySQL driver for query and transaction lifecycle events */
|
|
216
|
-
type MysqlDbDriverLogMessageData =
|
|
215
|
+
type MysqlDbDriverLogMessageData = MysqlDbDriverLogMessageData;
|
|
217
216
|
}
|
|
218
217
|
}
|
|
219
218
|
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.3",
|
|
15
|
+
"@maestro-js/helpers": "1.0.0-alpha.3",
|
|
16
|
+
"@maestro-js/service-registry": "1.0.0-alpha.3"
|
|
17
17
|
},
|
|
18
18
|
"peerDependencies": {
|
|
19
|
-
"@maestro-js/log": "1.0.0-alpha.
|
|
19
|
+
"@maestro-js/log": "1.0.0-alpha.3"
|
|
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.3"
|
|
24
24
|
},
|
|
25
|
-
"version": "1.0.0-alpha.
|
|
25
|
+
"version": "1.0.0-alpha.3",
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"access": "restricted"
|
|
28
28
|
},
|