@takentrade/takentrade-libs 4.1.9 → 4.1.10
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 +2 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +13 -9
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Shared libraries for the TakeNTrade microservices architecture.
|
|
4
4
|
|
|
5
|
-
This package provides shared authentication, caching, messaging, notification, and utility contracts used by the service repos.
|
|
5
|
+
This package provides shared authentication, caching, logging, messaging, RPC, notification, and utility contracts used by the service repos.
|
|
6
6
|
|
|
7
7
|
## Installation
|
|
8
8
|
|
|
@@ -50,6 +50,7 @@ For authentication, services can extend the shared `TntBaseAuthGuard` and pair i
|
|
|
50
50
|
| ------------------ | ---------------------------------------------- | ---------------------------------------------- |
|
|
51
51
|
| **Authentication** | Route protection and role-based access control | [docs/auth.md](docs/auth.md) |
|
|
52
52
|
| **Cache** | Redis-based caching with TTL support | [docs/cache.md](docs/cache.md) |
|
|
53
|
+
| **Logging** | Shared structured logging helpers | [docs/logging.md](docs/logging.md) |
|
|
53
54
|
| **NATS** | Microservice messaging and event streaming | [docs/nats.md](docs/nats.md) |
|
|
54
55
|
| **Notifications** | Email, SMS, and push notifications | [docs/notifications.md](docs/notifications.md) |
|
|
55
56
|
| **RPC** | Request-response patterns for NATS | [docs/rpc.md](docs/rpc.md) |
|