@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.
- package/declarations/adapter/error.d.ts +5 -5
- package/declarations/adapter/json-api.d.ts +2 -2
- package/declarations/compat/builders/find-all.d.ts +6 -6
- package/declarations/compat/builders/find-record.d.ts +8 -8
- package/declarations/compat/builders/query.d.ts +12 -12
- package/declarations/compat.d.ts +3 -3
- package/declarations/model/-private/references/belongs-to.d.ts +4 -4
- package/declarations/model/-private/references/has-many.d.ts +2 -2
- package/declarations/model/migration-support.d.ts +34 -18
- package/declarations/model.d.ts +2 -2
- package/declarations/serializer/-private/embedded-records-mixin.d.ts +1 -1
- package/declarations/serializer/json-api.d.ts +3 -3
- package/declarations/serializer/json.d.ts +1 -1
- package/declarations/serializer.d.ts +1 -1
- package/dist/adapter/error.js +7 -7
- package/dist/compat/builders.js +26 -26
- package/dist/compat/utils.js +0 -1
- package/dist/compat.js +3 -3
- package/dist/{errors-B9CDPh3R.js → errors-CIGPcDvd.js} +12 -12
- package/dist/{hooks-CQXyievu.js → hooks-QqRnX108.js} +1 -1
- package/dist/index.js +4 -4
- package/dist/{json-BHxlccxF.js → json-BNrV8EYG.js} +4 -4
- package/dist/model/-private.js +1 -1
- package/dist/model/migration-support.js +41 -24
- package/dist/{model-for-B0TSd9HU.js → model-for-CqXsIKws.js} +1 -1
- package/dist/model-fragments.js +2 -2
- package/dist/model.js +3 -3
- package/dist/{schema-provider-BnVr_CnJ.js → schema-provider-g5MfTj8n.js} +11 -11
- package/dist/serializer/json-api.js +7 -7
- package/dist/serializer/json.js +1 -1
- package/dist/serializer/rest.js +10 -10
- package/dist/serializer.js +1 -1
- package/dist/unpkg/dev/-private-B1pSSN52.js +1210 -0
- package/dist/unpkg/dev/adapter/-private.js +1 -0
- package/dist/unpkg/dev/adapter/error.js +336 -0
- package/dist/unpkg/dev/adapter/json-api.js +132 -0
- package/dist/unpkg/dev/adapter/rest.js +1257 -0
- package/dist/unpkg/dev/adapter.js +1253 -0
- package/dist/unpkg/dev/compat/-private.js +1 -0
- package/dist/unpkg/dev/compat/builders.js +273 -0
- package/dist/unpkg/dev/compat/extensions.js +243 -0
- package/dist/unpkg/dev/compat/utils.js +224 -0
- package/dist/unpkg/dev/compat.js +1020 -0
- package/dist/unpkg/dev/declarations/adapter/-private/build-url-mixin.d.ts +33 -0
- package/dist/unpkg/dev/declarations/adapter/-private/fastboot-interface.d.ts +8 -0
- package/dist/unpkg/dev/declarations/adapter/-private/utils/continue-on-reject.d.ts +1 -0
- package/dist/unpkg/dev/declarations/adapter/-private/utils/determine-body-promise.d.ts +4 -0
- package/dist/unpkg/dev/declarations/adapter/-private/utils/fetch.d.ts +8 -0
- package/dist/unpkg/dev/declarations/adapter/-private/utils/parse-response-headers.d.ts +1 -0
- package/dist/unpkg/dev/declarations/adapter/-private/utils/serialize-into-hash.d.ts +6 -0
- package/dist/unpkg/dev/declarations/adapter/-private/utils/serialize-query-params.d.ts +5 -0
- package/dist/unpkg/dev/declarations/adapter/-private.d.ts +5 -0
- package/dist/unpkg/dev/declarations/adapter/error.d.ts +215 -0
- package/dist/unpkg/dev/declarations/adapter/json-api.d.ts +231 -0
- package/dist/unpkg/dev/declarations/adapter/rest.d.ts +815 -0
- package/dist/unpkg/dev/declarations/adapter.d.ts +770 -0
- package/dist/unpkg/dev/declarations/compat/-private.d.ts +13 -0
- package/dist/unpkg/dev/declarations/compat/builders/find-all.d.ts +35 -0
- package/dist/unpkg/dev/declarations/compat/builders/find-record.d.ts +56 -0
- package/dist/unpkg/dev/declarations/compat/builders/query.d.ts +66 -0
- package/dist/unpkg/dev/declarations/compat/builders/save-record.d.ts +34 -0
- package/dist/unpkg/dev/declarations/compat/builders/utils.d.ts +3 -0
- package/dist/unpkg/dev/declarations/compat/builders.d.ts +14 -0
- package/dist/unpkg/dev/declarations/compat/extensions.d.ts +59 -0
- package/dist/unpkg/dev/declarations/compat/legacy-network-handler/fetch-manager.d.ts +55 -0
- package/dist/unpkg/dev/declarations/compat/legacy-network-handler/identifier-has-id.d.ts +2 -0
- package/dist/unpkg/dev/declarations/compat/legacy-network-handler/legacy-data-fetch.d.ts +11 -0
- package/dist/unpkg/dev/declarations/compat/legacy-network-handler/legacy-data-utils.d.ts +5 -0
- package/dist/unpkg/dev/declarations/compat/legacy-network-handler/legacy-network-handler.d.ts +2 -0
- package/dist/unpkg/dev/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts +524 -0
- package/dist/unpkg/dev/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts +213 -0
- package/dist/unpkg/dev/declarations/compat/legacy-network-handler/serializer-response.d.ts +6 -0
- package/dist/unpkg/dev/declarations/compat/legacy-network-handler/snapshot-record-array.d.ts +110 -0
- package/dist/unpkg/dev/declarations/compat/legacy-network-handler/snapshot.d.ts +255 -0
- package/dist/unpkg/dev/declarations/compat/utils.d.ts +137 -0
- package/dist/unpkg/dev/declarations/compat.d.ts +157 -0
- package/dist/unpkg/dev/declarations/index.d.ts +70 -0
- package/dist/unpkg/dev/declarations/model/-private/attr.d.ts +170 -0
- package/dist/unpkg/dev/declarations/model/-private/belongs-to.d.ts +174 -0
- package/dist/unpkg/dev/declarations/model/-private/debug/assert-polymorphic-type.d.ts +5 -0
- package/dist/unpkg/dev/declarations/model/-private/errors.d.ts +289 -0
- package/dist/unpkg/dev/declarations/model/-private/has-many.d.ts +162 -0
- package/dist/unpkg/dev/declarations/model/-private/hooks.d.ts +10 -0
- package/dist/unpkg/dev/declarations/model/-private/legacy-relationships-support.d.ts +47 -0
- package/dist/unpkg/dev/declarations/model/-private/model-for-mixin.d.ts +3 -0
- package/dist/unpkg/dev/declarations/model/-private/model-methods.d.ts +39 -0
- package/dist/unpkg/dev/declarations/model/-private/model.d.ts +1269 -0
- package/dist/unpkg/dev/declarations/model/-private/notify-changes.d.ts +4 -0
- package/dist/unpkg/dev/declarations/model/-private/promise-belongs-to.d.ts +40 -0
- package/dist/unpkg/dev/declarations/model/-private/promise-many-array.d.ts +124 -0
- package/dist/unpkg/dev/declarations/model/-private/record-state.d.ts +58 -0
- package/dist/unpkg/dev/declarations/model/-private/references/belongs-to.d.ts +498 -0
- package/dist/unpkg/dev/declarations/model/-private/references/has-many.d.ts +500 -0
- package/dist/unpkg/dev/declarations/model/-private/schema-provider.d.ts +56 -0
- package/dist/unpkg/dev/declarations/model/-private/type-utils.d.ts +57 -0
- package/dist/unpkg/dev/declarations/model/-private/util.d.ts +5 -0
- package/dist/unpkg/dev/declarations/model/-private.d.ts +8 -0
- package/dist/unpkg/dev/declarations/model/migration-support.d.ts +280 -0
- package/dist/unpkg/dev/declarations/model-fragments/extensions/fragment-array.d.ts +16 -0
- package/dist/unpkg/dev/declarations/model-fragments/extensions/fragment.d.ts +15 -0
- package/dist/unpkg/dev/declarations/model-fragments/hooks/model-for.d.ts +20 -0
- package/dist/unpkg/dev/declarations/model-fragments/index.d.ts +5 -0
- package/dist/unpkg/dev/declarations/model-fragments/instance-initializers/fragment-extensions.d.ts +9 -0
- package/dist/unpkg/dev/declarations/model-fragments/utilities/with-array-defaults.d.ts +15 -0
- package/dist/unpkg/dev/declarations/model-fragments/utilities/with-fragment-array-defaults.d.ts +20 -0
- package/dist/unpkg/dev/declarations/model-fragments/utilities/with-fragment-defaults.d.ts +19 -0
- package/dist/unpkg/dev/declarations/model-fragments/utilities/with-legacy.d.ts +3 -0
- package/dist/unpkg/dev/declarations/model-fragments.d.ts +9 -0
- package/dist/unpkg/dev/declarations/model.d.ts +49 -0
- package/dist/unpkg/dev/declarations/serializer/-private/embedded-records-mixin.d.ts +91 -0
- package/dist/unpkg/dev/declarations/serializer/-private/transforms/boolean.d.ts +47 -0
- package/dist/unpkg/dev/declarations/serializer/-private/transforms/date.d.ts +28 -0
- package/dist/unpkg/dev/declarations/serializer/-private/transforms/number.d.ts +29 -0
- package/dist/unpkg/dev/declarations/serializer/-private/transforms/string.d.ts +29 -0
- package/dist/unpkg/dev/declarations/serializer/-private/transforms/transform.d.ts +118 -0
- package/dist/unpkg/dev/declarations/serializer/-private/utils.d.ts +3 -0
- package/dist/unpkg/dev/declarations/serializer/json-api.d.ts +123 -0
- package/dist/unpkg/dev/declarations/serializer/json.d.ts +75 -0
- package/dist/unpkg/dev/declarations/serializer/rest.d.ts +51 -0
- package/dist/unpkg/dev/declarations/serializer/transform.d.ts +5 -0
- package/dist/unpkg/dev/declarations/serializer.d.ts +254 -0
- package/dist/unpkg/dev/declarations/store/-private.d.ts +223 -0
- package/dist/unpkg/dev/declarations/store.d.ts +3 -0
- package/dist/unpkg/dev/errors-CIGPcDvd.js +2595 -0
- package/dist/unpkg/dev/hooks-QqRnX108.js +74 -0
- package/dist/unpkg/dev/index.js +195 -0
- package/dist/unpkg/dev/json-BNrV8EYG.js +1272 -0
- package/dist/unpkg/dev/model/-private.js +1 -0
- package/dist/unpkg/dev/model/migration-support.js +579 -0
- package/dist/unpkg/dev/model-for-CqXsIKws.js +221 -0
- package/dist/unpkg/dev/model-fragments.js +76 -0
- package/dist/unpkg/dev/model.js +667 -0
- package/dist/unpkg/dev/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
- package/dist/unpkg/dev/schema-provider-g5MfTj8n.js +2338 -0
- package/dist/unpkg/dev/serialize-into-hash-BnYvPex3.js +261 -0
- package/dist/unpkg/dev/serializer/json-api.js +527 -0
- package/dist/unpkg/dev/serializer/json.js +6 -0
- package/dist/unpkg/dev/serializer/rest.js +1243 -0
- package/dist/unpkg/dev/serializer/transform.js +278 -0
- package/dist/unpkg/dev/serializer.js +248 -0
- package/dist/unpkg/dev/store.js +636 -0
- package/dist/unpkg/dev/util-Dul6TZts.js +35 -0
- package/dist/unpkg/dev/utils-Cqw9eRj5.js +23 -0
- package/dist/unpkg/dev-deprecated/-private-B1pSSN52.js +1210 -0
- package/dist/unpkg/dev-deprecated/adapter/-private.js +1 -0
- package/dist/unpkg/dev-deprecated/adapter/error.js +336 -0
- package/dist/unpkg/dev-deprecated/adapter/json-api.js +132 -0
- package/dist/unpkg/dev-deprecated/adapter/rest.js +1257 -0
- package/dist/unpkg/dev-deprecated/adapter.js +1253 -0
- package/dist/unpkg/dev-deprecated/compat/-private.js +1 -0
- package/dist/unpkg/dev-deprecated/compat/builders.js +273 -0
- package/dist/unpkg/dev-deprecated/compat/extensions.js +243 -0
- package/dist/unpkg/dev-deprecated/compat/utils.js +224 -0
- package/dist/unpkg/dev-deprecated/compat.js +1020 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter/-private/build-url-mixin.d.ts +33 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter/-private/fastboot-interface.d.ts +8 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter/-private/utils/continue-on-reject.d.ts +1 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter/-private/utils/determine-body-promise.d.ts +4 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter/-private/utils/fetch.d.ts +8 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter/-private/utils/parse-response-headers.d.ts +1 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter/-private/utils/serialize-into-hash.d.ts +6 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter/-private/utils/serialize-query-params.d.ts +5 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter/-private.d.ts +5 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter/error.d.ts +215 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter/json-api.d.ts +231 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter/rest.d.ts +815 -0
- package/dist/unpkg/dev-deprecated/declarations/adapter.d.ts +770 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/-private.d.ts +13 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/builders/find-all.d.ts +35 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/builders/find-record.d.ts +56 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/builders/query.d.ts +66 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/builders/save-record.d.ts +34 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/builders/utils.d.ts +3 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/builders.d.ts +14 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/extensions.d.ts +59 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/fetch-manager.d.ts +55 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/identifier-has-id.d.ts +2 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/legacy-data-fetch.d.ts +11 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/legacy-data-utils.d.ts +5 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/legacy-network-handler.d.ts +2 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts +524 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts +213 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/serializer-response.d.ts +6 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/snapshot-record-array.d.ts +110 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/legacy-network-handler/snapshot.d.ts +255 -0
- package/dist/unpkg/dev-deprecated/declarations/compat/utils.d.ts +137 -0
- package/dist/unpkg/dev-deprecated/declarations/compat.d.ts +157 -0
- package/dist/unpkg/dev-deprecated/declarations/index.d.ts +70 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/attr.d.ts +170 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/belongs-to.d.ts +174 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/debug/assert-polymorphic-type.d.ts +5 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/errors.d.ts +289 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/has-many.d.ts +162 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/hooks.d.ts +10 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/legacy-relationships-support.d.ts +47 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/model-for-mixin.d.ts +3 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/model-methods.d.ts +39 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/model.d.ts +1269 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/notify-changes.d.ts +4 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/promise-belongs-to.d.ts +40 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/promise-many-array.d.ts +124 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/record-state.d.ts +58 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/references/belongs-to.d.ts +498 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/references/has-many.d.ts +500 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/schema-provider.d.ts +56 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/type-utils.d.ts +57 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private/util.d.ts +5 -0
- package/dist/unpkg/dev-deprecated/declarations/model/-private.d.ts +8 -0
- package/dist/unpkg/dev-deprecated/declarations/model/migration-support.d.ts +280 -0
- package/dist/unpkg/dev-deprecated/declarations/model-fragments/extensions/fragment-array.d.ts +16 -0
- package/dist/unpkg/dev-deprecated/declarations/model-fragments/extensions/fragment.d.ts +15 -0
- package/dist/unpkg/dev-deprecated/declarations/model-fragments/hooks/model-for.d.ts +20 -0
- package/dist/unpkg/dev-deprecated/declarations/model-fragments/index.d.ts +5 -0
- package/dist/unpkg/dev-deprecated/declarations/model-fragments/instance-initializers/fragment-extensions.d.ts +9 -0
- package/dist/unpkg/dev-deprecated/declarations/model-fragments/utilities/with-array-defaults.d.ts +15 -0
- package/dist/unpkg/dev-deprecated/declarations/model-fragments/utilities/with-fragment-array-defaults.d.ts +20 -0
- package/dist/unpkg/dev-deprecated/declarations/model-fragments/utilities/with-fragment-defaults.d.ts +19 -0
- package/dist/unpkg/dev-deprecated/declarations/model-fragments/utilities/with-legacy.d.ts +3 -0
- package/dist/unpkg/dev-deprecated/declarations/model-fragments.d.ts +9 -0
- package/dist/unpkg/dev-deprecated/declarations/model.d.ts +49 -0
- package/dist/unpkg/dev-deprecated/declarations/serializer/-private/embedded-records-mixin.d.ts +91 -0
- package/dist/unpkg/dev-deprecated/declarations/serializer/-private/transforms/boolean.d.ts +47 -0
- package/dist/unpkg/dev-deprecated/declarations/serializer/-private/transforms/date.d.ts +28 -0
- package/dist/unpkg/dev-deprecated/declarations/serializer/-private/transforms/number.d.ts +29 -0
- package/dist/unpkg/dev-deprecated/declarations/serializer/-private/transforms/string.d.ts +29 -0
- package/dist/unpkg/dev-deprecated/declarations/serializer/-private/transforms/transform.d.ts +118 -0
- package/dist/unpkg/dev-deprecated/declarations/serializer/-private/utils.d.ts +3 -0
- package/dist/unpkg/dev-deprecated/declarations/serializer/json-api.d.ts +123 -0
- package/dist/unpkg/dev-deprecated/declarations/serializer/json.d.ts +75 -0
- package/dist/unpkg/dev-deprecated/declarations/serializer/rest.d.ts +51 -0
- package/dist/unpkg/dev-deprecated/declarations/serializer/transform.d.ts +5 -0
- package/dist/unpkg/dev-deprecated/declarations/serializer.d.ts +254 -0
- package/dist/unpkg/dev-deprecated/declarations/store/-private.d.ts +223 -0
- package/dist/unpkg/dev-deprecated/declarations/store.d.ts +3 -0
- package/dist/unpkg/dev-deprecated/errors-CIGPcDvd.js +2595 -0
- package/dist/unpkg/dev-deprecated/hooks-QqRnX108.js +74 -0
- package/dist/unpkg/dev-deprecated/index.js +195 -0
- package/dist/unpkg/dev-deprecated/json-BNrV8EYG.js +1272 -0
- package/dist/unpkg/dev-deprecated/model/-private.js +1 -0
- package/dist/unpkg/dev-deprecated/model/migration-support.js +579 -0
- package/dist/unpkg/dev-deprecated/model-for-CqXsIKws.js +221 -0
- package/dist/unpkg/dev-deprecated/model-fragments.js +76 -0
- package/dist/unpkg/dev-deprecated/model.js +667 -0
- package/dist/unpkg/dev-deprecated/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
- package/dist/unpkg/dev-deprecated/schema-provider-g5MfTj8n.js +2338 -0
- package/dist/unpkg/dev-deprecated/serialize-into-hash-BnYvPex3.js +261 -0
- package/dist/unpkg/dev-deprecated/serializer/json-api.js +527 -0
- package/dist/unpkg/dev-deprecated/serializer/json.js +6 -0
- package/dist/unpkg/dev-deprecated/serializer/rest.js +1243 -0
- package/dist/unpkg/dev-deprecated/serializer/transform.js +278 -0
- package/dist/unpkg/dev-deprecated/serializer.js +248 -0
- package/dist/unpkg/dev-deprecated/store.js +636 -0
- package/dist/unpkg/dev-deprecated/util-Dul6TZts.js +35 -0
- package/dist/unpkg/dev-deprecated/utils-Cqw9eRj5.js +23 -0
- package/dist/unpkg/prod/-private-B1pSSN52.js +1210 -0
- package/dist/unpkg/prod/adapter/-private.js +1 -0
- package/dist/unpkg/prod/adapter/error.js +336 -0
- package/dist/unpkg/prod/adapter/json-api.js +132 -0
- package/dist/unpkg/prod/adapter/rest.js +1257 -0
- package/dist/unpkg/prod/adapter.js +1253 -0
- package/dist/unpkg/prod/compat/-private.js +1 -0
- package/dist/unpkg/prod/compat/builders.js +273 -0
- package/dist/unpkg/prod/compat/extensions.js +243 -0
- package/dist/unpkg/prod/compat/utils.js +224 -0
- package/dist/unpkg/prod/compat.js +1020 -0
- package/dist/unpkg/prod/declarations/adapter/-private/build-url-mixin.d.ts +33 -0
- package/dist/unpkg/prod/declarations/adapter/-private/fastboot-interface.d.ts +8 -0
- package/dist/unpkg/prod/declarations/adapter/-private/utils/continue-on-reject.d.ts +1 -0
- package/dist/unpkg/prod/declarations/adapter/-private/utils/determine-body-promise.d.ts +4 -0
- package/dist/unpkg/prod/declarations/adapter/-private/utils/fetch.d.ts +8 -0
- package/dist/unpkg/prod/declarations/adapter/-private/utils/parse-response-headers.d.ts +1 -0
- package/dist/unpkg/prod/declarations/adapter/-private/utils/serialize-into-hash.d.ts +6 -0
- package/dist/unpkg/prod/declarations/adapter/-private/utils/serialize-query-params.d.ts +5 -0
- package/dist/unpkg/prod/declarations/adapter/-private.d.ts +5 -0
- package/dist/unpkg/prod/declarations/adapter/error.d.ts +215 -0
- package/dist/unpkg/prod/declarations/adapter/json-api.d.ts +231 -0
- package/dist/unpkg/prod/declarations/adapter/rest.d.ts +815 -0
- package/dist/unpkg/prod/declarations/adapter.d.ts +770 -0
- package/dist/unpkg/prod/declarations/compat/-private.d.ts +13 -0
- package/dist/unpkg/prod/declarations/compat/builders/find-all.d.ts +35 -0
- package/dist/unpkg/prod/declarations/compat/builders/find-record.d.ts +56 -0
- package/dist/unpkg/prod/declarations/compat/builders/query.d.ts +66 -0
- package/dist/unpkg/prod/declarations/compat/builders/save-record.d.ts +34 -0
- package/dist/unpkg/prod/declarations/compat/builders/utils.d.ts +3 -0
- package/dist/unpkg/prod/declarations/compat/builders.d.ts +14 -0
- package/dist/unpkg/prod/declarations/compat/extensions.d.ts +59 -0
- package/dist/unpkg/prod/declarations/compat/legacy-network-handler/fetch-manager.d.ts +55 -0
- package/dist/unpkg/prod/declarations/compat/legacy-network-handler/identifier-has-id.d.ts +2 -0
- package/dist/unpkg/prod/declarations/compat/legacy-network-handler/legacy-data-fetch.d.ts +11 -0
- package/dist/unpkg/prod/declarations/compat/legacy-network-handler/legacy-data-utils.d.ts +5 -0
- package/dist/unpkg/prod/declarations/compat/legacy-network-handler/legacy-network-handler.d.ts +2 -0
- package/dist/unpkg/prod/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts +524 -0
- package/dist/unpkg/prod/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts +213 -0
- package/dist/unpkg/prod/declarations/compat/legacy-network-handler/serializer-response.d.ts +6 -0
- package/dist/unpkg/prod/declarations/compat/legacy-network-handler/snapshot-record-array.d.ts +110 -0
- package/dist/unpkg/prod/declarations/compat/legacy-network-handler/snapshot.d.ts +255 -0
- package/dist/unpkg/prod/declarations/compat/utils.d.ts +137 -0
- package/dist/unpkg/prod/declarations/compat.d.ts +157 -0
- package/dist/unpkg/prod/declarations/index.d.ts +70 -0
- package/dist/unpkg/prod/declarations/model/-private/attr.d.ts +170 -0
- package/dist/unpkg/prod/declarations/model/-private/belongs-to.d.ts +174 -0
- package/dist/unpkg/prod/declarations/model/-private/debug/assert-polymorphic-type.d.ts +5 -0
- package/dist/unpkg/prod/declarations/model/-private/errors.d.ts +289 -0
- package/dist/unpkg/prod/declarations/model/-private/has-many.d.ts +162 -0
- package/dist/unpkg/prod/declarations/model/-private/hooks.d.ts +10 -0
- package/dist/unpkg/prod/declarations/model/-private/legacy-relationships-support.d.ts +47 -0
- package/dist/unpkg/prod/declarations/model/-private/model-for-mixin.d.ts +3 -0
- package/dist/unpkg/prod/declarations/model/-private/model-methods.d.ts +39 -0
- package/dist/unpkg/prod/declarations/model/-private/model.d.ts +1269 -0
- package/dist/unpkg/prod/declarations/model/-private/notify-changes.d.ts +4 -0
- package/dist/unpkg/prod/declarations/model/-private/promise-belongs-to.d.ts +40 -0
- package/dist/unpkg/prod/declarations/model/-private/promise-many-array.d.ts +124 -0
- package/dist/unpkg/prod/declarations/model/-private/record-state.d.ts +58 -0
- package/dist/unpkg/prod/declarations/model/-private/references/belongs-to.d.ts +498 -0
- package/dist/unpkg/prod/declarations/model/-private/references/has-many.d.ts +500 -0
- package/dist/unpkg/prod/declarations/model/-private/schema-provider.d.ts +56 -0
- package/dist/unpkg/prod/declarations/model/-private/type-utils.d.ts +57 -0
- package/dist/unpkg/prod/declarations/model/-private/util.d.ts +5 -0
- package/dist/unpkg/prod/declarations/model/-private.d.ts +8 -0
- package/dist/unpkg/prod/declarations/model/migration-support.d.ts +280 -0
- package/dist/unpkg/prod/declarations/model-fragments/extensions/fragment-array.d.ts +16 -0
- package/dist/unpkg/prod/declarations/model-fragments/extensions/fragment.d.ts +15 -0
- package/dist/unpkg/prod/declarations/model-fragments/hooks/model-for.d.ts +20 -0
- package/dist/unpkg/prod/declarations/model-fragments/index.d.ts +5 -0
- package/dist/unpkg/prod/declarations/model-fragments/instance-initializers/fragment-extensions.d.ts +9 -0
- package/dist/unpkg/prod/declarations/model-fragments/utilities/with-array-defaults.d.ts +15 -0
- package/dist/unpkg/prod/declarations/model-fragments/utilities/with-fragment-array-defaults.d.ts +20 -0
- package/dist/unpkg/prod/declarations/model-fragments/utilities/with-fragment-defaults.d.ts +19 -0
- package/dist/unpkg/prod/declarations/model-fragments/utilities/with-legacy.d.ts +3 -0
- package/dist/unpkg/prod/declarations/model-fragments.d.ts +9 -0
- package/dist/unpkg/prod/declarations/model.d.ts +49 -0
- package/dist/unpkg/prod/declarations/serializer/-private/embedded-records-mixin.d.ts +91 -0
- package/dist/unpkg/prod/declarations/serializer/-private/transforms/boolean.d.ts +47 -0
- package/dist/unpkg/prod/declarations/serializer/-private/transforms/date.d.ts +28 -0
- package/dist/unpkg/prod/declarations/serializer/-private/transforms/number.d.ts +29 -0
- package/dist/unpkg/prod/declarations/serializer/-private/transforms/string.d.ts +29 -0
- package/dist/unpkg/prod/declarations/serializer/-private/transforms/transform.d.ts +118 -0
- package/dist/unpkg/prod/declarations/serializer/-private/utils.d.ts +3 -0
- package/dist/unpkg/prod/declarations/serializer/json-api.d.ts +123 -0
- package/dist/unpkg/prod/declarations/serializer/json.d.ts +75 -0
- package/dist/unpkg/prod/declarations/serializer/rest.d.ts +51 -0
- package/dist/unpkg/prod/declarations/serializer/transform.d.ts +5 -0
- package/dist/unpkg/prod/declarations/serializer.d.ts +254 -0
- package/dist/unpkg/prod/declarations/store/-private.d.ts +223 -0
- package/dist/unpkg/prod/declarations/store.d.ts +3 -0
- package/dist/unpkg/prod/errors-CIGPcDvd.js +2595 -0
- package/dist/unpkg/prod/hooks-QqRnX108.js +74 -0
- package/dist/unpkg/prod/index.js +195 -0
- package/dist/unpkg/prod/json-BNrV8EYG.js +1272 -0
- package/dist/unpkg/prod/model/-private.js +1 -0
- package/dist/unpkg/prod/model/migration-support.js +579 -0
- package/dist/unpkg/prod/model-for-CqXsIKws.js +221 -0
- package/dist/unpkg/prod/model-fragments.js +76 -0
- package/dist/unpkg/prod/model.js +667 -0
- package/dist/unpkg/prod/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
- package/dist/unpkg/prod/schema-provider-g5MfTj8n.js +2338 -0
- package/dist/unpkg/prod/serialize-into-hash-BnYvPex3.js +261 -0
- package/dist/unpkg/prod/serializer/json-api.js +527 -0
- package/dist/unpkg/prod/serializer/json.js +6 -0
- package/dist/unpkg/prod/serializer/rest.js +1243 -0
- package/dist/unpkg/prod/serializer/transform.js +278 -0
- package/dist/unpkg/prod/serializer.js +248 -0
- package/dist/unpkg/prod/store.js +636 -0
- package/dist/unpkg/prod/util-Dul6TZts.js +35 -0
- package/dist/unpkg/prod/utils-Cqw9eRj5.js +23 -0
- package/dist/unpkg/prod-deprecated/-private-B1pSSN52.js +1210 -0
- package/dist/unpkg/prod-deprecated/adapter/-private.js +1 -0
- package/dist/unpkg/prod-deprecated/adapter/error.js +336 -0
- package/dist/unpkg/prod-deprecated/adapter/json-api.js +132 -0
- package/dist/unpkg/prod-deprecated/adapter/rest.js +1257 -0
- package/dist/unpkg/prod-deprecated/adapter.js +1253 -0
- package/dist/unpkg/prod-deprecated/compat/-private.js +1 -0
- package/dist/unpkg/prod-deprecated/compat/builders.js +273 -0
- package/dist/unpkg/prod-deprecated/compat/extensions.js +243 -0
- package/dist/unpkg/prod-deprecated/compat/utils.js +224 -0
- package/dist/unpkg/prod-deprecated/compat.js +1020 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter/-private/build-url-mixin.d.ts +33 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter/-private/fastboot-interface.d.ts +8 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter/-private/utils/continue-on-reject.d.ts +1 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter/-private/utils/determine-body-promise.d.ts +4 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter/-private/utils/fetch.d.ts +8 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter/-private/utils/parse-response-headers.d.ts +1 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter/-private/utils/serialize-into-hash.d.ts +6 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter/-private/utils/serialize-query-params.d.ts +5 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter/-private.d.ts +5 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter/error.d.ts +215 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter/json-api.d.ts +231 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter/rest.d.ts +815 -0
- package/dist/unpkg/prod-deprecated/declarations/adapter.d.ts +770 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/-private.d.ts +13 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/builders/find-all.d.ts +35 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/builders/find-record.d.ts +56 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/builders/query.d.ts +66 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/builders/save-record.d.ts +34 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/builders/utils.d.ts +3 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/builders.d.ts +14 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/extensions.d.ts +59 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/fetch-manager.d.ts +55 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/identifier-has-id.d.ts +2 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/legacy-data-fetch.d.ts +11 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/legacy-data-utils.d.ts +5 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/legacy-network-handler.d.ts +2 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts +524 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts +213 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/serializer-response.d.ts +6 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/snapshot-record-array.d.ts +110 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/legacy-network-handler/snapshot.d.ts +255 -0
- package/dist/unpkg/prod-deprecated/declarations/compat/utils.d.ts +137 -0
- package/dist/unpkg/prod-deprecated/declarations/compat.d.ts +157 -0
- package/dist/unpkg/prod-deprecated/declarations/index.d.ts +70 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/attr.d.ts +170 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/belongs-to.d.ts +174 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/debug/assert-polymorphic-type.d.ts +5 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/errors.d.ts +289 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/has-many.d.ts +162 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/hooks.d.ts +10 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/legacy-relationships-support.d.ts +47 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/model-for-mixin.d.ts +3 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/model-methods.d.ts +39 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/model.d.ts +1269 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/notify-changes.d.ts +4 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/promise-belongs-to.d.ts +40 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/promise-many-array.d.ts +124 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/record-state.d.ts +58 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/references/belongs-to.d.ts +498 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/references/has-many.d.ts +500 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/schema-provider.d.ts +56 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/type-utils.d.ts +57 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private/util.d.ts +5 -0
- package/dist/unpkg/prod-deprecated/declarations/model/-private.d.ts +8 -0
- package/dist/unpkg/prod-deprecated/declarations/model/migration-support.d.ts +280 -0
- package/dist/unpkg/prod-deprecated/declarations/model-fragments/extensions/fragment-array.d.ts +16 -0
- package/dist/unpkg/prod-deprecated/declarations/model-fragments/extensions/fragment.d.ts +15 -0
- package/dist/unpkg/prod-deprecated/declarations/model-fragments/hooks/model-for.d.ts +20 -0
- package/dist/unpkg/prod-deprecated/declarations/model-fragments/index.d.ts +5 -0
- package/dist/unpkg/prod-deprecated/declarations/model-fragments/instance-initializers/fragment-extensions.d.ts +9 -0
- package/dist/unpkg/prod-deprecated/declarations/model-fragments/utilities/with-array-defaults.d.ts +15 -0
- package/dist/unpkg/prod-deprecated/declarations/model-fragments/utilities/with-fragment-array-defaults.d.ts +20 -0
- package/dist/unpkg/prod-deprecated/declarations/model-fragments/utilities/with-fragment-defaults.d.ts +19 -0
- package/dist/unpkg/prod-deprecated/declarations/model-fragments/utilities/with-legacy.d.ts +3 -0
- package/dist/unpkg/prod-deprecated/declarations/model-fragments.d.ts +9 -0
- package/dist/unpkg/prod-deprecated/declarations/model.d.ts +49 -0
- package/dist/unpkg/prod-deprecated/declarations/serializer/-private/embedded-records-mixin.d.ts +91 -0
- package/dist/unpkg/prod-deprecated/declarations/serializer/-private/transforms/boolean.d.ts +47 -0
- package/dist/unpkg/prod-deprecated/declarations/serializer/-private/transforms/date.d.ts +28 -0
- package/dist/unpkg/prod-deprecated/declarations/serializer/-private/transforms/number.d.ts +29 -0
- package/dist/unpkg/prod-deprecated/declarations/serializer/-private/transforms/string.d.ts +29 -0
- package/dist/unpkg/prod-deprecated/declarations/serializer/-private/transforms/transform.d.ts +118 -0
- package/dist/unpkg/prod-deprecated/declarations/serializer/-private/utils.d.ts +3 -0
- package/dist/unpkg/prod-deprecated/declarations/serializer/json-api.d.ts +123 -0
- package/dist/unpkg/prod-deprecated/declarations/serializer/json.d.ts +75 -0
- package/dist/unpkg/prod-deprecated/declarations/serializer/rest.d.ts +51 -0
- package/dist/unpkg/prod-deprecated/declarations/serializer/transform.d.ts +5 -0
- package/dist/unpkg/prod-deprecated/declarations/serializer.d.ts +254 -0
- package/dist/unpkg/prod-deprecated/declarations/store/-private.d.ts +223 -0
- package/dist/unpkg/prod-deprecated/declarations/store.d.ts +3 -0
- package/dist/unpkg/prod-deprecated/errors-CIGPcDvd.js +2595 -0
- package/dist/unpkg/prod-deprecated/hooks-QqRnX108.js +74 -0
- package/dist/unpkg/prod-deprecated/index.js +195 -0
- package/dist/unpkg/prod-deprecated/json-BNrV8EYG.js +1272 -0
- package/dist/unpkg/prod-deprecated/model/-private.js +1 -0
- package/dist/unpkg/prod-deprecated/model/migration-support.js +579 -0
- package/dist/unpkg/prod-deprecated/model-for-CqXsIKws.js +221 -0
- package/dist/unpkg/prod-deprecated/model-fragments.js +76 -0
- package/dist/unpkg/prod-deprecated/model.js +667 -0
- package/dist/unpkg/prod-deprecated/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
- package/dist/unpkg/prod-deprecated/schema-provider-g5MfTj8n.js +2338 -0
- package/dist/unpkg/prod-deprecated/serialize-into-hash-BnYvPex3.js +261 -0
- package/dist/unpkg/prod-deprecated/serializer/json-api.js +527 -0
- package/dist/unpkg/prod-deprecated/serializer/json.js +6 -0
- package/dist/unpkg/prod-deprecated/serializer/rest.js +1243 -0
- package/dist/unpkg/prod-deprecated/serializer/transform.js +278 -0
- package/dist/unpkg/prod-deprecated/serializer.js +248 -0
- package/dist/unpkg/prod-deprecated/store.js +636 -0
- package/dist/unpkg/prod-deprecated/util-Dul6TZts.js +35 -0
- package/dist/unpkg/prod-deprecated/utils-Cqw9eRj5.js +23 -0
- package/package.json +30 -6
|
@@ -344,11 +344,11 @@ function isResourceIdentiferWithRelatedLinks$1(value) {
|
|
|
344
344
|
and manipulation of a hasMany relationship.
|
|
345
345
|
|
|
346
346
|
It is especially useful when you're dealing with `async` relationships
|
|
347
|
-
from `@
|
|
347
|
+
from `@warp-drive/legacy/model` as it allows synchronous access to
|
|
348
348
|
the relationship data if loaded, as well as APIs for loading, reloading
|
|
349
349
|
the data or accessing available information without triggering a load.
|
|
350
350
|
|
|
351
|
-
It may also be useful when using `sync` relationships with `@
|
|
351
|
+
It may also be useful when using `sync` relationships with `@warp-drive/legacy/model`
|
|
352
352
|
that need to be loaded/reloaded with more precise timing than marking the
|
|
353
353
|
relationship as `async` and relying on autofetch would have allowed.
|
|
354
354
|
|
|
@@ -951,11 +951,11 @@ function isResourceIdentiferWithRelatedLinks(value) {
|
|
|
951
951
|
and manipulation of a belongsTo relationship.
|
|
952
952
|
|
|
953
953
|
It is especially useful when you're dealing with `async` relationships
|
|
954
|
-
from `@
|
|
954
|
+
from `@warp-drive/legacy/model` as it allows synchronous access to
|
|
955
955
|
the relationship data if loaded, as well as APIs for loading, reloading
|
|
956
956
|
the data or accessing available information without triggering a load.
|
|
957
957
|
|
|
958
|
-
It may also be useful when using `sync` relationships with `@
|
|
958
|
+
It may also be useful when using `sync` relationships with `@warp-drive/legacy/model`
|
|
959
959
|
that need to be loaded/reloaded with more precise timing than marking the
|
|
960
960
|
relationship as `async` and relying on autofetch would have allowed.
|
|
961
961
|
|
|
@@ -1194,7 +1194,7 @@ class BelongsToReference {
|
|
|
1194
1194
|
use the "link" otherwise it defaults to "id".
|
|
1195
1195
|
Example
|
|
1196
1196
|
```js [app/models/post.js]
|
|
1197
|
-
import Model, { hasMany } from '@
|
|
1197
|
+
import Model, { hasMany } from '@warp-drive/legacy/model';
|
|
1198
1198
|
export default class PostModel extends Model {
|
|
1199
1199
|
@hasMany('comment', { async: true, inverse: null }) comments;
|
|
1200
1200
|
}
|
|
@@ -1430,7 +1430,7 @@ class BelongsToReference {
|
|
|
1430
1430
|
});
|
|
1431
1431
|
```
|
|
1432
1432
|
```js [app/adapters/user.js]
|
|
1433
|
-
import Adapter from '@
|
|
1433
|
+
import Adapter from '@warp-drive/legacy/adapter';
|
|
1434
1434
|
export default class UserAdapter extends Adapter {
|
|
1435
1435
|
findRecord(store, type, id, snapshot) {
|
|
1436
1436
|
// In the adapter you will have access to adapterOptions.
|
|
@@ -1722,7 +1722,7 @@ class LegacySupport {
|
|
|
1722
1722
|
}
|
|
1723
1723
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
1724
1724
|
{
|
|
1725
|
-
throw new Error('hasMany only works with the
|
|
1725
|
+
throw new Error('hasMany only works with the JSONAPICache');
|
|
1726
1726
|
}
|
|
1727
1727
|
})() : {};
|
|
1728
1728
|
}
|
|
@@ -1745,7 +1745,7 @@ class LegacySupport {
|
|
|
1745
1745
|
}
|
|
1746
1746
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
1747
1747
|
{
|
|
1748
|
-
throw new Error('hasMany only works with the
|
|
1748
|
+
throw new Error('hasMany only works with the JSONAPICache');
|
|
1749
1749
|
}
|
|
1750
1750
|
})() : {};
|
|
1751
1751
|
}
|
|
@@ -1774,7 +1774,7 @@ class LegacySupport {
|
|
|
1774
1774
|
}
|
|
1775
1775
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
1776
1776
|
{
|
|
1777
|
-
throw new Error(`hasMany only works with the
|
|
1777
|
+
throw new Error(`hasMany only works with the JSONAPICache`);
|
|
1778
1778
|
}
|
|
1779
1779
|
})() : {};
|
|
1780
1780
|
}
|
|
@@ -1807,7 +1807,7 @@ class LegacySupport {
|
|
|
1807
1807
|
}
|
|
1808
1808
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
1809
1809
|
{
|
|
1810
|
-
throw new Error(`hasMany only works with the
|
|
1810
|
+
throw new Error(`hasMany only works with the JSONAPICache`);
|
|
1811
1811
|
}
|
|
1812
1812
|
})() : {};
|
|
1813
1813
|
}
|
|
@@ -1860,7 +1860,7 @@ class LegacySupport {
|
|
|
1860
1860
|
// because of the intimate API access involved. This is something we will need to redesign.
|
|
1861
1861
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
1862
1862
|
{
|
|
1863
|
-
throw new Error(`snapshot.belongsTo only supported
|
|
1863
|
+
throw new Error(`snapshot.belongsTo only supported when using the JSONAPICache`);
|
|
1864
1864
|
}
|
|
1865
1865
|
})() : {};
|
|
1866
1866
|
}
|
|
@@ -1992,7 +1992,7 @@ class LegacySupport {
|
|
|
1992
1992
|
}
|
|
1993
1993
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
1994
1994
|
{
|
|
1995
|
-
throw new Error(`hasMany only works with the
|
|
1995
|
+
throw new Error(`hasMany only works with the JSONAPICache`);
|
|
1996
1996
|
}
|
|
1997
1997
|
})() : {};
|
|
1998
1998
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { setOwner, getOwner } from '@ember/application';
|
|
2
2
|
import { assertPrivateStore, setRecordIdentifier, StoreMap } from '@warp-drive/core/store/-private';
|
|
3
|
-
import { g as getModelFactory } from "./schema-provider-
|
|
3
|
+
import { g as getModelFactory } from "./schema-provider-g5MfTj8n.js";
|
|
4
4
|
import { n as normalizeModelName } from "./util-Dul6TZts.js";
|
|
5
5
|
import { macroCondition, getGlobalConfig } from '@embroider/macros';
|
|
6
6
|
function instantiateRecord(identifier, createRecordArgs) {
|
package/dist/index.js
CHANGED
|
@@ -9,11 +9,11 @@ import '@ember/debug';
|
|
|
9
9
|
import '@warp-drive/utilities/string';
|
|
10
10
|
import { macroCondition, getGlobalConfig } from '@embroider/macros';
|
|
11
11
|
import '@warp-drive/core/store/-private';
|
|
12
|
-
import "./errors-
|
|
13
|
-
import "./schema-provider-
|
|
14
|
-
import { i as instantiateRecord, t as teardownRecord, m as modelFor } from "./hooks-
|
|
12
|
+
import "./errors-CIGPcDvd.js";
|
|
13
|
+
import "./schema-provider-g5MfTj8n.js";
|
|
14
|
+
import { i as instantiateRecord, t as teardownRecord, m as modelFor } from "./hooks-QqRnX108.js";
|
|
15
15
|
import { registerDerivations as registerDerivations$1, DelegatingSchemaService } from './model/migration-support.js';
|
|
16
|
-
import { F as FragmentExtension, a as FragmentArrayExtension, f as fragmentsModelFor } from "./model-for-
|
|
16
|
+
import { F as FragmentExtension, a as FragmentArrayExtension, f as fragmentsModelFor } from "./model-for-CqXsIKws.js";
|
|
17
17
|
import { restoreDeprecatedStoreBehaviors } from './store.js';
|
|
18
18
|
|
|
19
19
|
/**
|
|
@@ -44,7 +44,7 @@ const PRIMARY_ATTRIBUTE_KEY = 'base';
|
|
|
44
44
|
For example, given the following `User` model and JSON payload:
|
|
45
45
|
|
|
46
46
|
```js [app/models/user.js]
|
|
47
|
-
import Model, { attr, belongsTo, hasMany } from '@
|
|
47
|
+
import Model, { attr, belongsTo, hasMany } from '@warp-drive/legacy/model';
|
|
48
48
|
|
|
49
49
|
export default class UserModel extends Model {
|
|
50
50
|
@hasMany('user') friends;
|
|
@@ -127,7 +127,7 @@ const JSONSerializer = Serializer.extend({
|
|
|
127
127
|
the response payload.
|
|
128
128
|
Example
|
|
129
129
|
```js [app/models/person.js]
|
|
130
|
-
import Model, { attr } from '@
|
|
130
|
+
import Model, { attr } from '@warp-drive/legacy/model';
|
|
131
131
|
export default class PersonModel extends Model {
|
|
132
132
|
@attr('string') firstName;
|
|
133
133
|
@attr('string') lastName;
|
|
@@ -769,7 +769,7 @@ const JSONSerializer = Serializer.extend({
|
|
|
769
769
|
each attribute and belongsTo relationship.
|
|
770
770
|
For example, consider this model:
|
|
771
771
|
```js [app/models/comment.js]
|
|
772
|
-
import Model, { attr, belongsTo } from '@
|
|
772
|
+
import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
|
|
773
773
|
export default class CommentModel extends Model {
|
|
774
774
|
@attr title;
|
|
775
775
|
@attr body;
|
|
@@ -904,7 +904,7 @@ const JSONSerializer = Serializer.extend({
|
|
|
904
904
|
The hash property should be modified by reference.
|
|
905
905
|
For example, your server may expect underscored root objects.
|
|
906
906
|
```js [app/serializers/application.js]
|
|
907
|
-
import RESTSerializer from '@
|
|
907
|
+
import RESTSerializer from '@warp-drive/legacy/serializer/rest';
|
|
908
908
|
import { underscoren} from '<app-name>/utils/string-utils';
|
|
909
909
|
export default class ApplicationSerializer extends RESTSerializer {
|
|
910
910
|
serializeIntoHash(data, type, snapshot, options) {
|
package/dist/model/-private.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { E as Errors, L as LEGACY_SUPPORT, P as PromiseBelongsTo, a as PromiseManyArray, l as lookupLegacySupport } from "../errors-
|
|
1
|
+
export { E as Errors, L as LEGACY_SUPPORT, P as PromiseBelongsTo, a as PromiseManyArray, l as lookupLegacySupport } from "../errors-CIGPcDvd.js";
|
|
@@ -4,20 +4,20 @@ import { Context } from '@warp-drive/core/reactive/-private';
|
|
|
4
4
|
import { notifyInternalSignal, assertPrivateStore } from '@warp-drive/core/store/-private';
|
|
5
5
|
import { getOrSetGlobal } from '@warp-drive/core/types/-private';
|
|
6
6
|
import { Type } from '@warp-drive/core/types/symbols';
|
|
7
|
-
import { l as lookupLegacySupport, E as Errors } from "../errors-
|
|
8
|
-
import { b as buildSchema, u as unloadRecord, s as serialize, _ as _save, a as save, r as rollbackAttributes, c as _reload, d as reload, h as hasMany, e as _destroyRecord, f as destroyRecord, i as deleteRecord, R as RecordState, j as changedAttributes, k as belongsTo, l as createSnapshot } from "../schema-provider-
|
|
7
|
+
import { l as lookupLegacySupport, E as Errors } from "../errors-CIGPcDvd.js";
|
|
8
|
+
import { b as buildSchema, u as unloadRecord, s as serialize, _ as _save, a as save, r as rollbackAttributes, c as _reload, d as reload, h as hasMany, e as _destroyRecord, f as destroyRecord, i as deleteRecord, R as RecordState, j as changedAttributes, k as belongsTo, l as createSnapshot } from "../schema-provider-g5MfTj8n.js";
|
|
9
9
|
import { macroCondition, getGlobalConfig } from '@embroider/macros';
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
* This module provides support for migrating away from @
|
|
13
|
-
* to @warp-drive/
|
|
12
|
+
* This module provides support for migrating away from @warp-drive/legacy/model
|
|
13
|
+
* to ReactiveResource from @warp-drive/core/reactive.
|
|
14
14
|
*
|
|
15
15
|
* It includes:
|
|
16
16
|
*
|
|
17
17
|
* - A `withDefaults` function to assist in creating a schema in LegacyMode
|
|
18
18
|
* - A `registerDerivations` function to register the derivations necessary to support LegacyMode
|
|
19
19
|
* - A `DelegatingSchemaService` that can be used to provide a schema service that works with both
|
|
20
|
-
* @
|
|
20
|
+
* @warp-drive/legacy/model and @warp-drive/core/reactive simultaneously for migration purposes.
|
|
21
21
|
* - A `WithLegacy` type util that can be used to create a type that includes the legacy
|
|
22
22
|
* properties and methods of a record.
|
|
23
23
|
*
|
|
@@ -32,14 +32,14 @@ const LegacyFields = ['_createSnapshot', 'adapterError', 'belongsTo', 'changedAt
|
|
|
32
32
|
|
|
33
33
|
/**
|
|
34
34
|
* A Type utility that enables quickly adding type information for the fields
|
|
35
|
-
* defined by `import { withDefaults } from '@
|
|
35
|
+
* defined by `import { withDefaults } from '@warp-drive/legacy/model/migration-support'`.
|
|
36
36
|
*
|
|
37
37
|
* Example:
|
|
38
38
|
*
|
|
39
39
|
* ```ts
|
|
40
|
-
* import { withDefaults, WithLegacy } from '@
|
|
41
|
-
* import { Type } from '@warp-drive/core
|
|
42
|
-
* import type { HasMany } from '
|
|
40
|
+
* import { withDefaults, WithLegacy } from '@warp-drive/legacy/model/migration-support';
|
|
41
|
+
* import { Type } from '@warp-drive/core/types/symbols';
|
|
42
|
+
* import type { HasMany } from '@@warp-drive/legacy/model';
|
|
43
43
|
*
|
|
44
44
|
* export const UserSchema = withDefaults({
|
|
45
45
|
* type: 'user',
|
|
@@ -156,14 +156,14 @@ legacySupport[Type] = '@legacy';
|
|
|
156
156
|
/**
|
|
157
157
|
* A function which adds the necessary fields to a schema and marks it as
|
|
158
158
|
* being in LegacyMode. This is used to support the legacy features of
|
|
159
|
-
* @
|
|
159
|
+
* @warp-drive/legacy/model while migrating to WarpDrive.
|
|
160
160
|
*
|
|
161
161
|
* Example:
|
|
162
162
|
*
|
|
163
163
|
* ```ts
|
|
164
|
-
* import { withDefaults, WithLegacy } from '@
|
|
165
|
-
* import { Type } from '@warp-drive/core
|
|
166
|
-
* import type { HasMany } from '@
|
|
164
|
+
* import { withDefaults, WithLegacy } from '@warp-drive/legacy/model/migration-support';
|
|
165
|
+
* import { Type } from '@warp-drive/core/types/symbols';
|
|
166
|
+
* import type { HasMany } from '@warp-drive/legacy/model';
|
|
167
167
|
*
|
|
168
168
|
* export const UserSchema = withDefaults({
|
|
169
169
|
* type: 'user',
|
|
@@ -198,13 +198,13 @@ legacySupport[Type] = '@legacy';
|
|
|
198
198
|
* it requires with the schema service.
|
|
199
199
|
*
|
|
200
200
|
* ```ts
|
|
201
|
-
* import { registerDerivations } from '@
|
|
201
|
+
* import { registerDerivations } from '@warp-drive/legacy/model/migration-support';
|
|
202
202
|
*
|
|
203
203
|
* registerDerivations(schema);
|
|
204
204
|
* ```
|
|
205
205
|
*
|
|
206
|
-
* @param
|
|
207
|
-
* @return
|
|
206
|
+
* @param schema The schema to add legacy support to.
|
|
207
|
+
* @return The schema with legacy support added.
|
|
208
208
|
* @public
|
|
209
209
|
*/
|
|
210
210
|
function withDefaults(schema) {
|
|
@@ -248,6 +248,26 @@ function withDefaults(schema) {
|
|
|
248
248
|
schema.objectExtensions.push('deprecated-model-behaviors');
|
|
249
249
|
return schema;
|
|
250
250
|
}
|
|
251
|
+
|
|
252
|
+
/**
|
|
253
|
+
* Adds the necessasary fields to the schema for supporting
|
|
254
|
+
* the deprecated request methods on LegacyMode schemas.
|
|
255
|
+
*
|
|
256
|
+
* Use this instead of `withDefaults` to add the fields
|
|
257
|
+
* and behaviors necessary to support Model-Like capabilities.
|
|
258
|
+
*
|
|
259
|
+
* ```ts
|
|
260
|
+
* import { withRestoredDeprecatedModelRequestBehaviors } from '@warp-drive/legacy/model/migration-support';
|
|
261
|
+
*
|
|
262
|
+
* export const UserSchema = withRestoredDeprecatedModelRequestBehaviors({
|
|
263
|
+
* type: 'user',
|
|
264
|
+
* fields: [
|
|
265
|
+
* { name: 'firstName', kind: 'attribute' },
|
|
266
|
+
* { name: 'lastName', kind: 'attribute' },
|
|
267
|
+
* ]
|
|
268
|
+
* });
|
|
269
|
+
* ```
|
|
270
|
+
*/
|
|
251
271
|
function withRestoredDeprecatedModelRequestBehaviors(schema) {
|
|
252
272
|
schema.legacy = true;
|
|
253
273
|
schema.identity = {
|
|
@@ -293,13 +313,10 @@ function withRestoredDeprecatedModelRequestBehaviors(schema) {
|
|
|
293
313
|
|
|
294
314
|
/**
|
|
295
315
|
* A function which registers the necessary derivations to support
|
|
296
|
-
* the LegacyMode features of @
|
|
297
|
-
*
|
|
298
|
-
* This must be called in order to use the fields added by:
|
|
316
|
+
* the LegacyMode features of @warp-drive/legacy/model while migrating to WarpDrive.
|
|
299
317
|
*
|
|
300
|
-
*
|
|
301
|
-
*
|
|
302
|
-
* ```
|
|
318
|
+
* This must be called in order to use the fields added by {@link withDefaults} or
|
|
319
|
+
* {@link withRestoredDeprecatedModelRequestBehaviors}.
|
|
303
320
|
*
|
|
304
321
|
* @param schema The schema service to register the derivations with.
|
|
305
322
|
* @public
|
|
@@ -398,8 +415,8 @@ function registerDerivations(schema) {
|
|
|
398
415
|
* provide their own schema information to the application.
|
|
399
416
|
*
|
|
400
417
|
* ```ts
|
|
401
|
-
* import { DelegatingSchemaService } from '@
|
|
402
|
-
* import { SchemaService } from '@warp-drive/
|
|
418
|
+
* import { DelegatingSchemaService } from '@warp-drive/legacy/model/migration-support';
|
|
419
|
+
* import { SchemaService } from '@warp-drive/core/reactive';
|
|
403
420
|
*
|
|
404
421
|
* class AppStore extends Store {
|
|
405
422
|
* createSchemaService() {
|
|
@@ -136,7 +136,7 @@ function getShimClass(store, modelName) {
|
|
|
136
136
|
}
|
|
137
137
|
const AttributeKinds = ['field', 'attribute', 'object', 'array', 'schema-object', 'schema-array'];
|
|
138
138
|
|
|
139
|
-
// Mimics the static apis of @
|
|
139
|
+
// Mimics the static apis of @warp-drive/legacy/model
|
|
140
140
|
class ShimModelClass {
|
|
141
141
|
constructor(store, modelName) {
|
|
142
142
|
this.__store = store;
|
package/dist/model-fragments.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { singularize, pluralize } from '@warp-drive/utilities/string';
|
|
2
2
|
import { withDefaults } from './model/migration-support.js';
|
|
3
|
-
import { F as FragmentExtension, a as FragmentArrayExtension } from "./model-for-
|
|
4
|
-
export { c as Fragment, b as FragmentArray, m as modelFor } from "./model-for-
|
|
3
|
+
import { F as FragmentExtension, a as FragmentArrayExtension } from "./model-for-CqXsIKws.js";
|
|
4
|
+
export { c as Fragment, b as FragmentArray, m as modelFor } from "./model-for-CqXsIKws.js";
|
|
5
5
|
|
|
6
6
|
/**
|
|
7
7
|
* Used as a helper to setup the relevant parts of an array
|
package/dist/model.js
CHANGED
|
@@ -5,10 +5,10 @@ import { i as isElementDescriptor, n as normalizeModelName } from "./util-Dul6TZ
|
|
|
5
5
|
import { macroCondition, getGlobalConfig } from '@embroider/macros';
|
|
6
6
|
import { warn, deprecate } from '@ember/debug';
|
|
7
7
|
import { assertPrivateStore } from '@warp-drive/core/store/-private';
|
|
8
|
-
import { l as lookupLegacySupport } from "./errors-
|
|
8
|
+
import { l as lookupLegacySupport } from "./errors-CIGPcDvd.js";
|
|
9
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-
|
|
11
|
-
export { i as instantiateRecord, m as modelFor, t as teardownRecord } from "./hooks-
|
|
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
12
|
function _attr(type, options) {
|
|
13
13
|
if (typeof type === 'object') {
|
|
14
14
|
options = type;
|
|
@@ -4,7 +4,7 @@ import EmberObject from '@ember/object';
|
|
|
4
4
|
import { recordIdentifierFor, storeFor } from '@warp-drive/core';
|
|
5
5
|
import { assertPrivateStore, notifyInternalSignal, peekInternalSignal, withSignalStore, recordIdentifierFor as recordIdentifierFor$1, gate, memoized, defineSignal, coerceId, entangleSignal, defineGate } from '@warp-drive/core/store/-private';
|
|
6
6
|
import { RecordStore } from '@warp-drive/core/types/symbols';
|
|
7
|
-
import { l as lookupLegacySupport, L as LEGACY_SUPPORT, E as Errors } from "./errors-
|
|
7
|
+
import { l as lookupLegacySupport, L as LEGACY_SUPPORT, E as Errors } from "./errors-CIGPcDvd.js";
|
|
8
8
|
import { u as upgradeStore, F as FetchManager } from "./-private-B1pSSN52.js";
|
|
9
9
|
import { macroCondition, getGlobalConfig } from '@embroider/macros';
|
|
10
10
|
import { cacheFor } from '@ember/object/internals';
|
|
@@ -2112,7 +2112,7 @@ class ModelSchemaProvider {
|
|
|
2112
2112
|
hasTrait(type) {
|
|
2113
2113
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
2114
2114
|
{
|
|
2115
|
-
throw new Error(`hasTrait is not available with @
|
|
2115
|
+
throw new Error(`hasTrait is not available with @warp-drive/legacy/model's SchemaService`);
|
|
2116
2116
|
}
|
|
2117
2117
|
})() : {};
|
|
2118
2118
|
return false;
|
|
@@ -2120,7 +2120,7 @@ class ModelSchemaProvider {
|
|
|
2120
2120
|
resourceHasTrait(resource, trait) {
|
|
2121
2121
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
2122
2122
|
{
|
|
2123
|
-
throw new Error(`resourceHasTrait is not available with @
|
|
2123
|
+
throw new Error(`resourceHasTrait is not available with @warp-drive/legacy/model's SchemaService`);
|
|
2124
2124
|
}
|
|
2125
2125
|
})() : {};
|
|
2126
2126
|
return false;
|
|
@@ -2128,21 +2128,21 @@ class ModelSchemaProvider {
|
|
|
2128
2128
|
transformation(field) {
|
|
2129
2129
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
2130
2130
|
{
|
|
2131
|
-
throw new Error(`transformation is not available with @
|
|
2131
|
+
throw new Error(`transformation is not available with @warp-drive/legacy/model's SchemaService`);
|
|
2132
2132
|
}
|
|
2133
2133
|
})() : {};
|
|
2134
2134
|
}
|
|
2135
2135
|
derivation(field) {
|
|
2136
2136
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
2137
2137
|
{
|
|
2138
|
-
throw new Error(`derivation is not available with @
|
|
2138
|
+
throw new Error(`derivation is not available with @warp-drive/legacy/model's SchemaService`);
|
|
2139
2139
|
}
|
|
2140
2140
|
})() : {};
|
|
2141
2141
|
}
|
|
2142
2142
|
hashFn(field) {
|
|
2143
2143
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
2144
2144
|
{
|
|
2145
|
-
throw new Error(`hashFn is not available with @
|
|
2145
|
+
throw new Error(`hashFn is not available with @warp-drive/legacy/model's SchemaService`);
|
|
2146
2146
|
}
|
|
2147
2147
|
})() : {};
|
|
2148
2148
|
}
|
|
@@ -2156,35 +2156,35 @@ class ModelSchemaProvider {
|
|
|
2156
2156
|
registerResources(schemas) {
|
|
2157
2157
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
2158
2158
|
{
|
|
2159
|
-
throw new Error(`registerResources is not available with @
|
|
2159
|
+
throw new Error(`registerResources is not available with @warp-drive/legacy/model's SchemaService`);
|
|
2160
2160
|
}
|
|
2161
2161
|
})() : {};
|
|
2162
2162
|
}
|
|
2163
2163
|
registerResource(schema) {
|
|
2164
2164
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
2165
2165
|
{
|
|
2166
|
-
throw new Error(`registerResource is not available with @
|
|
2166
|
+
throw new Error(`registerResource is not available with @warp-drive/legacy/model's SchemaService`);
|
|
2167
2167
|
}
|
|
2168
2168
|
})() : {};
|
|
2169
2169
|
}
|
|
2170
2170
|
registerTransformation(transform) {
|
|
2171
2171
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
2172
2172
|
{
|
|
2173
|
-
throw new Error(`registerTransformation is not available with @
|
|
2173
|
+
throw new Error(`registerTransformation is not available with @warp-drive/legacy/model's SchemaService`);
|
|
2174
2174
|
}
|
|
2175
2175
|
})() : {};
|
|
2176
2176
|
}
|
|
2177
2177
|
registerDerivation(derivation) {
|
|
2178
2178
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
2179
2179
|
{
|
|
2180
|
-
throw new Error(`registerDerivation is not available with @
|
|
2180
|
+
throw new Error(`registerDerivation is not available with @warp-drive/legacy/model's SchemaService`);
|
|
2181
2181
|
}
|
|
2182
2182
|
})() : {};
|
|
2183
2183
|
}
|
|
2184
2184
|
registerHashFn(hashFn) {
|
|
2185
2185
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
2186
2186
|
{
|
|
2187
|
-
throw new Error(`registerHashFn is not available with @
|
|
2187
|
+
throw new Error(`registerHashFn is not available with @warp-drive/legacy/model's SchemaService`);
|
|
2188
2188
|
}
|
|
2189
2189
|
})() : {};
|
|
2190
2190
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { warn } from '@ember/debug';
|
|
2
2
|
import { dasherize, pluralize, singularize } from '@warp-drive/utilities/string';
|
|
3
|
-
import { J as JSONSerializer } from "../json-
|
|
3
|
+
import { J as JSONSerializer } from "../json-BNrV8EYG.js";
|
|
4
4
|
import { macroCondition, getGlobalConfig } from '@embroider/macros';
|
|
5
5
|
|
|
6
6
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
|
@@ -233,7 +233,7 @@ const JSONAPISerializer = JSONSerializer.extend({
|
|
|
233
233
|
This behaviour can be easily customized by extending this method.
|
|
234
234
|
Example
|
|
235
235
|
```js [app/serializers/application.js]
|
|
236
|
-
import JSONAPISerializer from '@
|
|
236
|
+
import JSONAPISerializer from '@warp-drive/legacy/serializer/json-api';
|
|
237
237
|
import { dasherize } from '<app-name>/utils/string-utils';
|
|
238
238
|
export default class ApplicationSerializer extends JSONAPISerializer {
|
|
239
239
|
keyForAttribute(attr, method) {
|
|
@@ -256,7 +256,7 @@ const JSONAPISerializer = JSONSerializer.extend({
|
|
|
256
256
|
This behaviour can be easily customized by extending this method.
|
|
257
257
|
Example
|
|
258
258
|
```js [app/serializers/post.js]
|
|
259
|
-
import JSONAPISerializer from '@
|
|
259
|
+
import JSONAPISerializer from '@warp-drive/legacy/serializer/json-api';
|
|
260
260
|
import { underscore } from '<app-name>/utils/string-utils';
|
|
261
261
|
export default class ApplicationSerializer extends JSONAPISerializer {
|
|
262
262
|
keyForRelationship(key, relationship, method) {
|
|
@@ -275,7 +275,7 @@ const JSONAPISerializer = JSONSerializer.extend({
|
|
|
275
275
|
record into JSON.
|
|
276
276
|
For example, consider this model:
|
|
277
277
|
```js [app/models/comment.js]
|
|
278
|
-
import Model, { attr, belongsTo } from '@
|
|
278
|
+
import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
|
|
279
279
|
export default class CommentModel extends Model {
|
|
280
280
|
@attr title;
|
|
281
281
|
@attr body;
|
|
@@ -326,7 +326,7 @@ const JSONAPISerializer = JSONSerializer.extend({
|
|
|
326
326
|
consider authoring your own adapter and serializer instead of extending
|
|
327
327
|
this class.
|
|
328
328
|
```js [app/serializers/post.js]
|
|
329
|
-
import JSONAPISerializer from '@
|
|
329
|
+
import JSONAPISerializer from '@warp-drive/legacy/serializer/json-api';
|
|
330
330
|
export default class PostSerializer extends JSONAPISerializer {
|
|
331
331
|
serialize(snapshot, options) {
|
|
332
332
|
let json = {
|
|
@@ -346,7 +346,7 @@ const JSONAPISerializer = JSONSerializer.extend({
|
|
|
346
346
|
application, you'll probably want to use `eachAttribute`
|
|
347
347
|
and `eachRelationship` on the record.
|
|
348
348
|
```js [app/serializers/application.js]
|
|
349
|
-
import JSONAPISerializer from '@
|
|
349
|
+
import JSONAPISerializer from '@warp-drive/legacy/serializer/json-api';
|
|
350
350
|
import { underscore, singularize } from '<app-name>/utils/string-utils';
|
|
351
351
|
export default class ApplicationSerializer extends JSONAPISerializer {
|
|
352
352
|
serialize(snapshot, options) {
|
|
@@ -385,7 +385,7 @@ const JSONAPISerializer = JSONSerializer.extend({
|
|
|
385
385
|
you can call `super.serialize` first and make the tweaks
|
|
386
386
|
on the returned object.
|
|
387
387
|
```js [app/serializers/post.js]
|
|
388
|
-
import JSONAPISerializer from '@
|
|
388
|
+
import JSONAPISerializer from '@warp-drive/legacy/serializer/json-api';
|
|
389
389
|
export default class PostSerializer extends JSONAPISerializer {
|
|
390
390
|
serialize(snapshot, options) {
|
|
391
391
|
let json = super.serialize(...arguments);
|
package/dist/serializer/json.js
CHANGED
|
@@ -2,5 +2,5 @@ import '@ember/application';
|
|
|
2
2
|
import '@ember/debug';
|
|
3
3
|
import '@warp-drive/utilities/string';
|
|
4
4
|
import '../serializer.js';
|
|
5
|
-
export { J as JSONSerializer } from "../json-
|
|
5
|
+
export { J as JSONSerializer } from "../json-BNrV8EYG.js";
|
|
6
6
|
import '@embroider/macros';
|
package/dist/serializer/rest.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { warn } from '@ember/debug';
|
|
2
2
|
import { camelize, dasherize, singularize } from '@warp-drive/utilities/string';
|
|
3
|
-
import { J as JSONSerializer, c as coerceId } from "../json-
|
|
3
|
+
import { J as JSONSerializer, c as coerceId } from "../json-BNrV8EYG.js";
|
|
4
4
|
import { macroCondition, getGlobalConfig } from '@embroider/macros';
|
|
5
5
|
import Mixin from '@ember/object/mixin';
|
|
6
6
|
|
|
@@ -25,7 +25,7 @@ import Mixin from '@ember/object/mixin';
|
|
|
25
25
|
Below is an example of a per-type serializer (`post` type).
|
|
26
26
|
|
|
27
27
|
```js [app/serializers/post.js]
|
|
28
|
-
import RESTSerializer, { EmbeddedRecordsMixin } from '@
|
|
28
|
+
import RESTSerializer, { EmbeddedRecordsMixin } from '@warp-drive/legacy/serializer/rest';
|
|
29
29
|
|
|
30
30
|
export default class PostSerializer extends RESTSerializer.extend(EmbeddedRecordsMixin) {
|
|
31
31
|
attrs = {
|
|
@@ -140,7 +140,7 @@ const EmbeddedRecordsMixin = Mixin.create({
|
|
|
140
140
|
Serialize `belongsTo` relationship when it is configured as an embedded object.
|
|
141
141
|
This example of an author model belongs to a post model:
|
|
142
142
|
```js
|
|
143
|
-
import Model, { attr, belongsTo } from '@
|
|
143
|
+
import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
|
|
144
144
|
Post = Model.extend({
|
|
145
145
|
title: attr('string'),
|
|
146
146
|
body: attr('string'),
|
|
@@ -153,7 +153,7 @@ const EmbeddedRecordsMixin = Mixin.create({
|
|
|
153
153
|
```
|
|
154
154
|
Use a custom (type) serializer for the post model to configure embedded author
|
|
155
155
|
```js [app/serializers/post.js]
|
|
156
|
-
import RESTSerializer, { EmbeddedRecordsMixin } from '@
|
|
156
|
+
import RESTSerializer, { EmbeddedRecordsMixin } from '@warp-drive/legacy/serializer/rest';
|
|
157
157
|
export default class PostSerializer extends RESTSerializer.extend(EmbeddedRecordsMixin) {
|
|
158
158
|
attrs = {
|
|
159
159
|
author: { embedded: 'always' }
|
|
@@ -229,7 +229,7 @@ const EmbeddedRecordsMixin = Mixin.create({
|
|
|
229
229
|
Serializes `hasMany` relationships when it is configured as embedded objects.
|
|
230
230
|
This example of a post model has many comments:
|
|
231
231
|
```js
|
|
232
|
-
import Model, { attr, belongsTo, hasMany } from '@
|
|
232
|
+
import Model, { attr, belongsTo, hasMany } from '@warp-drive/legacy/model';
|
|
233
233
|
Post = Model.extend({
|
|
234
234
|
title: attr('string'),
|
|
235
235
|
body: attr('string'),
|
|
@@ -242,7 +242,7 @@ const EmbeddedRecordsMixin = Mixin.create({
|
|
|
242
242
|
```
|
|
243
243
|
Use a custom (type) serializer for the post model to configure embedded comments
|
|
244
244
|
```js [app/serializers/post.js]
|
|
245
|
-
import RESTSerializer, { EmbeddedRecordsMixin } from '@
|
|
245
|
+
import RESTSerializer, { EmbeddedRecordsMixin } from '@warp-drive/legacy/serializer/rest';
|
|
246
246
|
export default class PostSerializer extends RESTSerializer.extend(EmbeddedRecordsMixin) {
|
|
247
247
|
attrs = {
|
|
248
248
|
comments: { embedded: 'always' }
|
|
@@ -274,7 +274,7 @@ const EmbeddedRecordsMixin = Mixin.create({
|
|
|
274
274
|
`{ serialize: 'records', deserialize: 'records' }`
|
|
275
275
|
To embed the `ids` for a related object (using a hasMany relationship):
|
|
276
276
|
```js [app/serializers/post.js]
|
|
277
|
-
import RESTSerializer, { EmbeddedRecordsMixin } from '@
|
|
277
|
+
import RESTSerializer, { EmbeddedRecordsMixin } from '@warp-drive/legacy/serializer/rest';
|
|
278
278
|
export default class PostSerializer extends RESTSerializer.extend(EmbeddedRecordsMixin) {
|
|
279
279
|
attrs = {
|
|
280
280
|
comments: { serialize: 'ids', deserialize: 'records' }
|
|
@@ -312,7 +312,7 @@ const EmbeddedRecordsMixin = Mixin.create({
|
|
|
312
312
|
});
|
|
313
313
|
```
|
|
314
314
|
```js [app/serializers/user.js]
|
|
315
|
-
import RESTSerializer, { EmbeddedRecordsMixin } from '@
|
|
315
|
+
import RESTSerializer, { EmbeddedRecordsMixin } from '@warp-drive/legacy/serializer/rest';
|
|
316
316
|
export default class UserSerializer extends RESTSerializer.extend(EmbeddedRecordsMixin) {
|
|
317
317
|
attrs = {
|
|
318
318
|
pets: { serialize: 'ids-and-types', deserialize: 'records' }
|
|
@@ -951,7 +951,7 @@ const RESTSerializer = JSONSerializer.extend({
|
|
|
951
951
|
the name of the model in your app. Let's take a look at an example model,
|
|
952
952
|
and an example payload:
|
|
953
953
|
```js [app/models/post.js]
|
|
954
|
-
import Model from '@
|
|
954
|
+
import Model from '@warp-drive/legacy/model';
|
|
955
955
|
export default class Post extends Model {}
|
|
956
956
|
```
|
|
957
957
|
```javascript
|
|
@@ -1000,7 +1000,7 @@ const RESTSerializer = JSONSerializer.extend({
|
|
|
1000
1000
|
each attribute and belongsTo relationship.
|
|
1001
1001
|
For example, consider this model:
|
|
1002
1002
|
```js [app/models/comment.js]
|
|
1003
|
-
import Model, { attr, belongsTo } from '@
|
|
1003
|
+
import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
|
|
1004
1004
|
export default class Comment extends Model {
|
|
1005
1005
|
@attr title
|
|
1006
1006
|
@attr body
|
package/dist/serializer.js
CHANGED
|
@@ -95,7 +95,7 @@ import { a as decorateFieldV2, i as initializeDeferredDecorator } from "./runtim
|
|
|
95
95
|
### Default Serializers
|
|
96
96
|
|
|
97
97
|
For applications whose APIs are *very close to* or *exactly* the **REST** format or **JSON:API**
|
|
98
|
-
format the `@
|
|
98
|
+
format the `@warp-drive/legacy/serializer` package contains implementations these applications can
|
|
99
99
|
extend. It also contains a simple `JSONSerializer` for serializing to/from very basic JSON objects.
|
|
100
100
|
|
|
101
101
|
Many applications will find writing their own serializer to be more performant and less
|