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.
- package/index.js +7 -0
- 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
|
}
|