@warp-drive/core-types 5.9.0-alpha.9 → 5.9.0-beta.1
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,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive/core-types",
|
|
3
|
-
"version": "5.9.0-
|
|
3
|
+
"version": "5.9.0-beta.1",
|
|
4
4
|
"description": "(Legacy) Core logic, utils and types for WarpDrive and EmberData",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -32,14 +32,14 @@
|
|
|
32
32
|
}
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@embroider/macros": "^1.
|
|
36
|
-
"@warp-drive/core": "5.9.0-
|
|
35
|
+
"@embroider/macros": "^1.20.6",
|
|
36
|
+
"@warp-drive/core": "5.9.0-beta.1"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@babel/core": "^7.28.3",
|
|
40
40
|
"@babel/plugin-transform-typescript": "^7.28.0",
|
|
41
41
|
"@babel/preset-typescript": "^7.27.1",
|
|
42
|
-
"@warp-drive/internal-config": "5.9.0-
|
|
42
|
+
"@warp-drive/internal-config": "5.9.0-beta.1",
|
|
43
43
|
"typescript": "^5.9.3",
|
|
44
44
|
"vite": "^7.3.1"
|
|
45
45
|
},
|
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
/// <reference path="./symbols.d.ts" />
|
|
2
|
-
/// <reference path="./-private.d.ts" />
|
|
3
1
|
/// <reference path="./runtime.d.ts" />
|
|
4
|
-
/// <reference path="./cache.d.ts" />
|
|
5
2
|
/// <reference path="./utils.d.ts" />
|
|
3
|
+
/// <reference path="./cache.d.ts" />
|
|
4
|
+
/// <reference path="./request.d.ts" />
|
|
5
|
+
/// <reference path="./symbols.d.ts" />
|
|
6
6
|
/// <reference path="./graph.d.ts" />
|
|
7
|
+
/// <reference path="./identifier.d.ts" />
|
|
7
8
|
/// <reference path="./params.d.ts" />
|
|
9
|
+
/// <reference path="./-private.d.ts" />
|
|
8
10
|
/// <reference path="./record.d.ts" />
|
|
9
|
-
/// <reference path="./request.d.ts" />
|
|
10
|
-
/// <reference path="./identifier.d.ts" />
|
|
11
|
-
/// <reference path="./spec/error.d.ts" />
|
|
12
|
-
/// <reference path="./spec/json-api-raw.d.ts" />
|
|
13
11
|
/// <reference path="./spec/document.d.ts" />
|
|
14
|
-
/// <reference path="./json
|
|
15
|
-
/// <reference path="./
|
|
12
|
+
/// <reference path="./spec/json-api-raw.d.ts" />
|
|
13
|
+
/// <reference path="./spec/error.d.ts" />
|
|
16
14
|
/// <reference path="./schema/fields.d.ts" />
|
|
17
|
-
/// <reference path="./
|
|
15
|
+
/// <reference path="./schema/concepts.d.ts" />
|
|
16
|
+
/// <reference path="./json/raw.d.ts" />
|
|
17
|
+
/// <reference path="./cache/mutations.d.ts" />
|
|
18
18
|
/// <reference path="./cache/operations.d.ts" />
|
|
19
19
|
/// <reference path="./cache/aliases.d.ts" />
|
|
20
20
|
/// <reference path="./cache/change.d.ts" />
|
|
21
|
-
/// <reference path="./cache/
|
|
21
|
+
/// <reference path="./cache/relationship.d.ts" />
|
|
22
22
|
declare module '@warp-drive/core-types' {
|
|
23
23
|
export type * from "@warp-drive/core/types";
|
|
24
24
|
|