@mrnafisia/type-query 1.0.16 → 1.0.17
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/dist/U.d.ts +2 -2
- package/dist/U.js +27 -27
- package/dist/context.d.ts +5 -5
- package/dist/context.js +85 -85
- package/dist/dictionary.d.ts +12 -12
- package/dist/dictionary.js +177 -177
- package/dist/entity.d.ts +2589 -2589
- package/dist/entity.d.ts.map +1 -1
- package/dist/entity.js +970 -970
- package/dist/entity.js.map +1 -1
- package/dist/error.d.ts +4 -4
- package/dist/error.js +6 -6
- package/dist/index.d.ts +30 -26
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +32 -30
- package/dist/index.js.map +1 -1
- package/dist/pool.d.ts +5 -5
- package/dist/pool.js +120 -120
- package/dist/schema.d.ts +25 -25
- package/dist/schema.js +395 -395
- package/dist/schema.js.map +1 -1
- package/dist/testUtil.d.ts +4 -0
- package/dist/testUtil.d.ts.map +1 -0
- package/dist/testUtil.js +329 -0
- package/dist/testUtil.js.map +1 -0
- package/dist/types/context.d.ts +55 -55
- package/dist/types/context.js +2 -2
- package/dist/types/entity.d.ts +70 -70
- package/dist/types/entity.d.ts.map +1 -1
- package/dist/types/entity.js +2 -2
- package/dist/types/json.d.ts +8 -8
- package/dist/types/json.js +2 -2
- package/dist/types/model.d.ts +11 -11
- package/dist/types/model.js +2 -2
- package/dist/types/pool.d.ts +18 -18
- package/dist/types/pool.js +2 -2
- package/dist/types/postgres.d.ts +9 -9
- package/dist/types/postgres.js +2 -2
- package/dist/types/table.d.ts +238 -238
- package/dist/types/table.js +2 -2
- package/dist/types/testUtil.d.ts +26 -0
- package/dist/types/testUtil.d.ts.map +1 -0
- package/dist/types/testUtil.js +3 -0
- package/dist/types/testUtil.js.map +1 -0
- package/dist/utils.d.ts +67 -67
- package/dist/utils.js +226 -226
- package/package.json +39 -37
package/package.json
CHANGED
|
@@ -1,37 +1,39 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@mrnafisia/type-query",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "mini-orm with full type support for postgres.",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist"
|
|
9
|
-
],
|
|
10
|
-
"scripts": {
|
|
11
|
-
"build": "tsc",
|
|
12
|
-
"test": "jest ./tests"
|
|
13
|
-
},
|
|
14
|
-
"keywords": [
|
|
15
|
-
"orm",
|
|
16
|
-
"query-builder",
|
|
17
|
-
"postgres",
|
|
18
|
-
"sql",
|
|
19
|
-
"type-safe"
|
|
20
|
-
],
|
|
21
|
-
"repository": "https://github.com/MRNafisiA/type-query.git",
|
|
22
|
-
"author": "MRNafisiA <mnafisiasl@gmail.com>",
|
|
23
|
-
"license": "MIT",
|
|
24
|
-
"devDependencies": {
|
|
25
|
-
"@types/jest": "^28.1.0",
|
|
26
|
-
"@types/
|
|
27
|
-
"@types/
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
"
|
|
36
|
-
|
|
37
|
-
|
|
1
|
+
{
|
|
2
|
+
"name": "@mrnafisia/type-query",
|
|
3
|
+
"version": "1.0.17",
|
|
4
|
+
"description": "mini-orm with full type support for postgres.",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist"
|
|
9
|
+
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "tsc",
|
|
12
|
+
"test": "jest ./tests"
|
|
13
|
+
},
|
|
14
|
+
"keywords": [
|
|
15
|
+
"orm",
|
|
16
|
+
"query-builder",
|
|
17
|
+
"postgres",
|
|
18
|
+
"sql",
|
|
19
|
+
"type-safe"
|
|
20
|
+
],
|
|
21
|
+
"repository": "https://github.com/MRNafisiA/type-query.git",
|
|
22
|
+
"author": "MRNafisiA <mnafisiasl@gmail.com>",
|
|
23
|
+
"license": "MIT",
|
|
24
|
+
"devDependencies": {
|
|
25
|
+
"@types/jest": "^28.1.0",
|
|
26
|
+
"@types/lodash": "^4.14.182",
|
|
27
|
+
"@types/node": "^17.0.39",
|
|
28
|
+
"@types/pg": "^8.6.5",
|
|
29
|
+
"jest": "^28.1.0",
|
|
30
|
+
"ts-jest": "^28.0.4",
|
|
31
|
+
"typescript": "^4.7.2"
|
|
32
|
+
},
|
|
33
|
+
"dependencies": {
|
|
34
|
+
"decimal.js": "^10.3.1",
|
|
35
|
+
"lodash": "^4.17.21",
|
|
36
|
+
"never-catch": "^1.0.6",
|
|
37
|
+
"pg": "^8.7.3"
|
|
38
|
+
}
|
|
39
|
+
}
|