@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 CHANGED
@@ -8977,7 +8977,7 @@ var ClientImpl = class _ClientImpl {
8977
8977
  zodCache: this.inputValidator.zodFactory.cacheStats,
8978
8978
  slowQueries: this.slowQueries.map((q) => ({
8979
8979
  ...q
8980
- }))
8980
+ })).sort((a, b) => b.durationMs - a.durationMs)
8981
8981
  };
8982
8982
  }
8983
8983
  $executeRaw(query, ...values) {