We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Model.store
1 parent fe6871d commit 7570a74Copy full SHA for 7570a74
CHANGELOG.md
@@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+### Fixed
11
+
12
+- Fix Schemas not being passed through to `Model.store`
13
14
## [0.2.0-beta.7] - 2024-12-07
15
16
### Fixed
src/model.ts
@@ -124,7 +124,7 @@ export type Model<
124
Schema extends JsonApiResource = JsonApiResource,
125
Schemas extends SchemaCollection = SchemaCollection,
126
> = JsonApiResource<Schema['type']> &
127
- ModelBase<Schema> &
+ ModelBase<Schema, Schemas> &
128
ProxiedModel<Schema, Schemas>;
129
130
export const Model: new <
0 commit comments