@warp-drive/core 5.7.0-alpha.3 → 5.7.0-alpha.30

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 (115) hide show
  1. package/declarations/graph/-private/-diff.d.ts +7 -20
  2. package/declarations/graph/-private/-edge-definition.d.ts +3 -12
  3. package/declarations/graph/-private/-state.d.ts +2 -2
  4. package/declarations/graph/-private/-utils.d.ts +5 -5
  5. package/declarations/graph/-private/debug/assert-polymorphic-type.d.ts +3 -3
  6. package/declarations/graph/-private/edges/collection.d.ts +10 -10
  7. package/declarations/graph/-private/edges/implicit.d.ts +5 -5
  8. package/declarations/graph/-private/edges/resource.d.ts +6 -7
  9. package/declarations/graph/-private/graph.d.ts +17 -15
  10. package/declarations/graph/-private/operations/replace-related-records.d.ts +4 -4
  11. package/declarations/graph/-private/operations/update-relationship.d.ts +3 -3
  12. package/declarations/index.d.ts +1 -1
  13. package/declarations/reactive/-private/default-mode.d.ts +73 -0
  14. package/declarations/reactive/-private/document.d.ts +11 -21
  15. package/declarations/reactive/-private/fields/get-field-key.d.ts +8 -0
  16. package/declarations/reactive/-private/fields/managed-array.d.ts +7 -10
  17. package/declarations/reactive/-private/fields/managed-object.d.ts +7 -9
  18. package/declarations/reactive/-private/fields/many-array-manager.d.ts +2 -2
  19. package/declarations/reactive/-private/hooks.d.ts +2 -2
  20. package/declarations/reactive/-private/kind/alias-field.d.ts +4 -0
  21. package/declarations/reactive/-private/kind/array-field.d.ts +4 -0
  22. package/declarations/reactive/-private/kind/attribute-field.d.ts +4 -0
  23. package/declarations/reactive/-private/kind/belongs-to-field.d.ts +4 -0
  24. package/declarations/reactive/-private/kind/collection-field.d.ts +4 -0
  25. package/declarations/reactive/-private/kind/derived-field.d.ts +4 -0
  26. package/declarations/reactive/-private/kind/generic-field.d.ts +4 -0
  27. package/declarations/reactive/-private/kind/has-many-field.d.ts +4 -0
  28. package/declarations/reactive/-private/kind/hash-field.d.ts +4 -0
  29. package/declarations/reactive/-private/kind/identity-field.d.ts +4 -0
  30. package/declarations/reactive/-private/kind/local-field.d.ts +4 -0
  31. package/declarations/reactive/-private/kind/object-field.d.ts +4 -0
  32. package/declarations/reactive/-private/kind/resource-field.d.ts +4 -0
  33. package/declarations/reactive/-private/kind/schema-array-field.d.ts +4 -0
  34. package/declarations/reactive/-private/kind/schema-object-field.d.ts +4 -0
  35. package/declarations/reactive/-private/record.d.ts +44 -33
  36. package/declarations/reactive/-private/schema.d.ts +16 -72
  37. package/declarations/reactive/-private/symbols.d.ts +2 -7
  38. package/declarations/reactive/-private.d.ts +1 -1
  39. package/declarations/reactive.d.ts +278 -1
  40. package/declarations/request/-private/context.d.ts +3 -3
  41. package/declarations/request/-private/fetch.d.ts +2 -0
  42. package/declarations/request/-private/manager.d.ts +24 -28
  43. package/declarations/request/-private/types.d.ts +22 -23
  44. package/declarations/request/-private/utils.d.ts +44 -2
  45. package/declarations/store/-private/cache-handler/handler.d.ts +2 -8
  46. package/declarations/store/-private/cache-handler/types.d.ts +10 -10
  47. package/declarations/store/-private/cache-handler/utils.d.ts +4 -4
  48. package/declarations/store/-private/caches/instance-cache.d.ts +21 -19
  49. package/declarations/store/-private/default-cache-policy.d.ts +25 -38
  50. package/declarations/store/-private/managers/cache-capabilities-manager.d.ts +24 -15
  51. package/declarations/store/-private/{caches/identifier-cache.d.ts → managers/cache-key-manager.d.ts} +38 -52
  52. package/declarations/store/-private/managers/cache-manager.d.ts +47 -95
  53. package/declarations/store/-private/managers/notification-manager.d.ts +30 -42
  54. package/declarations/store/-private/managers/record-array-manager.d.ts +45 -41
  55. package/declarations/store/-private/network/request-cache.d.ts +21 -21
  56. package/declarations/store/-private/new-core-tmp/expensive-subscription.d.ts +24 -0
  57. package/declarations/store/-private/new-core-tmp/reactivity/configure.d.ts +3 -41
  58. package/declarations/store/-private/new-core-tmp/reactivity/internal.d.ts +12 -29
  59. package/declarations/store/-private/new-core-tmp/reactivity/signal.d.ts +23 -3
  60. package/declarations/store/-private/new-core-tmp/request-state.d.ts +129 -22
  61. package/declarations/store/-private/new-core-tmp/request-subscription.d.ts +52 -121
  62. package/declarations/store/-private/record-arrays/-utils.d.ts +80 -0
  63. package/declarations/store/-private/record-arrays/legacy-live-array.d.ts +81 -0
  64. package/declarations/store/-private/record-arrays/legacy-many-array.d.ts +133 -0
  65. package/declarations/store/-private/record-arrays/legacy-query.d.ts +81 -0
  66. package/declarations/store/-private/record-arrays/native-proxy-type-fix.d.ts +1 -124
  67. package/declarations/store/-private/record-arrays/resource-array.d.ts +75 -0
  68. package/declarations/store/-private/store-service.d.ts +156 -101
  69. package/declarations/store/-private.d.ts +10 -7
  70. package/declarations/store/-types/q/cache-capabilities-manager.d.ts +15 -24
  71. package/declarations/store/-types/q/identifier.d.ts +9 -6
  72. package/declarations/store/-types/q/record-instance.d.ts +0 -1
  73. package/declarations/store/-types/q/schema-service.d.ts +28 -40
  74. package/declarations/store/-types/q/store.d.ts +6 -7
  75. package/declarations/store/deprecated/-private.d.ts +12 -23
  76. package/declarations/store/deprecated/store.d.ts +11 -12
  77. package/declarations/types/-private.d.ts +1 -1
  78. package/declarations/types/cache/aliases.d.ts +2 -2
  79. package/declarations/types/cache/change.d.ts +2 -2
  80. package/declarations/types/cache/mutations.d.ts +13 -13
  81. package/declarations/types/cache/operations.d.ts +115 -32
  82. package/declarations/types/cache/relationship.d.ts +4 -4
  83. package/declarations/types/cache.d.ts +51 -113
  84. package/declarations/types/graph.d.ts +12 -12
  85. package/declarations/types/identifier.d.ts +52 -76
  86. package/declarations/types/params.d.ts +2 -3
  87. package/declarations/types/request.d.ts +69 -42
  88. package/declarations/types/schema/concepts.d.ts +2 -2
  89. package/declarations/types/schema/fields.d.ts +378 -14
  90. package/declarations/types/spec/document.d.ts +6 -6
  91. package/declarations/types/spec/json-api-raw.d.ts +6 -8
  92. package/declarations/utils/string.d.ts +2 -2
  93. package/dist/{configure-B48bFHOl.js → configure-CiFDHArV.js} +4 -4
  94. package/dist/configure.js +1 -1
  95. package/dist/{context-COmAnXUQ.js → context-Bh-MA_tH.js} +40 -6
  96. package/dist/graph/-private.js +137 -144
  97. package/dist/index.js +25 -14
  98. package/dist/reactive/-private.js +1 -1
  99. package/dist/reactive.js +202 -1411
  100. package/dist/{request-state-CejVJgdj.js → request-state-B908BvPK.js} +5186 -2549
  101. package/dist/request.js +1 -1
  102. package/dist/store/-private.js +2 -3
  103. package/dist/store.js +32 -44
  104. package/dist/{symbols-SIstXMLI.js → symbols-sql1_mdx.js} +3 -8
  105. package/dist/types/-private.js +1 -1
  106. package/dist/types/identifier.js +19 -45
  107. package/dist/types/request.js +45 -3
  108. package/dist/types/schema/fields.js +23 -2
  109. package/dist/utils/string.js +2 -2
  110. package/package.json +10 -10
  111. package/declarations/reactive/-private/fields/compute.d.ts +0 -43
  112. package/declarations/store/-private/caches/cache-utils.d.ts +0 -12
  113. package/declarations/store/-private/record-arrays/identifier-array.d.ts +0 -147
  114. package/declarations/store/-private/record-arrays/many-array.d.ts +0 -197
  115. package/dist/handler-D2jjnIA-.js +0 -339

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.