baja-lite 1.5.17 → 1.5.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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/sql.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "baja-lite",
3
- "version": "1.5.17",
3
+ "version": "1.5.18",
4
4
  "description": "some util for self",
5
5
  "homepage": "https://github.com/void-soul/baja-lite",
6
6
  "repository": {
package/sql.js CHANGED
@@ -2409,7 +2409,7 @@ export class SqlService {
2409
2409
  for (const { sql, params } of sqls) {
2410
2410
  const dd = await option.conn.execute(SyncMode.Async, sql, params);
2411
2411
  if (dd.insertId) {
2412
- result += dd.insertId;
2412
+ result += BigInt(dd.insertId);
2413
2413
  }
2414
2414
  }
2415
2415
  return result;