@quenty/userserviceutils 9.22.0 → 9.22.1-canary.607f741.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,14 @@
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.22.1-canary.607f741.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/userserviceutils@9.22.0...@quenty/userserviceutils@9.22.1-canary.607f741.0) (2025-12-28)
7
+
8
+ **Note:** Version bump only for package @quenty/userserviceutils
9
+
10
+
11
+
12
+
13
+
6
14
  # [9.22.0](https://github.com/Quenty/NevermoreEngine/compare/@quenty/userserviceutils@9.21.0...@quenty/userserviceutils@9.22.0) (2025-09-26)
7
15
 
8
16
  **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.22.0",
3
+ "version": "9.22.1-canary.607f741.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.7.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.12.0",
34
- "@quenty/rx": "^13.20.0",
35
- "@quenty/servicebag": "^11.13.1"
28
+ "@quenty/aggregator": "1.7.1-canary.607f741.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.12.0",
34
+ "@quenty/rx": "13.20.0",
35
+ "@quenty/servicebag": "11.13.2-canary.607f741.0"
36
36
  },
37
37
  "publishConfig": {
38
38
  "access": "public"
39
39
  },
40
- "gitHead": "0ecdc6807f4ad638ffd49b056bceec4353895b82"
40
+ "gitHead": "607f7418f46b85cd5843f1c5665911eb2dd7e3fb"
41
41
  }
@@ -19,12 +19,14 @@ local UserInfoAggregator = setmetatable({}, BaseObject)
19
19
  UserInfoAggregator.ClassName = "UserInfoAggregator"
20
20
  UserInfoAggregator.__index = UserInfoAggregator
21
21
 
22
- export type UserInfoAggregator = typeof(setmetatable(
23
- {} :: {
24
- _aggregator: Aggregator.Aggregator<UserServiceUtils.UserInfo>,
25
- },
26
- {} :: typeof({ __index = UserInfoAggregator })
27
- )) & BaseObject.BaseObject
22
+ export type UserInfoAggregator =
23
+ typeof(setmetatable(
24
+ {} :: {
25
+ _aggregator: Aggregator.Aggregator<UserServiceUtils.UserInfo>,
26
+ },
27
+ {} :: typeof({ __index = UserInfoAggregator })
28
+ ))
29
+ & BaseObject.BaseObject
28
30
 
29
31
  function UserInfoAggregator.new(): UserInfoAggregator
30
32
  local self: UserInfoAggregator = setmetatable(BaseObject.new() :: any, UserInfoAggregator)