@naturalcycles/backend-lib 9.42.1 → 9.42.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.
@@ -63,7 +63,7 @@ export const serverStatsHTMLHandler = (req, res) => {
63
63
  '<tr>',
64
64
  `<td><pre>${endpoint}</pre></td>`,
65
65
  `<td align="right"><pre>${stat.total}</pre></td>`,
66
- // eslint-disable-next-line @typescript-eslint/no-base-to-string
66
+ // oxlint-disable-next-line @typescript-eslint/no-base-to-string typescript/restrict-template-expressions
67
67
  ...families.map(f => `<td align="right"><pre>${stat[f]}</pre></td>`),
68
68
  ...percentiles.map(pc => `<td align="right"><pre>${stat.pc[pc]}</pre></td>`),
69
69
  '</tr>',
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@naturalcycles/backend-lib",
3
3
  "type": "module",
4
- "version": "9.42.1",
4
+ "version": "9.42.2",
5
5
  "peerDependencies": {
6
6
  "@sentry/node": "^10"
7
7
  },
@@ -87,7 +87,7 @@ export const serverStatsHTMLHandler: BackendRequestHandler = (req, res) => {
87
87
  '<tr>',
88
88
  `<td><pre>${endpoint}</pre></td>`,
89
89
  `<td align="right"><pre>${stat.total}</pre></td>`,
90
- // eslint-disable-next-line @typescript-eslint/no-base-to-string
90
+ // oxlint-disable-next-line @typescript-eslint/no-base-to-string typescript/restrict-template-expressions
91
91
  ...families.map(f => `<td align="right"><pre>${stat[f]}</pre></td>`),
92
92
  ...percentiles.map(pc => `<td align="right"><pre>${stat.pc![pc]}</pre></td>`),
93
93
  '</tr>',