version wwwebjs 1.18.0
This commit is contained in:
aurik3
2022-10-25 09:47:51 -05:00
parent c8911f7bce
commit eaac1f1003
3 changed files with 952 additions and 9 deletions

4
api.js
View File

@@ -40,6 +40,10 @@ client.on("authenticated", () => {
} catch (err) {} } catch (err) {}
}); });
client.on('loading_screen', (percent, message) => {
console.log('LOADING SCREEN', percent, message);
});
client.on("auth_failure", () => { client.on("auth_failure", () => {
console.log("AUTH Failed !"); console.log("AUTH Failed !");
process.exit(); process.exit();

955
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -34,6 +34,6 @@
"request": "^2.88.2", "request": "^2.88.2",
"shelljs": "^0.8.5", "shelljs": "^0.8.5",
"valid-url": "^1.0.9", "valid-url": "^1.0.9",
"whatsapp-web.js": "1.17.1" "whatsapp-web.js": "^1.18.0"
} }
} }