nexus-fca 2.0.0 → 2.0.2
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 +15 -0
- package/README.md +231 -358
- package/docs/account-safety.md +74 -0
- package/index.d.ts +5 -4
- package/index.js +60 -12
- package/lib/client/NexusClient.js +1 -1
- package/lib/error/ErrorHandler.js +1 -373
- package/lib/performance/PerformanceManager.js +3 -24
- package/lib/performance/PerformanceOptimizer.js +16 -38
- package/lib/safety/FacebookSafety.js +368 -0
- package/lib/safety/FacebookSafetyManager.js +429 -0
- package/package.json +27 -17
- package/src/changeAvatarV2.js +2 -4
- package/src/listenMqtt.js +1 -1
- package/utils.js +128 -19
- package/ENHANCED_DOCS.md +0 -386
package/CHANGELOG.md
CHANGED
|
@@ -1 +1,16 @@
|
|
|
1
1
|
#
|
|
2
|
+
# Changelog
|
|
3
|
+
#
|
|
4
|
+
## [2.0.1] - 2025-07-28
|
|
5
|
+
### Added
|
|
6
|
+
- 🚀 **Nexus Login System**: Advanced, safe, and automatic Facebook login system added under `/nexloginsystem`.
|
|
7
|
+
- 🔐 **Appstate auto-generation**: Login with username/password/2FA, auto-save appstate, and seamless bot start.
|
|
8
|
+
- 🛡️ **Maximum safety**: Human-like device simulation, TOTP/2FA support, and advanced error handling.
|
|
9
|
+
- 📦 **Auto-backup & validation**: Appstate backup, validation, and lifecycle management.
|
|
10
|
+
- 📚 **Full documentation**: Usage, API, and safety docs in `/nexloginsystem/README.md`.
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
- Updated main `README.md` with Nexus Login System quick start and features.
|
|
14
|
+
|
|
15
|
+
### Removed
|
|
16
|
+
- Old test files and legacy appstate generator scripts (now replaced by Nexus Login System).
|