steamutils 1.1.79 → 1.1.81
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/steamutils.iml +1 -1
- package/.idea/vcs.xml +1 -1
- package/index.js +7 -1
- package/package.json +1 -1
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
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$/.tmp" />
|
|
6
5
|
<excludeFolder url="file://$MODULE_DIR$/temp" />
|
|
6
|
+
<excludeFolder url="file://$MODULE_DIR$/.tmp" />
|
|
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
|
@@ -4267,7 +4267,7 @@ class SteamUser {
|
|
|
4267
4267
|
Last_Match: object.Last_Match,
|
|
4268
4268
|
}
|
|
4269
4269
|
})
|
|
4270
|
-
matchmaking_table = matchmaking_table
|
|
4270
|
+
matchmaking_table = matchmaking_table?.map(function (object) {
|
|
4271
4271
|
removeSpaceKeys(object)
|
|
4272
4272
|
return {
|
|
4273
4273
|
Matchmaking_Mode: object.Matchmaking_Mode,
|
|
@@ -5331,6 +5331,12 @@ class SteamUser {
|
|
|
5331
5331
|
case "Received from the Community Market": {
|
|
5332
5332
|
break
|
|
5333
5333
|
}
|
|
5334
|
+
case "Exchanged one or more items for something different": {
|
|
5335
|
+
break
|
|
5336
|
+
}
|
|
5337
|
+
case "Earned an item due to ownership of another game": {
|
|
5338
|
+
break
|
|
5339
|
+
}
|
|
5334
5340
|
default: {
|
|
5335
5341
|
if (description.startsWith("You traded with ")) {
|
|
5336
5342
|
const peopleEl = tradehistory_event_description_el.find('a[href]')
|
package/package.json
CHANGED