@warp-drive/schema-record 5.8.0-alpha.3 → 5.8.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/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive/schema-record",
|
|
3
|
-
"version": "5.8.0-
|
|
3
|
+
"version": "5.8.0-beta.0",
|
|
4
4
|
"description": "Schema Driven Resource Presentation for WarpDrive and EmberData",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
7
7
|
],
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
10
|
-
"url": "git+ssh://git@github.com:
|
|
10
|
+
"url": "git+ssh://git@github.com:emberjs/data.git",
|
|
11
11
|
"directory": "packages/schema-record"
|
|
12
12
|
},
|
|
13
13
|
"license": "MIT",
|
|
@@ -39,14 +39,14 @@
|
|
|
39
39
|
"peerDependencies": {},
|
|
40
40
|
"dependencies": {
|
|
41
41
|
"@embroider/macros": "^1.18.1",
|
|
42
|
-
"@warp-drive/core": "5.8.0-
|
|
42
|
+
"@warp-drive/core": "5.8.0-beta.0"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@babel/core": "^7.28.3",
|
|
46
46
|
"@babel/plugin-transform-typescript": "^7.28.0",
|
|
47
47
|
"@babel/preset-env": "^7.28.3",
|
|
48
48
|
"@babel/preset-typescript": "^7.27.1",
|
|
49
|
-
"@warp-drive/internal-config": "5.8.0-
|
|
49
|
+
"@warp-drive/internal-config": "5.8.0-beta.0",
|
|
50
50
|
"vite": "^7.1.3"
|
|
51
51
|
},
|
|
52
52
|
"ember": {
|
|
@@ -9,7 +9,7 @@ declare module '@warp-drive/schema-record' {
|
|
|
9
9
|
* reactive form is controlled by a resource schema. Resource schemas are simple JSON, allowing them to be defined
|
|
10
10
|
* and delivered from anywhere.
|
|
11
11
|
*
|
|
12
|
-
* The capabilities that SchemaRecord brings to [*Warp***Drive**](https://github.com/
|
|
12
|
+
* The capabilities that SchemaRecord brings to [*Warp***Drive**](https://github.com/emberjs/data/)
|
|
13
13
|
* will simplify even the most complex parts of your app's state management.
|
|
14
14
|
*
|
|
15
15
|
* ## Installation
|
|
@@ -88,7 +88,7 @@ declare module '@warp-drive/schema-record' {
|
|
|
88
88
|
* - local changes immediately reflect app wide
|
|
89
89
|
* - records have all the APIs of Model (references, state props, currentState, methods etc)
|
|
90
90
|
* - the continued use of `@ember-data/model` and `@ember-data/legacy-compat` packages is required (though most imports from them can be removed)
|
|
91
|
-
* - `async: true` relationships are supported (but not recommended outside of [LinksMode](https://github.com/
|
|
91
|
+
* - `async: true` relationships are supported (but not recommended outside of [LinksMode](https://github.com/emberjs/data/blob/main/guides/relationships/features/links-mode.md))
|
|
92
92
|
*
|
|
93
93
|
* ---
|
|
94
94
|
*
|
|
@@ -100,7 +100,7 @@ declare module '@warp-drive/schema-record' {
|
|
|
100
100
|
* - local changes are isolated until committed, displaying only via the editable version of the record
|
|
101
101
|
* - records have a more limited API, focused on only what is in their schema.
|
|
102
102
|
* - some common operations may have more friction to perform because intended utilities are not yet available
|
|
103
|
-
* - `async: true` relationships are not supported (see [LinksMode](https://github.com/
|
|
103
|
+
* - `async: true` relationships are not supported (see [LinksMode](https://github.com/emberjs/data/blob/main/guides/relationships/features/links-mode.md))
|
|
104
104
|
* - `@ember-data/model` and `@ember-data/legacy-compat` packages are not required
|
|
105
105
|
*
|
|
106
106
|
* These modes are interopable. The reactive object (record) for a resource in PolarisMode can relate to
|