@warp-drive-mirror/schema-record 5.7.0-alpha.22 → 5.7.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 CHANGED
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@warp-drive-mirror/schema-record",
3
- "version": "5.7.0-alpha.22",
3
+ "version": "5.7.0-alpha.23",
4
4
  "description": "Schema Driven Resource Presentation for WarpDrive and EmberData",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -39,14 +39,14 @@
39
39
  "peerDependencies": {},
40
40
  "dependencies": {
41
41
  "@embroider/macros": "^1.16.12",
42
- "@warp-drive-mirror/core": "5.7.0-alpha.22"
42
+ "@warp-drive-mirror/core": "5.7.0-alpha.23"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@babel/core": "^7.26.10",
46
46
  "@babel/plugin-transform-typescript": "^7.27.0",
47
47
  "@babel/preset-env": "^7.26.9",
48
48
  "@babel/preset-typescript": "^7.27.0",
49
- "@warp-drive/internal-config": "5.7.0-alpha.22",
49
+ "@warp-drive/internal-config": "5.7.0-alpha.23",
50
50
  "vite": "^7.0.0"
51
51
  },
52
52
  "ember": {
@@ -234,7 +234,7 @@ declare module '@warp-drive-mirror/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
  *