steamutils 1.5.15 → 1.5.16
Sign up to get free protection for your applications and to get access to all the features.
- package/SteamClient.js +3129 -3129
- package/index.js +7969 -7949
- package/package.json +1 -1
- package/remote.js +9 -0
package/package.json
CHANGED
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
|
}
|