@dongdev/fca-unofficial 2.0.1 → 2.0.3
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/CHANGELOG.md +6 -0
- package/module/config.js +4 -1
- package/package.json +1 -1
- package/src/api/threads/getThreadInfo.js +2 -2
package/CHANGELOG.md
CHANGED
package/module/config.js
CHANGED
@@ -3,7 +3,10 @@ const path = require("path");
|
|
3
3
|
const logger = require("../func/logger");
|
4
4
|
const defaultConfig = {
|
5
5
|
autoUpdate: true,
|
6
|
-
mqtt: { enabled: true, reconnectInterval: 3600 }
|
6
|
+
mqtt: { enabled: true, reconnectInterval: 3600 },
|
7
|
+
email: "",
|
8
|
+
password: "",
|
9
|
+
twofactor: "",
|
7
10
|
};
|
8
11
|
function loadConfig() {
|
9
12
|
const configPath = path.join(process.cwd(), "fca-config.json");
|
package/package.json
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
"use strict";
|
2
2
|
|
3
|
-
const utils = require("
|
3
|
+
const utils = require("../../utils");
|
4
4
|
const log = require("npmlog");
|
5
5
|
const fs = require("fs");
|
6
6
|
const path = require("path");
|
7
|
-
const logger = require("
|
7
|
+
const logger = require("../../../func/logger");
|
8
8
|
|
9
9
|
function formatEventReminders(reminder) {
|
10
10
|
return {
|