steamutils 1.2.43 → 1.2.44

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 +7 -0
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -6063,6 +6063,13 @@ class SteamUser {
6063
6063
  const response = (await this._httpRequestAjax({
6064
6064
  url: `market/removelisting/${id}`,
6065
6065
  method: "POST",
6066
+ data: {
6067
+ sessionid: this.getSessionid()
6068
+ },
6069
+ headers: {
6070
+ 'content-type': 'application/x-www-form-urlencoded',
6071
+ Referer: 'https://steamcommunity.com/market/'
6072
+ },
6066
6073
  }))?.data
6067
6074
  return response
6068
6075
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "steamutils",
3
- "version": "1.2.43",
3
+ "version": "1.2.44",
4
4
  "main": "index.js",
5
5
  "dependencies": {
6
6
  "axios": "^1.4.0",