raain-model 3.1.20 → 3.1.22

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 CHANGED
@@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [3.1.22] - 2026-02-25
11
+
12
+ ### Added
13
+
14
+ - `RaainApiRainsGetCountsResponse`: added optional `percentComputations` field to counts result
15
+
16
+ ## [3.1.21] - 2026-02-24
17
+
18
+ ### Added
19
+
20
+ - `RaainApiRainsProgressResponse`: added optional `inQueueCompute` and `inQueueGround` fields to distinguish queued job types
21
+
22
+ ## [3.1.20] - 2026-02-24
23
+
10
24
  ### Fixed
11
25
 
12
26
  - `SpeedMatrix.computeNashSutcliffe`: use relative error instead of -Infinity when gauge variance is zero but prediction is near-perfect (single-point or constant-gauge edge case)
@@ -621,7 +635,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
621
635
  - Initial release
622
636
  - First extracts from RAAIN services
623
637
 
624
- [Unreleased]: https://github.com/raainio/raain-model/compare/v3.1.19...HEAD
638
+ [Unreleased]: https://github.com/raainio/raain-model/compare/v3.1.22...HEAD
639
+
640
+ [3.1.22]: https://github.com/raainio/raain-model/compare/v3.1.21...v3.1.22
641
+
642
+ [3.1.21]: https://github.com/raainio/raain-model/compare/v3.1.20...v3.1.21
643
+
644
+ [3.1.20]: https://github.com/raainio/raain-model/compare/v3.1.19...v3.1.20
625
645
 
626
646
  [3.1.19]: https://github.com/raainio/raain-model/compare/v3.1.18...v3.1.19
627
647
 
@@ -4,6 +4,7 @@ export interface RaainApiRainsGetCountsResponse {
4
4
  percentImages?: number;
5
5
  percentRainy?: number;
6
6
  percentQ?: number;
7
+ percentComputations?: number;
7
8
  rainyCount?: number;
8
9
  rainySum?: number;
9
10
  year?: number;
@@ -1,4 +1,6 @@
1
1
  export interface RaainApiRainsProgressResponse {
2
2
  inProgress: number;
3
3
  inQueue: number;
4
+ inQueueCompute?: number;
5
+ inQueueGround?: number;
4
6
  }
package/bpInfo.js CHANGED
@@ -1,5 +1,5 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  exports.bpInfo = void 0;
4
- exports.bpInfo = { version: 'v3.1.20' };
4
+ exports.bpInfo = { version: 'v3.1.22' };
5
5
  //# sourceMappingURL=bpInfo.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "raain-model",
3
- "version": "3.1.20",
3
+ "version": "3.1.22",
4
4
  "author": "contact@radartorain.com",
5
5
  "homepage": "https://github.com/raainio/raain-model",
6
6
  "description": "radartorain.com api model",