steamutils 1.0.59 → 1.0.60

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/SteamClient.js +1 -1
  2. package/package.json +1 -1
package/SteamClient.js CHANGED
@@ -642,7 +642,7 @@ function SteamClient({
642
642
 
643
643
 
644
644
  steamClient.on('user', async (steamId, data) => {
645
- callEvent(events.user, data)
645
+ callEvent(events.user, { steamId: steamId.getSteamID64(), data })
646
646
  const dataExample = {
647
647
  "rich_presence": [
648
648
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "steamutils",
3
- "version": "1.0.59",
3
+ "version": "1.0.60",
4
4
  "dependencies": {
5
5
  "axios": "^1.3.4",
6
6
  "cheerio": "^1.0.0-rc.12",