@simplysm/orm-node 13.0.45 → 13.0.48

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplysm/orm-node",
3
- "version": "13.0.45",
3
+ "version": "13.0.48",
4
4
  "description": "심플리즘 패키지 - ORM 모듈 (node)",
5
5
  "author": "김석래",
6
6
  "license": "Apache-2.0",
@@ -20,13 +20,13 @@
20
20
  "dependencies": {
21
21
  "consola": "^3.4.2",
22
22
  "generic-pool": "^3.9.0",
23
- "@simplysm/core-common": "13.0.45",
24
- "@simplysm/orm-common": "13.0.45"
23
+ "@simplysm/core-common": "13.0.48",
24
+ "@simplysm/orm-common": "13.0.48"
25
25
  },
26
26
  "devDependencies": {
27
27
  "@types/pg": "^8.16.0",
28
28
  "@types/pg-copy-streams": "^1.2.5",
29
- "mysql2": "^3.17.3",
29
+ "mysql2": "^3.17.4",
30
30
  "pg": "^8.18.0",
31
31
  "pg-copy-streams": "^7.0.0",
32
32
  "tedious": "^19.2.1"
@@ -145,7 +145,7 @@ export class MysqlDbConn extends EventEmitter<{ close: void }> implements DbConn
145
145
  const [queryResults] = await conn.query({
146
146
  sql: query,
147
147
  timeout: this._timeout,
148
- values: params,
148
+ values: params as ({} | null)[] | undefined,
149
149
  });
150
150
 
151
151
  this._startTimeout();