@quenty/characterutils 12.19.0-canary.ae8d76d.0 → 12.19.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,7 +3,7 @@
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
- # [12.19.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/characterutils@12.18.3...@quenty/characterutils@12.19.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [12.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/characterutils@12.18.3...@quenty/characterutils@12.19.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/characterutils",
3
- "version": "12.19.0-canary.ae8d76d.0",
3
+ "version": "12.19.0",
4
4
  "description": "CharacterUtils",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,16 +25,16 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/brio": "14.18.0-canary.ae8d76d.0",
29
- "@quenty/deferred": "2.2.2",
30
- "@quenty/instanceutils": "13.18.0-canary.ae8d76d.0",
31
- "@quenty/loader": "10.8.3",
32
- "@quenty/maid": "3.4.3",
33
- "@quenty/promise": "10.11.0-canary.ae8d76d.0",
34
- "@quenty/rx": "13.18.0-canary.ae8d76d.0"
28
+ "@quenty/brio": "^14.18.0",
29
+ "@quenty/deferred": "^2.3.0",
30
+ "@quenty/instanceutils": "^13.18.0",
31
+ "@quenty/loader": "^10.9.0",
32
+ "@quenty/maid": "^3.5.0",
33
+ "@quenty/promise": "^10.11.0",
34
+ "@quenty/rx": "^13.18.0"
35
35
  },
36
36
  "publishConfig": {
37
37
  "access": "public"
38
38
  },
39
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
39
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
40
40
  }
@@ -38,8 +38,6 @@ function CharacterPromiseUtils.promiseCharacter(player: Player): Promise.Promise
38
38
  end)
39
39
 
40
40
  return promise
41
-
42
41
  end
43
42
 
44
43
  return CharacterPromiseUtils
45
-
@@ -6,8 +6,8 @@
6
6
 
7
7
  local require = require(script.Parent.loader).load(script)
8
8
 
9
- local Promise = require("Promise")
10
9
  local Maid = require("Maid")
10
+ local Promise = require("Promise")
11
11
 
12
12
  local RootPartUtils = {}
13
13
 
@@ -11,9 +11,9 @@ local Players = game:GetService("Players")
11
11
  local Brio = require("Brio")
12
12
  local Maid = require("Maid")
13
13
  local Observable = require("Observable")
14
+ local Rx = require("Rx")
14
15
  local RxBrioUtils = require("RxBrioUtils")
15
16
  local RxInstanceUtils = require("RxInstanceUtils")
16
- local Rx = require("Rx")
17
17
 
18
18
  local RxCharacterUtils = {}
19
19
 
@@ -92,7 +92,7 @@ end
92
92
  function RxCharacterUtils.observeIsOfLocalCharacterBrio(instance: Instance): Observable.Observable<Brio.Brio<boolean>>
93
93
  return RxCharacterUtils.observeIsOfLocalCharacter(instance):Pipe({
94
94
  RxBrioUtils.switchToBrio(function(value)
95
- return value
95
+ return value
96
96
  end) :: any,
97
97
  }) :: any
98
98
  end
@@ -31,7 +31,9 @@ end
31
31
  @param humanoid Humanoid
32
32
  @return Observvable<Brio<BasePart>>
33
33
  ]=]
34
- function RxRootPartUtils.observeHumanoidRootPartBrioFromHumanoid(humanoid: Humanoid): Observable.Observable<Brio.Brio<BasePart>>
34
+ function RxRootPartUtils.observeHumanoidRootPartBrioFromHumanoid(
35
+ humanoid: Humanoid
36
+ ): Observable.Observable<Brio.Brio<BasePart>>
35
37
  return RxInstanceUtils.observeParentBrio(humanoid):Pipe({
36
38
  RxBrioUtils.switchMapBrio(function(character: Model)
37
39
  return RxRootPartUtils.observeHumanoidRootPartBrio(character)