@opensourcekd/ng-common-libs 2.0.8 → 2.0.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 CHANGED
@@ -17,7 +17,7 @@ import {
17
17
  } from '@opensourcekd/ng-common-libs';
18
18
  ```
19
19
 
20
- > 📖 **Complete Guide**: See [CONSUMPTION_GUIDE.md](./CONSUMPTION_GUIDE.md) for detailed usage instructions.
20
+ > 📖 **Complete Guide**: See [docs/CONSUMPTION_GUIDE.md](./docs/CONSUMPTION_GUIDE.md) for detailed usage instructions.
21
21
 
22
22
  ## 🚀 Features
23
23
 
@@ -81,10 +81,16 @@ const endpoint = `${apiUrl}/users`;
81
81
 
82
82
  ## 📚 Documentation
83
83
 
84
- - **[CONSUMPTION_GUIDE.md](./CONSUMPTION_GUIDE.md)** - Complete setup guide and API reference
85
- - **[Auth0 Service Usage](./docs/AUTH_SERVICE_USAGE.md)** - Detailed Auth0 integration
86
- - **[EventBus Service Usage](./docs/EVENT_BUS_USAGE.md)** - Cross-application event patterns
87
- - **[Module Federation Guide](./docs/MODULE_FEDERATION.md)** - Runtime sharing configuration
84
+ All documentation is in the `/docs` folder:
85
+
86
+ - **[CONSUMPTION_GUIDE.md](./docs/CONSUMPTION_GUIDE.md)** - Complete setup guide and API reference
87
+ - **[AUTH.md](./docs/AUTH.md)** - Authentication with Auth0 (setup, usage, debugging)
88
+ - **[INTEGRATION.md](./docs/INTEGRATION.md)** - Angular, Module Federation, auto-deployments
89
+ - **[EVENT_BUS_USAGE.md](./docs/EVENT_BUS_USAGE.md)** - Cross-application event patterns
90
+ - **[DEPLOYMENT.md](./docs/DEPLOYMENT.md)** - Publishing and deployment
91
+ - **[ARCHITECTURE_ANALYSIS.md](./docs/ARCHITECTURE_ANALYSIS.md)** - Architecture overview
92
+ - **[MICROAPP_SETUP_REQUIRED.md](./docs/MICROAPP_SETUP_REQUIRED.md)** - Microapp setup
93
+ - **[COPILOT_EFFICIENCY.md](./docs/COPILOT_EFFICIENCY.md)** - ⚡ How to use GitHub Copilot efficiently
88
94
 
89
95
  ## 📝 What's Exported
90
96
 
@@ -115,6 +121,7 @@ import {
115
121
  // Types & Interfaces
116
122
  UserInfo,
117
123
  UserData,
124
+ TokenPayload, // Decoded JWT access token payload
118
125
  EventPayload,
119
126
  Auth0Config,
120
127
  Auth0ConfigOptions,