@oh-my-pi/omp-stats 16.1.23 → 16.2.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.
- package/CHANGELOG.md +6 -0
- package/dist/client/index.js +91 -91
- package/dist/types/aggregator.d.ts +12 -0
- package/dist/types/client/api.d.ts +2 -1
- package/dist/types/client/app/routes.d.ts +1 -1
- package/dist/types/client/data/formatters.d.ts +1 -0
- package/dist/types/client/routes/GainRoute.d.ts +7 -0
- package/dist/types/client/routes/index.d.ts +1 -0
- package/dist/types/embedded-client.d.ts +1 -1
- package/dist/types/gain-aggregator.d.ts +26 -0
- package/dist/types/index.d.ts +2 -0
- package/dist/types/shared-types.d.ts +33 -0
- package/package.json +6 -4
- package/src/aggregator.ts +1 -1
- package/src/client/App.tsx +3 -0
- package/src/client/api.ts +11 -0
- package/src/client/app/routes.ts +15 -2
- package/src/client/data/formatters.ts +7 -0
- package/src/client/data/useHashRoute.ts +1 -0
- package/src/client/routes/GainRoute.tsx +226 -0
- package/src/client/routes/index.ts +1 -0
- package/src/embedded-client.ts +1 -1
- package/src/gain-aggregator.ts +281 -0
- package/src/index.ts +7 -0
- package/src/server.ts +7 -0
- package/src/shared-types.ts +37 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [16.2.0] - 2026-06-27
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Added a Gain tab to the `omp stats` dashboard (`/#/gain`) to display snapcompact token-savings with project scoping from synced session folders.
|
|
10
|
+
|
|
5
11
|
## [16.1.17] - 2026-06-24
|
|
6
12
|
|
|
7
13
|
### Fixed
|