steamutils 1.5.15 → 1.5.16

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. package/SteamClient.js +3129 -3129
  2. package/index.js +7969 -7949
  3. package/package.json +1 -1
  4. package/remote.js +9 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "steamutils",
3
- "version": "1.5.15",
3
+ "version": "1.5.16",
4
4
  "main": "index.js",
5
5
  "dependencies": {
6
6
  "alpha-common-utils": "^1.0.6",
package/remote.js CHANGED
@@ -2246,4 +2246,13 @@ export default class RemoteSteamUser {
2246
2246
  };
2247
2247
  return await doRequest(config);
2248
2248
  }
2249
+ static async getFaceItFinderSteamId(url) {
2250
+ const { __params, __cookies } = formatParams([url]);
2251
+ const config = {
2252
+ method: "getFaceItFinderSteamId",
2253
+ params: __params,
2254
+ is_static: true,
2255
+ };
2256
+ return await doRequest(config);
2257
+ }
2249
2258
  }