@ember-data/store 5.8.0-alpha.0 → 5.8.0-alpha.4

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/dist/index.js CHANGED
@@ -8,17 +8,17 @@ export { CacheHandler, Store as default, recordIdentifierFor, setIdentifierForge
8
8
  * <p align="center">
9
9
  * <img
10
10
  * class="project-logo"
11
- * src="https://raw.githubusercontent.com/emberjs/data/4612c9354e4c54d53327ec2cf21955075ce21294/ember-data-logo-light.svg#gh-light-mode-only"
11
+ * src="https://raw.githubusercontent.com/warp-drive-data/warp-drive/4612c9354e4c54d53327ec2cf21955075ce21294/ember-data-logo-light.svg#gh-light-mode-only"
12
12
  * alt="EmberData Store"
13
13
  * width="240px"
14
14
  * title="EmberData Store"
15
15
  * />
16
16
  * </p>
17
17
  *
18
- * This package provides [*Ember***Data**](https://github.com/emberjs/data/)'s `Store` class.
18
+ * This package provides [*Ember***Data**](https://github.com/warp-drive-data/warp-drive/)'s `Store` class.
19
19
  *
20
20
  * A [Store](https://api.emberjs.com/ember-data/release/classes/Store) coordinates interaction between your application, a [Cache](https://api.emberjs.com/ember-data/release/classes/%3CInterface%3E%20Cache),
21
- * and sources of data (such as your API or a local persistence layer) accessed via a [RequestManager](https://github.com/emberjs/data/tree/main/packages/request).
21
+ * and sources of data (such as your API or a local persistence layer) accessed via a [RequestManager](https://github.com/warp-drive-data/warp-drive/tree/main/packages/request).
22
22
  *
23
23
  * Optionally, a Store can be configured to hydrate the response data into rich presentation classes.
24
24
  *
@@ -80,7 +80,7 @@ export { CacheHandler, Store as default, recordIdentifierFor, setIdentifierForge
80
80
  * To start, let's install the `RequestManager` from `@ember-data/request` and the basic `Fetch` handler from ``@ember-data/request/fetch`.
81
81
  *
82
82
  * > **Note**
83
- * > If your app uses `GraphQL`, `REST` or different conventions for `JSON:API` than your cache expects, other handlers may better fit your data. You can author your own handler by creating one that conforms to the [handler interface](https://github.com/emberjs/data/tree/main/packages/request#handling-requests).
83
+ * > If your app uses `GraphQL`, `REST` or different conventions for `JSON:API` than your cache expects, other handlers may better fit your data. You can author your own handler by creating one that conforms to the [handler interface](https://github.com/warp-drive-data/warp-drive/tree/main/packages/request#handling-requests).
84
84
  *
85
85
  * ```ts
86
86
  * import Store from '@ember-data/store';
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@ember-data/store",
3
- "version": "5.8.0-alpha.0",
3
+ "version": "5.8.0-alpha.4",
4
4
  "description": "The core of EmberData. Provides the Store service which coordinates the cache with the network and presentation layers.",
5
5
  "keywords": [
6
6
  "ember-addon"
7
7
  ],
8
8
  "repository": {
9
9
  "type": "git",
10
- "url": "git+ssh://git@github.com:emberjs/data.git",
10
+ "url": "git+ssh://git@github.com:warp-drive-data/warp-drive.git",
11
11
  "directory": "packages/store"
12
12
  },
13
13
  "license": "MIT",
@@ -33,10 +33,10 @@
33
33
  },
34
34
  "dependencies": {
35
35
  "@embroider/macros": "^1.18.1",
36
- "@warp-drive/core": "5.8.0-alpha.0"
36
+ "@warp-drive/core": "5.8.0-alpha.4"
37
37
  },
38
38
  "peerDependencies": {
39
- "@ember-data/tracking": "5.8.0-alpha.0",
39
+ "@ember-data/tracking": "5.8.0-alpha.4",
40
40
  "@ember/test-waiters": "^3.1.0 || ^4.0.0"
41
41
  },
42
42
  "peerDependenciesMeta": {
@@ -52,8 +52,8 @@
52
52
  "@babel/plugin-transform-typescript": "^7.28.0",
53
53
  "@babel/preset-env": "^7.28.3",
54
54
  "@babel/preset-typescript": "^7.27.1",
55
- "@warp-drive/internal-config": "5.8.0-alpha.0",
56
- "@ember-data/tracking": "5.8.0-alpha.0",
55
+ "@warp-drive/internal-config": "5.8.0-alpha.4",
56
+ "@ember-data/tracking": "5.8.0-alpha.4",
57
57
  "@ember/test-waiters": "^4.1.1",
58
58
  "ember-source": "~6.6.0",
59
59
  "typescript": "^5.9.2",
@@ -1,6 +1,6 @@
1
- /// <reference path="./types.d.ts" />
2
1
  /// <reference path="./configure.d.ts" />
3
2
  /// <reference path="./-private.d.ts" />
3
+ /// <reference path="./types.d.ts" />
4
4
  declare module '@ember-data/store' {
5
5
  export { Store as default, type StoreRequestContext, CacheHandler, type Document, type CachePolicy, type StoreRequestInput, recordIdentifierFor, storeFor, type DocumentCacheOperation, type CacheOperation, type NotificationType, setIdentifierGenerationMethod, setIdentifierUpdateMethod, setIdentifierForgetMethod, setIdentifierResetMethod, setKeyInfoForResource } from "@warp-drive/core";
6
6