@warp-drive/legacy 5.8.0-alpha.30 → 5.8.0-alpha.34

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 (477) hide show
  1. package/declarations/adapter/error.d.ts +5 -5
  2. package/declarations/adapter/json-api.d.ts +2 -2
  3. package/declarations/compat/builders/find-all.d.ts +6 -6
  4. package/declarations/compat/builders/find-record.d.ts +8 -8
  5. package/declarations/compat/builders/query.d.ts +12 -12
  6. package/declarations/compat.d.ts +3 -3
  7. package/declarations/model/-private/references/belongs-to.d.ts +4 -4
  8. package/declarations/model/-private/references/has-many.d.ts +2 -2
  9. package/declarations/model/migration-support.d.ts +34 -18
  10. package/declarations/model.d.ts +2 -2
  11. package/declarations/serializer/-private/embedded-records-mixin.d.ts +1 -1
  12. package/declarations/serializer/json-api.d.ts +3 -3
  13. package/declarations/serializer/json.d.ts +1 -1
  14. package/declarations/serializer.d.ts +1 -1
  15. package/dist/adapter/error.js +7 -7
  16. package/dist/compat/builders.js +26 -26
  17. package/dist/compat/utils.js +0 -1
  18. package/dist/compat.js +3 -3
  19. package/dist/{errors-B9CDPh3R.js → errors-CIGPcDvd.js} +12 -12
  20. package/dist/{hooks-CQXyievu.js → hooks-QqRnX108.js} +1 -1
  21. package/dist/index.js +4 -4
  22. package/dist/{json-BHxlccxF.js → json-BNrV8EYG.js} +4 -4
  23. package/dist/model/-private.js +1 -1
  24. package/dist/model/migration-support.js +41 -24
  25. package/dist/{model-for-B0TSd9HU.js → model-for-CqXsIKws.js} +1 -1
  26. package/dist/model-fragments.js +2 -2
  27. package/dist/model.js +3 -3
  28. package/dist/{schema-provider-BnVr_CnJ.js → schema-provider-g5MfTj8n.js} +11 -11
  29. package/dist/serializer/json-api.js +7 -7
  30. package/dist/serializer/json.js +1 -1
  31. package/dist/serializer/rest.js +10 -10
  32. package/dist/serializer.js +1 -1
  33. package/dist/unpkg/dev/-private-B1pSSN52.js +1210 -0
  34. package/dist/unpkg/dev/adapter/-private.js +1 -0
  35. package/dist/unpkg/dev/adapter/error.js +336 -0
  36. package/dist/unpkg/dev/adapter/json-api.js +132 -0
  37. package/dist/unpkg/dev/adapter/rest.js +1257 -0
  38. package/dist/unpkg/dev/adapter.js +1253 -0
  39. package/dist/unpkg/dev/compat/-private.js +1 -0
  40. package/dist/unpkg/dev/compat/builders.js +273 -0
  41. package/dist/unpkg/dev/compat/extensions.js +243 -0
  42. package/dist/unpkg/dev/compat/utils.js +224 -0
  43. package/dist/unpkg/dev/compat.js +1020 -0
  44. package/dist/unpkg/dev/declarations/adapter/-private/build-url-mixin.d.ts +33 -0
  45. package/dist/unpkg/dev/declarations/adapter/-private/fastboot-interface.d.ts +8 -0
  46. package/dist/unpkg/dev/declarations/adapter/-private/utils/continue-on-reject.d.ts +1 -0
  47. package/dist/unpkg/dev/declarations/adapter/-private/utils/determine-body-promise.d.ts +4 -0
  48. package/dist/unpkg/dev/declarations/adapter/-private/utils/fetch.d.ts +8 -0
  49. package/dist/unpkg/dev/declarations/adapter/-private/utils/parse-response-headers.d.ts +1 -0
  50. package/dist/unpkg/dev/declarations/adapter/-private/utils/serialize-into-hash.d.ts +6 -0
  51. package/dist/unpkg/dev/declarations/adapter/-private/utils/serialize-query-params.d.ts +5 -0
  52. package/dist/unpkg/dev/declarations/adapter/-private.d.ts +5 -0
  53. package/dist/unpkg/dev/declarations/adapter/error.d.ts +215 -0
  54. package/dist/unpkg/dev/declarations/adapter/json-api.d.ts +231 -0
  55. package/dist/unpkg/dev/declarations/adapter/rest.d.ts +815 -0
  56. package/dist/unpkg/dev/declarations/adapter.d.ts +770 -0
  57. package/dist/unpkg/dev/declarations/compat/-private.d.ts +13 -0
  58. package/dist/unpkg/dev/declarations/compat/builders/find-all.d.ts +35 -0
  59. package/dist/unpkg/dev/declarations/compat/builders/find-record.d.ts +56 -0
  60. package/dist/unpkg/dev/declarations/compat/builders/query.d.ts +66 -0
  61. package/dist/unpkg/dev/declarations/compat/builders/save-record.d.ts +34 -0
  62. package/dist/unpkg/dev/declarations/compat/builders/utils.d.ts +3 -0
  63. package/dist/unpkg/dev/declarations/compat/builders.d.ts +14 -0
  64. package/dist/unpkg/dev/declarations/compat/extensions.d.ts +59 -0
  65. package/dist/unpkg/dev/declarations/compat/legacy-network-handler/fetch-manager.d.ts +55 -0
  66. package/dist/unpkg/dev/declarations/compat/legacy-network-handler/identifier-has-id.d.ts +2 -0
  67. package/dist/unpkg/dev/declarations/compat/legacy-network-handler/legacy-data-fetch.d.ts +11 -0
  68. package/dist/unpkg/dev/declarations/compat/legacy-network-handler/legacy-data-utils.d.ts +5 -0
  69. package/dist/unpkg/dev/declarations/compat/legacy-network-handler/legacy-network-handler.d.ts +2 -0
  70. package/dist/unpkg/dev/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts +524 -0
  71. package/dist/unpkg/dev/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts +213 -0
  72. package/dist/unpkg/dev/declarations/compat/legacy-network-handler/serializer-response.d.ts +6 -0
  73. package/dist/unpkg/dev/declarations/compat/legacy-network-handler/snapshot-record-array.d.ts +110 -0
  74. package/dist/unpkg/dev/declarations/compat/legacy-network-handler/snapshot.d.ts +255 -0
  75. package/dist/unpkg/dev/declarations/compat/utils.d.ts +137 -0
  76. package/dist/unpkg/dev/declarations/compat.d.ts +157 -0
  77. package/dist/unpkg/dev/declarations/index.d.ts +70 -0
  78. package/dist/unpkg/dev/declarations/model/-private/attr.d.ts +170 -0
  79. package/dist/unpkg/dev/declarations/model/-private/belongs-to.d.ts +174 -0
  80. package/dist/unpkg/dev/declarations/model/-private/debug/assert-polymorphic-type.d.ts +5 -0
  81. package/dist/unpkg/dev/declarations/model/-private/errors.d.ts +289 -0
  82. package/dist/unpkg/dev/declarations/model/-private/has-many.d.ts +162 -0
  83. package/dist/unpkg/dev/declarations/model/-private/hooks.d.ts +10 -0
  84. package/dist/unpkg/dev/declarations/model/-private/legacy-relationships-support.d.ts +47 -0
  85. package/dist/unpkg/dev/declarations/model/-private/model-for-mixin.d.ts +3 -0
  86. package/dist/unpkg/dev/declarations/model/-private/model-methods.d.ts +39 -0
  87. package/dist/unpkg/dev/declarations/model/-private/model.d.ts +1269 -0
  88. package/dist/unpkg/dev/declarations/model/-private/notify-changes.d.ts +4 -0
  89. package/dist/unpkg/dev/declarations/model/-private/promise-belongs-to.d.ts +40 -0
  90. package/dist/unpkg/dev/declarations/model/-private/promise-many-array.d.ts +124 -0
  91. package/dist/unpkg/dev/declarations/model/-private/record-state.d.ts +58 -0
  92. package/dist/unpkg/dev/declarations/model/-private/references/belongs-to.d.ts +498 -0
  93. package/dist/unpkg/dev/declarations/model/-private/references/has-many.d.ts +500 -0
  94. package/dist/unpkg/dev/declarations/model/-private/schema-provider.d.ts +56 -0
  95. package/dist/unpkg/dev/declarations/model/-private/type-utils.d.ts +57 -0
  96. package/dist/unpkg/dev/declarations/model/-private/util.d.ts +5 -0
  97. package/dist/unpkg/dev/declarations/model/-private.d.ts +8 -0
  98. package/dist/unpkg/dev/declarations/model/migration-support.d.ts +280 -0
  99. package/dist/unpkg/dev/declarations/model-fragments/extensions/fragment-array.d.ts +16 -0
  100. package/dist/unpkg/dev/declarations/model-fragments/extensions/fragment.d.ts +15 -0
  101. package/dist/unpkg/dev/declarations/model-fragments/hooks/model-for.d.ts +20 -0
  102. package/dist/unpkg/dev/declarations/model-fragments/index.d.ts +5 -0
  103. package/dist/unpkg/dev/declarations/model-fragments/instance-initializers/fragment-extensions.d.ts +9 -0
  104. package/dist/unpkg/dev/declarations/model-fragments/utilities/with-array-defaults.d.ts +15 -0
  105. package/dist/unpkg/dev/declarations/model-fragments/utilities/with-fragment-array-defaults.d.ts +20 -0
  106. package/dist/unpkg/dev/declarations/model-fragments/utilities/with-fragment-defaults.d.ts +19 -0
  107. package/dist/unpkg/dev/declarations/model-fragments/utilities/with-legacy.d.ts +3 -0
  108. package/dist/unpkg/dev/declarations/model-fragments.d.ts +9 -0
  109. package/dist/unpkg/dev/declarations/model.d.ts +49 -0
  110. package/dist/unpkg/dev/declarations/serializer/-private/embedded-records-mixin.d.ts +91 -0
  111. package/dist/unpkg/dev/declarations/serializer/-private/transforms/boolean.d.ts +47 -0
  112. package/dist/unpkg/dev/declarations/serializer/-private/transforms/date.d.ts +28 -0
  113. package/dist/unpkg/dev/declarations/serializer/-private/transforms/number.d.ts +29 -0
  114. package/dist/unpkg/dev/declarations/serializer/-private/transforms/string.d.ts +29 -0
  115. package/dist/unpkg/dev/declarations/serializer/-private/transforms/transform.d.ts +118 -0
  116. package/dist/unpkg/dev/declarations/serializer/-private/utils.d.ts +3 -0
  117. package/dist/unpkg/dev/declarations/serializer/json-api.d.ts +123 -0
  118. package/dist/unpkg/dev/declarations/serializer/json.d.ts +75 -0
  119. package/dist/unpkg/dev/declarations/serializer/rest.d.ts +51 -0
  120. package/dist/unpkg/dev/declarations/serializer/transform.d.ts +5 -0
  121. package/dist/unpkg/dev/declarations/serializer.d.ts +254 -0
  122. package/dist/unpkg/dev/declarations/store/-private.d.ts +223 -0
  123. package/dist/unpkg/dev/declarations/store.d.ts +3 -0
  124. package/dist/unpkg/dev/errors-CIGPcDvd.js +2595 -0
  125. package/dist/unpkg/dev/hooks-QqRnX108.js +74 -0
  126. package/dist/unpkg/dev/index.js +195 -0
  127. package/dist/unpkg/dev/json-BNrV8EYG.js +1272 -0
  128. package/dist/unpkg/dev/model/-private.js +1 -0
  129. package/dist/unpkg/dev/model/migration-support.js +579 -0
  130. package/dist/unpkg/dev/model-for-CqXsIKws.js +221 -0
  131. package/dist/unpkg/dev/model-fragments.js +76 -0
  132. package/dist/unpkg/dev/model.js +667 -0
  133. package/dist/unpkg/dev/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
  134. package/dist/unpkg/dev/schema-provider-g5MfTj8n.js +2338 -0
  135. package/dist/unpkg/dev/serialize-into-hash-BnYvPex3.js +261 -0
  136. package/dist/unpkg/dev/serializer/json-api.js +527 -0
  137. package/dist/unpkg/dev/serializer/json.js +6 -0
  138. package/dist/unpkg/dev/serializer/rest.js +1243 -0
  139. package/dist/unpkg/dev/serializer/transform.js +278 -0
  140. package/dist/unpkg/dev/serializer.js +248 -0
  141. package/dist/unpkg/dev/store.js +636 -0
  142. package/dist/unpkg/dev/util-Dul6TZts.js +35 -0
  143. package/dist/unpkg/dev/utils-Cqw9eRj5.js +23 -0
  144. package/dist/unpkg/dev-deprecated/-private-B1pSSN52.js +1210 -0
  145. package/dist/unpkg/dev-deprecated/adapter/-private.js +1 -0
  146. package/dist/unpkg/dev-deprecated/adapter/error.js +336 -0
  147. package/dist/unpkg/dev-deprecated/adapter/json-api.js +132 -0
  148. package/dist/unpkg/dev-deprecated/adapter/rest.js +1257 -0
  149. package/dist/unpkg/dev-deprecated/adapter.js +1253 -0
  150. package/dist/unpkg/dev-deprecated/compat/-private.js +1 -0
  151. package/dist/unpkg/dev-deprecated/compat/builders.js +273 -0
  152. package/dist/unpkg/dev-deprecated/compat/extensions.js +243 -0
  153. package/dist/unpkg/dev-deprecated/compat/utils.js +224 -0
  154. package/dist/unpkg/dev-deprecated/compat.js +1020 -0
  155. package/dist/unpkg/dev-deprecated/declarations/adapter/-private/build-url-mixin.d.ts +33 -0
  156. package/dist/unpkg/dev-deprecated/declarations/adapter/-private/fastboot-interface.d.ts +8 -0
  157. package/dist/unpkg/dev-deprecated/declarations/adapter/-private/utils/continue-on-reject.d.ts +1 -0
  158. package/dist/unpkg/dev-deprecated/declarations/adapter/-private/utils/determine-body-promise.d.ts +4 -0
  159. package/dist/unpkg/dev-deprecated/declarations/adapter/-private/utils/fetch.d.ts +8 -0
  160. package/dist/unpkg/dev-deprecated/declarations/adapter/-private/utils/parse-response-headers.d.ts +1 -0
  161. package/dist/unpkg/dev-deprecated/declarations/adapter/-private/utils/serialize-into-hash.d.ts +6 -0
  162. package/dist/unpkg/dev-deprecated/declarations/adapter/-private/utils/serialize-query-params.d.ts +5 -0
  163. package/dist/unpkg/dev-deprecated/declarations/adapter/-private.d.ts +5 -0
  164. package/dist/unpkg/dev-deprecated/declarations/adapter/error.d.ts +215 -0
  165. package/dist/unpkg/dev-deprecated/declarations/adapter/json-api.d.ts +231 -0
  166. package/dist/unpkg/dev-deprecated/declarations/adapter/rest.d.ts +815 -0
  167. package/dist/unpkg/dev-deprecated/declarations/adapter.d.ts +770 -0
  168. package/dist/unpkg/dev-deprecated/declarations/compat/-private.d.ts +13 -0
  169. package/dist/unpkg/dev-deprecated/declarations/compat/builders/find-all.d.ts +35 -0
  170. package/dist/unpkg/dev-deprecated/declarations/compat/builders/find-record.d.ts +56 -0
  171. package/dist/unpkg/dev-deprecated/declarations/compat/builders/query.d.ts +66 -0
  172. package/dist/unpkg/dev-deprecated/declarations/compat/builders/save-record.d.ts +34 -0
  173. package/dist/unpkg/dev-deprecated/declarations/compat/builders/utils.d.ts +3 -0
  174. package/dist/unpkg/dev-deprecated/declarations/compat/builders.d.ts +14 -0
  175. package/dist/unpkg/dev-deprecated/declarations/compat/extensions.d.ts +59 -0
  176. package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/fetch-manager.d.ts +55 -0
  177. package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/identifier-has-id.d.ts +2 -0
  178. package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/legacy-data-fetch.d.ts +11 -0
  179. package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/legacy-data-utils.d.ts +5 -0
  180. package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/legacy-network-handler.d.ts +2 -0
  181. package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts +524 -0
  182. package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts +213 -0
  183. package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/serializer-response.d.ts +6 -0
  184. package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/snapshot-record-array.d.ts +110 -0
  185. package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/snapshot.d.ts +255 -0
  186. package/dist/unpkg/dev-deprecated/declarations/compat/utils.d.ts +137 -0
  187. package/dist/unpkg/dev-deprecated/declarations/compat.d.ts +157 -0
  188. package/dist/unpkg/dev-deprecated/declarations/index.d.ts +70 -0
  189. package/dist/unpkg/dev-deprecated/declarations/model/-private/attr.d.ts +170 -0
  190. package/dist/unpkg/dev-deprecated/declarations/model/-private/belongs-to.d.ts +174 -0
  191. package/dist/unpkg/dev-deprecated/declarations/model/-private/debug/assert-polymorphic-type.d.ts +5 -0
  192. package/dist/unpkg/dev-deprecated/declarations/model/-private/errors.d.ts +289 -0
  193. package/dist/unpkg/dev-deprecated/declarations/model/-private/has-many.d.ts +162 -0
  194. package/dist/unpkg/dev-deprecated/declarations/model/-private/hooks.d.ts +10 -0
  195. package/dist/unpkg/dev-deprecated/declarations/model/-private/legacy-relationships-support.d.ts +47 -0
  196. package/dist/unpkg/dev-deprecated/declarations/model/-private/model-for-mixin.d.ts +3 -0
  197. package/dist/unpkg/dev-deprecated/declarations/model/-private/model-methods.d.ts +39 -0
  198. package/dist/unpkg/dev-deprecated/declarations/model/-private/model.d.ts +1269 -0
  199. package/dist/unpkg/dev-deprecated/declarations/model/-private/notify-changes.d.ts +4 -0
  200. package/dist/unpkg/dev-deprecated/declarations/model/-private/promise-belongs-to.d.ts +40 -0
  201. package/dist/unpkg/dev-deprecated/declarations/model/-private/promise-many-array.d.ts +124 -0
  202. package/dist/unpkg/dev-deprecated/declarations/model/-private/record-state.d.ts +58 -0
  203. package/dist/unpkg/dev-deprecated/declarations/model/-private/references/belongs-to.d.ts +498 -0
  204. package/dist/unpkg/dev-deprecated/declarations/model/-private/references/has-many.d.ts +500 -0
  205. package/dist/unpkg/dev-deprecated/declarations/model/-private/schema-provider.d.ts +56 -0
  206. package/dist/unpkg/dev-deprecated/declarations/model/-private/type-utils.d.ts +57 -0
  207. package/dist/unpkg/dev-deprecated/declarations/model/-private/util.d.ts +5 -0
  208. package/dist/unpkg/dev-deprecated/declarations/model/-private.d.ts +8 -0
  209. package/dist/unpkg/dev-deprecated/declarations/model/migration-support.d.ts +280 -0
  210. package/dist/unpkg/dev-deprecated/declarations/model-fragments/extensions/fragment-array.d.ts +16 -0
  211. package/dist/unpkg/dev-deprecated/declarations/model-fragments/extensions/fragment.d.ts +15 -0
  212. package/dist/unpkg/dev-deprecated/declarations/model-fragments/hooks/model-for.d.ts +20 -0
  213. package/dist/unpkg/dev-deprecated/declarations/model-fragments/index.d.ts +5 -0
  214. package/dist/unpkg/dev-deprecated/declarations/model-fragments/instance-initializers/fragment-extensions.d.ts +9 -0
  215. package/dist/unpkg/dev-deprecated/declarations/model-fragments/utilities/with-array-defaults.d.ts +15 -0
  216. package/dist/unpkg/dev-deprecated/declarations/model-fragments/utilities/with-fragment-array-defaults.d.ts +20 -0
  217. package/dist/unpkg/dev-deprecated/declarations/model-fragments/utilities/with-fragment-defaults.d.ts +19 -0
  218. package/dist/unpkg/dev-deprecated/declarations/model-fragments/utilities/with-legacy.d.ts +3 -0
  219. package/dist/unpkg/dev-deprecated/declarations/model-fragments.d.ts +9 -0
  220. package/dist/unpkg/dev-deprecated/declarations/model.d.ts +49 -0
  221. package/dist/unpkg/dev-deprecated/declarations/serializer/-private/embedded-records-mixin.d.ts +91 -0
  222. package/dist/unpkg/dev-deprecated/declarations/serializer/-private/transforms/boolean.d.ts +47 -0
  223. package/dist/unpkg/dev-deprecated/declarations/serializer/-private/transforms/date.d.ts +28 -0
  224. package/dist/unpkg/dev-deprecated/declarations/serializer/-private/transforms/number.d.ts +29 -0
  225. package/dist/unpkg/dev-deprecated/declarations/serializer/-private/transforms/string.d.ts +29 -0
  226. package/dist/unpkg/dev-deprecated/declarations/serializer/-private/transforms/transform.d.ts +118 -0
  227. package/dist/unpkg/dev-deprecated/declarations/serializer/-private/utils.d.ts +3 -0
  228. package/dist/unpkg/dev-deprecated/declarations/serializer/json-api.d.ts +123 -0
  229. package/dist/unpkg/dev-deprecated/declarations/serializer/json.d.ts +75 -0
  230. package/dist/unpkg/dev-deprecated/declarations/serializer/rest.d.ts +51 -0
  231. package/dist/unpkg/dev-deprecated/declarations/serializer/transform.d.ts +5 -0
  232. package/dist/unpkg/dev-deprecated/declarations/serializer.d.ts +254 -0
  233. package/dist/unpkg/dev-deprecated/declarations/store/-private.d.ts +223 -0
  234. package/dist/unpkg/dev-deprecated/declarations/store.d.ts +3 -0
  235. package/dist/unpkg/dev-deprecated/errors-CIGPcDvd.js +2595 -0
  236. package/dist/unpkg/dev-deprecated/hooks-QqRnX108.js +74 -0
  237. package/dist/unpkg/dev-deprecated/index.js +195 -0
  238. package/dist/unpkg/dev-deprecated/json-BNrV8EYG.js +1272 -0
  239. package/dist/unpkg/dev-deprecated/model/-private.js +1 -0
  240. package/dist/unpkg/dev-deprecated/model/migration-support.js +579 -0
  241. package/dist/unpkg/dev-deprecated/model-for-CqXsIKws.js +221 -0
  242. package/dist/unpkg/dev-deprecated/model-fragments.js +76 -0
  243. package/dist/unpkg/dev-deprecated/model.js +667 -0
  244. package/dist/unpkg/dev-deprecated/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
  245. package/dist/unpkg/dev-deprecated/schema-provider-g5MfTj8n.js +2338 -0
  246. package/dist/unpkg/dev-deprecated/serialize-into-hash-BnYvPex3.js +261 -0
  247. package/dist/unpkg/dev-deprecated/serializer/json-api.js +527 -0
  248. package/dist/unpkg/dev-deprecated/serializer/json.js +6 -0
  249. package/dist/unpkg/dev-deprecated/serializer/rest.js +1243 -0
  250. package/dist/unpkg/dev-deprecated/serializer/transform.js +278 -0
  251. package/dist/unpkg/dev-deprecated/serializer.js +248 -0
  252. package/dist/unpkg/dev-deprecated/store.js +636 -0
  253. package/dist/unpkg/dev-deprecated/util-Dul6TZts.js +35 -0
  254. package/dist/unpkg/dev-deprecated/utils-Cqw9eRj5.js +23 -0
  255. package/dist/unpkg/prod/-private-B1pSSN52.js +1210 -0
  256. package/dist/unpkg/prod/adapter/-private.js +1 -0
  257. package/dist/unpkg/prod/adapter/error.js +336 -0
  258. package/dist/unpkg/prod/adapter/json-api.js +132 -0
  259. package/dist/unpkg/prod/adapter/rest.js +1257 -0
  260. package/dist/unpkg/prod/adapter.js +1253 -0
  261. package/dist/unpkg/prod/compat/-private.js +1 -0
  262. package/dist/unpkg/prod/compat/builders.js +273 -0
  263. package/dist/unpkg/prod/compat/extensions.js +243 -0
  264. package/dist/unpkg/prod/compat/utils.js +224 -0
  265. package/dist/unpkg/prod/compat.js +1020 -0
  266. package/dist/unpkg/prod/declarations/adapter/-private/build-url-mixin.d.ts +33 -0
  267. package/dist/unpkg/prod/declarations/adapter/-private/fastboot-interface.d.ts +8 -0
  268. package/dist/unpkg/prod/declarations/adapter/-private/utils/continue-on-reject.d.ts +1 -0
  269. package/dist/unpkg/prod/declarations/adapter/-private/utils/determine-body-promise.d.ts +4 -0
  270. package/dist/unpkg/prod/declarations/adapter/-private/utils/fetch.d.ts +8 -0
  271. package/dist/unpkg/prod/declarations/adapter/-private/utils/parse-response-headers.d.ts +1 -0
  272. package/dist/unpkg/prod/declarations/adapter/-private/utils/serialize-into-hash.d.ts +6 -0
  273. package/dist/unpkg/prod/declarations/adapter/-private/utils/serialize-query-params.d.ts +5 -0
  274. package/dist/unpkg/prod/declarations/adapter/-private.d.ts +5 -0
  275. package/dist/unpkg/prod/declarations/adapter/error.d.ts +215 -0
  276. package/dist/unpkg/prod/declarations/adapter/json-api.d.ts +231 -0
  277. package/dist/unpkg/prod/declarations/adapter/rest.d.ts +815 -0
  278. package/dist/unpkg/prod/declarations/adapter.d.ts +770 -0
  279. package/dist/unpkg/prod/declarations/compat/-private.d.ts +13 -0
  280. package/dist/unpkg/prod/declarations/compat/builders/find-all.d.ts +35 -0
  281. package/dist/unpkg/prod/declarations/compat/builders/find-record.d.ts +56 -0
  282. package/dist/unpkg/prod/declarations/compat/builders/query.d.ts +66 -0
  283. package/dist/unpkg/prod/declarations/compat/builders/save-record.d.ts +34 -0
  284. package/dist/unpkg/prod/declarations/compat/builders/utils.d.ts +3 -0
  285. package/dist/unpkg/prod/declarations/compat/builders.d.ts +14 -0
  286. package/dist/unpkg/prod/declarations/compat/extensions.d.ts +59 -0
  287. package/dist/unpkg/prod/declarations/compat/legacy-network-handler/fetch-manager.d.ts +55 -0
  288. package/dist/unpkg/prod/declarations/compat/legacy-network-handler/identifier-has-id.d.ts +2 -0
  289. package/dist/unpkg/prod/declarations/compat/legacy-network-handler/legacy-data-fetch.d.ts +11 -0
  290. package/dist/unpkg/prod/declarations/compat/legacy-network-handler/legacy-data-utils.d.ts +5 -0
  291. package/dist/unpkg/prod/declarations/compat/legacy-network-handler/legacy-network-handler.d.ts +2 -0
  292. package/dist/unpkg/prod/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts +524 -0
  293. package/dist/unpkg/prod/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts +213 -0
  294. package/dist/unpkg/prod/declarations/compat/legacy-network-handler/serializer-response.d.ts +6 -0
  295. package/dist/unpkg/prod/declarations/compat/legacy-network-handler/snapshot-record-array.d.ts +110 -0
  296. package/dist/unpkg/prod/declarations/compat/legacy-network-handler/snapshot.d.ts +255 -0
  297. package/dist/unpkg/prod/declarations/compat/utils.d.ts +137 -0
  298. package/dist/unpkg/prod/declarations/compat.d.ts +157 -0
  299. package/dist/unpkg/prod/declarations/index.d.ts +70 -0
  300. package/dist/unpkg/prod/declarations/model/-private/attr.d.ts +170 -0
  301. package/dist/unpkg/prod/declarations/model/-private/belongs-to.d.ts +174 -0
  302. package/dist/unpkg/prod/declarations/model/-private/debug/assert-polymorphic-type.d.ts +5 -0
  303. package/dist/unpkg/prod/declarations/model/-private/errors.d.ts +289 -0
  304. package/dist/unpkg/prod/declarations/model/-private/has-many.d.ts +162 -0
  305. package/dist/unpkg/prod/declarations/model/-private/hooks.d.ts +10 -0
  306. package/dist/unpkg/prod/declarations/model/-private/legacy-relationships-support.d.ts +47 -0
  307. package/dist/unpkg/prod/declarations/model/-private/model-for-mixin.d.ts +3 -0
  308. package/dist/unpkg/prod/declarations/model/-private/model-methods.d.ts +39 -0
  309. package/dist/unpkg/prod/declarations/model/-private/model.d.ts +1269 -0
  310. package/dist/unpkg/prod/declarations/model/-private/notify-changes.d.ts +4 -0
  311. package/dist/unpkg/prod/declarations/model/-private/promise-belongs-to.d.ts +40 -0
  312. package/dist/unpkg/prod/declarations/model/-private/promise-many-array.d.ts +124 -0
  313. package/dist/unpkg/prod/declarations/model/-private/record-state.d.ts +58 -0
  314. package/dist/unpkg/prod/declarations/model/-private/references/belongs-to.d.ts +498 -0
  315. package/dist/unpkg/prod/declarations/model/-private/references/has-many.d.ts +500 -0
  316. package/dist/unpkg/prod/declarations/model/-private/schema-provider.d.ts +56 -0
  317. package/dist/unpkg/prod/declarations/model/-private/type-utils.d.ts +57 -0
  318. package/dist/unpkg/prod/declarations/model/-private/util.d.ts +5 -0
  319. package/dist/unpkg/prod/declarations/model/-private.d.ts +8 -0
  320. package/dist/unpkg/prod/declarations/model/migration-support.d.ts +280 -0
  321. package/dist/unpkg/prod/declarations/model-fragments/extensions/fragment-array.d.ts +16 -0
  322. package/dist/unpkg/prod/declarations/model-fragments/extensions/fragment.d.ts +15 -0
  323. package/dist/unpkg/prod/declarations/model-fragments/hooks/model-for.d.ts +20 -0
  324. package/dist/unpkg/prod/declarations/model-fragments/index.d.ts +5 -0
  325. package/dist/unpkg/prod/declarations/model-fragments/instance-initializers/fragment-extensions.d.ts +9 -0
  326. package/dist/unpkg/prod/declarations/model-fragments/utilities/with-array-defaults.d.ts +15 -0
  327. package/dist/unpkg/prod/declarations/model-fragments/utilities/with-fragment-array-defaults.d.ts +20 -0
  328. package/dist/unpkg/prod/declarations/model-fragments/utilities/with-fragment-defaults.d.ts +19 -0
  329. package/dist/unpkg/prod/declarations/model-fragments/utilities/with-legacy.d.ts +3 -0
  330. package/dist/unpkg/prod/declarations/model-fragments.d.ts +9 -0
  331. package/dist/unpkg/prod/declarations/model.d.ts +49 -0
  332. package/dist/unpkg/prod/declarations/serializer/-private/embedded-records-mixin.d.ts +91 -0
  333. package/dist/unpkg/prod/declarations/serializer/-private/transforms/boolean.d.ts +47 -0
  334. package/dist/unpkg/prod/declarations/serializer/-private/transforms/date.d.ts +28 -0
  335. package/dist/unpkg/prod/declarations/serializer/-private/transforms/number.d.ts +29 -0
  336. package/dist/unpkg/prod/declarations/serializer/-private/transforms/string.d.ts +29 -0
  337. package/dist/unpkg/prod/declarations/serializer/-private/transforms/transform.d.ts +118 -0
  338. package/dist/unpkg/prod/declarations/serializer/-private/utils.d.ts +3 -0
  339. package/dist/unpkg/prod/declarations/serializer/json-api.d.ts +123 -0
  340. package/dist/unpkg/prod/declarations/serializer/json.d.ts +75 -0
  341. package/dist/unpkg/prod/declarations/serializer/rest.d.ts +51 -0
  342. package/dist/unpkg/prod/declarations/serializer/transform.d.ts +5 -0
  343. package/dist/unpkg/prod/declarations/serializer.d.ts +254 -0
  344. package/dist/unpkg/prod/declarations/store/-private.d.ts +223 -0
  345. package/dist/unpkg/prod/declarations/store.d.ts +3 -0
  346. package/dist/unpkg/prod/errors-CIGPcDvd.js +2595 -0
  347. package/dist/unpkg/prod/hooks-QqRnX108.js +74 -0
  348. package/dist/unpkg/prod/index.js +195 -0
  349. package/dist/unpkg/prod/json-BNrV8EYG.js +1272 -0
  350. package/dist/unpkg/prod/model/-private.js +1 -0
  351. package/dist/unpkg/prod/model/migration-support.js +579 -0
  352. package/dist/unpkg/prod/model-for-CqXsIKws.js +221 -0
  353. package/dist/unpkg/prod/model-fragments.js +76 -0
  354. package/dist/unpkg/prod/model.js +667 -0
  355. package/dist/unpkg/prod/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
  356. package/dist/unpkg/prod/schema-provider-g5MfTj8n.js +2338 -0
  357. package/dist/unpkg/prod/serialize-into-hash-BnYvPex3.js +261 -0
  358. package/dist/unpkg/prod/serializer/json-api.js +527 -0
  359. package/dist/unpkg/prod/serializer/json.js +6 -0
  360. package/dist/unpkg/prod/serializer/rest.js +1243 -0
  361. package/dist/unpkg/prod/serializer/transform.js +278 -0
  362. package/dist/unpkg/prod/serializer.js +248 -0
  363. package/dist/unpkg/prod/store.js +636 -0
  364. package/dist/unpkg/prod/util-Dul6TZts.js +35 -0
  365. package/dist/unpkg/prod/utils-Cqw9eRj5.js +23 -0
  366. package/dist/unpkg/prod-deprecated/-private-B1pSSN52.js +1210 -0
  367. package/dist/unpkg/prod-deprecated/adapter/-private.js +1 -0
  368. package/dist/unpkg/prod-deprecated/adapter/error.js +336 -0
  369. package/dist/unpkg/prod-deprecated/adapter/json-api.js +132 -0
  370. package/dist/unpkg/prod-deprecated/adapter/rest.js +1257 -0
  371. package/dist/unpkg/prod-deprecated/adapter.js +1253 -0
  372. package/dist/unpkg/prod-deprecated/compat/-private.js +1 -0
  373. package/dist/unpkg/prod-deprecated/compat/builders.js +273 -0
  374. package/dist/unpkg/prod-deprecated/compat/extensions.js +243 -0
  375. package/dist/unpkg/prod-deprecated/compat/utils.js +224 -0
  376. package/dist/unpkg/prod-deprecated/compat.js +1020 -0
  377. package/dist/unpkg/prod-deprecated/declarations/adapter/-private/build-url-mixin.d.ts +33 -0
  378. package/dist/unpkg/prod-deprecated/declarations/adapter/-private/fastboot-interface.d.ts +8 -0
  379. package/dist/unpkg/prod-deprecated/declarations/adapter/-private/utils/continue-on-reject.d.ts +1 -0
  380. package/dist/unpkg/prod-deprecated/declarations/adapter/-private/utils/determine-body-promise.d.ts +4 -0
  381. package/dist/unpkg/prod-deprecated/declarations/adapter/-private/utils/fetch.d.ts +8 -0
  382. package/dist/unpkg/prod-deprecated/declarations/adapter/-private/utils/parse-response-headers.d.ts +1 -0
  383. package/dist/unpkg/prod-deprecated/declarations/adapter/-private/utils/serialize-into-hash.d.ts +6 -0
  384. package/dist/unpkg/prod-deprecated/declarations/adapter/-private/utils/serialize-query-params.d.ts +5 -0
  385. package/dist/unpkg/prod-deprecated/declarations/adapter/-private.d.ts +5 -0
  386. package/dist/unpkg/prod-deprecated/declarations/adapter/error.d.ts +215 -0
  387. package/dist/unpkg/prod-deprecated/declarations/adapter/json-api.d.ts +231 -0
  388. package/dist/unpkg/prod-deprecated/declarations/adapter/rest.d.ts +815 -0
  389. package/dist/unpkg/prod-deprecated/declarations/adapter.d.ts +770 -0
  390. package/dist/unpkg/prod-deprecated/declarations/compat/-private.d.ts +13 -0
  391. package/dist/unpkg/prod-deprecated/declarations/compat/builders/find-all.d.ts +35 -0
  392. package/dist/unpkg/prod-deprecated/declarations/compat/builders/find-record.d.ts +56 -0
  393. package/dist/unpkg/prod-deprecated/declarations/compat/builders/query.d.ts +66 -0
  394. package/dist/unpkg/prod-deprecated/declarations/compat/builders/save-record.d.ts +34 -0
  395. package/dist/unpkg/prod-deprecated/declarations/compat/builders/utils.d.ts +3 -0
  396. package/dist/unpkg/prod-deprecated/declarations/compat/builders.d.ts +14 -0
  397. package/dist/unpkg/prod-deprecated/declarations/compat/extensions.d.ts +59 -0
  398. package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/fetch-manager.d.ts +55 -0
  399. package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/identifier-has-id.d.ts +2 -0
  400. package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/legacy-data-fetch.d.ts +11 -0
  401. package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/legacy-data-utils.d.ts +5 -0
  402. package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/legacy-network-handler.d.ts +2 -0
  403. package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts +524 -0
  404. package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts +213 -0
  405. package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/serializer-response.d.ts +6 -0
  406. package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/snapshot-record-array.d.ts +110 -0
  407. package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/snapshot.d.ts +255 -0
  408. package/dist/unpkg/prod-deprecated/declarations/compat/utils.d.ts +137 -0
  409. package/dist/unpkg/prod-deprecated/declarations/compat.d.ts +157 -0
  410. package/dist/unpkg/prod-deprecated/declarations/index.d.ts +70 -0
  411. package/dist/unpkg/prod-deprecated/declarations/model/-private/attr.d.ts +170 -0
  412. package/dist/unpkg/prod-deprecated/declarations/model/-private/belongs-to.d.ts +174 -0
  413. package/dist/unpkg/prod-deprecated/declarations/model/-private/debug/assert-polymorphic-type.d.ts +5 -0
  414. package/dist/unpkg/prod-deprecated/declarations/model/-private/errors.d.ts +289 -0
  415. package/dist/unpkg/prod-deprecated/declarations/model/-private/has-many.d.ts +162 -0
  416. package/dist/unpkg/prod-deprecated/declarations/model/-private/hooks.d.ts +10 -0
  417. package/dist/unpkg/prod-deprecated/declarations/model/-private/legacy-relationships-support.d.ts +47 -0
  418. package/dist/unpkg/prod-deprecated/declarations/model/-private/model-for-mixin.d.ts +3 -0
  419. package/dist/unpkg/prod-deprecated/declarations/model/-private/model-methods.d.ts +39 -0
  420. package/dist/unpkg/prod-deprecated/declarations/model/-private/model.d.ts +1269 -0
  421. package/dist/unpkg/prod-deprecated/declarations/model/-private/notify-changes.d.ts +4 -0
  422. package/dist/unpkg/prod-deprecated/declarations/model/-private/promise-belongs-to.d.ts +40 -0
  423. package/dist/unpkg/prod-deprecated/declarations/model/-private/promise-many-array.d.ts +124 -0
  424. package/dist/unpkg/prod-deprecated/declarations/model/-private/record-state.d.ts +58 -0
  425. package/dist/unpkg/prod-deprecated/declarations/model/-private/references/belongs-to.d.ts +498 -0
  426. package/dist/unpkg/prod-deprecated/declarations/model/-private/references/has-many.d.ts +500 -0
  427. package/dist/unpkg/prod-deprecated/declarations/model/-private/schema-provider.d.ts +56 -0
  428. package/dist/unpkg/prod-deprecated/declarations/model/-private/type-utils.d.ts +57 -0
  429. package/dist/unpkg/prod-deprecated/declarations/model/-private/util.d.ts +5 -0
  430. package/dist/unpkg/prod-deprecated/declarations/model/-private.d.ts +8 -0
  431. package/dist/unpkg/prod-deprecated/declarations/model/migration-support.d.ts +280 -0
  432. package/dist/unpkg/prod-deprecated/declarations/model-fragments/extensions/fragment-array.d.ts +16 -0
  433. package/dist/unpkg/prod-deprecated/declarations/model-fragments/extensions/fragment.d.ts +15 -0
  434. package/dist/unpkg/prod-deprecated/declarations/model-fragments/hooks/model-for.d.ts +20 -0
  435. package/dist/unpkg/prod-deprecated/declarations/model-fragments/index.d.ts +5 -0
  436. package/dist/unpkg/prod-deprecated/declarations/model-fragments/instance-initializers/fragment-extensions.d.ts +9 -0
  437. package/dist/unpkg/prod-deprecated/declarations/model-fragments/utilities/with-array-defaults.d.ts +15 -0
  438. package/dist/unpkg/prod-deprecated/declarations/model-fragments/utilities/with-fragment-array-defaults.d.ts +20 -0
  439. package/dist/unpkg/prod-deprecated/declarations/model-fragments/utilities/with-fragment-defaults.d.ts +19 -0
  440. package/dist/unpkg/prod-deprecated/declarations/model-fragments/utilities/with-legacy.d.ts +3 -0
  441. package/dist/unpkg/prod-deprecated/declarations/model-fragments.d.ts +9 -0
  442. package/dist/unpkg/prod-deprecated/declarations/model.d.ts +49 -0
  443. package/dist/unpkg/prod-deprecated/declarations/serializer/-private/embedded-records-mixin.d.ts +91 -0
  444. package/dist/unpkg/prod-deprecated/declarations/serializer/-private/transforms/boolean.d.ts +47 -0
  445. package/dist/unpkg/prod-deprecated/declarations/serializer/-private/transforms/date.d.ts +28 -0
  446. package/dist/unpkg/prod-deprecated/declarations/serializer/-private/transforms/number.d.ts +29 -0
  447. package/dist/unpkg/prod-deprecated/declarations/serializer/-private/transforms/string.d.ts +29 -0
  448. package/dist/unpkg/prod-deprecated/declarations/serializer/-private/transforms/transform.d.ts +118 -0
  449. package/dist/unpkg/prod-deprecated/declarations/serializer/-private/utils.d.ts +3 -0
  450. package/dist/unpkg/prod-deprecated/declarations/serializer/json-api.d.ts +123 -0
  451. package/dist/unpkg/prod-deprecated/declarations/serializer/json.d.ts +75 -0
  452. package/dist/unpkg/prod-deprecated/declarations/serializer/rest.d.ts +51 -0
  453. package/dist/unpkg/prod-deprecated/declarations/serializer/transform.d.ts +5 -0
  454. package/dist/unpkg/prod-deprecated/declarations/serializer.d.ts +254 -0
  455. package/dist/unpkg/prod-deprecated/declarations/store/-private.d.ts +223 -0
  456. package/dist/unpkg/prod-deprecated/declarations/store.d.ts +3 -0
  457. package/dist/unpkg/prod-deprecated/errors-CIGPcDvd.js +2595 -0
  458. package/dist/unpkg/prod-deprecated/hooks-QqRnX108.js +74 -0
  459. package/dist/unpkg/prod-deprecated/index.js +195 -0
  460. package/dist/unpkg/prod-deprecated/json-BNrV8EYG.js +1272 -0
  461. package/dist/unpkg/prod-deprecated/model/-private.js +1 -0
  462. package/dist/unpkg/prod-deprecated/model/migration-support.js +579 -0
  463. package/dist/unpkg/prod-deprecated/model-for-CqXsIKws.js +221 -0
  464. package/dist/unpkg/prod-deprecated/model-fragments.js +76 -0
  465. package/dist/unpkg/prod-deprecated/model.js +667 -0
  466. package/dist/unpkg/prod-deprecated/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
  467. package/dist/unpkg/prod-deprecated/schema-provider-g5MfTj8n.js +2338 -0
  468. package/dist/unpkg/prod-deprecated/serialize-into-hash-BnYvPex3.js +261 -0
  469. package/dist/unpkg/prod-deprecated/serializer/json-api.js +527 -0
  470. package/dist/unpkg/prod-deprecated/serializer/json.js +6 -0
  471. package/dist/unpkg/prod-deprecated/serializer/rest.js +1243 -0
  472. package/dist/unpkg/prod-deprecated/serializer/transform.js +278 -0
  473. package/dist/unpkg/prod-deprecated/serializer.js +248 -0
  474. package/dist/unpkg/prod-deprecated/store.js +636 -0
  475. package/dist/unpkg/prod-deprecated/util-Dul6TZts.js +35 -0
  476. package/dist/unpkg/prod-deprecated/utils-Cqw9eRj5.js +23 -0
  477. package/package.json +30 -6
