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

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 +6 -6
@@ -0,0 +1,667 @@
1
+ import { computed } from '@ember/object';
2
+ import { recordIdentifierFor } from '@warp-drive/core';
3
+ import { RecordStore } from '@warp-drive/core/types/symbols';
4
+ import { i as isElementDescriptor, n as normalizeModelName } from "./util-Dul6TZts.js";
5
+ import { macroCondition, getGlobalConfig } from '@embroider/macros';
6
+ import { warn, deprecate } from '@ember/debug';
7
+ import { assertPrivateStore } from '@warp-drive/core/store/-private';
8
+ import { l as lookupLegacySupport } from "./errors-CIGPcDvd.js";
9
+ import { singularize, dasherize } from '@warp-drive/utilities/string';
10
+ export { M as Model, b as buildSchema, M as default, m as restoreDeprecatedModelRequestBehaviors } from "./schema-provider-g5MfTj8n.js";
11
+ export { i as instantiateRecord, m as modelFor, t as teardownRecord } from "./hooks-QqRnX108.js";
12
+ function _attr(type, options) {
13
+ if (typeof type === 'object') {
14
+ options = type;
15
+ type = undefined;
16
+ } else {
17
+ options = options || {};
18
+ }
19
+ const meta = {
20
+ type: type,
21
+ kind: 'attribute',
22
+ isAttribute: true,
23
+ options: options,
24
+ key: null
25
+ };
26
+ return computed({
27
+ get(key) {
28
+ if (macroCondition(getGlobalConfig().WarpDrive.env.DEBUG)) {
29
+ if (['currentState'].includes(key)) {
30
+ throw new Error(`'${key}' is a reserved property name on instances of classes extending Model. Please choose a different property name for your attr on ${this.constructor.toString()}`);
31
+ }
32
+ }
33
+ if (this.isDestroyed || this.isDestroying) {
34
+ return;
35
+ }
36
+ const cache = this[RecordStore].cache;
37
+ return cache.getAttr(recordIdentifierFor(this), key);
38
+ },
39
+ set(key, value) {
40
+ if (macroCondition(getGlobalConfig().WarpDrive.env.DEBUG)) {
41
+ if (['currentState'].includes(key)) {
42
+ throw new Error(`'${key}' is a reserved property name on instances of classes extending Model. Please choose a different property name for your attr on ${this.constructor.toString()}`);
43
+ }
44
+ }
45
+ const identifier = recordIdentifierFor(this);
46
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
47
+ if (!test) {
48
+ throw new Error(`Attempted to set '${key}' on the deleted record ${identifier.type}:${identifier.id} (${identifier.lid})`);
49
+ }
50
+ })(!this.currentState.isDeleted) : {};
51
+ const cache = this[RecordStore].cache;
52
+ const currentValue = cache.getAttr(identifier, key);
53
+ if (currentValue !== value) {
54
+ cache.setAttr(identifier, key, value);
55
+ if (!this.isValid) {
56
+ const {
57
+ errors
58
+ } = this;
59
+ if (errors.get(key)) {
60
+ errors.remove(key);
61
+ this.currentState.cleanErrorRequests();
62
+ }
63
+ }
64
+ }
65
+ return value;
66
+ }
67
+ }).meta(meta);
68
+ }
69
+
70
+ // NOTE: Usage of Explicit ANY
71
+ // -------------------------------------------------------------------
72
+ // any is required here because we are the maximal not the minimal
73
+ // subset of options allowed. If we used unknown, object, or
74
+ // Record<string, unknown> we would get type errors when we try to
75
+ // assert against a more specific implementation with precise options.
76
+ // -------------------------------------------------------------------
77
+
78
+ // see note on Explicit ANY above
79
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
80
+
81
+ /**
82
+ * The return type of `void` is a lie to appease TypeScript. The actual return type
83
+ * is a descriptor, but typescript incorrectly insists that decorator functions return
84
+ * `void` or `any`.
85
+ *
86
+ */
87
+
88
+ /**
89
+ `attr` defines an attribute on a {@link Model}.
90
+ By default, attributes are passed through as-is, however you can specify an
91
+ optional type to have the value automatically transformed.
92
+ WarpDrive ships with four basic transform types: `string`, `number`,
93
+ `boolean` and `date`. You can define your own transforms by subclassing
94
+ {@link Transform}.
95
+
96
+ Note that you cannot use `attr` to define an attribute of `id`.
97
+
98
+ `attr` takes an optional hash as a second parameter, currently
99
+ supported options are:
100
+
101
+ - `defaultValue`: Pass a string or a function to be called to set the attribute
102
+ to a default value if and only if the key is absent from the payload response.
103
+
104
+ Example
105
+
106
+ ```js [app/models/user.js]
107
+ import { Model, attr } from '@warp-drive/legacy/model';
108
+
109
+ export default class UserModel extends Model {
110
+ @attr('string') username;
111
+ @attr('string') email;
112
+ @attr('boolean', { defaultValue: false }) verified;
113
+ }
114
+ ```
115
+
116
+ Default value can also be a function. This is useful it you want to return
117
+ a new object for each attribute.
118
+
119
+ ```js [app/models/user.js]
120
+ import { Model, attr } from '@warp-drive/legacy/model';
121
+
122
+ export default class UserModel extends Model {
123
+ @attr('string') username;
124
+ @attr('string') email;
125
+
126
+ @attr({
127
+ defaultValue() {
128
+ return {};
129
+ }
130
+ })
131
+ settings;
132
+ }
133
+ ```
134
+
135
+ The `options` hash is passed as second argument to a transforms'
136
+ `serialize` and `deserialize` method. This allows to configure a
137
+ transformation and adapt the corresponding value, based on the config:
138
+
139
+ ```js [app/models/post.js]
140
+ import { Model, attr } from '@warp-drive/legacy/model';
141
+
142
+ export default class PostModel extends Model {
143
+ @attr('text', {
144
+ uppercase: true
145
+ })
146
+ text;
147
+ }
148
+ ```
149
+
150
+ ```js [app/transforms/text.js]
151
+ export default class TextTransform {
152
+ serialize(value, options) {
153
+ if (options.uppercase) {
154
+ return value.toUpperCase();
155
+ }
156
+
157
+ return value;
158
+ }
159
+
160
+ deserialize(value) {
161
+ return value;
162
+ }
163
+
164
+ static create() {
165
+ return new this();
166
+ }
167
+ }
168
+ ```
169
+
170
+ @public
171
+ @param type the attribute type
172
+ @param options a hash of options
173
+ */
174
+
175
+ // see note on DataDecorator for why void
176
+ function attr(type, options, desc) {
177
+ const args = [type, options, desc];
178
+ // see note on DataDecorator for why void
179
+ return isElementDescriptor(args) ? _attr()(...args) : _attr(type, options);
180
+ }
181
+
182
+ // get: () => getT;
183
+ // // set: (value: Awaited<getT>) => void;
184
+ // set: (value: getT) => void;
185
+ // // init: () => getT;
186
+ // };
187
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
188
+ // BelongsToDecoratorObject<getT>;
189
+
190
+ function _belongsTo(type, options) {
191
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
192
+ if (!test) {
193
+ throw new Error(`Expected options.async from @belongsTo('${type}', options) to be a boolean`);
194
+ }
195
+ })(options && typeof options.async === 'boolean') : {};
196
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
197
+ if (!test) {
198
+ throw new Error(`Expected options.inverse from @belongsTo('${type}', options) to be either null or the string type of the related resource.`);
199
+ }
200
+ })(options.inverse === null || typeof options.inverse === 'string' && options.inverse.length > 0) : {};
201
+ const meta = {
202
+ type: normalizeModelName(type),
203
+ options: options,
204
+ kind: 'belongsTo',
205
+ name: '<Unknown BelongsTo>'
206
+ };
207
+ return computed({
208
+ get(key) {
209
+ // this is a legacy behavior we may not carry into a new model setup
210
+ // it's better to error on disconnected records so users find errors
211
+ // in their logic.
212
+ if (this.isDestroying || this.isDestroyed) {
213
+ return null;
214
+ }
215
+ const support = lookupLegacySupport(this);
216
+ if (macroCondition(getGlobalConfig().WarpDrive.env.DEBUG)) {
217
+ if (['currentState'].includes(key)) {
218
+ throw new Error(`'${key}' is a reserved property name on instances of classes extending Model. Please choose a different property name for your belongsTo on ${this.constructor.toString()}`);
219
+ }
220
+ if (Object.prototype.hasOwnProperty.call(options, 'serialize')) {
221
+ warn(`You provided a serialize option on the "${key}" property in the "${support.identifier.type}" class, this belongs in the serializer. See Serializer and it's implementations https://api.emberjs.com/ember-data/release/classes/Serializer`, false, {
222
+ id: 'ds.model.serialize-option-in-belongs-to'
223
+ });
224
+ }
225
+ if (Object.prototype.hasOwnProperty.call(options, 'embedded')) {
226
+ warn(`You provided an embedded option on the "${key}" property in the "${support.identifier.type}" class, this belongs in the serializer. See EmbeddedRecordsMixin https://api.emberjs.com/ember-data/release/classes/EmbeddedRecordsMixin`, false, {
227
+ id: 'ds.model.embedded-option-in-belongs-to'
228
+ });
229
+ }
230
+ }
231
+ return support.getBelongsTo(key);
232
+ },
233
+ set(key, value) {
234
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
235
+ if (!test) {
236
+ throw new Error(`Cannot set belongsTo relationship ${key} on a destroyed record`);
237
+ }
238
+ })(!this.isDestroying && !this.isDestroyed) : {};
239
+ if (this.isDestroying || this.isDestroyed) {
240
+ return null;
241
+ }
242
+ const support = lookupLegacySupport(this);
243
+ if (macroCondition(getGlobalConfig().WarpDrive.env.DEBUG)) {
244
+ if (['currentState'].includes(key)) {
245
+ throw new Error(`'${key}' is a reserved property name on instances of classes extending Model. Please choose a different property name for your belongsTo on ${this.constructor.toString()}`);
246
+ }
247
+ }
248
+ assertPrivateStore(this[RecordStore]);
249
+ this[RecordStore]._join(() => {
250
+ support.setDirtyBelongsTo(key, value);
251
+ });
252
+ return support.getBelongsTo(key);
253
+ }
254
+ }).meta(meta);
255
+ }
256
+
257
+ /**
258
+ `belongsTo` is used to define One-To-One and One-To-Many, and One-To-None
259
+ relationships on a {@link Model}.
260
+
261
+ `belongsTo` takes a configuration hash as a second parameter, currently
262
+ supported options are:
263
+
264
+ - `async`: (*required*) A boolean value used to declare whether this is a sync (false) or async (true) relationship.
265
+ - `inverse`: (*required*) A string used to identify the inverse property on a related model, or `null`.
266
+ - `polymorphic`: (*optional*) A boolean value to mark the relationship as polymorphic
267
+ - `as`: (*optional*) A string used to declare the abstract type "this" record satisfies for polymorphism.
268
+
269
+ ### Examples
270
+
271
+ To declare a **one-to-many** (or many-to-many) relationship, use
272
+ `belongsTo` in combination with `hasMany`:
273
+
274
+ ```js
275
+ // app/models/comment.js
276
+ import { Model, belongsTo } from '@warp-drive/legacy/model';
277
+
278
+ export default class Comment extends Model {
279
+ @belongsTo('post', { async: false, inverse: 'comments' }) post;
280
+ }
281
+
282
+ // app/models/post.js
283
+ import { Model, hasMany } from '@warp-drive/legacy/model';
284
+
285
+ export default class Post extends Model {
286
+ @hasMany('comment', { async: false, inverse: 'post' }) comments;
287
+ }
288
+ ```
289
+
290
+ To declare a **one-to-one** relationship with managed inverses, use `belongsTo` for both sides:
291
+
292
+ ```js
293
+ // app/models/author.js
294
+ import { Model, belongsTo } from '@warp-drive/legacy/model';
295
+
296
+ export default class Author extends Model {
297
+ @belongsTo('address', { async: true, inverse: 'owner' }) address;
298
+ }
299
+
300
+ // app/models/address.js
301
+ import { Model, belongsTo } from '@warp-drive/legacy/model';
302
+
303
+ export default class Address extends Model {
304
+ @belongsTo('author', { async: true, inverse: 'address' }) owner;
305
+ }
306
+ ```
307
+
308
+ To declare a **one-to-one** relationship without managed inverses, use `belongsTo` for both sides
309
+ with `null` as the inverse:
310
+
311
+ ```js
312
+ // app/models/author.js
313
+ import { Model, belongsTo } from '@warp-drive/legacy/model';
314
+
315
+ export default class Author extends Model {
316
+ @belongsTo('address', { async: true, inverse: null }) address;
317
+ }
318
+
319
+ // app/models/address.js
320
+ import { Model, belongsTo } from '@warp-drive/legacy/model';
321
+
322
+ export default class Address extends Model {
323
+ @belongsTo('author', { async: true, inverse: null }) owner;
324
+ }
325
+ ```
326
+
327
+ To declare a one-to-none relationship between two models, use
328
+ `belongsTo` with inverse set to `null` on just one side::
329
+
330
+ ```js
331
+ // app/models/person.js
332
+ import { Model, belongsTo } from '@warp-drive/legacy/model';
333
+
334
+ export default class Person extends Model {
335
+ @belongsTo('person', { async: false, inverse: null }) bestFriend;
336
+ }
337
+ ```
338
+
339
+ #### Sync vs Async Relationships
340
+
341
+ WarpDrive fulfills relationships using resource data available in
342
+ the cache.
343
+
344
+ Sync relationships point directly to the known related resources.
345
+
346
+ When a relationship is declared as async, if any of the known related
347
+ resources have not been loaded, they will be fetched. The property
348
+ on the record when accessed provides a promise that resolves once
349
+ all resources are loaded.
350
+
351
+ Async relationships may take advantage of links. On access, if the related
352
+ link has not been loaded, or if any known resources are not available in
353
+ the cache, the fresh state will be fetched using the link.
354
+
355
+ In contrast to async relationship, accessing a sync relationship
356
+ will error on access when any of the known related resources have
357
+ not been loaded.
358
+
359
+ If you are using `links` with sync relationships, you have to use
360
+ the BelongsTo reference API to fetch or refresh related resources
361
+ that aren't loaded. For instance, for a `bestFriend` relationship:
362
+
363
+ ```js
364
+ person.belongsTo('bestFriend').reload();
365
+ ```
366
+
367
+ #### Polymorphic Relationships
368
+
369
+ To declare a polymorphic relationship, use `hasMany` with the `polymorphic`
370
+ option set to `true`:
371
+
372
+ ```js
373
+ // app/models/comment.js
374
+ import { Model, belongsTo } from '@warp-drive/legacy/model';
375
+
376
+ export default class Comment extends Model {
377
+ @belongsTo('commentable', { async: false, inverse: 'comments', polymorphic: true }) parent;
378
+ }
379
+ ```
380
+
381
+ `'commentable'` here is referred to as the "abstract type" for the polymorphic
382
+ relationship.
383
+
384
+ Polymorphic relationships with `inverse: null` will accept any type of record as their content.
385
+ Polymorphic relationships with `inverse` set to a string will only accept records with a matching
386
+ inverse relationships declaring itself as satisfying the abstract type.
387
+
388
+ Below, 'as' is used to declare the that 'post' record satisfies the abstract type 'commentable'
389
+ for this relationship.
390
+
391
+ ```js
392
+ // app/models/post.js
393
+ import { Model, hasMany } from '@warp-drive/legacy/model';
394
+
395
+ export default class Post extends Model {
396
+ @hasMany('comment', { async: false, inverse: 'parent', as: 'commentable' }) comments;
397
+ }
398
+ ```
399
+
400
+ Note: every Model that declares an inverse to a polymorphic relationship must
401
+ declare itself exactly the same. This is because polymorphism is based on structural
402
+ traits.
403
+
404
+ Polymorphic to polymorphic relationships are supported. Both sides of the relationship
405
+ must be declared as polymorphic, and the `as` option must be used to declare the abstract
406
+ type each record satisfies on both sides.
407
+
408
+ @public
409
+ @param type the name of the related resource
410
+ @param options a hash of options
411
+ */
412
+
413
+ // export function belongsTo<K extends Promise<unknown>, T extends Awaited<K> = Awaited<K>>(
414
+ // type: TypeFromInstance<NoNull<T>>,
415
+ // options: RelationshipOptions<T, true>
416
+ // ): RelationshipDecorator<K>;
417
+
418
+ function belongsTo(type, options) {
419
+ if (macroCondition(getGlobalConfig().WarpDrive.env.DEBUG)) {
420
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
421
+ if (!test) {
422
+ throw new Error(`belongsTo must be invoked with a type and options. Did you mean \`@belongsTo(${type}, { async: false, inverse: null })\`?`);
423
+ }
424
+ })(!isElementDescriptor(arguments)) : {};
425
+ }
426
+ return _belongsTo(type, options);
427
+ }
428
+ function normalizeType(type) {
429
+ if (macroCondition(getGlobalConfig().WarpDrive.deprecations.DEPRECATE_NON_STRICT_TYPES)) {
430
+ const result = singularize(dasherize(type));
431
+ deprecate(`The resource type '${type}' is not normalized. Update your application code to use '${result}' instead of '${type}'.`, result === type, {
432
+ id: 'ember-data:deprecate-non-strict-types',
433
+ until: '6.0',
434
+ for: 'ember-data',
435
+ since: {
436
+ available: '4.13',
437
+ enabled: '5.3'
438
+ }
439
+ });
440
+ return result;
441
+ }
442
+ return type;
443
+ }
444
+ function _hasMany(type, options) {
445
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
446
+ if (!test) {
447
+ throw new Error(`Expected hasMany options.async to be a boolean`);
448
+ }
449
+ })(options && typeof options.async === 'boolean') : {};
450
+
451
+ // Metadata about relationships is stored on the meta of
452
+ // the relationship. This is used for introspection and
453
+ // serialization. Note that `key` is populated lazily
454
+ // the first time the CP is called.
455
+ const meta = {
456
+ type: normalizeType(type),
457
+ options,
458
+ kind: 'hasMany',
459
+ name: '<Unknown BelongsTo>'
460
+ };
461
+ return computed({
462
+ get(key) {
463
+ if (macroCondition(getGlobalConfig().WarpDrive.env.DEBUG)) {
464
+ if (['currentState'].includes(key)) {
465
+ throw new Error(`'${key}' is a reserved property name on instances of classes extending Model. Please choose a different property name for your hasMany on ${this.constructor.toString()}`);
466
+ }
467
+ }
468
+ if (this.isDestroying || this.isDestroyed) {
469
+ return [];
470
+ }
471
+ return lookupLegacySupport(this).getHasMany(key);
472
+ },
473
+ set(key, records) {
474
+ if (macroCondition(getGlobalConfig().WarpDrive.env.DEBUG)) {
475
+ if (['currentState'].includes(key)) {
476
+ throw new Error(`'${key}' is a reserved property name on instances of classes extending Model. Please choose a different property name for your hasMany on ${this.constructor.toString()}`);
477
+ }
478
+ }
479
+ const support = lookupLegacySupport(this);
480
+ const manyArray = support.getManyArray(key);
481
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
482
+ if (!test) {
483
+ throw new Error(`You must pass an array of records to set a hasMany relationship`);
484
+ }
485
+ })(Array.isArray(records)) : {};
486
+ assertPrivateStore(this[RecordStore]);
487
+ this[RecordStore]._join(() => {
488
+ manyArray.splice(0, manyArray.length, ...records);
489
+ });
490
+ return support.getHasMany(key);
491
+ }
492
+ }).meta(meta);
493
+ }
494
+
495
+ /**
496
+ `hasMany` is used to define Many-To-One and Many-To-Many, and Many-To-None
497
+ relationships on a {@link Model}.
498
+
499
+ `hasMany` takes a configuration hash as a second parameter, currently
500
+ supported options are:
501
+
502
+ - `async`: (*required*) A boolean value used to declare whether this is a sync (false) or async (true) relationship.
503
+ - `inverse`: (*required*) A string used to identify the inverse property on a related model, or `null`.
504
+ - `polymorphic`: (*optional*) A boolean value to mark the relationship as polymorphic
505
+ - `as`: (*optional*) A string used to declare the abstract type "this" record satisfies for polymorphism.
506
+
507
+ ### Examples
508
+
509
+ To declare a **many-to-one** (or one-to-many) relationship, use
510
+ `belongsTo` in combination with `hasMany`:
511
+
512
+ ```js
513
+ // app/models/post.js
514
+ import { Model, hasMany } from '@warp-drive/legacy/model';
515
+
516
+ export default class Post extends Model {
517
+ @hasMany('comment', { async: false, inverse: 'post' }) comments;
518
+ }
519
+
520
+
521
+ // app/models/comment.js
522
+ import { Model, belongsTo } from '@warp-drive/legacy/model';
523
+
524
+ export default class Comment extends Model {
525
+ @belongsTo('post', { async: false, inverse: 'comments' }) post;
526
+ }
527
+ ```
528
+
529
+ To declare a **many-to-many** relationship with managed inverses, use `hasMany` for both sides:
530
+
531
+ ```js
532
+ // app/models/post.js
533
+ import { Model, hasMany } from '@warp-drive/legacy/model';
534
+
535
+ export default class Post extends Model {
536
+ @hasMany('tag', { async: true, inverse: 'posts' }) tags;
537
+ }
538
+
539
+ // app/models/tag.js
540
+ import { Model, hasMany } from '@warp-drive/legacy/model';
541
+
542
+ export default class Tag extends Model {
543
+ @hasMany('post', { async: true, inverse: 'tags' }) posts;
544
+ }
545
+ ```
546
+
547
+ To declare a **many-to-many** relationship without managed inverses, use `hasMany` for both sides
548
+ with `null` as the inverse:
549
+
550
+ ```js
551
+ // app/models/post.js
552
+ import { Model, hasMany } from '@warp-drive/legacy/model';
553
+
554
+ export default class Post extends Model {
555
+ @hasMany('tag', { async: true, inverse: null }) tags;
556
+ }
557
+
558
+ // app/models/tag.js
559
+ import { Model, hasMany } from '@warp-drive/legacy/model';
560
+
561
+ export default class Tag extends Model {
562
+ @hasMany('post', { async: true, inverse: null }) posts;
563
+ }
564
+ ```
565
+
566
+ To declare a many-to-none relationship between two models, use
567
+ `hasMany` with inverse set to `null` on just one side::
568
+
569
+ ```js
570
+ // app/models/post.js
571
+ import { Model, hasMany } from '@warp-drive/legacy/model';
572
+
573
+ export default class Post extends Model {
574
+ @hasMany('category', { async: true, inverse: null }) categories;
575
+ }
576
+ ```
577
+
578
+ #### Sync vs Async Relationships
579
+
580
+ WarpDrive fulfills relationships using resource data available in
581
+ the cache.
582
+
583
+ Sync relationships point directly to the known related resources.
584
+
585
+ When a relationship is declared as async, if any of the known related
586
+ resources have not been loaded, they will be fetched. The property
587
+ on the record when accessed provides a promise that resolves once
588
+ all resources are loaded.
589
+
590
+ Async relationships may take advantage of links. On access, if the related
591
+ link has not been loaded, or if any known resources are not available in
592
+ the cache, the fresh state will be fetched using the link.
593
+
594
+ In contrast to async relationship, accessing a sync relationship
595
+ will error on access when any of the known related resources have
596
+ not been loaded.
597
+
598
+ If you are using `links` with sync relationships, you have to use
599
+ the HasMany reference API to fetch or refresh related resources
600
+ that aren't loaded. For instance, for a `comments` relationship:
601
+
602
+ ```js
603
+ post.hasMany('comments').reload();
604
+ ```
605
+
606
+ #### Polymorphic Relationships
607
+
608
+ To declare a polymorphic relationship, use `hasMany` with the `polymorphic`
609
+ option set to `true`:
610
+
611
+ ```js
612
+ // app/models/comment.js
613
+ import { Model, belongsTo } from '@warp-drive/legacy/model';
614
+
615
+ export default class Comment extends Model {
616
+ @belongsTo('commentable', { async: false, inverse: 'comments', polymorphic: true }) parent;
617
+ }
618
+ ```
619
+
620
+ `'commentable'` here is referred to as the "abstract type" for the polymorphic
621
+ relationship.
622
+
623
+ Polymorphic relationships with `inverse: null` will accept any type of record as their content.
624
+ Polymorphic relationships with `inverse` set to a string will only accept records with a matching
625
+ inverse relationships declaring itself as satisfying the abstract type.
626
+
627
+ Below, 'as' is used to declare the that 'post' record satisfies the abstract type 'commentable'
628
+ for this relationship.
629
+
630
+ ```js
631
+ // app/models/post.js
632
+ import { Model, hasMany } from '@warp-drive/legacy/model';
633
+
634
+ export default class Post extends Model {
635
+ @hasMany('comment', { async: false, inverse: 'parent', as: 'commentable' }) comments;
636
+ }
637
+ ```
638
+
639
+ Note: every Model that declares an inverse to a polymorphic relationship must
640
+ declare itself exactly the same. This is because polymorphism is based on structural
641
+ traits.
642
+
643
+ Polymorphic to polymorphic relationships are supported. Both sides of the relationship
644
+ must be declared as polymorphic, and the `as` option must be used to declare the abstract
645
+ type each record satisfies on both sides.
646
+
647
+ @public
648
+ @param type the name of the related resource
649
+ @param options a hash of options
650
+ */
651
+
652
+ // export function hasMany<K extends Promise<unknown>, T extends Awaited<K> = Awaited<K>>(
653
+ // type: TypeFromInstance<NoNull<T>>,
654
+ // options: RelationshipOptions<T, true>
655
+ // ): RelationshipDecorator<K>;
656
+
657
+ function hasMany(type, options) {
658
+ if (macroCondition(getGlobalConfig().WarpDrive.env.DEBUG)) {
659
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
660
+ if (!test) {
661
+ throw new Error(`hasMany must be invoked with a type and options. Did you mean \`@hasMany(${type}, { async: false, inverse: null })\`?`);
662
+ }
663
+ })(!isElementDescriptor(arguments)) : {};
664
+ }
665
+ return _hasMany(type, options);
666
+ }
667
+ export { attr, belongsTo, hasMany };