@rian8337/osu-droid-replay-analyzer 4.0.0-beta.95 → 4.0.0-beta.96
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/package.json +5 -5
- package/typings/index.d.ts +8 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rian8337/osu-droid-replay-analyzer",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.96",
|
|
4
4
|
"description": "A replay analyzer for analyzing osu!droid replay files.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"osu",
|
|
@@ -34,9 +34,9 @@
|
|
|
34
34
|
"url": "https://github.com/Rian8337/osu-droid-module/issues"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@rian8337/osu-base": "4.0.0-beta.
|
|
38
|
-
"@rian8337/osu-difficulty-calculator": "4.0.0-beta.
|
|
39
|
-
"@rian8337/osu-rebalance-difficulty-calculator": "4.0.0-beta.
|
|
37
|
+
"@rian8337/osu-base": "4.0.0-beta.96",
|
|
38
|
+
"@rian8337/osu-difficulty-calculator": "4.0.0-beta.96",
|
|
39
|
+
"@rian8337/osu-rebalance-difficulty-calculator": "4.0.0-beta.96",
|
|
40
40
|
"java-deserialization": "^0.1.0",
|
|
41
41
|
"unzipper": "^0.10.11"
|
|
42
42
|
},
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"publishConfig": {
|
|
47
47
|
"access": "public"
|
|
48
48
|
},
|
|
49
|
-
"gitHead": "
|
|
49
|
+
"gitHead": "13af8d35ad74141c270c6b985941b5f2a14e248b"
|
|
50
50
|
}
|
package/typings/index.d.ts
CHANGED
|
@@ -962,6 +962,14 @@ interface ExportedReplayJSONDataV3 extends Omit<ExportedReplayJSONDataV2, "mod">
|
|
|
962
962
|
* The structure of the exported replay JSON data for version 4.
|
|
963
963
|
*/
|
|
964
964
|
interface ExportedReplayJSONDataV4 extends ExportedReplayJSONDataV3 {
|
|
965
|
+
/**
|
|
966
|
+
* The amount of slider head hits in the replay.
|
|
967
|
+
*/
|
|
968
|
+
sliderHeadHits: number | null;
|
|
969
|
+
/**
|
|
970
|
+
* The amount of slider repeat hits in the replay.
|
|
971
|
+
*/
|
|
972
|
+
sliderRepeatHits: number | null;
|
|
965
973
|
/**
|
|
966
974
|
* Whether {@link score} includes mod multipliers.
|
|
967
975
|
*/
|