steamutils 1.3.14 → 1.3.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/index.js +14 -7
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -6160,14 +6160,21 @@ class SteamUser {
6160
6160
  },
6161
6161
  reportContents,
6162
6162
  })
6163
- //gdfgkdgf
6164
- //gdfgkdgf
6165
- //gdfgkdgf
6166
- //gdfgkdgf
6167
- //gdfgkdgf
6168
- //gdfgkdgf
6169
6163
  })
6170
- return reports;
6164
+ return {
6165
+ reports,
6166
+ token: continue_token,
6167
+ text: continue_text
6168
+ };
6169
+ }
6170
+
6171
+ async getAllPlayerReports(onPageCb) {
6172
+ let token = null
6173
+ do {
6174
+ const result = await this.getPlayerReports(token)
6175
+ token = result.token
6176
+ onPageCb?.(result)
6177
+ } while (token)
6171
6178
  }
6172
6179
  }
6173
6180
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "steamutils",
3
- "version": "1.3.14",
3
+ "version": "1.3.16",
4
4
  "main": "index.js",
5
5
  "dependencies": {
6
6
  "alpha-common-utils": "^1.0.5",