hysteria-orm 10.2.2 → 10.3.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hysteria-orm",
3
- "version": "10.2.2",
3
+ "version": "10.3.0",
4
4
  "license": "MIT",
5
5
  "description": "Yet another orm for Javascript and Typescript no one asked for",
6
6
  "type": "module",
@@ -49,7 +49,9 @@
49
49
  "@types/jest": "^30.0.0",
50
50
  "@types/luxon": "^3.7.1",
51
51
  "@types/mongodb": "^4.0.7",
52
+ "@types/mssql": "^9.1.8",
52
53
  "@types/mysql2": "github:types/mysql2",
54
+ "@types/oracledb": "^6.10.0",
53
55
  "@types/pg": "^8.15.5",
54
56
  "@types/pg-query-stream": "^3.4.0",
55
57
  "@types/pino": "^7.0.5",
@@ -66,7 +68,9 @@
66
68
  "jest": "^30.1.3",
67
69
  "luxon": "^3.7.2",
68
70
  "mongodb": "^6.20.0",
71
+ "mssql": "^12.2.0",
69
72
  "mysql2": "^3.15.1",
73
+ "oracledb": "^6.10.0",
70
74
  "pg": "^8.16.3",
71
75
  "pg-query-stream": "^4.10.3",
72
76
  "prettier": "^3.6.2",
@@ -88,10 +92,12 @@
88
92
  "peerDependencies": {
89
93
  "ioredis": "^5.6.1",
90
94
  "mongodb": "^6.17.0",
95
+ "mssql": "^11.0.0",
91
96
  "mysql2": "^3.14.1",
92
97
  "pg": "^8.16.0",
93
98
  "sqlite3": "^5.1.7",
94
- "typescript": "^5.8.3"
99
+ "typescript": "^5.8.3",
100
+ "oracledb": "^6.10.0"
95
101
  },
96
102
  "peerDependenciesMeta": {
97
103
  "ioredis": {
@@ -100,6 +106,12 @@
100
106
  "mongodb": {
101
107
  "optional": true
102
108
  },
109
+ "oracledb": {
110
+ "optional": true
111
+ },
112
+ "mssql": {
113
+ "optional": true
114
+ },
103
115
  "mysql2": {
104
116
  "optional": true
105
117
  },