steamutils 1.3.12 → 1.3.13

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.
Files changed (2) hide show
  1. package/index.js +8 -5
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -6150,11 +6150,14 @@ class SteamUser {
6150
6150
  reports.push({
6151
6151
  time,
6152
6152
  timestamp,
6153
- playerAvatar,
6154
- playerAvatarHash: SteamUser.GetAvatarHashFromURL(playerAvatar),
6155
- playerMiniprofile,
6156
- playerURL,
6157
- playerName,
6153
+ player: {
6154
+ avatar: playerAvatar,
6155
+ avatarHash: SteamUser.GetAvatarHashFromURL(playerAvatar),
6156
+ steamId: SteamUser.miniprofile2SteamID64(playerMiniprofile),
6157
+ miniprofile: playerMiniprofile,
6158
+ url: playerURL,
6159
+ name: playerName,
6160
+ }
6158
6161
  reportContents,
6159
6162
  })
6160
6163
  })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "steamutils",
3
- "version": "1.3.12",
3
+ "version": "1.3.13",
4
4
  "main": "index.js",
5
5
  "dependencies": {
6
6
  "alpha-common-utils": "^1.0.5",