steamutils 1.1.82 → 1.1.83
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/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/steamutils.iml +1 -1
- package/.idea/vcs.xml +1 -1
- package/index.js +3 -0
- package/package.json +1 -1
package/.idea/steamutils.iml
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
<module type="WEB_MODULE" version="4">
|
|
3
3
|
<component name="NewModuleRootManager">
|
|
4
4
|
<content url="file://$MODULE_DIR$">
|
|
5
|
-
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
|
6
5
|
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
|
6
|
+
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
|
7
7
|
<excludeFolder url="file://$MODULE_DIR$/tmp" />
|
|
8
8
|
</content>
|
|
9
9
|
<orderEntry type="inheritedJdk" />
|
package/.idea/vcs.xml
CHANGED
package/index.js
CHANGED
|
@@ -3390,6 +3390,9 @@ class SteamUser {
|
|
|
3390
3390
|
const { data } = await this._httpRequestAjax({
|
|
3391
3391
|
url: 'actions/GroupInvite',
|
|
3392
3392
|
data: params,
|
|
3393
|
+
headers: {
|
|
3394
|
+
'content-type': 'application/x-www-form-urlencoded'
|
|
3395
|
+
},
|
|
3393
3396
|
method: 'POST',
|
|
3394
3397
|
})
|
|
3395
3398
|
return data
|