@rainbow-o23/n3 1.0.49 → 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.
- package/README.md +2 -2
- package/package.json +2 -3
- package/rollup.config.base.js +0 -1
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
|
-
|
|
438
|
-
|
|
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.
|
|
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.
|
|
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"
|
|
@@ -47,7 +47,6 @@
|
|
|
47
47
|
"pg-query-stream": "^4.7.1",
|
|
48
48
|
"reflect-metadata": "^0.2.2",
|
|
49
49
|
"rollup": "^3.29.5",
|
|
50
|
-
"rollup-plugin-tslint": "^0.2.2",
|
|
51
50
|
"rollup-plugin-typescript2": "^0.34.1",
|
|
52
51
|
"tslib": "^2.4.1"
|
|
53
52
|
},
|
package/rollup.config.base.js
CHANGED
|
@@ -18,7 +18,6 @@ export const buildConfig = (lint) => {
|
|
|
18
18
|
],
|
|
19
19
|
plugins: [
|
|
20
20
|
lint ? eslint({exclude: ['../node_modules/**', 'node_modules/**']}) : null,
|
|
21
|
-
// lint ? tslint({exclude: ['../node_modules/**', 'node_modules/**']}) : null,
|
|
22
21
|
typescript({clean: true}),
|
|
23
22
|
babel({babelHelpers: 'bundled'})
|
|
24
23
|
].filter(x => x != null),
|