@ember-data/model 5.7.0-alpha.8 → 5.7.0-beta.0

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/README.md CHANGED
@@ -21,7 +21,7 @@
21
21
 
22
22
  Install using your javascript package manager of choice. For instance with [pnpm](https://pnpm.io/)
23
23
 
24
- ```no-highlight
24
+ ```sh
25
25
  pnpm add @ember-data/model
26
26
  ```
27
27
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ember-data/model",
3
- "version": "5.7.0-alpha.8",
3
+ "version": "5.7.0-beta.0",
4
4
  "description": "A basic Ember implementation of a resource presentation layer for use with @ember-data/store",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -44,23 +44,23 @@
44
44
  "peerDependencies": {},
45
45
  "dependencies": {
46
46
  "@ember/edition-utils": "^1.2.0",
47
- "@embroider/macros": "^1.16.12",
47
+ "@embroider/macros": "^1.18.1",
48
48
  "ember-cli-string-utils": "^1.1.0",
49
49
  "ember-cli-test-info": "^1.0.0",
50
50
  "inflection": "~3.0.2",
51
- "@warp-drive/core": "5.7.0-alpha.8",
52
- "@warp-drive/legacy": "5.7.0-alpha.8",
53
- "@warp-drive/utilities": "5.7.0-alpha.8"
51
+ "@warp-drive/core": "5.7.0-beta.0",
52
+ "@warp-drive/legacy": "5.7.0-beta.0",
53
+ "@warp-drive/utilities": "5.7.0-beta.0"
54
54
  },
55
55
  "devDependencies": {
56
- "@babel/core": "^7.26.10",
57
- "@babel/plugin-transform-typescript": "^7.27.0",
58
- "@babel/preset-env": "^7.26.9",
59
- "@babel/preset-typescript": "^7.27.0",
60
- "@warp-drive/internal-config": "5.7.0-alpha.8",
61
- "expect-type": "^1.2.1",
62
- "typescript": "^5.8.3",
63
- "vite": "^7.0.0"
56
+ "@babel/core": "^7.28.3",
57
+ "@babel/plugin-transform-typescript": "^7.28.0",
58
+ "@babel/preset-env": "^7.28.3",
59
+ "@babel/preset-typescript": "^7.27.1",
60
+ "@warp-drive/internal-config": "5.7.0-beta.0",
61
+ "expect-type": "^1.2.2",
62
+ "typescript": "^5.9.2",
63
+ "vite": "^7.1.3"
64
64
  },
65
65
  "volta": {
66
66
  "extends": "../../package.json"
@@ -1,6 +1,6 @@
1
- /// <reference path="./-private.d.ts" />
2
- /// <reference path="./migration-support.d.ts" />
3
1
  /// <reference path="./hooks.d.ts" />
2
+ /// <reference path="./migration-support.d.ts" />
3
+ /// <reference path="./-private.d.ts" />
4
4
  declare module '@ember-data/model' {
5
5
  /**
6
6
  * This package provides a Presentation Model for resource data in an EmberData Cache.
@@ -12,12 +12,13 @@ declare module '@ember-data/model/migration-support' {
12
12
  * - A `WithLegacy` type util that can be used to create a type that includes the legacy
13
13
  * properties and methods of a record.
14
14
  *
15
- * Using LegacyMode features on a SchemaRecord *requires* the use of these derivations and schema
15
+ * Using LegacyMode features on a ReactiveResource *requires* the use of these derivations and schema
16
16
  * additions. LegacyMode is not intended to be a long-term solution, but rather a stepping stone
17
17
  * to assist in more rapidly adopting modern WarpDrive features.
18
18
  *
19
19
  * @module
20
20
  */
21
21
  export * from "@warp-drive/legacy/model/migration-support";
22
+ export type * from "@warp-drive/legacy/model/migration-support";
22
23
 
23
24
  }