@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 CHANGED
@@ -1,26 +1,36 @@
1
1
  <p align="center">
2
2
  <img
3
3
  class="project-logo"
4
- src="./logos/warp-drive-logo-dark.svg#gh-light-mode-only"
4
+ src="./logos/logo-yellow-slab.svg"
5
5
  alt="WarpDrive"
6
- width="200px"
7
- title="WarpDrive" />
8
- <img
9
- class="project-logo"
10
- src="./logos/warp-drive-logo-gold.svg#gh-dark-mode-only"
11
- alt="WarpDrive"
12
- width="200px"
13
- title="WarpDrive" />
6
+ width="180px"
7
+ title="WarpDrive"
8
+ />
9
+ </p>
10
+
11
+ ![NPM Stable Version](https://img.shields.io/npm/v/ember-data/latest?label=version&style=flat&color=fdb155)
12
+ ![NPM Downloads](https://img.shields.io/npm/dm/ember-data.svg?style=flat&color=fdb155)
13
+ ![License](https://img.shields.io/github/license/warp-drive-data/warp-drive.svg?style=flat&color=fdb155)
14
+ [![EmberJS Discord Community Server](https://img.shields.io/badge/EmberJS-grey?logo=discord&logoColor=fdb155)](https://discord.gg/zT3asNS
15
+ )
16
+ [![WarpDrive Discord Server](https://img.shields.io/badge/WarpDrive-grey?logo=discord&logoColor=fdb155)](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 &mdash;
22
+ <br>
23
+ universal, typed, reactive, and ready to scale.
24
+ <br/><br/>
14
25
  </p>
15
26
 
16
- <h3 align="center">🛸 @warp-drive/core-types</h3>
17
- <p align="center">Provides core types, type utils and constants for WarpDrive and EmberData</p>
27
+ ---
28
+
29
+ # @warp-drive/core-types
18
30
 
19
- ## Installation
31
+ This package provides types, type utils and symbols for apps still installing the older ember-data packages.
20
32
 
21
- ```sh
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@warp-drive-types/core-types",
3
- "version": "5.8.0-alpha.29",
3
+ "version": "5.8.0-alpha.30",
4
4
  "files": [
5
5
  "unstable-preview-types",
6
6
  "README.md",
@@ -1,24 +1,24 @@
1
- /// <reference path="./request.d.ts" />
2
- /// <reference path="./graph.d.ts" />
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="./identifier.d.ts" />
10
- /// <reference path="./cache.d.ts" />
11
- /// <reference path="./schema/fields.d.ts" />
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/raw.d.ts" />
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