@rainbow-o23/n3 1.0.50 → 1.0.51

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/README.md +2 -2
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -434,8 +434,8 @@ Since different databases have varying degrees of support for dialects, `o23/n3`
434
434
  - `MySQL` uses `LIMIT $offset, $limit`,
435
435
  - `PostgreSQL` uses `OFFSET $offset LIMIT $limit`.
436
436
  - `MSSQL` and `Oracle` use `OFFSET $offset ROWS FETCH NEXT $limit ROWS ONLY`,
437
- - `MSSQL` requires an `ORDER BY` clause for pagination SQL. If there is no `ORDER BY` clause, will
438
- use `ORDER BY 1 OFFSET $offset ROWS FETCH NEXT $limit ROWS ONLY`.
437
+ - `MSSQL` requires an `ORDER BY` clause for pagination SQL. If there is no `ORDER BY` clause, will
438
+ use `ORDER BY 1 OFFSET $offset ROWS FETCH NEXT $limit ROWS ONLY`.
439
439
  - For JSON column, because some databases (such as MSSQL) do not have a JSON column type, they cannot automatically replace strings in the
440
440
  result set with JSON objects,
441
441
  - Use `config as "config.@json"` to explicitly indicate that the `config` column is of JSON data type.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rainbow-o23/n3",
3
- "version": "1.0.50",
3
+ "version": "1.0.51",
4
4
  "description": "o23 pipelines",
5
5
  "main": "index.cjs",
6
6
  "module": "index.js",
@@ -21,7 +21,7 @@
21
21
  "url": "https://github.com/InsureMO/rainbow-o23/issues"
22
22
  },
23
23
  "dependencies": {
24
- "@rainbow-o23/n1": "1.0.50",
24
+ "@rainbow-o23/n1": "1.0.51",
25
25
  "node-fetch": "2.6.7",
26
26
  "typeorm": "^0.3.20",
27
27
  "typescript": "5.5.4"