steamutils 1.0.23 → 1.0.24
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 +6 -0
- package/package.json +1 -1
package/SteamClient.js
CHANGED
@@ -697,6 +697,12 @@ function SteamClient({
|
|
697
697
|
getUsername() {
|
698
698
|
return username
|
699
699
|
},
|
700
|
+
getCookie() {
|
701
|
+
return cookie
|
702
|
+
},
|
703
|
+
getLogOnDetails() {
|
704
|
+
return steamClient?._logOnDetails
|
705
|
+
},
|
700
706
|
onEvent(name, cb) {
|
701
707
|
if (!events[name]) {
|
702
708
|
events[name] = []
|