ok i will set a timer to run that function ever 1 hour and let u know the results however this maybe a dumb question please excuse my ignorance but we are sending the client once to the steam-tradeoffer-manager if we webLogOn() this will update the client in the steam tradeoffer manager too or do we have to create a new object
const steamOptions = { autoRelogin: true,
httpProxy : proxy };
let client = new SteamUser(steamOptions);
const communityOptions = {};
communityOptions.request = Request.defaults({ 'proxy': proxy });
let community = new SteamCommunity(communityOptions);
let manager = new TradeOfferManager({
"steam": client, // Polling every 30 seconds is fine since we get notifications from Steam
"domain": "localhost", // Our domain is example.com
"language": "en" // We want English item descriptions
});