@rian8337/osu-difficulty-calculator 4.0.0-beta.71 → 4.0.0-beta.73

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rian8337/osu-difficulty-calculator",
3
- "version": "4.0.0-beta.71",
3
+ "version": "4.0.0-beta.73",
4
4
  "description": "A module for calculating osu!standard beatmap difficulty and performance value with respect to the current difficulty and performance algorithm.",
5
5
  "keywords": [
6
6
  "osu",
@@ -33,10 +33,10 @@
33
33
  "url": "https://github.com/Rian8337/osu-droid-module/issues"
34
34
  },
35
35
  "dependencies": {
36
- "@rian8337/osu-base": "^4.0.0-beta.71"
36
+ "@rian8337/osu-base": "^4.0.0-beta.73"
37
37
  },
38
38
  "publishConfig": {
39
39
  "access": "public"
40
40
  },
41
- "gitHead": "5f5134e83a205e4425aedd8ea82affe505ec7568"
41
+ "gitHead": "e68f26caa3ddc53bbbfa3ab59a6773d0f445e136"
42
42
  }
@@ -923,6 +923,14 @@ interface PerformanceCalculationOptions {
923
923
  * The amount of misses achieved in the score.
924
924
  */
925
925
  miss?: number;
926
+ /**
927
+ * The amount of slider ends dropped in the score.
928
+ */
929
+ sliderEndsDropped?: number;
930
+ /**
931
+ * The amount of slider ticks missed in the score.
932
+ */
933
+ sliderTicksMissed?: number;
926
934
  /**
927
935
  * The tap penalty to apply for penalized scores. Only used when using `DroidPerformanceCalculator`.
928
936
  */