@ember-data-types/serializer 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 +24 -11
- package/package.json +1 -1
- package/unstable-preview-types/index.d.ts +2 -2
package/README.md
CHANGED
|
@@ -1,20 +1,33 @@
|
|
|
1
1
|
<p align="center">
|
|
2
2
|
<img
|
|
3
3
|
class="project-logo"
|
|
4
|
-
src="./logos/
|
|
5
|
-
alt="
|
|
6
|
-
width="
|
|
7
|
-
title="
|
|
8
|
-
/>
|
|
9
|
-
<img
|
|
10
|
-
class="project-logo"
|
|
11
|
-
src="./logos/ember-data-logo-light.svg#gh-light-mode-only"
|
|
12
|
-
alt="EmberData Serializer"
|
|
13
|
-
width="240px"
|
|
14
|
-
title="EmberData Serializer"
|
|
4
|
+
src="./logos/logo-yellow-slab.svg"
|
|
5
|
+
alt="WarpDrive"
|
|
6
|
+
width="180px"
|
|
7
|
+
title="WarpDrive"
|
|
15
8
|
/>
|
|
16
9
|
</p>
|
|
17
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/>
|
|
25
|
+
</p>
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
# @ember-data/serializer
|
|
30
|
+
|
|
18
31
|
<p align="center">Provides JSON, REST and JSON:API Implementations of the legacy <a href="https://api.emberjs.com/ember-data/release/classes/%3CInterface%3E%20Serializer">Serializer Interface</a></p>
|
|
19
32
|
|
|
20
33
|
> **Caution** ⚠️ **This is LEGACY documentation** for a feature that is no longer encouraged to be used.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
+
/// <reference path="./json-api.d.ts" />
|
|
1
2
|
/// <reference path="./rest.d.ts" />
|
|
2
|
-
/// <reference path="./transform.d.ts" />
|
|
3
3
|
/// <reference path="./json.d.ts" />
|
|
4
|
-
/// <reference path="./
|
|
4
|
+
/// <reference path="./transform.d.ts" />
|
|
5
5
|
declare module '@ember-data/serializer' {
|
|
6
6
|
export { Serializer as default } from "@warp-drive/legacy/serializer";
|
|
7
7
|
|