@quenty/userserviceutils 9.31.0 → 9.31.1

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,10 @@
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.31.1](https://github.com/Quenty/NevermoreEngine/compare/@quenty/userserviceutils@9.31.0...@quenty/userserviceutils@9.31.1) (2026-05-30)
7
+
8
+ **Note:** Version bump only for package @quenty/userserviceutils
9
+
6
10
  # [9.31.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/userserviceutils@9.30.2...@quenty/userserviceutils@9.31.0) (2026-05-18)
7
11
 
8
12
  **Note:** Version bump only for package @quenty/userserviceutils
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quenty/userserviceutils",
3
- "version": "9.31.0",
3
+ "version": "9.31.1",
4
4
  "description": "Utilities involving UserService in Roblox",
5
5
  "keywords": [
6
6
  "Roblox",
@@ -28,17 +28,17 @@
28
28
  "Quenty"
29
29
  ],
30
30
  "dependencies": {
31
- "@quenty/aggregator": "1.15.2",
31
+ "@quenty/aggregator": "1.15.3",
32
32
  "@quenty/baseobject": "10.13.0",
33
33
  "@quenty/loader": "10.11.0",
34
34
  "@quenty/maid": "3.9.0",
35
35
  "@quenty/math": "2.7.5",
36
- "@quenty/promise": "10.18.0",
37
- "@quenty/rx": "13.28.2",
38
- "@quenty/servicebag": "11.18.0"
36
+ "@quenty/promise": "10.18.1",
37
+ "@quenty/rx": "13.28.3",
38
+ "@quenty/servicebag": "11.18.1"
39
39
  },
40
40
  "publishConfig": {
41
41
  "access": "public"
42
42
  },
43
- "gitHead": "5cba15660c2856169fd0362e1eeeca4c260029c2"
43
+ "gitHead": "598b2b62b36bdcbdbbd56f7db10c399831cc6eba"
44
44
  }
@@ -72,7 +72,7 @@ function UserInfoAggregator:PromiseDisplayName(userId: number): Promise.Promise<
72
72
  end
73
73
 
74
74
  --[=[
75
- Promises the Username for the userId
75
+ Promises the username for the userId
76
76
 
77
77
  @param userId number
78
78
  @return Promise<string>
@@ -86,7 +86,7 @@ function UserInfoAggregator:PromiseUsername(userId: number): Promise.Promise<str
86
86
  end
87
87
 
88
88
  --[=[
89
- Promises the user display name for the userId
89
+ Promises the verified badge state for the userId
90
90
 
91
91
  @param userId number
92
92
  @return Promise<boolean>
@@ -100,7 +100,7 @@ function UserInfoAggregator:PromiseHasVerifiedBadge(userId: number): Promise.Pro
100
100
  end
101
101
 
102
102
  --[=[
103
- Observes the user display name for the userId
103
+ Observes the user info for the userId
104
104
 
105
105
  @param userId number
106
106
  @return Observable<UserInfo>
@@ -144,7 +144,7 @@ function UserInfoAggregator:ObserveUsername(userId: number): Observable.Observab
144
144
  end
145
145
 
146
146
  --[=[
147
- Observes the user display name for the userId
147
+ Observes the user verified badge state for the userId
148
148
 
149
149
  @param userId number
150
150
  @return Observable<boolean>
@@ -31,8 +31,8 @@ export type UserInfo = {
31
31
  --[=[
32
32
  Wraps UserService:GetUserInfosByUserIdsAsync(userIds)
33
33
 
34
- ::: tip
35
- User [UserInfoAggregator] via [UserInfoService] to get this deduplicated.
34
+ :::tip
35
+ Use [UserInfoAggregator] via [UserInfoService] to get this deduplicated.
36
36
  :::
37
37
 
38
38
  @param userIds { number }
@@ -61,8 +61,8 @@ end
61
61
  --[=[
62
62
  Wraps UserService:GetUserInfosByUserIdsAsync({ userId })[1]
63
63
 
64
- ::: tip
65
- User [UserInfoAggregator] via [UserInfoService] to get this deduplicated.
64
+ :::tip
65
+ Use [UserInfoAggregator] via [UserInfoService] to get this deduplicated.
66
66
  :::
67
67
 
68
68
  @param userId number
@@ -85,8 +85,8 @@ end
85
85
  --[=[
86
86
  Wraps UserService:GetUserInfosByUserIdsAsync({ userId })[1].DisplayName
87
87
 
88
- ::: tip
89
- User [UserInfoAggregator] via [UserInfoService] to get this deduplicated.
88
+ :::tip
89
+ Use [UserInfoAggregator] via [UserInfoService] to get this deduplicated.
90
90
  :::
91
91
 
92
92
  @param userId number
@@ -103,8 +103,8 @@ end
103
103
  --[=[
104
104
  Wraps UserService:GetUserInfosByUserIdsAsync({ userId })[1].Username
105
105
 
106
- ::: tip
107
- User [UserInfoAggregator] via [UserInfoService] to get this deduplicated.
106
+ :::tip
107
+ Use [UserInfoAggregator] via [UserInfoService] to get this deduplicated.
108
108
  :::
109
109
 
110
110
  @param userId number