@memberjunction/graphql-dataprovider 5.8.0 → 5.9.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/README.md +4 -0
- package/dist/index.cjs +193 -89
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +187 -9
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +187 -9
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +193 -89
- package/dist/index.mjs.map +1 -1
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -665,6 +665,10 @@ For comprehensive information about IS-A relationships in MemberJunction:
|
|
|
665
665
|
- `ExecuteSimplePrompt(params: ExecuteSimplePromptParams)` - Execute ad-hoc prompts without stored configuration
|
|
666
666
|
- `EmbedText(params: EmbedTextParams)` - Generate text embeddings using local models
|
|
667
667
|
|
|
668
|
+
## Caching & Real-Time Sync
|
|
669
|
+
|
|
670
|
+
This package provides browser-side storage providers (`BrowserIndexedDBStorageProvider`, `BrowserLocalStorageProvider`) for `LocalCacheManager`, and subscribes to `CACHE_INVALIDATION` GraphQL events to keep browser data fresh when other users or servers modify entities. For the full architecture — including differential updates, Redis cross-server sync, session-based deduplication, and deployment topologies — see the [**Caching & Pub/Sub Guide**](/guides/CACHING_AND_PUBSUB_GUIDE.md).
|
|
671
|
+
|
|
668
672
|
## Dependencies
|
|
669
673
|
|
|
670
674
|
- `@memberjunction/core` - Core MemberJunction functionality
|