@zenstackhq/orm 3.5.0-beta.1 → 3.5.0-beta.2
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/dist/index.cjs +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
package/dist/index.js
CHANGED
|
@@ -8931,7 +8931,7 @@ var ClientImpl = class _ClientImpl {
|
|
|
8931
8931
|
zodCache: this.inputValidator.zodFactory.cacheStats,
|
|
8932
8932
|
slowQueries: this.slowQueries.map((q) => ({
|
|
8933
8933
|
...q
|
|
8934
|
-
}))
|
|
8934
|
+
})).sort((a, b) => b.durationMs - a.durationMs)
|
|
8935
8935
|
};
|
|
8936
8936
|
}
|
|
8937
8937
|
$executeRaw(query, ...values) {
|