@ember-data/model 5.9.0-alpha.1 → 5.9.0-alpha.10

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
@@ -28,6 +28,11 @@
28
28
 
29
29
  # @ember-data/model
30
30
 
31
+ > [!WARNING]
32
+ > **⚠️ This is a legacy package** not recommended for new applications.
33
+ >
34
+ > Use schema objects from [@warp-drive/core](https://warp-drive.io/api/@warp-drive/core/) instead.
35
+
31
36
  Runtime classes for use as a source of ResourceSchema and as a ReactiveResource for older "legacy" EmberData/WarpDrive configurations.
32
37
 
33
38
  If using more recent versions of WarpDrive, install this via [@warp-drive/legacy](https://www.npmjs.com/package/@warp-drive/legacy) instead.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ember-data/model",
3
- "version": "5.9.0-alpha.1",
4
- "description": "A basic Ember implementation of a resource presentation layer for use with @ember-data/store",
3
+ "version": "5.9.0-alpha.10",
4
+ "description": "(Legacy) Ember implementation of a resource presentation layer for use with @ember-data/store",
5
5
  "keywords": [
6
6
  "ember-addon"
7
7
  ],
@@ -44,23 +44,23 @@
44
44
  "peerDependencies": {},
45
45
  "dependencies": {
46
46
  "@ember/edition-utils": "^1.2.0",
47
- "@embroider/macros": "^1.18.1",
47
+ "@embroider/macros": "^1.19.6",
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.9.0-alpha.1",
52
- "@warp-drive/legacy": "5.9.0-alpha.1",
53
- "@warp-drive/utilities": "5.9.0-alpha.1"
51
+ "@warp-drive/core": "5.9.0-alpha.10",
52
+ "@warp-drive/legacy": "5.9.0-alpha.10",
53
+ "@warp-drive/utilities": "5.9.0-alpha.10"
54
54
  },
55
55
  "devDependencies": {
56
56
  "@babel/core": "^7.28.3",
57
57
  "@babel/plugin-transform-typescript": "^7.28.0",
58
58
  "@babel/preset-env": "^7.28.3",
59
59
  "@babel/preset-typescript": "^7.27.1",
60
- "@warp-drive/internal-config": "5.9.0-alpha.1",
60
+ "@warp-drive/internal-config": "5.9.0-alpha.10",
61
61
  "expect-type": "^1.2.2",
62
- "typescript": "^5.9.2",
63
- "vite": "^7.1.3"
62
+ "typescript": "^5.9.3",
63
+ "vite": "^7.3.1"
64
64
  },
65
65
  "volta": {
66
66
  "extends": "../../package.json"
@@ -74,7 +74,7 @@
74
74
  },
75
75
  "scripts": {
76
76
  "lint": "eslint . --quiet --cache --cache-strategy=content",
77
- "build:pkg": "vite build;",
77
+ "build:pkg": "vite build",
78
78
  "sync": "echo \"syncing\"",
79
79
  "start": "vite"
80
80
  }
@@ -1,6 +1,6 @@
1
1
  /// <reference path="./-private.d.ts" />
2
- /// <reference path="./migration-support.d.ts" />
3
2
  /// <reference path="./hooks.d.ts" />
3
+ /// <reference path="./migration-support.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.