steamcommunity 3.48.2 → 3.48.4

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/package.json CHANGED
@@ -1,44 +1,44 @@
1
- {
2
- "name": "steamcommunity",
3
- "version": "3.48.2",
4
- "description": "Provides an interface for logging into and interacting with the Steam Community website",
5
- "files": [
6
- "/classes",
7
- "/components",
8
- "/examples",
9
- "/resources",
10
- "/index.js"
11
- ],
12
- "keywords": [
13
- "steam",
14
- "steam community"
15
- ],
16
- "homepage": "https://github.com/DoctorMcKay/node-steamcommunity",
17
- "bugs": {
18
- "url": "https://github.com/DoctorMcKay/node-steamcommunity/issues"
19
- },
20
- "license": "MIT",
21
- "author": {
22
- "name": "Alex Corn",
23
- "email": "mckay@doctormckay.com",
24
- "url": "https://www.doctormckay.com"
25
- },
26
- "repository": {
27
- "type": "git",
28
- "url": "https://github.com/DoctorMcKay/node-steamcommunity.git"
29
- },
30
- "dependencies": {
31
- "@doctormckay/user-agents": "^1.0.0",
32
- "async": "^2.6.3",
33
- "cheerio": "0.22.0",
34
- "image-size": "^0.8.2",
35
- "request": "^2.88.0",
36
- "steam-session": "^1.7.2",
37
- "steam-totp": "^1.5.0",
38
- "steamid": "^1.1.3",
39
- "xml2js": "^0.6.2"
40
- },
41
- "engines": {
42
- "node": ">=4.0.0"
43
- }
44
- }
1
+ {
2
+ "name": "steamcommunity",
3
+ "version": "3.48.4",
4
+ "description": "Provides an interface for logging into and interacting with the Steam Community website",
5
+ "files": [
6
+ "/classes",
7
+ "/components",
8
+ "/examples",
9
+ "/resources",
10
+ "/index.js"
11
+ ],
12
+ "keywords": [
13
+ "steam",
14
+ "steam community"
15
+ ],
16
+ "homepage": "https://github.com/DoctorMcKay/node-steamcommunity",
17
+ "bugs": {
18
+ "url": "https://github.com/DoctorMcKay/node-steamcommunity/issues"
19
+ },
20
+ "license": "MIT",
21
+ "author": {
22
+ "name": "Alex Corn",
23
+ "email": "mckay@doctormckay.com",
24
+ "url": "https://www.doctormckay.com"
25
+ },
26
+ "repository": {
27
+ "type": "git",
28
+ "url": "https://github.com/DoctorMcKay/node-steamcommunity.git"
29
+ },
30
+ "dependencies": {
31
+ "@doctormckay/user-agents": "^1.0.0",
32
+ "async": "^2.6.3",
33
+ "cheerio": "0.22.0",
34
+ "image-size": "^0.8.2",
35
+ "request": "^2.88.0",
36
+ "steam-session": "^1.7.2",
37
+ "steam-totp": "^1.5.0",
38
+ "steamid": "^1.1.3",
39
+ "xml2js": "^0.6.2"
40
+ },
41
+ "engines": {
42
+ "node": ">=4.0.0"
43
+ }
44
+ }
@@ -1,14 +1,14 @@
1
- /**
2
- * @enum EChatState
3
- */
4
- module.exports = {
5
- "Offline": 0,
6
- "LoggingOn": 1,
7
- "LogOnFailed": 2,
8
- "LoggedOn": 3,
9
-
10
- "0": "Offline",
11
- "1": "LoggingOn",
12
- "2": "LogOnFailed",
13
- "3": "LoggedOn"
14
- };
1
+ /**
2
+ * @enum EChatState
3
+ */
4
+ module.exports = {
5
+ "Offline": 0,
6
+ "LoggingOn": 1,
7
+ "LogOnFailed": 2,
8
+ "LoggedOn": 3,
9
+
10
+ "0": "Offline",
11
+ "1": "LoggingOn",
12
+ "2": "LogOnFailed",
13
+ "3": "LoggedOn"
14
+ };
@@ -1,12 +1,12 @@
1
- /**
2
- * @enum EConfirmationType
3
- */
4
- module.exports = {
5
- // 1 is unknown, possibly "Invalid"
6
- "Trade": 2,
7
- "MarketListing": 3,
8
- // 4 is opt-out or other like account confirmation?
9
-
10
- "2": "Trade",
11
- "3": "MarketListing"
12
- };
1
+ /**
2
+ * @enum EConfirmationType
3
+ */
4
+ module.exports = {
5
+ // 1 is unknown, possibly "Invalid"
6
+ "Trade": 2,
7
+ "MarketListing": 3,
8
+ // 4 is opt-out or other like account confirmation?
9
+
10
+ "2": "Trade",
11
+ "3": "MarketListing"
12
+ };
@@ -1,23 +1,23 @@
1
- /**
2
- * @enum EFriendRelationship
3
- */
4
- module.exports = {
5
- "None": 0,
6
- "Blocked": 1,
7
- "RequestRecipient": 2,
8
- "Friend": 3,
9
- "RequestInitiator": 4,
10
- "Ignored": 5,
11
- "IgnoredFriend": 6,
12
- "SuggestedFriend": 7, // removed "was used by the original implementation of the facebook linking feature; but now unused."
13
-
14
- // Value-to-name mapping for convenience
15
- "0": "None",
16
- "1": "Blocked",
17
- "2": "RequestRecipient",
18
- "3": "Friend",
19
- "4": "RequestInitiator",
20
- "5": "Ignored",
21
- "6": "IgnoredFriend",
22
- "7": "SuggestedFriend",
23
- };
1
+ /**
2
+ * @enum EFriendRelationship
3
+ */
4
+ module.exports = {
5
+ "None": 0,
6
+ "Blocked": 1,
7
+ "RequestRecipient": 2,
8
+ "Friend": 3,
9
+ "RequestInitiator": 4,
10
+ "Ignored": 5,
11
+ "IgnoredFriend": 6,
12
+ "SuggestedFriend": 7, // removed "was used by the original implementation of the facebook linking feature; but now unused."
13
+
14
+ // Value-to-name mapping for convenience
15
+ "0": "None",
16
+ "1": "Blocked",
17
+ "2": "RequestRecipient",
18
+ "3": "Friend",
19
+ "4": "RequestInitiator",
20
+ "5": "Ignored",
21
+ "6": "IgnoredFriend",
22
+ "7": "SuggestedFriend",
23
+ };
@@ -1,23 +1,23 @@
1
- /**
2
- * @enum EPersonaState
3
- */
4
- module.exports = {
5
- "Offline": 0,
6
- "Online": 1,
7
- "Busy": 2,
8
- "Away": 3,
9
- "Snooze": 4,
10
- "LookingToTrade": 5,
11
- "LookingToPlay": 6,
12
- "Invisible": 7,
13
-
14
- // Value-to-name mapping for convenience
15
- "0": "Offline",
16
- "1": "Online",
17
- "2": "Busy",
18
- "3": "Away",
19
- "4": "Snooze",
20
- "5": "LookingToTrade",
21
- "6": "LookingToPlay",
22
- "7": "Invisible",
23
- };
1
+ /**
2
+ * @enum EPersonaState
3
+ */
4
+ module.exports = {
5
+ "Offline": 0,
6
+ "Online": 1,
7
+ "Busy": 2,
8
+ "Away": 3,
9
+ "Snooze": 4,
10
+ "LookingToTrade": 5,
11
+ "LookingToPlay": 6,
12
+ "Invisible": 7,
13
+
14
+ // Value-to-name mapping for convenience
15
+ "0": "Offline",
16
+ "1": "Online",
17
+ "2": "Busy",
18
+ "3": "Away",
19
+ "4": "Snooze",
20
+ "5": "LookingToTrade",
21
+ "6": "LookingToPlay",
22
+ "7": "Invisible",
23
+ };
@@ -1,32 +1,32 @@
1
- /**
2
- * @enum EPersonaStateFlag
3
- */
4
- module.exports = {
5
- "HasRichPresence": 1,
6
- "InJoinableGame": 2,
7
- "Golden": 4,
8
- "RemotePlayTogether": 8,
9
- "OnlineUsingWeb": 256, // removed "renamed to ClientTypeWeb"
10
- "ClientTypeWeb": 256,
11
- "OnlineUsingMobile": 512, // removed "renamed to ClientTypeMobile"
12
- "ClientTypeMobile": 512,
13
- "OnlineUsingBigPicture": 1024, // removed "renamed to ClientTypeTenfoot"
14
- "ClientTypeTenfoot": 1024,
15
- "OnlineUsingVR": 2048, // removed "renamed to ClientTypeVR"
16
- "ClientTypeVR": 2048,
17
- "LaunchTypeGamepad": 4096,
18
- "LaunchTypeCompatTool": 8192,
19
-
20
- // Value-to-name mapping for convenience
21
- "1": "HasRichPresence",
22
- "2": "InJoinableGame",
23
- "4": "Golden",
24
- "8": "RemotePlayTogether",
25
- "256": "ClientTypeWeb",
26
- "512": "ClientTypeMobile",
27
- "1024": "ClientTypeTenfoot",
28
- "2048": "ClientTypeVR",
29
- "4096": "LaunchTypeGamepad",
30
- "8192": "LaunchTypeCompatTool",
31
- };
32
-
1
+ /**
2
+ * @enum EPersonaStateFlag
3
+ */
4
+ module.exports = {
5
+ "HasRichPresence": 1,
6
+ "InJoinableGame": 2,
7
+ "Golden": 4,
8
+ "RemotePlayTogether": 8,
9
+ "OnlineUsingWeb": 256, // removed "renamed to ClientTypeWeb"
10
+ "ClientTypeWeb": 256,
11
+ "OnlineUsingMobile": 512, // removed "renamed to ClientTypeMobile"
12
+ "ClientTypeMobile": 512,
13
+ "OnlineUsingBigPicture": 1024, // removed "renamed to ClientTypeTenfoot"
14
+ "ClientTypeTenfoot": 1024,
15
+ "OnlineUsingVR": 2048, // removed "renamed to ClientTypeVR"
16
+ "ClientTypeVR": 2048,
17
+ "LaunchTypeGamepad": 4096,
18
+ "LaunchTypeCompatTool": 8192,
19
+
20
+ // Value-to-name mapping for convenience
21
+ "1": "HasRichPresence",
22
+ "2": "InJoinableGame",
23
+ "4": "Golden",
24
+ "8": "RemotePlayTogether",
25
+ "256": "ClientTypeWeb",
26
+ "512": "ClientTypeMobile",
27
+ "1024": "ClientTypeTenfoot",
28
+ "2048": "ClientTypeVR",
29
+ "4096": "LaunchTypeGamepad",
30
+ "8192": "LaunchTypeCompatTool",
31
+ };
32
+