steamutils 1.5.11 → 1.5.13
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/SteamClient.js +3129 -3188
- package/const.js +51 -0
- package/package.json +5 -4
- package/remote.js +2249 -2249
package/const.js
CHANGED
|
@@ -516,3 +516,54 @@ export const ItemQuality = {
|
|
|
516
516
|
Favoured: 13,
|
|
517
517
|
Max: 14,
|
|
518
518
|
};
|
|
519
|
+
|
|
520
|
+
export const RANKS = {
|
|
521
|
+
0: "Unranked",
|
|
522
|
+
1: "Silver I",
|
|
523
|
+
2: "Silver II",
|
|
524
|
+
3: "Silver III",
|
|
525
|
+
4: "Silver IV",
|
|
526
|
+
5: "Silver Elite",
|
|
527
|
+
6: "Silver Elite Master",
|
|
528
|
+
7: "Gold Nova I",
|
|
529
|
+
8: "Gold Nova II",
|
|
530
|
+
9: "Gold Nova III",
|
|
531
|
+
10: "Gold Nova Master",
|
|
532
|
+
11: "Master Guardian I",
|
|
533
|
+
12: "Master Guardian II",
|
|
534
|
+
13: "Master Guardian Elite",
|
|
535
|
+
14: "Distinguished Master Guardian",
|
|
536
|
+
15: "Legendary Eagle",
|
|
537
|
+
16: "Legendary Eagle Master",
|
|
538
|
+
17: "Supreme Master First Class",
|
|
539
|
+
18: "The Global Elite",
|
|
540
|
+
};
|
|
541
|
+
|
|
542
|
+
export const LOCS = {
|
|
543
|
+
20054: "VN",
|
|
544
|
+
23115: "KZ",
|
|
545
|
+
20041: "IN",
|
|
546
|
+
20035: "CN",
|
|
547
|
+
17474: "BD",
|
|
548
|
+
17481: "ID",
|
|
549
|
+
22861: "MY",
|
|
550
|
+
18516: "TH",
|
|
551
|
+
22356: "TW",
|
|
552
|
+
21067: "KR",
|
|
553
|
+
19272: "HK",
|
|
554
|
+
18512: "PH",
|
|
555
|
+
21842: "RU",
|
|
556
|
+
16716: "LA",
|
|
557
|
+
20558: "NP",
|
|
558
|
+
18259: "SG",
|
|
559
|
+
19789: "MM",
|
|
560
|
+
20045: "MN",
|
|
561
|
+
18251: "KG",
|
|
562
|
+
18507: "KH",
|
|
563
|
+
22605: "MX",
|
|
564
|
+
19280: "PK",
|
|
565
|
+
20301: "HK/MO", //hongkong or macau
|
|
566
|
+
21333: "Unknown",
|
|
567
|
+
21825: "AU",
|
|
568
|
+
20034: "Unkown",
|
|
569
|
+
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "steamutils",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.13",
|
|
4
4
|
"main": "index.js",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"alpha-common-utils": "^1.0.6",
|
|
@@ -16,15 +16,16 @@
|
|
|
16
16
|
"moment": "^2.30.1",
|
|
17
17
|
"moment-timezone": "^0.5.46",
|
|
18
18
|
"node-bignumber": "^1.2.2",
|
|
19
|
+
"p-queue": "^8.0.1",
|
|
19
20
|
"protobufjs": "^7.4.0",
|
|
20
|
-
"qs": "^6.13.
|
|
21
|
+
"qs": "^6.13.1",
|
|
21
22
|
"steam-session": "^1.9.0",
|
|
22
23
|
"steam-totp": "^2.1.2",
|
|
23
24
|
"steam-user": "^5.2.0",
|
|
24
|
-
"steamcommunity": "^3.48.
|
|
25
|
+
"steamcommunity": "^3.48.5",
|
|
25
26
|
"steamid": "^2.1.0",
|
|
26
27
|
"url-parse": "^1.5.10",
|
|
27
|
-
"uuid": "^
|
|
28
|
+
"uuid": "^11.0.3",
|
|
28
29
|
"xml-js": "^1.6.11",
|
|
29
30
|
"xml2js": "^0.6.2"
|
|
30
31
|
},
|