@warp-drive/schema-record 5.5.0-alpha.21 → 5.5.0-alpha.23
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 +2 -8
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -23,15 +23,9 @@
|
|
|
23
23
|
- ⚛️ Universal
|
|
24
24
|
- ☢️ Reactive
|
|
25
25
|
|
|
26
|
-
SchemaRecord is a reactive object that transforms raw data from an [associated cache](https://github.com/emberjs/data/blob/main/packages/core-types/src/cache.ts) into reactive data backed by Signals.
|
|
26
|
+
SchemaRecord is a reactive object that transforms raw data from an [associated cache](https://github.com/emberjs/data/blob/main/packages/core-types/src/cache.ts) into reactive data backed by Signals. The shape of the object and the transformation of raw cache data into its reactive form is controlled by a resource schema. Resource schemas are simple JSON, allowing them to be defined and delivered from anywhere.
|
|
27
27
|
|
|
28
|
-
The
|
|
29
|
-
reactive form is controlled by a resource schema.
|
|
30
|
-
|
|
31
|
-
Resource schemas are simple JSON, allowing them to be defined and delivered from anywhere.
|
|
32
|
-
|
|
33
|
-
The capabilities that SchemaRecord brings to [*Warp***Drive**](https://github.com/emberjs/data/)
|
|
34
|
-
will simplify even the most complex parts of your app's state management.
|
|
28
|
+
The capabilities that SchemaRecord brings to [*Warp***Drive**](https://github.com/emberjs/data/) will simplify even the most complex parts of your app's state management.
|
|
35
29
|
|
|
36
30
|
## Installation
|
|
37
31
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive/schema-record",
|
|
3
|
-
"version": "5.5.0-alpha.
|
|
3
|
+
"version": "5.5.0-alpha.23",
|
|
4
4
|
"description": "Schema Driven Resource Presentation for WarpDrive and EmberData",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -37,10 +37,10 @@
|
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
|
-
"@ember-data/request": "5.5.0-alpha.
|
|
41
|
-
"@ember-data/model": "5.5.0-alpha.
|
|
42
|
-
"@ember-data/store": "5.5.0-alpha.
|
|
43
|
-
"@warp-drive/core-types": "5.5.0-alpha.
|
|
40
|
+
"@ember-data/request": "5.5.0-alpha.23",
|
|
41
|
+
"@ember-data/model": "5.5.0-alpha.23",
|
|
42
|
+
"@ember-data/store": "5.5.0-alpha.23",
|
|
43
|
+
"@warp-drive/core-types": "5.5.0-alpha.23"
|
|
44
44
|
},
|
|
45
45
|
"peerDependenciesMeta": {
|
|
46
46
|
"@ember-data/model": {
|
|
@@ -49,22 +49,22 @@
|
|
|
49
49
|
},
|
|
50
50
|
"dependencies": {
|
|
51
51
|
"@embroider/macros": "^1.16.12",
|
|
52
|
-
"@warp-drive/build-config": "5.5.0-alpha.
|
|
52
|
+
"@warp-drive/build-config": "5.5.0-alpha.23"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
55
|
"@babel/core": "^7.26.10",
|
|
56
56
|
"@babel/plugin-transform-typescript": "^7.27.0",
|
|
57
57
|
"@babel/preset-env": "^7.26.9",
|
|
58
58
|
"@babel/preset-typescript": "^7.27.0",
|
|
59
|
-
"@ember-data/request": "5.5.0-alpha.
|
|
60
|
-
"@ember-data/model": "5.5.0-alpha.
|
|
61
|
-
"@ember-data/store": "5.5.0-alpha.
|
|
62
|
-
"@ember-data/legacy-compat": "5.5.0-alpha.
|
|
63
|
-
"@ember-data/request-utils": "5.5.0-alpha.
|
|
59
|
+
"@ember-data/request": "5.5.0-alpha.23",
|
|
60
|
+
"@ember-data/model": "5.5.0-alpha.23",
|
|
61
|
+
"@ember-data/store": "5.5.0-alpha.23",
|
|
62
|
+
"@ember-data/legacy-compat": "5.5.0-alpha.23",
|
|
63
|
+
"@ember-data/request-utils": "5.5.0-alpha.23",
|
|
64
64
|
"@ember/test-waiters": "^4.1.0",
|
|
65
65
|
"@glimmer/component": "^2.0.0",
|
|
66
|
-
"@warp-drive/core-types": "5.5.0-alpha.
|
|
67
|
-
"@warp-drive/internal-config": "5.5.0-alpha.
|
|
66
|
+
"@warp-drive/core-types": "5.5.0-alpha.23",
|
|
67
|
+
"@warp-drive/internal-config": "5.5.0-alpha.23",
|
|
68
68
|
"ember-source": "~6.3.0",
|
|
69
69
|
"vite": "^5.4.15"
|
|
70
70
|
},
|