@mrnafisia/type-query 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.
Files changed (44) hide show
  1. package/README.md +2 -2
  2. package/dist/U.d.ts +2 -2
  3. package/dist/U.js +28 -28
  4. package/dist/context.d.ts +987 -987
  5. package/dist/context.js +84 -84
  6. package/dist/dictionary.d.ts +12 -12
  7. package/dist/dictionary.js +179 -179
  8. package/dist/entity.d.ts +3585 -3585
  9. package/dist/entity.js +1053 -1053
  10. package/dist/error.d.ts +4 -4
  11. package/dist/error.js +7 -7
  12. package/dist/index.d.ts +18 -18
  13. package/dist/index.js +56 -56
  14. package/dist/model.d.ts +1005 -1005
  15. package/dist/model.js +282 -282
  16. package/dist/parser.d.ts +11 -11
  17. package/dist/parser.d.ts.map +1 -1
  18. package/dist/parser.js +123 -120
  19. package/dist/parser.js.map +1 -1
  20. package/dist/pool.d.ts +5 -5
  21. package/dist/pool.js +122 -122
  22. package/dist/schema.d.ts +25 -25
  23. package/dist/schema.js +405 -405
  24. package/dist/testUtil.d.ts +4 -4
  25. package/dist/testUtil.js +343 -343
  26. package/dist/types/context.d.ts +51 -51
  27. package/dist/types/context.js +2 -2
  28. package/dist/types/entity.d.ts +70 -70
  29. package/dist/types/entity.js +2 -2
  30. package/dist/types/json.d.ts +8 -8
  31. package/dist/types/json.js +2 -2
  32. package/dist/types/model.d.ts +23 -23
  33. package/dist/types/model.js +2 -2
  34. package/dist/types/pool.d.ts +18 -18
  35. package/dist/types/pool.js +2 -2
  36. package/dist/types/postgres.d.ts +9 -9
  37. package/dist/types/postgres.js +2 -2
  38. package/dist/types/table.d.ts +233 -233
  39. package/dist/types/table.js +2 -2
  40. package/dist/types/testUtil.d.ts +26 -26
  41. package/dist/types/testUtil.js +2 -2
  42. package/dist/utils.d.ts +67 -67
  43. package/dist/utils.js +220 -220
  44. package/package.json +40 -40
package/package.json CHANGED
@@ -1,40 +1,40 @@
1
- {
2
- "name": "@mrnafisia/type-query",
3
- "version": "1.0.49",
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": "^29.5.2",
26
- "@types/lodash": "^4.14.195",
27
- "@types/node": "^20.2.5",
28
- "@types/pg": "^8.10.1",
29
- "jest": "^29.5.0",
30
- "prettier": "^2.8.8",
31
- "ts-jest": "^29.1.0",
32
- "typescript": "^4.9.5"
33
- },
34
- "dependencies": {
35
- "decimal.js": "^10.4.3",
36
- "lodash": "^4.17.21",
37
- "never-catch": "^1.0.9",
38
- "pg": "^8.11.0"
39
- }
40
- }
1
+ {
2
+ "name": "@mrnafisia/type-query",
3
+ "version": "1.0.51",
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": "^29.5.2",
26
+ "@types/lodash": "^4.14.195",
27
+ "@types/node": "^20.2.5",
28
+ "@types/pg": "^8.10.1",
29
+ "jest": "^29.5.0",
30
+ "prettier": "^2.8.8",
31
+ "ts-jest": "^29.1.0",
32
+ "typescript": "^4.9.5"
33
+ },
34
+ "dependencies": {
35
+ "decimal.js": "^10.4.3",
36
+ "lodash": "^4.17.21",
37
+ "never-catch": "^1.0.9",
38
+ "pg": "^8.11.0"
39
+ }
40
+ }