alicezetion 1.2.2 → 1.2.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/.cache/replit/__replit_disk_meta.json +1 -1
- package/index.js +2 -2
- package/leiamnash/listenMqtt.js +10 -1
- package/package.json +1 -1
- package/utils.js +0 -1
@@ -1 +1 @@
|
|
1
|
-
{"nonce":
|
1
|
+
{"nonce":243310921411882231,"last_updated":{"seconds":1693007378,"nanos":164182000}}
|
package/index.js
CHANGED
@@ -324,7 +324,7 @@ function makeLogin(jar, email, password, loginOptions, callback, prCallback) {
|
|
324
324
|
.then(function() {
|
325
325
|
delete form.no_fido;
|
326
326
|
delete form.approvals_code;
|
327
|
-
form.name_action_selected = '
|
327
|
+
form.name_action_selected = 'dont_save';
|
328
328
|
|
329
329
|
return utils.post(nextURL, jar, form, loginOptions).then(utils.saveCookies(jar));
|
330
330
|
})
|
@@ -496,7 +496,7 @@ function login(loginData, options, callback) {
|
|
496
496
|
listenEvents: true,
|
497
497
|
listenTyping: false,
|
498
498
|
updatePresence: false,
|
499
|
-
forceLogin:
|
499
|
+
forceLogin: false,
|
500
500
|
autoMarkDelivery: false,
|
501
501
|
autoMarkRead: false,
|
502
502
|
autoReconnect: true,
|
package/leiamnash/listenMqtt.js
CHANGED
@@ -1,5 +1,14 @@
|
|
1
|
-
/*
|
1
|
+
/*
|
2
|
+
|
3
|
+
A L I C E » this project recode by one
|
4
|
+
person LeiamNash
|
5
|
+
this will only work on
|
6
|
+
project alice
|
7
|
+
|
8
|
+
*/
|
9
|
+
|
2
10
|
"use strict";
|
11
|
+
|
3
12
|
var utils = require("../utils");
|
4
13
|
var log = require("npmlog");
|
5
14
|
var mqtt = require('mqtt');
|
package/package.json
CHANGED