steamutils 1.2.43 → 1.2.44
Sign up to get free protection for your applications and to get access to all the features.
- 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
|
}
|