@warp-drive/schema-record 5.6.0-beta.2 → 5.6.0-beta.4
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
|
@@ -32,7 +32,7 @@ The capabilities that SchemaRecord brings to [*Warp***Drive**](https://github.co
|
|
|
32
32
|
Install using your javascript package manager of choice. For instance
|
|
33
33
|
with [pnpm](https://pnpm.io/)
|
|
34
34
|
|
|
35
|
-
```
|
|
35
|
+
```sh
|
|
36
36
|
pnpm add @warp-drive/schema-record
|
|
37
37
|
```
|
|
38
38
|
|
|
@@ -210,7 +210,7 @@ interface User {
|
|
|
210
210
|
readonly lastName: string;
|
|
211
211
|
readonly name: string;
|
|
212
212
|
readonly pets: Readonly<Array<Dog | Pet>>;
|
|
213
|
-
[Checkout]: Promise<EditableUser>
|
|
213
|
+
[Checkout](): Promise<EditableUser>
|
|
214
214
|
}>
|
|
215
215
|
```
|
|
216
216
|
|
package/dist/-private.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export { Context } from '@warp-drive/core/reactive/-private';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive/schema-record",
|
|
3
|
-
"version": "5.6.0-beta.
|
|
3
|
+
"version": "5.6.0-beta.4",
|
|
4
4
|
"description": "Schema Driven Resource Presentation for WarpDrive and EmberData",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -38,16 +38,16 @@
|
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@embroider/macros": "^1.
|
|
42
|
-
"@warp-drive/core": "5.6.0-beta.
|
|
41
|
+
"@embroider/macros": "^1.18.1",
|
|
42
|
+
"@warp-drive/core": "5.6.0-beta.3"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
|
-
"@babel/core": "^7.
|
|
46
|
-
"@babel/plugin-transform-typescript": "^7.
|
|
47
|
-
"@babel/preset-env": "^7.
|
|
48
|
-
"@babel/preset-typescript": "^7.27.
|
|
49
|
-
"@warp-drive/internal-config": "5.6.0-beta.
|
|
50
|
-
"vite": "^7.
|
|
45
|
+
"@babel/core": "^7.28.3",
|
|
46
|
+
"@babel/plugin-transform-typescript": "^7.28.0",
|
|
47
|
+
"@babel/preset-env": "^7.28.3",
|
|
48
|
+
"@babel/preset-typescript": "^7.27.1",
|
|
49
|
+
"@warp-drive/internal-config": "5.6.0-beta.4",
|
|
50
|
+
"vite": "^7.1.3"
|
|
51
51
|
},
|
|
52
52
|
"ember": {
|
|
53
53
|
"edition": "octane"
|
|
@@ -17,7 +17,7 @@ declare module '@warp-drive/schema-record' {
|
|
|
17
17
|
* Install using your javascript package manager of choice. For instance
|
|
18
18
|
* with [pnpm](https://pnpm.io/)
|
|
19
19
|
*
|
|
20
|
-
* ```
|
|
20
|
+
* ```sh
|
|
21
21
|
* pnpm add @warp-drive/schema-record
|
|
22
22
|
* ```
|
|
23
23
|
*
|
|
@@ -234,7 +234,7 @@ declare module '@warp-drive/schema-record' {
|
|
|
234
234
|
* readonly lastName: string;
|
|
235
235
|
* readonly name: string;
|
|
236
236
|
* readonly pets: Readonly<Array<Dog | Pet>>;
|
|
237
|
-
* [Checkout]: Promise<EditableUser>
|
|
237
|
+
* [Checkout](): Promise<EditableUser>
|
|
238
238
|
* }>
|
|
239
239
|
* ```
|
|
240
240
|
*
|