axusage 3.7.0 → 3.7.1

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.
@@ -104,7 +104,7 @@ export function groupByQuotaPool(modelQuotas) {
104
104
  }
105
105
  // Sort model IDs within each pool for consistent ordering
106
106
  for (const pool of poolMap.values()) {
107
- pool.modelIds.sort();
107
+ pool.modelIds = pool.modelIds.toSorted();
108
108
  }
109
109
  return [...poolMap.values()];
110
110
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "axusage",
3
3
  "author": "Łukasz Jerciński",
4
4
  "license": "MIT",
5
- "version": "3.7.0",
5
+ "version": "3.7.1",
6
6
  "description": "Monitor API usage across Claude, ChatGPT, GitHub Copilot, and Gemini from a single CLI",
7
7
  "repository": {
8
8
  "type": "git",