@warp-drive/core 5.8.0-alpha.5 → 5.8.0-alpha.7

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.
Files changed (33) hide show
  1. package/declarations/build-config.d.ts +18 -1
  2. package/declarations/index.d.ts +80 -3
  3. package/declarations/reactive/-private/document.d.ts +58 -46
  4. package/declarations/reactive/-private/schema.d.ts +1 -1
  5. package/declarations/reactive.d.ts +3 -2
  6. package/declarations/request.d.ts +25 -0
  7. package/declarations/store/-private/caches/instance-cache.d.ts +1 -1
  8. package/declarations/store/-private/default-cache-policy.d.ts +74 -73
  9. package/declarations/store/-private/managers/cache-capabilities-manager.d.ts +1 -1
  10. package/declarations/store/-private/managers/cache-manager.d.ts +6 -4
  11. package/declarations/store/-private/new-core-tmp/promise-state.d.ts +1 -0
  12. package/declarations/store/-private/store-service.d.ts +1 -1
  13. package/declarations/store/-types/q/cache-capabilities-manager.d.ts +1 -1
  14. package/declarations/store/deprecated/store.d.ts +1 -1
  15. package/declarations/types/cache.d.ts +6 -4
  16. package/declarations/types/request.d.ts +4 -6
  17. package/declarations/types/schema/fields.d.ts +11 -0
  18. package/declarations/types/symbols.d.ts +2 -2
  19. package/dist/build-config.js +1 -1
  20. package/dist/default-cache-policy-D7_u4YRH.js +572 -0
  21. package/dist/graph/-private.js +1 -1
  22. package/dist/{index-MiSBsI57.js → index-BMCk_UD5.js} +10453 -10426
  23. package/dist/index.js +5 -4
  24. package/dist/reactive.js +7 -42
  25. package/dist/{context-C_7OLieY.js → request-CN-dNlEY.js} +193 -173
  26. package/dist/request.js +1 -1
  27. package/dist/store/-private.js +1 -1
  28. package/dist/store.js +1 -570
  29. package/dist/types/-private.js +1 -1
  30. package/dist/types/request.js +3 -5
  31. package/dist/types/schema/fields.js +14 -0
  32. package/dist/types/symbols.js +2 -2
  33. package/package.json +3 -3
@@ -3331,7 +3331,7 @@ function isReordered(relationship) {
3331
3331
  /**
3332
3332
  Provides a performance tuned normalized graph for intelligently managing relationships between resources based on identity
3333
3333
 
3334
- While this Graph is abstract, it currently is a private implementation required as a peer-dependency by the {JSON:API} Cache Implementation.
3334
+ While this Graph is abstract, it currently is a private implementation required as a peer-dependency by the {json:api} Cache Implementation.
3335
3335
 
3336
3336
  We intend to make this Graph public API after some additional iteration during the 5.x timeframe, until then all APIs should be considered experimental and unstable, not fit for direct application or 3rd party library usage.
3337
3337