http-request-manager 18.9.1 → 18.9.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/README.md +23 -23
- package/http-request-manager-18.9.4.tgz +0 -0
- package/package.json +1 -1
- package/http-request-manager-18.9.1.tgz +0 -0
package/README.md
CHANGED
|
@@ -14,7 +14,7 @@ A comprehensive Angular library providing enterprise-grade HTTP request manageme
|
|
|
14
14
|
|---------|-------------|---------|
|
|
15
15
|
| **🌐 HTTP Request Management** | Observable-based & Signal-based HTTP services with retry logic, polling, and streaming | [`HTTPManagerService`](./src/docs/HTTP_MANAGER_README.md) |
|
|
16
16
|
| **🔄 State Management** | ComponentStore integration with automatic CRUD state updates | [`HTTPManagerStateService`](./src/docs/HTTP_STATE_MANAGER_README.md) |
|
|
17
|
-
| **💬 Real-Time Communication** | WebSocket messaging with channel-based architecture | [`
|
|
17
|
+
| **💬 Real-Time Communication** | WebSocket messaging with channel-based architecture | [`WebSocketManagerService`](./src/docs/WS_MANAGER_README.md) |
|
|
18
18
|
| **💾 Data Persistence** | LocalStorage/SessionStorage with encryption & IndexedDB caching | [`LocalStorageManagerService`](./src/docs/LOCAL_STORAGE_README.md) |
|
|
19
19
|
| **🗄️ Database Management** | IndexedDB integration via Dexie.js with Observable API | [`DatabaseManagerService`](./src/docs/DATABASE_README.md) |
|
|
20
20
|
| **⚡ Utility Functions** | JSON handling, encryption, headers, and validation | [`UtilsService`](./src/docs/UTILS_README.md) |
|
|
@@ -30,14 +30,14 @@ A comprehensive Angular library providing enterprise-grade HTTP request manageme
|
|
|
30
30
|
|
|
31
31
|
## 📋 Table of Contents
|
|
32
32
|
|
|
33
|
-
- [Quick Start](
|
|
34
|
-
- [Configuration](
|
|
35
|
-
- [Services Overview](
|
|
36
|
-
- [Architecture](
|
|
37
|
-
- [Interceptors](
|
|
38
|
-
- [Detailed Documentation](
|
|
39
|
-
- [Demo Examples](
|
|
40
|
-
- [Migration Guide](
|
|
33
|
+
- [Quick Start](#-quick-start)
|
|
34
|
+
- [Configuration](#️-configuration)
|
|
35
|
+
- [Services Overview](#-services-overview)
|
|
36
|
+
- [Architecture](./src/docs/ARCHITECTURE.md)
|
|
37
|
+
- [Interceptors](./src/docs/INTERCEPTOR_README.md)
|
|
38
|
+
- [Detailed Documentation](#-detailed-documentation)
|
|
39
|
+
- [Demo Examples](#-demo-examples)
|
|
40
|
+
- [Migration Guide](#-migration-guide)
|
|
41
41
|
|
|
42
42
|
## 🚀 Quick Start
|
|
43
43
|
|
|
@@ -222,7 +222,7 @@ export class AppModule { }
|
|
|
222
222
|
| [`WebSocketService`](./src/docs/WS_MANAGER_README.md) | WebSocket connection management | Real-time messaging and notifications |
|
|
223
223
|
| [`LocalStorageManagerService`](./src/docs/LOCAL_STORAGE_README.md) | Secure local storage | User preferences, session data |
|
|
224
224
|
| [`DatabaseManagerService`](./src/docs/DATABASE_README.md) | IndexedDB wrapper | Offline-first data access |
|
|
225
|
-
| [`StoreStateManagerService`](./
|
|
225
|
+
| [`StoreStateManagerService`](./STORE_STATE_MANAGER_README.md) | Persistent ComponentStore | Application state persistence |
|
|
226
226
|
| [`UtilsService`](./src/docs/UTILS_README.md) | Utility functions | JSON handling, encryption, headers, and conversions |
|
|
227
227
|
|
|
228
228
|
### Common Use Cases
|
|
@@ -242,7 +242,7 @@ export class AppModule { }
|
|
|
242
242
|
|
|
243
243
|
For detailed system architecture, data flows, and design patterns, see:
|
|
244
244
|
|
|
245
|
-
📋 **[Architecture Documentation](ARCHITECTURE.md)**
|
|
245
|
+
📋 **[Architecture Documentation](./src/docs/ARCHITECTURE.md)**
|
|
246
246
|
|
|
247
247
|
### System Overview
|
|
248
248
|
|
|
@@ -321,21 +321,21 @@ For in-depth documentation on each service and component, refer to the following
|
|
|
321
321
|
|
|
322
322
|
| Documentation | Description |
|
|
323
323
|
|---------------|-------------|
|
|
324
|
-
| 📖 [HTTP Manager Service](HTTP_MANAGER_README.md) | Observable-based HTTP client with retry, polling, streaming, and error handling |
|
|
325
|
-
| 📖 [HTTP Manager Signals Service](HTTP_SINGNALS_MANAGER_README.md) | Signal-based HTTP client for modern reactive UI with Angular Signals |
|
|
326
|
-
| 📖 [HTTP Manager State Service](HTTP_STATE_MANAGER_README.md) | ComponentStore integration with automatic CRUD state updates and WebSocket sync |
|
|
327
|
-
| 📖 [WebSocket Manager Service](WS_MANAGER_README.md) | WebSocket connection management with channel-based messaging and notifications |
|
|
328
|
-
| 📖 [Local Storage Manager Service](LOCAL_STORAGE_README.md) | Secure local/session storage with encryption and expiration |
|
|
329
|
-
| 📖 [Database Manager Service](DATABASE_README.md) | IndexedDB wrapper via Dexie.js with Observable API for offline-first apps |
|
|
330
|
-
| 📖 [Store State Manager Service](STORE_STATE_MANAGER_README.md) | Persistent ComponentStore synchronized with local/session storage |
|
|
331
|
-
| 📖 [Utils Service](UTILS_README.md) | Utility functions for JSON handling, encryption, headers, and validation |
|
|
324
|
+
| 📖 [HTTP Manager Service](./src/docs/HTTP_MANAGER_README.md) | Observable-based HTTP client with retry, polling, streaming, and error handling |
|
|
325
|
+
| 📖 [HTTP Manager Signals Service](./src/docs/HTTP_SINGNALS_MANAGER_README.md) | Signal-based HTTP client for modern reactive UI with Angular Signals |
|
|
326
|
+
| 📖 [HTTP Manager State Service](./src/docs/HTTP_STATE_MANAGER_README.md) | ComponentStore integration with automatic CRUD state updates and WebSocket sync |
|
|
327
|
+
| 📖 [WebSocket Manager Service](./src/docs/WS_MANAGER_README.md) | WebSocket connection management with channel-based messaging and notifications |
|
|
328
|
+
| 📖 [Local Storage Manager Service](./src/docs/LOCAL_STORAGE_README.md) | Secure local/session storage with encryption and expiration |
|
|
329
|
+
| 📖 [Database Manager Service](./src/docs/DATABASE_README.md) | IndexedDB wrapper via Dexie.js with Observable API for offline-first apps |
|
|
330
|
+
| 📖 [Store State Manager Service](./STORE_STATE_MANAGER_README.md) | Persistent ComponentStore synchronized with local/session storage |
|
|
331
|
+
| 📖 [Utils Service](./src/docs/UTILS_README.md) | Utility functions for JSON handling, encryption, headers, and validation |
|
|
332
332
|
|
|
333
333
|
### Core Components
|
|
334
334
|
|
|
335
335
|
| Documentation | Description |
|
|
336
336
|
|---------------|-------------|
|
|
337
|
-
| 🏗️ [Architecture](ARCHITECTURE.md) | System architecture, data flows, and design patterns |
|
|
338
|
-
| 🔧 [Interceptors](INTERCEPTOR_README.md) | HTTP interceptors for error handling, headers, authentication, and debugging |
|
|
337
|
+
| 🏗️ [Architecture](./src/docs/ARCHITECTURE.md) | System architecture, data flows, and design patterns |
|
|
338
|
+
| 🔧 [Interceptors](./src/docs/INTERCEPTOR_README.md) | HTTP interceptors for error handling, headers, authentication, and debugging |
|
|
339
339
|
|
|
340
340
|
### Additional Resources
|
|
341
341
|
|
|
@@ -346,10 +346,10 @@ For in-depth documentation on each service and component, refer to the following
|
|
|
346
346
|
|
|
347
347
|
Comprehensive demo components showcase all library features:
|
|
348
348
|
|
|
349
|
-
📋 **[Demo Examples Documentation](demos/README.md)**
|
|
350
|
-
|
|
351
349
|
### Available Demos
|
|
352
350
|
|
|
351
|
+
Located in [`src/lib/http-request-services-demo/`](src/lib/http-request-services-demo/):
|
|
352
|
+
|
|
353
353
|
- **HttpRequestServicesDemoComponent** - Main demo component
|
|
354
354
|
- **RequestManagerDemoComponent** - HTTP service demonstrations
|
|
355
355
|
- **RequestManagerStateDemoComponent** - State management examples
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "http-request-manager",
|
|
3
|
-
"version": "18.9.
|
|
3
|
+
"version": "18.9.4",
|
|
4
4
|
"homepage": "https://wavecoders.ca",
|
|
5
5
|
"author": "Mike Bonifacio <wavecoders@gmail.com> (http://wavecoders@gmail.com/)",
|
|
6
6
|
"description": "This is an Angular Module containing Components/Services using Material",
|
|
Binary file
|