steamutils 1.2.43 → 1.2.44

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/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",