@tstdl/base 0.92.113 → 0.92.115
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/orm/index.d.ts +1 -0
- package/orm/index.js +1 -0
- package/package.json +4 -4
- package/utils/date-time.js +1 -1
package/orm/index.d.ts
CHANGED
package/orm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tstdl/base",
|
|
3
|
-
"version": "0.92.
|
|
3
|
+
"version": "0.92.115",
|
|
4
4
|
"author": "Patrick Hein",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"access": "public"
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
"@google-cloud/storage": "^7.15",
|
|
135
135
|
"@google-cloud/vertexai": "^1.9",
|
|
136
136
|
"disposablestack": "^1.1",
|
|
137
|
-
"luxon": "^3.
|
|
137
|
+
"luxon": "^3.6",
|
|
138
138
|
"reflect-metadata": "^0.2",
|
|
139
139
|
"rxjs": "^7.8",
|
|
140
140
|
"ts-pattern": "^5.6",
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"@types/node": "22",
|
|
152
152
|
"@types/nodemailer": "6.4",
|
|
153
153
|
"@types/pg": "8.11",
|
|
154
|
-
"@typescript-eslint/eslint-plugin": "8.
|
|
154
|
+
"@typescript-eslint/eslint-plugin": "8.28",
|
|
155
155
|
"concurrently": "9.1",
|
|
156
156
|
"drizzle-kit": "0.30",
|
|
157
157
|
"eslint": "9.23",
|
|
@@ -178,7 +178,7 @@
|
|
|
178
178
|
"playwright": "^1.51",
|
|
179
179
|
"preact": "^10.26",
|
|
180
180
|
"preact-render-to-string": "^6.5",
|
|
181
|
-
"undici": "^7.
|
|
181
|
+
"undici": "^7.6",
|
|
182
182
|
"urlpattern-polyfill": "^10.0"
|
|
183
183
|
},
|
|
184
184
|
"peerDependenciesMeta": {
|
package/utils/date-time.js
CHANGED
|
@@ -99,7 +99,7 @@ export function dateTimeToNumericDate(dateTime) {
|
|
|
99
99
|
return timestampToNumericDate(timestamp);
|
|
100
100
|
}
|
|
101
101
|
export function numericDateToDateTime(numericDate, units, options) {
|
|
102
|
-
const date =
|
|
102
|
+
const date = numericDateToDateObject(numericDate);
|
|
103
103
|
return DateTime.fromObject({ ...date, ...units }, options);
|
|
104
104
|
}
|
|
105
105
|
export function dateTimeToTime(dateTime) {
|