3xui-api-client 2.0.0 → 2.1.0
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 +28 -0
- package/index.d.ts +437 -416
- package/index.js +715 -655
- package/package.json +113 -113
- package/src/builders/ProtocolBuilders.js +5 -1
- package/src/security/SecurityEnhancer.js +325 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,34 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.1.0] - 2025-08-30
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- 🔥 **Firestore Session Store Support** - Custom session handler for Firebase Firestore integration
|
|
12
|
+
- 📝 **Enhanced Wiki Documentation** - Comprehensive guides with real-world examples and integration patterns
|
|
13
|
+
- 🔍 **Client Identifier Clarification** - Clear documentation that 'email' field is an identifier, not a real email address
|
|
14
|
+
|
|
15
|
+
### Enhanced
|
|
16
|
+
- 📚 **Authentication Guide** - Added detailed session/cookie flow documentation and Firestore integration example
|
|
17
|
+
- 👥 **Client Management Guide** - Clarified email field semantics and added identifier generation examples
|
|
18
|
+
- 🛠️ **Inbound Management Guide** - Added protocol-specific authentication method explanations
|
|
19
|
+
- 🏠 **Home Documentation** - Improved navigation and cross-references between guides
|
|
20
|
+
|
|
21
|
+
### Documentation
|
|
22
|
+
- **Session Management**: Added comprehensive Firestore adapter example with cleanup patterns
|
|
23
|
+
- **API Flow Clarification**: Documented that all API calls automatically include stored session cookies
|
|
24
|
+
- **Client Identifiers**: Clarified that 'email' fields use random strings (e.g., '5yhuih4hg93') for privacy
|
|
25
|
+
- **Integration Examples**: Enhanced web integration patterns for Express.js and Next.js
|
|
26
|
+
- **Security Best Practices**: Consolidated security guidance in Authentication Guide
|
|
27
|
+
|
|
28
|
+
### Removed
|
|
29
|
+
- Removed any references to email generation functionality for clarity
|
|
30
|
+
- Cleaned up duplicate content across wiki files
|
|
31
|
+
|
|
32
|
+
### Fixed
|
|
33
|
+
- Corrected misconceptions about email field usage in 3x-ui
|
|
34
|
+
- Improved consistency across documentation
|
|
35
|
+
|
|
8
36
|
## [2.0.0] - 2025-06-25
|
|
9
37
|
|
|
10
38
|
### Added
|