@quenty/scoredactionservice 16.33.0 → 16.34.0-canary.644.d3040d7.0

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
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [16.34.0-canary.644.d3040d7.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/scoredactionservice@16.33.0...@quenty/scoredactionservice@16.34.0-canary.644.d3040d7.0) (2026-01-16)
7
+
8
+
9
+ ### Features
10
+
11
+ * Add SimpleEnum package and interface, to simplify enum usage across Nevermore ([d3040d7](https://github.com/Quenty/NevermoreEngine/commit/d3040d7a07ae7b2586bb982399b401fe19f1eb3f))
12
+
13
+
14
+
15
+
16
+
6
17
  # [16.33.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/scoredactionservice@16.32.1...@quenty/scoredactionservice@16.33.0) (2026-01-13)
7
18
 
8
19
  **Note:** Version bump only for package @quenty/scoredactionservice
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/scoredactionservice",
3
- "version": "16.33.0",
3
+ "version": "16.34.0-canary.644.d3040d7.0",
4
4
  "description": "Scores actions and picks the highest rated one every frame",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -31,7 +31,7 @@
31
31
  "dependencies": {
32
32
  "@quenty/baseobject": "10.9.3",
33
33
  "@quenty/brio": "14.23.0",
34
- "@quenty/inputkeymaputils": "14.32.0",
34
+ "@quenty/inputkeymaputils": "14.33.0-canary.644.d3040d7.0",
35
35
  "@quenty/inputmode": "13.26.0",
36
36
  "@quenty/loader": "10.9.3",
37
37
  "@quenty/maid": "3.5.3",
@@ -45,5 +45,5 @@
45
45
  "publishConfig": {
46
46
  "access": "public"
47
47
  },
48
- "gitHead": "fbe4f7a70d781c1b2dd62ec19aec1ce6ce2d742c"
48
+ "gitHead": "d3040d7a07ae7b2586bb982399b401fe19f1eb3f"
49
49
  }
@@ -23,7 +23,7 @@ export type ScoredAction =
23
23
  {} :: {
24
24
  PreferredChanged: Signal.Signal<boolean>,
25
25
  Removing: Signal.Signal<()>,
26
- EnabledChanged: Signal.Signal<boolean>,
26
+ EnabledChanged: Signal.Signal<(boolean, boolean, ...any)>,
27
27
 
28
28
  -- Private
29
29
  _isEnabled: ValueObject.ValueObject<boolean>,
@@ -48,7 +48,7 @@ function ScoredAction.new(): ScoredAction
48
48
  self._preferredStack = self._maid:Add(StateStack.new(false, "boolean"))
49
49
  self._isEnabled = self._maid:Add(ValueObject.new(true, "boolean"))
50
50
 
51
- self.EnabledChanged = self._isEnabled.Changed :: Signal.Signal<boolean>
51
+ self.EnabledChanged = self._isEnabled.Changed
52
52
 
53
53
  --[=[
54
54
  @prop PreferredChanged Signal<boolean>