@quenty/userserviceutils 9.19.0-canary.ae8d76d.0 → 9.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
- # [9.19.0-canary.ae8d76d.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/userserviceutils@9.18.3...@quenty/userserviceutils@9.19.0-canary.ae8d76d.0) (2025-05-10)
6
+ # [9.19.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/userserviceutils@9.18.3...@quenty/userserviceutils@9.19.0) (2025-05-10)
7
7
 
8
8
 
9
9
  ### Bug Fixes
@@ -13,7 +13,7 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
13
13
 
14
14
  ### Features
15
15
 
16
- * Add even more types ([ae8d76d](https://github.com/Quenty/NevermoreEngine/commit/ae8d76d996594e017ac4bfa19f3c064ebe307cd8))
16
+ * Add even more types ([b31717d](https://github.com/Quenty/NevermoreEngine/commit/b31717d8c9f7620c457f5018a2affa760a65334a))
17
17
 
18
18
 
19
19
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/userserviceutils",
3
- "version": "9.19.0-canary.ae8d76d.0",
3
+ "version": "9.19.0",
4
4
  "description": "Utilities involving UserService in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -25,17 +25,17 @@
25
25
  "Quenty"
26
26
  ],
27
27
  "dependencies": {
28
- "@quenty/aggregator": "1.5.0-canary.ae8d76d.0",
29
- "@quenty/baseobject": "10.8.3",
30
- "@quenty/loader": "10.8.3",
31
- "@quenty/maid": "3.4.3",
32
- "@quenty/math": "2.7.3",
33
- "@quenty/promise": "10.11.0-canary.ae8d76d.0",
34
- "@quenty/rx": "13.18.0-canary.ae8d76d.0",
35
- "@quenty/servicebag": "11.12.0-canary.ae8d76d.0"
28
+ "@quenty/aggregator": "^1.5.0",
29
+ "@quenty/baseobject": "^10.9.0",
30
+ "@quenty/loader": "^10.9.0",
31
+ "@quenty/maid": "^3.5.0",
32
+ "@quenty/math": "^2.7.3",
33
+ "@quenty/promise": "^10.11.0",
34
+ "@quenty/rx": "^13.18.0",
35
+ "@quenty/servicebag": "^11.12.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "ae8d76d996594e017ac4bfa19f3c064ebe307cd8"
40
+ "gitHead": "20cff952c2cf06b959f2f11d2293bdef38acc604"
41
41
  }
@@ -9,11 +9,11 @@ local require = require(script.Parent.loader).load(script)
9
9
 
10
10
  local Aggregator = require("Aggregator")
11
11
  local BaseObject = require("BaseObject")
12
+ local Observable = require("Observable")
13
+ local Promise = require("Promise")
14
+ local PromiseRetryUtils = require("PromiseRetryUtils")
12
15
  local Rx = require("Rx")
13
16
  local UserServiceUtils = require("UserServiceUtils")
14
- local PromiseRetryUtils = require("PromiseRetryUtils")
15
- local Promise = require("Promise")
16
- local Observable = require("Observable")
17
17
 
18
18
  local UserInfoAggregator = setmetatable({}, BaseObject)
19
19
  UserInfoAggregator.ClassName = "UserInfoAggregator"
@@ -153,8 +153,8 @@ function UserInfoAggregator:ObserveHasVerifiedBadge(userId: number): Observable.
153
153
  return self._aggregator:Observe(userId):Pipe({
154
154
  Rx.map(function(userInfo)
155
155
  return userInfo.HasVerifiedBadge
156
- end)
156
+ end),
157
157
  })
158
158
  end
159
159
 
160
- return UserInfoAggregator
160
+ return UserInfoAggregator
@@ -81,14 +81,13 @@ end
81
81
  @return Observable<string>
82
82
  ]=]
83
83
  function UserInfoService:ObserveDisplayName(userId: number): Observable.Observable<UserServiceUtils.UserInfo>
84
- assert(type(userId) == "number", "Bad userId")
84
+ assert(type(userId) == "number", "Bad userId")
85
85
 
86
86
  return self._aggregator:ObserveDisplayName(userId)
87
87
  end
88
88
 
89
-
90
89
  function UserInfoService:Destroy()
91
90
  self._maid:DoCleaning()
92
91
  end
93
92
 
94
- return UserInfoService
93
+ return UserInfoService