@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.
- 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 +6 -6
|
@@ -0,0 +1,500 @@
|
|
|
1
|
+
import type { Store } from "@warp-drive/core";
|
|
2
|
+
import type { CollectionEdge, Graph } from "@warp-drive/core/graph/-private";
|
|
3
|
+
import type { RelatedCollection as ManyArray } from "@warp-drive/core/store/-private";
|
|
4
|
+
import type { BaseFinderOptions } from "@warp-drive/core/types";
|
|
5
|
+
import type { ResourceKey } from "@warp-drive/core/types/identifier";
|
|
6
|
+
import type { TypeFromInstanceOrString } from "@warp-drive/core/types/record";
|
|
7
|
+
import type { CollectionResourceDocument, CollectionResourceRelationship, ExistingResourceObject, LinkObject, Meta, PaginationLinks } from "@warp-drive/core/types/spec/json-api-raw";
|
|
8
|
+
import type { IsUnknown } from "../belongs-to.js";
|
|
9
|
+
import type { MaybeHasManyFields } from "../type-utils.js";
|
|
10
|
+
interface ResourceIdentifier {
|
|
11
|
+
links?: {
|
|
12
|
+
related?: string | LinkObject;
|
|
13
|
+
};
|
|
14
|
+
meta?: Meta;
|
|
15
|
+
}
|
|
16
|
+
type ArrayItemType<T> = T extends (infer U)[] ? U : never;
|
|
17
|
+
/**
|
|
18
|
+
A `HasManyReference` is a low-level API that allows access
|
|
19
|
+
and manipulation of a hasMany relationship.
|
|
20
|
+
|
|
21
|
+
It is especially useful when you're dealing with `async` relationships
|
|
22
|
+
from `@warp-drive/legacy/model` as it allows synchronous access to
|
|
23
|
+
the relationship data if loaded, as well as APIs for loading, reloading
|
|
24
|
+
the data or accessing available information without triggering a load.
|
|
25
|
+
|
|
26
|
+
It may also be useful when using `sync` relationships with `@warp-drive/legacy/model`
|
|
27
|
+
that need to be loaded/reloaded with more precise timing than marking the
|
|
28
|
+
relationship as `async` and relying on autofetch would have allowed.
|
|
29
|
+
|
|
30
|
+
However,keep in mind that marking a relationship as `async: false` will introduce
|
|
31
|
+
bugs into your application if the data is not always guaranteed to be available
|
|
32
|
+
by the time the relationship is accessed. Ergo, it is recommended when using this
|
|
33
|
+
approach to utilize `links` for unloaded relationship state instead of identifiers.
|
|
34
|
+
|
|
35
|
+
Reference APIs are entangled with the relationship's underlying state,
|
|
36
|
+
thus any getters or cached properties that utilize these will properly
|
|
37
|
+
invalidate if the relationship state changes.
|
|
38
|
+
|
|
39
|
+
References are "stable", meaning that multiple calls to retrieve the reference
|
|
40
|
+
for a given relationship will always return the same HasManyReference.
|
|
41
|
+
|
|
42
|
+
@class HasManyReference
|
|
43
|
+
@public
|
|
44
|
+
*/
|
|
45
|
+
export default class HasManyReference<
|
|
46
|
+
T = unknown,
|
|
47
|
+
K extends string = IsUnknown<T> extends true ? string : MaybeHasManyFields<T>,
|
|
48
|
+
Related = K extends keyof T ? ArrayItemType<Awaited<T[K]>> : unknown
|
|
49
|
+
> {
|
|
50
|
+
graph: Graph;
|
|
51
|
+
store: Store;
|
|
52
|
+
hasManyRelationship: CollectionEdge;
|
|
53
|
+
/**
|
|
54
|
+
* The field name on the parent record for this has-many relationship.
|
|
55
|
+
*
|
|
56
|
+
* @property key
|
|
57
|
+
* @type {String}
|
|
58
|
+
* @public
|
|
59
|
+
*/
|
|
60
|
+
key: K;
|
|
61
|
+
/**
|
|
62
|
+
* The type of resource this relationship will contain.
|
|
63
|
+
*
|
|
64
|
+
* @property type
|
|
65
|
+
* @type {String}
|
|
66
|
+
* @public
|
|
67
|
+
*/
|
|
68
|
+
type: TypeFromInstanceOrString<Related>;
|
|
69
|
+
___token: object;
|
|
70
|
+
___identifier: ResourceKey<TypeFromInstanceOrString<T>>;
|
|
71
|
+
___relatedTokenMap: Map<ResourceKey, object>;
|
|
72
|
+
_ref: number;
|
|
73
|
+
constructor(store: Store, graph: Graph, parentIdentifier: ResourceKey<TypeFromInstanceOrString<T>>, hasManyRelationship: CollectionEdge, key: K);
|
|
74
|
+
/**
|
|
75
|
+
* An array of identifiers for the records that this reference refers to.
|
|
76
|
+
*
|
|
77
|
+
* @property identifiers
|
|
78
|
+
* @type {ResourceKey[]}
|
|
79
|
+
* @public
|
|
80
|
+
*/
|
|
81
|
+
get identifiers(): ResourceKey<TypeFromInstanceOrString<Related>>[];
|
|
82
|
+
_resource(): CollectionResourceRelationship;
|
|
83
|
+
/**
|
|
84
|
+
This returns a string that represents how the reference will be
|
|
85
|
+
looked up when it is loaded. If the relationship has a link it will
|
|
86
|
+
use the "link" otherwise it defaults to "id".
|
|
87
|
+
|
|
88
|
+
Example
|
|
89
|
+
|
|
90
|
+
```js [app/models/post.js]
|
|
91
|
+
import { Model, hasMany } from '@warp-drive/legacy/model';
|
|
92
|
+
|
|
93
|
+
export default class PostModel extends Model {
|
|
94
|
+
@hasMany('comment', { async: true, inverse: null }) comments;
|
|
95
|
+
}
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
```javascript
|
|
99
|
+
let post = store.push({
|
|
100
|
+
data: {
|
|
101
|
+
type: 'post',
|
|
102
|
+
id: 1,
|
|
103
|
+
relationships: {
|
|
104
|
+
comments: {
|
|
105
|
+
data: [{ type: 'comment', id: 1 }]
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
});
|
|
110
|
+
|
|
111
|
+
let commentsRef = post.hasMany('comments');
|
|
112
|
+
|
|
113
|
+
// get the identifier of the reference
|
|
114
|
+
if (commentsRef.remoteType() === "ids") {
|
|
115
|
+
let ids = commentsRef.ids();
|
|
116
|
+
} else if (commentsRef.remoteType() === "link") {
|
|
117
|
+
let link = commentsRef.link();
|
|
118
|
+
}
|
|
119
|
+
```
|
|
120
|
+
|
|
121
|
+
@public
|
|
122
|
+
@return {String} The name of the remote type. This should either be `link` or `ids`
|
|
123
|
+
*/
|
|
124
|
+
remoteType(): "link" | "ids";
|
|
125
|
+
/**
|
|
126
|
+
`ids()` returns an array of the record IDs in this relationship.
|
|
127
|
+
|
|
128
|
+
Example
|
|
129
|
+
|
|
130
|
+
```js [app/models/post.js]
|
|
131
|
+
import { Model, hasMany } from '@warp-drive/legacy/model';
|
|
132
|
+
|
|
133
|
+
export default class PostModel extends Model {
|
|
134
|
+
@hasMany('comment', { async: true, inverse: null }) comments;
|
|
135
|
+
}
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
```javascript
|
|
139
|
+
let post = store.push({
|
|
140
|
+
data: {
|
|
141
|
+
type: 'post',
|
|
142
|
+
id: 1,
|
|
143
|
+
relationships: {
|
|
144
|
+
comments: {
|
|
145
|
+
data: [{ type: 'comment', id: 1 }]
|
|
146
|
+
}
|
|
147
|
+
}
|
|
148
|
+
}
|
|
149
|
+
});
|
|
150
|
+
|
|
151
|
+
let commentsRef = post.hasMany('comments');
|
|
152
|
+
|
|
153
|
+
commentsRef.ids(); // ['1']
|
|
154
|
+
```
|
|
155
|
+
|
|
156
|
+
@public
|
|
157
|
+
@return {Array} The ids in this has-many relationship
|
|
158
|
+
*/
|
|
159
|
+
ids(): Array<string | null>;
|
|
160
|
+
/**
|
|
161
|
+
The link Ember Data will use to fetch or reload this belongs-to
|
|
162
|
+
relationship. By default it uses only the "related" resource linkage.
|
|
163
|
+
|
|
164
|
+
Example
|
|
165
|
+
|
|
166
|
+
```javascript
|
|
167
|
+
// models/blog.js
|
|
168
|
+
import { Model, belongsTo } from '@warp-drive/legacy/model';
|
|
169
|
+
export default Model.extend({
|
|
170
|
+
user: belongsTo('user', { async: true, inverse: null })
|
|
171
|
+
});
|
|
172
|
+
|
|
173
|
+
let blog = store.push({
|
|
174
|
+
data: {
|
|
175
|
+
type: 'blog',
|
|
176
|
+
id: 1,
|
|
177
|
+
relationships: {
|
|
178
|
+
user: {
|
|
179
|
+
links: {
|
|
180
|
+
related: '/articles/1/author'
|
|
181
|
+
}
|
|
182
|
+
}
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
});
|
|
186
|
+
let userRef = blog.belongsTo('user');
|
|
187
|
+
|
|
188
|
+
// get the identifier of the reference
|
|
189
|
+
if (userRef.remoteType() === "link") {
|
|
190
|
+
let link = userRef.link();
|
|
191
|
+
}
|
|
192
|
+
```
|
|
193
|
+
|
|
194
|
+
@public
|
|
195
|
+
@return {String} The link Ember Data will use to fetch or reload this belongs-to relationship.
|
|
196
|
+
*/
|
|
197
|
+
link(): string | null;
|
|
198
|
+
/**
|
|
199
|
+
* any links that have been received for this relationship
|
|
200
|
+
*
|
|
201
|
+
* @public
|
|
202
|
+
* @return
|
|
203
|
+
*/
|
|
204
|
+
links(): PaginationLinks | null;
|
|
205
|
+
/**
|
|
206
|
+
The meta data for the has-many relationship.
|
|
207
|
+
|
|
208
|
+
Example
|
|
209
|
+
|
|
210
|
+
```javascript
|
|
211
|
+
// models/blog.js
|
|
212
|
+
import { Model, hasMany } from '@warp-drive/legacy/model';
|
|
213
|
+
export default Model.extend({
|
|
214
|
+
users: hasMany('user', { async: true, inverse: null })
|
|
215
|
+
});
|
|
216
|
+
|
|
217
|
+
let blog = store.push({
|
|
218
|
+
data: {
|
|
219
|
+
type: 'blog',
|
|
220
|
+
id: 1,
|
|
221
|
+
relationships: {
|
|
222
|
+
users: {
|
|
223
|
+
links: {
|
|
224
|
+
related: {
|
|
225
|
+
href: '/articles/1/authors'
|
|
226
|
+
},
|
|
227
|
+
},
|
|
228
|
+
meta: {
|
|
229
|
+
lastUpdated: 1458014400000
|
|
230
|
+
}
|
|
231
|
+
}
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
});
|
|
235
|
+
|
|
236
|
+
let usersRef = blog.hasMany('user');
|
|
237
|
+
|
|
238
|
+
usersRef.meta() // { lastUpdated: 1458014400000 }
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
@public
|
|
242
|
+
@return {Object|null} The meta information for the belongs-to relationship.
|
|
243
|
+
*/
|
|
244
|
+
meta(): Meta | null;
|
|
245
|
+
/**
|
|
246
|
+
`push` can be used to update the data in the relationship and WarpDrive
|
|
247
|
+
will treat the new data as the canonical value of this relationship on
|
|
248
|
+
the backend. An empty array will signify the canonical value should be
|
|
249
|
+
empty.
|
|
250
|
+
|
|
251
|
+
Example model
|
|
252
|
+
|
|
253
|
+
```js [app/models/post.js]
|
|
254
|
+
import { Model, hasMany } from '@warp-drive/legacy/model';
|
|
255
|
+
|
|
256
|
+
export default class PostModel extends Model {
|
|
257
|
+
@hasMany('comment', { async: true, inverse: null }) comments;
|
|
258
|
+
}
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
Setup some initial state, note we haven't loaded the comments yet:
|
|
262
|
+
|
|
263
|
+
```js
|
|
264
|
+
const post = store.push({
|
|
265
|
+
data: {
|
|
266
|
+
type: 'post',
|
|
267
|
+
id: '1',
|
|
268
|
+
relationships: {
|
|
269
|
+
comments: {
|
|
270
|
+
data: [{ type: 'comment', id: '1' }]
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
});
|
|
275
|
+
|
|
276
|
+
const commentsRef = post.hasMany('comments');
|
|
277
|
+
commentsRef.ids(); // ['1']
|
|
278
|
+
```
|
|
279
|
+
|
|
280
|
+
Update the state using `push`, note we can do this even without
|
|
281
|
+
having loaded these comments yet by providing resource identifiers.
|
|
282
|
+
|
|
283
|
+
Both full resources and resource identifiers are supported.
|
|
284
|
+
|
|
285
|
+
```js
|
|
286
|
+
await commentsRef.push({
|
|
287
|
+
data: [
|
|
288
|
+
{ type: 'comment', id: '2' },
|
|
289
|
+
{ type: 'comment', id: '3' },
|
|
290
|
+
]
|
|
291
|
+
});
|
|
292
|
+
|
|
293
|
+
commentsRef.ids(); // ['2', '3']
|
|
294
|
+
```
|
|
295
|
+
|
|
296
|
+
For convenience, you can also pass in an array of resources or resource identifiers
|
|
297
|
+
without wrapping them in the `data` property:
|
|
298
|
+
|
|
299
|
+
```js
|
|
300
|
+
await commentsRef.push([
|
|
301
|
+
{ type: 'comment', id: '4' },
|
|
302
|
+
{ type: 'comment', id: '5' },
|
|
303
|
+
]);
|
|
304
|
+
|
|
305
|
+
commentsRef.ids(); // ['4', '5']
|
|
306
|
+
```
|
|
307
|
+
|
|
308
|
+
When using the `data` property, you may also include other resource data via included,
|
|
309
|
+
as well as provide new links and meta to the relationship.
|
|
310
|
+
|
|
311
|
+
```js
|
|
312
|
+
await commentsRef.push({
|
|
313
|
+
links: {
|
|
314
|
+
related: '/posts/1/comments'
|
|
315
|
+
},
|
|
316
|
+
meta: {
|
|
317
|
+
total: 2
|
|
318
|
+
},
|
|
319
|
+
data: [
|
|
320
|
+
{ type: 'comment', id: '4' },
|
|
321
|
+
{ type: 'comment', id: '5' },
|
|
322
|
+
],
|
|
323
|
+
included: [
|
|
324
|
+
{ type: 'other-thing', id: '1', attributes: { foo: 'bar' },
|
|
325
|
+
]
|
|
326
|
+
});
|
|
327
|
+
```
|
|
328
|
+
|
|
329
|
+
By default, the store will attempt to fetch any unloaded records before resolving
|
|
330
|
+
the returned promise with the ManyArray.
|
|
331
|
+
|
|
332
|
+
Alternatively, pass `true` as the second argument to avoid fetching unloaded records
|
|
333
|
+
and instead the promise will resolve with void without attempting to fetch. This is
|
|
334
|
+
particularly useful if you want to update the state of the relationship without
|
|
335
|
+
forcing the load of all of the associated records.
|
|
336
|
+
|
|
337
|
+
@public
|
|
338
|
+
@param {Array|Object} doc a JSONAPI document object describing the new value of this relationship.
|
|
339
|
+
@param {Boolean} [skipFetch] if `true`, do not attempt to fetch unloaded records
|
|
340
|
+
@return {Promise<ManyArray | void>}
|
|
341
|
+
*/
|
|
342
|
+
push(doc: ExistingResourceObject[] | CollectionResourceDocument, skipFetch?: boolean): Promise<ManyArray<Related> | void>;
|
|
343
|
+
_isLoaded(): boolean;
|
|
344
|
+
/**
|
|
345
|
+
`value()` synchronously returns the current value of the has-many
|
|
346
|
+
relationship. Unlike `record.relationshipName`, calling
|
|
347
|
+
`value()` on a reference does not trigger a fetch if the async
|
|
348
|
+
relationship is not yet loaded. If the relationship is not loaded
|
|
349
|
+
it will always return `null`.
|
|
350
|
+
|
|
351
|
+
Example
|
|
352
|
+
|
|
353
|
+
```js [app/models/post.js]
|
|
354
|
+
import { Model, hasMany } from '@warp-drive/legacy/model';
|
|
355
|
+
|
|
356
|
+
export default class PostModel extends Model {
|
|
357
|
+
@hasMany('comment', { async: true, inverse: null }) comments;
|
|
358
|
+
}
|
|
359
|
+
```
|
|
360
|
+
|
|
361
|
+
```javascript
|
|
362
|
+
let post = store.push({
|
|
363
|
+
data: {
|
|
364
|
+
type: 'post',
|
|
365
|
+
id: 1,
|
|
366
|
+
relationships: {
|
|
367
|
+
comments: {
|
|
368
|
+
data: [{ type: 'comment', id: 1 }]
|
|
369
|
+
}
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
});
|
|
373
|
+
|
|
374
|
+
let commentsRef = post.hasMany('comments');
|
|
375
|
+
|
|
376
|
+
post.comments.then(function(comments) {
|
|
377
|
+
commentsRef.value() === comments
|
|
378
|
+
})
|
|
379
|
+
```
|
|
380
|
+
|
|
381
|
+
@public
|
|
382
|
+
@return {ManyArray}
|
|
383
|
+
*/
|
|
384
|
+
value(): ManyArray<Related> | null;
|
|
385
|
+
/**
|
|
386
|
+
Loads the relationship if it is not already loaded. If the
|
|
387
|
+
relationship is already loaded this method does not trigger a new
|
|
388
|
+
load. This causes a request to the specified
|
|
389
|
+
relationship link or reloads all items currently in the relationship.
|
|
390
|
+
|
|
391
|
+
Example
|
|
392
|
+
|
|
393
|
+
```js [app/models/post.js]
|
|
394
|
+
import { Model, hasMany } from '@warp-drive/legacy/model';
|
|
395
|
+
|
|
396
|
+
export default class PostModel extends Model {
|
|
397
|
+
@hasMany('comment', { async: true, inverse: null }) comments;
|
|
398
|
+
}
|
|
399
|
+
```
|
|
400
|
+
|
|
401
|
+
```javascript
|
|
402
|
+
let post = store.push({
|
|
403
|
+
data: {
|
|
404
|
+
type: 'post',
|
|
405
|
+
id: 1,
|
|
406
|
+
relationships: {
|
|
407
|
+
comments: {
|
|
408
|
+
data: [{ type: 'comment', id: 1 }]
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
});
|
|
413
|
+
|
|
414
|
+
let commentsRef = post.hasMany('comments');
|
|
415
|
+
|
|
416
|
+
commentsRef.load().then(function(comments) {
|
|
417
|
+
//...
|
|
418
|
+
});
|
|
419
|
+
```
|
|
420
|
+
|
|
421
|
+
You may also pass in an options object whose properties will be
|
|
422
|
+
fed forward. This enables you to pass `adapterOptions` into the
|
|
423
|
+
request given to the adapter via the reference.
|
|
424
|
+
|
|
425
|
+
Example
|
|
426
|
+
|
|
427
|
+
```javascript
|
|
428
|
+
commentsRef.load({ adapterOptions: { isPrivate: true } })
|
|
429
|
+
.then(function(comments) {
|
|
430
|
+
//...
|
|
431
|
+
});
|
|
432
|
+
```
|
|
433
|
+
|
|
434
|
+
```js [app/adapters/comment.js]
|
|
435
|
+
export default ApplicationAdapter.extend({
|
|
436
|
+
findMany(store, type, id, snapshots) {
|
|
437
|
+
// In the adapter you will have access to adapterOptions.
|
|
438
|
+
let adapterOptions = snapshots[0].adapterOptions;
|
|
439
|
+
}
|
|
440
|
+
});
|
|
441
|
+
```
|
|
442
|
+
|
|
443
|
+
@public
|
|
444
|
+
@param {Object} options the options to pass in.
|
|
445
|
+
@return {Promise} a promise that resolves with the ManyArray in
|
|
446
|
+
this has-many relationship.
|
|
447
|
+
*/
|
|
448
|
+
load(options?: BaseFinderOptions): Promise<ManyArray<Related>>;
|
|
449
|
+
/**
|
|
450
|
+
Reloads this has-many relationship. This causes a request to the specified
|
|
451
|
+
relationship link or reloads all items currently in the relationship.
|
|
452
|
+
|
|
453
|
+
Example
|
|
454
|
+
|
|
455
|
+
```js [app/models/post.js]
|
|
456
|
+
import { Model, hasMany } from '@warp-drive/legacy/model';
|
|
457
|
+
|
|
458
|
+
export default class PostModel extends Model {
|
|
459
|
+
@hasMany('comment', { async: true, inverse: null }) comments;
|
|
460
|
+
}
|
|
461
|
+
```
|
|
462
|
+
|
|
463
|
+
```javascript
|
|
464
|
+
let post = store.push({
|
|
465
|
+
data: {
|
|
466
|
+
type: 'post',
|
|
467
|
+
id: 1,
|
|
468
|
+
relationships: {
|
|
469
|
+
comments: {
|
|
470
|
+
data: [{ type: 'comment', id: 1 }]
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
});
|
|
475
|
+
|
|
476
|
+
let commentsRef = post.hasMany('comments');
|
|
477
|
+
|
|
478
|
+
commentsRef.reload().then(function(comments) {
|
|
479
|
+
//...
|
|
480
|
+
});
|
|
481
|
+
```
|
|
482
|
+
|
|
483
|
+
You may also pass in an options object whose properties will be
|
|
484
|
+
fed forward. This enables you to pass `adapterOptions` into the
|
|
485
|
+
request given to the adapter via the reference. A full example
|
|
486
|
+
can be found in the `load` method.
|
|
487
|
+
|
|
488
|
+
Example
|
|
489
|
+
|
|
490
|
+
```javascript
|
|
491
|
+
commentsRef.reload({ adapterOptions: { isPrivate: true } })
|
|
492
|
+
```
|
|
493
|
+
|
|
494
|
+
@public
|
|
495
|
+
@param {Object} options the options to pass in.
|
|
496
|
+
@return {Promise} a promise that resolves with the ManyArray in this has-many relationship.
|
|
497
|
+
*/
|
|
498
|
+
reload(options?: BaseFinderOptions): Promise<ManyArray<Related>>;
|
|
499
|
+
}
|
|
500
|
+
export declare function isMaybeResource(object: ExistingResourceObject | ResourceIdentifier): object is ExistingResourceObject;
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import type { Store } from "@warp-drive/core";
|
|
2
|
+
import type { SchemaService } from "@warp-drive/core/types";
|
|
3
|
+
import type { ResourceKey } from "@warp-drive/core/types/identifier";
|
|
4
|
+
import type { ObjectValue } from "@warp-drive/core/types/json/raw";
|
|
5
|
+
import type { Derivation, HashFn, Transformation } from "@warp-drive/core/types/schema/concepts";
|
|
6
|
+
import type { ArrayField, DerivedField, GenericField, HashField, LegacyField, ObjectField, ObjectSchema, ResourceSchema } from "@warp-drive/core/types/schema/fields";
|
|
7
|
+
import type { ModelFactory, ModelStore } from "./model.js";
|
|
8
|
+
type AttributesSchema = ReturnType<Exclude<SchemaService["attributesDefinitionFor"], undefined>>;
|
|
9
|
+
type RelationshipsSchema = ReturnType<Exclude<SchemaService["relationshipsDefinitionFor"], undefined>>;
|
|
10
|
+
export interface ModelSchemaProvider {
|
|
11
|
+
attributesDefinitionFor(resource: ResourceKey | {
|
|
12
|
+
type: string;
|
|
13
|
+
}): AttributesSchema;
|
|
14
|
+
relationshipsDefinitionFor(resource: ResourceKey | {
|
|
15
|
+
type: string;
|
|
16
|
+
}): RelationshipsSchema;
|
|
17
|
+
doesTypeExist(type: string): boolean;
|
|
18
|
+
}
|
|
19
|
+
export declare class ModelSchemaProvider implements SchemaService {
|
|
20
|
+
constructor(store: ModelStore);
|
|
21
|
+
resourceTypes(): Readonly<string[]>;
|
|
22
|
+
hasTrait(type: string): boolean;
|
|
23
|
+
resourceHasTrait(resource: ResourceKey | {
|
|
24
|
+
type: string;
|
|
25
|
+
}, trait: string): boolean;
|
|
26
|
+
transformation(field: GenericField | ObjectField | ArrayField | {
|
|
27
|
+
type: string;
|
|
28
|
+
}): Transformation;
|
|
29
|
+
derivation(field: DerivedField | {
|
|
30
|
+
type: string;
|
|
31
|
+
}): Derivation;
|
|
32
|
+
hashFn(field: HashField | {
|
|
33
|
+
type: string;
|
|
34
|
+
}): HashFn;
|
|
35
|
+
resource(resource: ResourceKey | {
|
|
36
|
+
type: string;
|
|
37
|
+
}): ResourceSchema | ObjectSchema;
|
|
38
|
+
registerResources(schemas: Array<ResourceSchema | ObjectSchema>): void;
|
|
39
|
+
registerResource(schema: ResourceSchema | ObjectSchema): void;
|
|
40
|
+
registerTransformation(transform: Transformation): void;
|
|
41
|
+
registerDerivation<
|
|
42
|
+
R,
|
|
43
|
+
T,
|
|
44
|
+
FM extends ObjectValue | null
|
|
45
|
+
>(derivation: Derivation<R, T, FM>): void;
|
|
46
|
+
registerHashFn(hashFn: HashFn): void;
|
|
47
|
+
fields(resource: ResourceKey | {
|
|
48
|
+
type: string;
|
|
49
|
+
}): Map<string, LegacyField>;
|
|
50
|
+
hasResource(resource: {
|
|
51
|
+
type: string;
|
|
52
|
+
}): boolean;
|
|
53
|
+
}
|
|
54
|
+
export declare function buildSchema(store: Store): SchemaService;
|
|
55
|
+
export declare function getModelFactory(store: ModelStore, type: string): ModelFactory | null;
|
|
56
|
+
export {};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import type { RelatedCollection } from "@warp-drive/core/store/-private";
|
|
2
|
+
import type { TypedRecordInstance } from "@warp-drive/core/types/record";
|
|
3
|
+
import type { Type } from "@warp-drive/core/types/symbols";
|
|
4
|
+
import type { Model } from "./model.js";
|
|
5
|
+
import type { PromiseBelongsTo } from "./promise-belongs-to.js";
|
|
6
|
+
import type { PromiseManyArray } from "./promise-many-array.js";
|
|
7
|
+
type ExcludeNull<T> = Exclude<T, null> extends never ? T : Exclude<T, null>;
|
|
8
|
+
type GetMappedKey<
|
|
9
|
+
M,
|
|
10
|
+
V
|
|
11
|
+
> = { [K in keyof M]-? : ExcludeNull<M[K]> extends V ? K : never }[keyof M] & string;
|
|
12
|
+
/**
|
|
13
|
+
* Get the keys of fields that are maybe defined as `belongsTo` relationships
|
|
14
|
+
*
|
|
15
|
+
* "Maybe" because getter/computed fields might be returning values that look
|
|
16
|
+
* like relationships, but are not.
|
|
17
|
+
*
|
|
18
|
+
*/
|
|
19
|
+
export type MaybeBelongsToFields<ThisType> = _TrueKeys<ThisType> extends never ? string : _MaybeBelongsToFields<ThisType>;
|
|
20
|
+
export type _MaybeBelongsToFields<ThisType> = GetMappedKey<ThisType, PromiseBelongsTo | TypedRecordInstance>;
|
|
21
|
+
/**
|
|
22
|
+
* Get the keys of fields that are maybe defined as `hasMany` relationships
|
|
23
|
+
*
|
|
24
|
+
* "Maybe" because getter/computed fields might be returning values that look
|
|
25
|
+
* like relationships, but are not.
|
|
26
|
+
*
|
|
27
|
+
*/
|
|
28
|
+
export type MaybeHasManyFields<ThisType> = _TrueKeys<ThisType> extends never ? string : _MaybeHasManyFields<ThisType>;
|
|
29
|
+
type _MaybeHasManyFields<ThisType> = GetMappedKey<ThisType, RelatedCollection | PromiseManyArray>;
|
|
30
|
+
/**
|
|
31
|
+
* Get the keys of fields that are maybe defined as `attr` fields
|
|
32
|
+
*
|
|
33
|
+
* "Maybe" because getter/computed fields might be returning values that look
|
|
34
|
+
* like attributes, but are not.
|
|
35
|
+
*
|
|
36
|
+
* This is computed by excluding the keys that are defined as `belongsTo` or `hasMany`
|
|
37
|
+
* as well as the keys on EmberObject and the Model base class
|
|
38
|
+
*
|
|
39
|
+
*/
|
|
40
|
+
export type MaybeAttrFields<ThisType> = Exclude<_TrueKeys<ThisType>, _MaybeBelongsToFields<ThisType> | _MaybeHasManyFields<ThisType>>;
|
|
41
|
+
/**
|
|
42
|
+
* Get the keys of fields that are maybe defined as relationships
|
|
43
|
+
*
|
|
44
|
+
* "Maybe" because getter/computed fields might be returning values that look
|
|
45
|
+
* like relationships, but are not.
|
|
46
|
+
*
|
|
47
|
+
*/
|
|
48
|
+
export type MaybeRelationshipFields<ThisType> = _TrueKeys<ThisType> extends never ? string : _MaybeBelongsToFields<ThisType> | _MaybeHasManyFields<ThisType>;
|
|
49
|
+
type _TrueKeys<ThisType> = Exclude<keyof ThisType & string, (keyof Model & string) | typeof Type>;
|
|
50
|
+
export type isSubClass<ThisType> = _TrueKeys<ThisType> extends never ? false : true;
|
|
51
|
+
/**
|
|
52
|
+
* Get the keys of all fields defined on the given subclass of Model
|
|
53
|
+
* that don't exist on EmberObject or Model.
|
|
54
|
+
*
|
|
55
|
+
*/
|
|
56
|
+
export type SubclassKeys<ThisType> = _TrueKeys<ThisType> extends never ? string : _TrueKeys<ThisType>;
|
|
57
|
+
export {};
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
export type DecoratorPropertyDescriptor = (PropertyDescriptor & {
|
|
2
|
+
initializer?: () => unknown;
|
|
3
|
+
}) | undefined;
|
|
4
|
+
export declare function isElementDescriptor(args: unknown[]): args is [object, string, DecoratorPropertyDescriptor];
|
|
5
|
+
export declare function normalizeModelName(type: string): string;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export { type MinimalLegacyRecord } from "./-private/model-methods.js";
|
|
2
|
+
export type { ModelStore } from "./-private/model.js";
|
|
3
|
+
export { Errors } from "./-private/errors.js";
|
|
4
|
+
export type { LegacyManyArray as ManyArray } from "@warp-drive/core/store/-private";
|
|
5
|
+
export { PromiseBelongsTo } from "./-private/promise-belongs-to.js";
|
|
6
|
+
export { PromiseManyArray } from "./-private/promise-many-array.js";
|
|
7
|
+
export { lookupLegacySupport, LEGACY_SUPPORT } from "./-private/legacy-relationships-support.js";
|
|
8
|
+
export type { MaybeHasManyFields, MaybeBelongsToFields, MaybeRelationshipFields } from "./-private/type-utils.js";
|