@warp-drive/core-types 5.7.0-alpha.9 → 5.7.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/README.md CHANGED
@@ -18,7 +18,7 @@
18
18
 
19
19
  ## Installation
20
20
 
21
- ```cli
21
+ ```sh
22
22
  pnpm install @warp-drive/core-types
23
23
  ```
24
24
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@warp-drive/core-types",
3
- "version": "5.7.0-alpha.9",
3
+ "version": "5.7.0",
4
4
  "description": "Provides core logic, utils and types for WarpDrive and EmberData",
5
5
  "keywords": [
6
6
  "ember-addon"
@@ -32,16 +32,16 @@
32
32
  }
33
33
  },
34
34
  "dependencies": {
35
- "@embroider/macros": "^1.16.12",
36
- "@warp-drive/core": "5.7.0-alpha.9"
35
+ "@embroider/macros": "^1.18.1",
36
+ "@warp-drive/core": "5.7.0"
37
37
  },
38
38
  "devDependencies": {
39
- "@babel/core": "^7.26.10",
40
- "@babel/plugin-transform-typescript": "^7.27.0",
41
- "@babel/preset-typescript": "^7.27.0",
42
- "@warp-drive/internal-config": "5.7.0-alpha.9",
43
- "typescript": "^5.8.3",
44
- "vite": "^7.0.0"
39
+ "@babel/core": "^7.28.3",
40
+ "@babel/plugin-transform-typescript": "^7.28.0",
41
+ "@babel/preset-typescript": "^7.27.1",
42
+ "@warp-drive/internal-config": "5.7.0",
43
+ "typescript": "^5.9.2",
44
+ "vite": "^7.1.3"
45
45
  },
46
46
  "volta": {
47
47
  "extends": "../../package.json"
@@ -1,24 +1,24 @@
1
+ /// <reference path="./record.d.ts" />
1
2
  /// <reference path="./request.d.ts" />
3
+ /// <reference path="./symbols.d.ts" />
4
+ /// <reference path="./graph.d.ts" />
2
5
  /// <reference path="./params.d.ts" />
3
6
  /// <reference path="./identifier.d.ts" />
4
- /// <reference path="./symbols.d.ts" />
5
7
  /// <reference path="./-private.d.ts" />
6
- /// <reference path="./record.d.ts" />
7
- /// <reference path="./cache.d.ts" />
8
8
  /// <reference path="./utils.d.ts" />
9
+ /// <reference path="./cache.d.ts" />
9
10
  /// <reference path="./runtime.d.ts" />
10
- /// <reference path="./graph.d.ts" />
11
- /// <reference path="./cache/mutations.d.ts" />
11
+ /// <reference path="./json/raw.d.ts" />
12
+ /// <reference path="./schema/concepts.d.ts" />
13
+ /// <reference path="./schema/fields.d.ts" />
14
+ /// <reference path="./cache/change.d.ts" />
12
15
  /// <reference path="./cache/relationship.d.ts" />
13
16
  /// <reference path="./cache/operations.d.ts" />
14
17
  /// <reference path="./cache/aliases.d.ts" />
15
- /// <reference path="./cache/change.d.ts" />
16
- /// <reference path="./schema/fields.d.ts" />
17
- /// <reference path="./schema/concepts.d.ts" />
18
- /// <reference path="./json/raw.d.ts" />
18
+ /// <reference path="./cache/mutations.d.ts" />
19
19
  /// <reference path="./spec/error.d.ts" />
20
- /// <reference path="./spec/json-api-raw.d.ts" />
21
20
  /// <reference path="./spec/document.d.ts" />
21
+ /// <reference path="./spec/json-api-raw.d.ts" />
22
22
  declare module '@warp-drive/core-types' {
23
23
  export type * from "@warp-drive/core/types";
24
24