@warp-drive-types/core-types 5.8.0-alpha.29 → 5.8.0-alpha.30
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 +25 -15
- package/package.json +1 -1
- package/unstable-preview-types/index.d.ts +15 -15
package/README.md
CHANGED
|
@@ -1,26 +1,36 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<img
|
|
3
3
|
class="project-logo"
|
|
4
|
-
src="./logos/
|
|
4
|
+
src="./logos/logo-yellow-slab.svg"
|
|
5
5
|
alt="WarpDrive"
|
|
6
|
-
width="
|
|
7
|
-
title="WarpDrive"
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
6
|
+
width="180px"
|
|
7
|
+
title="WarpDrive"
|
|
8
|
+
/>
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+

|
|
12
|
+

|
|
13
|
+

|
|
14
|
+
[](https://discord.gg/zT3asNS
|
|
15
|
+
)
|
|
16
|
+
[](https://discord.gg/PHBbnWJx5S
|
|
17
|
+
)
|
|
18
|
+
|
|
19
|
+
<p align="center">
|
|
20
|
+
<br>
|
|
21
|
+
<a href="https://warp-drive.io">WarpDrive</a> is the lightweight data library for web apps —
|
|
22
|
+
<br>
|
|
23
|
+
universal, typed, reactive, and ready to scale.
|
|
24
|
+
<br/><br/>
|
|
14
25
|
</p>
|
|
15
26
|
|
|
16
|
-
|
|
17
|
-
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
# @warp-drive/core-types
|
|
18
30
|
|
|
19
|
-
|
|
31
|
+
This package provides types, type utils and symbols for apps still installing the older ember-data packages.
|
|
20
32
|
|
|
21
|
-
|
|
22
|
-
pnpm install @warp-drive/core-types
|
|
23
|
-
```
|
|
33
|
+
These features are now included in [@warp-drive/core](https://www.npmjs.com/package/@warp-drive/core).
|
|
24
34
|
|
|
25
35
|
**Tagged Releases**
|
|
26
36
|
|
package/package.json
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
|
-
/// <reference path="./
|
|
2
|
-
/// <reference path="./
|
|
3
|
-
/// <reference path="./params.d.ts" />
|
|
4
|
-
/// <reference path="./symbols.d.ts" />
|
|
5
|
-
/// <reference path="./runtime.d.ts" />
|
|
1
|
+
/// <reference path="./cache.d.ts" />
|
|
2
|
+
/// <reference path="./identifier.d.ts" />
|
|
6
3
|
/// <reference path="./record.d.ts" />
|
|
7
4
|
/// <reference path="./-private.d.ts" />
|
|
5
|
+
/// <reference path="./graph.d.ts" />
|
|
6
|
+
/// <reference path="./runtime.d.ts" />
|
|
7
|
+
/// <reference path="./request.d.ts" />
|
|
8
8
|
/// <reference path="./utils.d.ts" />
|
|
9
|
-
/// <reference path="./
|
|
10
|
-
/// <reference path="./
|
|
11
|
-
/// <reference path="./
|
|
12
|
-
/// <reference path="./schema/concepts.d.ts" />
|
|
13
|
-
/// <reference path="./spec/error.d.ts" />
|
|
14
|
-
/// <reference path="./spec/document.d.ts" />
|
|
15
|
-
/// <reference path="./spec/json-api-raw.d.ts" />
|
|
16
|
-
/// <reference path="./cache/operations.d.ts" />
|
|
17
|
-
/// <reference path="./cache/relationship.d.ts" />
|
|
9
|
+
/// <reference path="./params.d.ts" />
|
|
10
|
+
/// <reference path="./symbols.d.ts" />
|
|
11
|
+
/// <reference path="./json/raw.d.ts" />
|
|
18
12
|
/// <reference path="./cache/mutations.d.ts" />
|
|
13
|
+
/// <reference path="./cache/operations.d.ts" />
|
|
19
14
|
/// <reference path="./cache/change.d.ts" />
|
|
15
|
+
/// <reference path="./cache/relationship.d.ts" />
|
|
20
16
|
/// <reference path="./cache/aliases.d.ts" />
|
|
21
|
-
/// <reference path="./json
|
|
17
|
+
/// <reference path="./spec/json-api-raw.d.ts" />
|
|
18
|
+
/// <reference path="./spec/error.d.ts" />
|
|
19
|
+
/// <reference path="./spec/document.d.ts" />
|
|
20
|
+
/// <reference path="./schema/concepts.d.ts" />
|
|
21
|
+
/// <reference path="./schema/fields.d.ts" />
|
|
22
22
|
declare module '@warp-drive/core-types' {
|
|
23
23
|
export type * from "@warp-drive/core/types";
|
|
24
24
|
|