@@ -0,0 +1,524 @@
1
+ import type { Store } from "@warp-drive/core";
2
+ import type { LegacyQueryArray } from "@warp-drive/core/store/-private";
3
+ import type { ModelSchema } from "@warp-drive/core/types";
4
+ import type { LegacyRelationshipField as RelationshipSchema } from "@warp-drive/core/types/schema/fields";
5
+ import type { Snapshot } from "./snapshot.js";
6
+ import type { SnapshotRecordArray } from "./snapshot-record-array.js";
7
+ type Group = Snapshot[];
8
+ export type AdapterPayload = Record<string, unknown> | unknown[];
9
+ /**
10
+ * :::danger
11
+ ⚠️ **This is LEGACY documentation** for a feature that is no longer encouraged to be used.
12
+ If starting a new app or thinking of implementing a new adapter, consider writing a
13
+ {@link Handler} instead to be used with the {@link RequestManager}
14
+ :::
15
+
16
+ The following documentation describes the methods an
17
+ adapter should implement with descriptions around when an
18
+ application might expect these methods to be called.
19
+
20
+ Methods that are not required are marked as **optional**.
21
+
22
+ @class (Interface) Adapter
23
+ @public
24
+ */
25
+ export interface MinimumAdapterInterface {
26
+ /**
27
+ * `adapter.findRecord` takes a request for a resource of a given `type` and `id` combination
28
+ * and should return a `Promise` which fulfills with data for a single resource matching that
29
+ * `type` and `id`.
30
+ *
31
+ * The response will be fed to the associated serializer's `normalizeResponse` method with the
32
+ * `requestType` set to `findRecord`, which should return a `JSON:API` document.
33
+ *
34
+ * The final result after normalization to `JSON:API` will be added to store via `store.push` where
35
+ * it will merge with any existing data for the record.
36
+ *
37
+ * ⚠️ If the adapter's response resolves to a false-y value, the associated `serializer.normalizeResponse`
38
+ * call will NOT be made. In this scenario you may need to do at least a minimum amount of response
39
+ * processing within the adapter.
40
+ *
41
+ * `adapter.findRecord` is called whenever the `store` needs to load, reload, or backgroundReload
42
+ * the resource data for a given `type` and `id`.
43
+ *
44
+ * @public
45
+ * @param {Store} store The store service that initiated the request being normalized
46
+ * @param {ModelSchema} schema An object with methods for accessing information about
47
+ * the type, attributes and relationships of the primary type associated with the request.
48
+ * @param {String} id
49
+ * @param {Snapshot} snapshot
50
+ * @return {Promise} a promise resolving with resource data to feed to the associated serializer
51
+ */
52
+ findRecord(store: Store, schema: ModelSchema, id: string, snapshot: Snapshot): Promise<AdapterPayload>;
53
+ /**
54
+ * `adapter.findAll` takes a request for resources of a given `type` and should return
55
+ * a `Promise` which fulfills with a collection of resource data matching that `type`.
56
+ *
57
+ * The response will be fed to the associated serializer's `normalizeResponse` method
58
+ * with the `requestType` set to `findAll`, which should return a `JSON:API` document.
59
+ *
60
+ * The final result after normalization to `JSON:API` will be added to store via `store.push` where
61
+ * it will merge with any existing records for `type`. Existing records for the `type` will not be removed.
62
+ *
63
+ * ⚠️ If the adapter's response resolves to a false-y value, the associated `serializer.normalizeResponse`
64
+ * call will NOT be made. In this scenario you may need to do at least a minimum amount of response
65
+ * processing within the adapter.
66
+ *
67
+ * `adapter.findAll` is called whenever `store.findAll` is asked to reload or backgroundReload.
68
+ * The records in the response are merged with the contents of the store. Existing records for
69
+ * the `type` will not be removed.
70
+ *
71
+ * See also `shouldReloadAll` and `shouldBackgroundReloadAll`
72
+ *
73
+ * @public
74
+ * @param {Store} store The store service that initiated the request being normalized
75
+ * @param {ModelSchema} schema An object with methods for accessing information about
76
+ * the type, attributes and relationships of the primary type associated with the request.
77
+ * @param {null} sinceToken This parameter is no longer used and will always be null.
78
+ * @param {SnapshotRecordArray} snapshotRecordArray an object containing any passed in options,
79
+ * adapterOptions, and the ability to access a snapshot for each existing record of the type.
80
+ * @return {Promise} a promise resolving with resource data to feed to the associated serializer
81
+ */
82
+ findAll(store: Store, schema: ModelSchema, sinceToken: null, snapshotRecordArray: SnapshotRecordArray): Promise<AdapterPayload>;
83
+ /**
84
+ * `adapter.query` takes a request for resources of a given `type` and should return
85
+ * a `Promise` which fulfills with a collection of resource data matching that `type`.
86
+ *
87
+ * The response will be fed to the associated serializer's `normalizeResponse` method
88
+ * with the `requestType` set to `query`, which should return a `JSON:API` document.
89
+ *
90
+ * As with `findAll`, the final result after normalization to `JSON:API` will be added to
91
+ * store via `store.push` where it will merge with any existing records for `type`.
92
+ *
93
+ * ⚠️ If the adapter's response resolves to a false-y value, the associated `serializer.normalizeResponse`
94
+ * call will NOT be made. In this scenario you may need to do at least a minimum amount of response
95
+ * processing within the adapter.
96
+ *
97
+ * `adapter.query` is called whenever `store.query` is called or a previous query result is
98
+ * asked to reload.
99
+ *
100
+ * Existing records for the `type` will not be removed. The key difference is in the result
101
+ * returned by the `store`. For `findAll` the result is all known records of the `type`,
102
+ * while for `query` it will only be the records returned from `adapter.query`.
103
+ *
104
+ * @public
105
+ * @param {Store} store The store service that initiated the request being normalized
106
+ * @param {ModelSchema} schema An object with methods for accessing information about
107
+ * the type, attributes and relationships of the primary type associated with the request.
108
+ * @param {Object} query
109
+ * @param {LegacyQueryArray} recordArray
110
+ * @param {Object} options
111
+ * @return {Promise} a promise resolving with resource data to feed to the associated serializer
112
+ */
113
+ query(store: Store, schema: ModelSchema, query: Record<string, unknown>, recordArray: LegacyQueryArray, options: {
114
+ adapterOptions?: unknown;
115
+ }): Promise<AdapterPayload>;
116
+ /**
117
+ * `adapter.queryRecord` takes a request for resource of a given `type` and should return
118
+ * a `Promise` which fulfills with data for a single resource matching that `type`.
119
+ *
120
+ * The response will be fed to the associated serializer's `normalizeResponse` method
121
+ * with the `requestType` set to `queryRecord`, which should return a `JSON:API` document.
122
+ *
123
+ * The final result after normalization to `JSON:API` will be added to store via `store.push` where
124
+ * it will merge with any existing data for the returned record.
125
+ *
126
+ * ⚠️ If the adapter's response resolves to a false-y value, the associated `serializer.normalizeResponse`
127
+ * call will NOT be made. In this scenario you may need to do at least a minimum amount of response
128
+ * processing within the adapter.
129
+ *
130
+ * @public
131
+ * @param {Store} store The store service that initiated the request being normalized
132
+ * @param {ModelSchema} schema An object with methods for accessing information about
133
+ * the type, attributes and relationships of the primary type associated with the request.
134
+ * @param query
135
+ * @param options
136
+ * @return {Promise} a promise resolving with resource data to feed to the associated serializer
137
+ */
138
+ queryRecord(store: Store, schema: ModelSchema, query: Record<string, unknown>, options: {
139
+ adapterOptions?: unknown;
140
+ }): Promise<AdapterPayload>;
141
+ /**
142
+ * `adapter.createRecord` takes a request to create a resource of a given `type` and should
143
+ * return a `Promise` which fulfills with data for the newly created resource.
144
+ *
145
+ * The response will be fed to the associated serializer's `normalizeResponse` method
146
+ * with the `requestType` set to `createRecord`, which should return a `JSON:API` document.
147
+ *
148
+ * The final result after normalization to `JSON:API` will be added to store via `store.push` where
149
+ * it will merge with any existing data for the record.
150
+ *
151
+ * ⚠️ If the adapter's response resolves to a false-y value, the associated `serializer.normalizeResponse`
152
+ * call will NOT be made. In this scenario you may need to do at least a minimum amount of response
153
+ * processing within the adapter.
154
+ *
155
+ * If the adapter rejects or throws an error the record will enter an error state and the attributes
156
+ * that had attempted to be saved will still be considered dirty.
157
+ *
158
+ * ### InvalidErrors
159
+ *
160
+ * When rejecting a `createRecord` request due to validation issues during save (typically a 422 status code),
161
+ * you may throw an `InvalidError`.
162
+ *
163
+ * Throwing an `InvalidError` makes per-attribute errors available for records to use in the UI as needed.
164
+ * Records can also use this information to mark themselves as being in an `invalid` state.
165
+ * For more reading [see the RecordData Errors RFC](https://emberjs.github.io/rfcs/0465-record-data-errors.html)
166
+ *
167
+ * ```js
168
+ * let error = new Error(errorMessage);
169
+ *
170
+ * // these two properties combined
171
+ * // alert WarpDrive to this error being for
172
+ * // invalid properties on the record during
173
+ * // the request
174
+ * error.isAdapterError = true;
175
+ * error.code = 'InvalidError';
176
+ *
177
+ * // A JSON:API formatted array of errors
178
+ * // See https://jsonapi.org/format/#errors
179
+ * error.errors = [];
180
+ *
181
+ * throw error;
182
+ * ```
183
+ *
184
+ * @public
185
+ * @param {Store} store The store service that initiated the request being normalized
186
+ * @param {ModelSchema} schema An object with methods for accessing information about
187
+ * the type, attributes and relationships of the primary type associated with the request.
188
+ * @param {Snapshot} snapshot
189
+ * @return {Promise} a promise resolving with resource data to feed to the associated serializer
190
+ */
191
+ createRecord(store: Store, schema: ModelSchema, snapshot: Snapshot): Promise<AdapterPayload>;
192
+ /**
193
+ * `adapter.updateRecord` takes a request to update a resource of a given `type` and should
194
+ * return a `Promise` which fulfills with the updated data for the resource.
195
+ *
196
+ * The response will be fed to the associated serializer's `normalizeResponse` method
197
+ * with the `requestType` set to `updateRecord`, which should return a `JSON:API` document.
198
+ *
199
+ * The final result after normalization to `JSON:API` will be added to store via `store.push` where
200
+ * it will merge with any existing data for the record.
201
+ *
202
+ * ⚠️ If the adapter's response resolves to a false-y value, the associated `serializer.normalizeResponse`
203
+ * call will NOT be made. In this scenario you may need to do at least a minimum amount of response
204
+ * processing within the adapter.
205
+ *
206
+ * If the adapter rejects or throws an error the record will enter an error state and the attributes
207
+ * that had attempted to be saved will still be considered dirty.
208
+ *
209
+ * ### InvalidErrors
210
+ *
211
+ * When rejecting a `createRecord` request due to validation issues during save (typically a 422 status code),
212
+ * you may throw an `InvalidError`.
213
+ *
214
+ * Throwing an `InvalidError` makes per-attribute errors available for records to use in the UI as needed.
215
+ * Records can also use this information to mark themselves as being in an `invalid` state.
216
+ * For more reading [see the RecordData Errors RFC](https://emberjs.github.io/rfcs/0465-record-data-errors.html)
217
+ *
218
+ * ```js
219
+ * let error = new Error(errorMessage);
220
+ *
221
+ * // these two properties combined
222
+ * // alert WarpDrive to this error being for
223
+ * // invalid properties on the record during
224
+ * // the request
225
+ * error.isAdapterError = true;
226
+ * error.code = 'InvalidError';
227
+ *
228
+ * // A JSON:API formatted array of errors
229
+ * // See https://jsonapi.org/format/#errors
230
+ * error.errors = [];
231
+ *
232
+ * throw error;
233
+ * ```
234
+ *
235
+ * @public
236
+ * @param {Store} store The store service that initiated the request being normalized
237
+ * @param {ModelSchema} schema An object with methods for accessing information about
238
+ * the type, attributes and relationships of the primary type associated with the request.
239
+ * @param {Snapshot} snapshot
240
+ */
241
+ updateRecord(store: Store, schema: ModelSchema, snapshot: Snapshot): Promise<AdapterPayload>;
242
+ /**
243
+ * `adapter.deleteRecord` takes a request to delete a resource of a given `type` and
244
+ * should return a `Promise` which resolves when that deletion is complete.
245
+ *
246
+ * Usually the response will be empty, but you may include additional updates in the
247
+ * response. The response will be fed to the associated serializer's `normalizeResponse` method
248
+ * with the `requestType` set to `deleteRecord`, which should return a `JSON:API` document.
249
+ *
250
+ * The final result after normalization to `JSON:API` will be added to store via `store.push` where
251
+ * it will merge with any existing data.
252
+ *
253
+ * ⚠️ If the adapter's response resolves to a false-y value, the associated `serializer.normalizeResponse`
254
+ * call will NOT be made. In this scenario you may need to do at least a minimum amount of response
255
+ * processing within the adapter.
256
+ *
257
+ * If the adapter rejects or errors the record will need to be saved again once the reason
258
+ * for the error is addressed in order to persist the deleted state.
259
+ *
260
+ * @public
261
+ * @param {Store} store The store service that initiated the request being normalized
262
+ * @param {ModelSchema} schema An object with methods for accessing information about
263
+ * the type, attributes and relationships of the primary type associated with the request.
264
+ * @param {Snapshot} snapshot A Snapshot containing the record's current data
265
+ * @return
266
+ */
267
+ deleteRecord(store: Store, schema: ModelSchema, snapshot: Snapshot): Promise<AdapterPayload>;
268
+ /**
269
+ * `adapter.findBelongsTo` takes a request to fetch a related resource located at a
270
+ * `relatedLink` and should return a `Promise` which fulfills with data for a single
271
+ * resource.
272
+ *
273
+ * ⚠️ This method is only called if the store previously received relationship information for a resource
274
+ * containing a [related link](https://jsonapi.org/format/#document-resource-object-related-resource-links).
275
+ *
276
+ * If the cache does not have a `link` for the relationship then `findRecord` will be used if a `type` and `id`
277
+ * for the related resource is known.
278
+ *
279
+ * The response will be fed to the associated serializer's `normalizeResponse` method
280
+ * with the `requestType` set to `findBelongsTo`, which should return a `JSON:API` document.
281
+ *
282
+ * The final result after normalization to `JSON:API` will be added to store via `store.push` where
283
+ * it will merge with any existing data.
284
+ *
285
+ * ⚠️ If the adapter's response resolves to a false-y value, the associated `serializer.normalizeResponse`
286
+ * call will NOT be made. In this scenario you may need to do at least a minimum amount of response
287
+ * processing within the adapter.
288
+ *
289
+ * @public
290
+ * @optional
291
+ * @param {Store} store The store service that initiated the request being normalized
292
+ * @param {Snapshot} snapshot A Snapshot containing the parent record's current data
293
+ * @param {String} relatedLink The link at which the associated resource might be found
294
+ * @param {RelationshipSchema} relationship
295
+ * @return {Promise} a promise resolving with resource data to feed to the associated serializer
296
+ */
297
+ findBelongsTo?(store: Store, snapshot: Snapshot, relatedLink: string, relationship: RelationshipSchema): Promise<AdapterPayload>;
298
+ /**
299
+ * `adapter.findHasMany` takes a request to fetch a related resource collection located
300
+ * at a `relatedLink` and should return a `Promise` which fulfills with data for that
301
+ * collection.
302
+ *
303
+ * ⚠️ This method is only called if the store previously received relationship information for a resource
304
+ * containing a [related link](https://jsonapi.org/format/#document-resource-object-related-resource-links).
305
+ *
306
+ * If the cache does not have a `link` for the relationship but the `type` and `id` of
307
+ * related resources are known then `findRecord` will be used for each individual related
308
+ * resource.
309
+ *
310
+ * The response will be fed to the associated serializer's `normalizeResponse` method
311
+ * with the `requestType` set to `findHasMany`, which should return a `JSON:API` document.
312
+ *
313
+ * The final result after normalization to `JSON:API` will be added to store via `store.push` where
314
+ * it will merge with any existing data.
315
+ *
316
+ * ⚠️ If the adapter's response resolves to a false-y value, the associated `serializer.normalizeResponse`
317
+ * call will NOT be made. In this scenario you may need to do at least a minimum amount of response
318
+ * processing within the adapter.
319
+ *
320
+ * @public
321
+ * @optional
322
+ * @param {Store} store The store service that initiated the request being normalized
323
+ * @param {Snapshot} snapshot A Snapshot containing the parent record's current data
324
+ * @param {String} relatedLink The link at which the associated resource collection might be found
325
+ * @param {RelationshipSchema} relationship
326
+ * @return {Promise} a promise resolving with resource data to feed to the associated serializer
327
+ */
328
+ findHasMany?(store: Store, snapshot: Snapshot, relatedLink: string, relationship: RelationshipSchema): Promise<AdapterPayload>;
329
+ /**
330
+ * ⚠️ This Method is only called if `coalesceFindRequests` is `true`. The array passed to it is determined
331
+ * by the adapter's `groupRecordsForFindMany` method, and will be called once per group returned.
332
+ *
333
+ * `adapter.findMany` takes a request to fetch a collection of resources and should return a
334
+ * `Promise` which fulfills with data for that collection.
335
+ *
336
+ * The response will be fed to the associated serializer's `normalizeResponse` method
337
+ * with the `requestType` set to `findMany`, which should return a `JSON:API` document.
338
+ *
339
+ * The final result after normalization to `JSON:API` will be added to store via `store.push` where
340
+ * it will merge with any existing data.
341
+ *
342
+ * ⚠️ If the adapter's response resolves to a false-y value, the associated `serializer.normalizeResponse`
343
+ * call will NOT be made. In this scenario you may need to do at least a minimum amount of response
344
+ * processing within the adapter.
345
+ *
346
+ * See also `groupRecordsForFindMany` and `coalesceFindRequests`
347
+ *
348
+ * @public
349
+ * @optional
350
+ * @param {Store} store The store service that initiated the request being normalized
351
+ * @param {ModelSchema} schema An object with methods for accessing information about
352
+ * the type, attributes and relationships of the primary type associated with the request.
353
+ * @param {Array<string>} ids An array of the ids of the resources to fetch
354
+ * @param {Array<Snapshot>} snapshots An array of snapshots of the available data for the resources to fetch
355
+ * @return {Promise} a promise resolving with resource data to feed to the associated serializer
356
+ */
357
+ findMany?(store: Store, schema: ModelSchema, ids: string[], snapshots: Snapshot[]): Promise<AdapterPayload>;
358
+ /**
359
+ * This method provides the ability to generate an ID to assign to a new record whenever `store.createRecord`
360
+ * is called if no `id` was provided.
361
+ *
362
+ * Alternatively you can pass an id into the call to `store.createRecord` directly.
363
+ *
364
+ * ```js
365
+ * let id = generateNewId(type);
366
+ * let newRecord = store.createRecord(type, { id });
367
+ * ```
368
+ *
369
+ * @public
370
+ * @optional
371
+ * @param {Store} store The store service that initiated the request being normalized
372
+ * @param {String} type The type (or modelName) of record being created
373
+ * @param properties the properties passed as the second arg to `store.createRecord`
374
+ * @return {String} a string ID that should be unique (no other models of `type` in the cache should have this `id`)
375
+ */
376
+ generateIdForRecord?(store: Store, type: string, properties: unknown): string;
377
+ /**
378
+ * If your adapter implements `findMany`, setting this to `true` will cause `findRecord`
379
+ * requests triggered within the same `runloop` to be coalesced into one or more calls
380
+ * to `adapter.findMany`. The number of calls made and the records contained in each call
381
+ * can be tuned by your adapter's `groupRecordsForHasMany` method.
382
+ *
383
+ * Implementing coalescing using this flag and the associated methods does not always offer
384
+ * the right level of correctness, timing control or granularity. If your application would
385
+ * be better suited coalescing across multiple types, coalescing for longer than a single runloop,
386
+ * or with a more custom request structure, coalescing within your application adapter may prove
387
+ * more effective.
388
+ *
389
+ * @property coalesceFindRequests [OPTIONAL]
390
+ * @public
391
+ * @optional
392
+ * @type {Boolean} true if the requests to find individual records should be coalesced, false otherwise
393
+ */
394
+ coalesceFindRequests?: boolean;
395
+ /**
396
+ * ⚠️ This Method is only called if `coalesceFindRequests` is `true`.
397
+ *
398
+ * This method allows for you to split pending requests for records into multiple `findMany`
399
+ * requests. It receives an array of snapshots where each snapshot represents a unique record
400
+ * requested via `store.findRecord` during the most recent `runloop` that was not found in the
401
+ * cache or needs to be reloaded. It should return an array of groups.
402
+ *
403
+ * A group is an array of snapshots meant to be fetched together by a single `findMany` request.
404
+ *
405
+ * By default if this method is not implemented WarpDrive will call `findMany` once with all
406
+ * requested records as a single group when `coalesceFindRequests` is `true`.
407
+ *
408
+ * See also `findMany` and `coalesceFindRequests`
409
+ *
410
+ * @public
411
+ * @optional
412
+ * @param {Store} store The store service that initiated the request being normalized
413
+ * @param {Array<Snapshot>} snapshots An array of snapshots
414
+ * @return {Array<Array<Snapshot>>} An array of Snapshot arrays
415
+ */
416
+ groupRecordsForFindMany?(store: Store, snapshots: Snapshot[]): Group[];
417
+ /**
418
+ * When a record is already available in the store and is requested again via `store.findRecord`,
419
+ * and `reload` is not specified as an option in the request, this method is called to determine
420
+ * whether the record should be reloaded prior to returning the result.
421
+ *
422
+ * If `reload` is specified as an option in the request (`true` or `false`) this method will not
423
+ * be called.
424
+ *
425
+ * ```js
426
+ * store.findRecord('user', '1', { reload: false })
427
+ * ```
428
+ *
429
+ * The default behavior if this method is not implemented and the option is not specified is to
430
+ * not reload, the same as a return of `false`.
431
+ *
432
+ * See also the documentation for `shouldBackgroundReloadRecord` which defaults to `true`.
433
+ *
434
+ * @public
435
+ * @optional
436
+ * @param {Store} store The store service that initiated the request being normalized
437
+ * @param {Snapshot} snapshot A Snapshot containing the record's current data
438
+ * @return {Boolean} true if the record should be reloaded immediately, false otherwise
439
+ */
440
+ shouldReloadRecord?(store: Store, snapshot: Snapshot): boolean;
441
+ /**
442
+ * When `store.findAll(<type>)` is called without a `reload` option, the adapter
443
+ * is presented the opportunity to trigger a new request for records of that type.
444
+ *
445
+ * If `reload` is specified as an option in the request (`true` or `false`) this method will not
446
+ * be called.
447
+ *
448
+ * ```js
449
+ * store.findAll('user', { reload: false })
450
+ * ```
451
+ *
452
+ * The default behavior if this method is not implemented and the option is not specified is to
453
+ * not reload, the same as a return of `false`.
454
+ *
455
+ * Note: the Promise returned by `store.findAll` resolves to the same LiveArray instance
456
+ * returned by `store.peekAll` for that type, and will include all records in the store for
457
+ * the given type, including any previously existing records not returned by the reload request.
458
+ *
459
+ * @public
460
+ * @optional
461
+ * @param {Store} store The store service that initiated the request being normalized
462
+ * @param {SnapshotRecordArray} snapshotArray
463
+ * @return {Boolean} true if the a new request for all records of the type in SnapshotRecordArray should be made immediately, false otherwise
464
+ */
465
+ shouldReloadAll?(store: Store, snapshotArray: SnapshotRecordArray): boolean;
466
+ /**
467
+ * When a record is already available in the store and is requested again via `store.findRecord`,
468
+ * and the record does not need to be reloaded prior to return, this method provides the ability
469
+ * to specify whether a refresh of the data for the reload should be scheduled to occur in the background.
470
+ *
471
+ * Users may explicitly declare a record should/should not be background reloaded by passing
472
+ * `backgroundReload: true` or `backgroundReload: false` as an option to the request respectively.
473
+ *
474
+ * ```js
475
+ * store.findRecord('user', '1', { backgroundReload: false })
476
+ * ```
477
+ *
478
+ * If the `backgroundReload` option is not present, this method will be called to determine whether
479
+ * a backgroundReload should be performed.
480
+ *
481
+ * The default behavior if this method is not implemented and the option was not specified is to
482
+ * background reload, the same as a return of `true`.
483
+ *
484
+ * @public
485
+ * @optional
486
+ * @param {Store} store The store service that initiated the request being normalized
487
+ * @param {Snapshot} snapshot A Snapshot containing the record's current data
488
+ * @return {Boolean} true if the record should be reloaded in the background, false otherwise
489
+ */
490
+ shouldBackgroundReloadRecord?(store: Store, snapshot: Snapshot): boolean;
491
+ /**
492
+ * When `store.findAll(<type>)` is called and a `reload` is not initiated, the adapter
493
+ * is presented the opportunity to trigger a new non-blocking (background) request for
494
+ * records of that type
495
+ *
496
+ * Users may explicitly declare that this background request should/should not occur by passing
497
+ * `backgroundReload: true` or `backgroundReload: false` as an option to the request respectively.
498
+ *
499
+ * ```js
500
+ * store.findAll('user', { backgroundReload: false })
501
+ * ```
502
+ *
503
+ * The default behavior if this method is not implemented and the option is not specified is to
504
+ * perform a reload, the same as a return of `true`.
505
+ *
506
+ * @public
507
+ * @optional
508
+ * @param {Store} store The store service that initiated the request being normalized
509
+ * @param {SnapshotRecordArray} snapshotArray
510
+ * @return {Boolean} true if the a new request for all records of the type in SnapshotRecordArray should be made in the background, false otherwise
511
+ */
512
+ shouldBackgroundReloadAll?(store: Store, snapshotArray: SnapshotRecordArray): boolean;
513
+ /**
514
+ * In some situations the adapter may need to perform cleanup when destroyed,
515
+ * that cleanup can be done in `destroy`.
516
+ *
517
+ * If not implemented, the store does not inform the adapter of destruction.
518
+ *
519
+ * @public
520
+ * @optional
521
+ */
522
+ destroy?(): void;
523
+ }
524
+ export {};