@warp-drive-mirror/ember 5.7.0-alpha.26 → 5.7.0-alpha.28
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.
|
@@ -3,6 +3,7 @@ import type { ComponentLike } from "@glint/template";
|
|
|
3
3
|
import type { RequestManager, Store } from "@warp-drive-mirror/core";
|
|
4
4
|
import type { ContentFeatures, RecoveryFeatures, RequestArgs, RequestLoadingState, RequestState, RequestSubscription } from "@warp-drive-mirror/core/store/-private";
|
|
5
5
|
import type { StructuredErrorDocument } from "@warp-drive-mirror/core/types/request";
|
|
6
|
+
export { ContentFeatures, RecoveryFeatures };
|
|
6
7
|
export interface EmberRequestArgs<
|
|
7
8
|
RT,
|
|
8
9
|
E
|
|
@@ -268,12 +269,6 @@ interface RequestSignature<
|
|
|
268
269
|
RT,
|
|
269
270
|
E
|
|
270
271
|
> extends Component<RequestSignature<RT, E>> {
|
|
271
|
-
/**
|
|
272
|
-
* The store instance to use for making requests. If contexts are available, this
|
|
273
|
-
* will be the `store` on the context, else it will be the store service.
|
|
274
|
-
*
|
|
275
|
-
* @internal
|
|
276
|
-
*/ _store: Store;
|
|
277
272
|
get store(): Store | RequestManager;
|
|
278
273
|
_state: RequestSubscription<RT, E> | null;
|
|
279
274
|
get state(): RequestSubscription<RT, E>;
|
|
@@ -292,4 +287,3 @@ interface RequestSignature<
|
|
|
292
287
|
}>;
|
|
293
288
|
willDestroy(): void;
|
|
294
289
|
}
|
|
295
|
-
export {};
|
package/declarations/index.d.ts
CHANGED
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
*
|
|
44
44
|
* @module
|
|
45
45
|
*/
|
|
46
|
-
export { Request, type ContentFeatures } from "./-private/request.js";
|
|
46
|
+
export { Request, type ContentFeatures, type RecoveryFeatures } from "./-private/request.js";
|
|
47
47
|
export { Await, Throw } from "./-private/await.js";
|
|
48
48
|
/**
|
|
49
49
|
* PromiseState provides a reactive wrapper for a promise which allows you write declarative
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@warp-drive-mirror/ember",
|
|
3
3
|
"description": "Data bindings and utilities for Ember applications using WarpDrive",
|
|
4
|
-
"version": "5.7.0-alpha.
|
|
4
|
+
"version": "5.7.0-alpha.28",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Chris Thoburn <runspired@users.noreply.github.com>",
|
|
7
7
|
"repository": {
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
40
|
"@embroider/macros": "^1.16.12",
|
|
41
|
-
"@warp-drive-mirror/core": "5.7.0-alpha.
|
|
41
|
+
"@warp-drive-mirror/core": "5.7.0-alpha.28"
|
|
42
42
|
},
|
|
43
43
|
"peerDependenciesMeta": {
|
|
44
44
|
"ember-provide-consume-context": {
|
|
@@ -52,16 +52,16 @@
|
|
|
52
52
|
"@babel/preset-typescript": "^7.27.0",
|
|
53
53
|
"@babel/runtime": "^7.27.0",
|
|
54
54
|
"@glimmer/component": "^2.0.0",
|
|
55
|
-
"@glint/core": "
|
|
56
|
-
"@glint/environment-ember-loose": "
|
|
57
|
-
"@glint/environment-ember-template-imports": "
|
|
58
|
-
"@glint/template": "
|
|
55
|
+
"@glint/core": "alpha",
|
|
56
|
+
"@glint/environment-ember-loose": "alpha",
|
|
57
|
+
"@glint/environment-ember-template-imports": "alpha",
|
|
58
|
+
"@glint/template": "alpha",
|
|
59
59
|
"decorator-transforms": "^2.3.0",
|
|
60
60
|
"@embroider/addon-dev": "^7.1.3",
|
|
61
61
|
"@ember/test-helpers": "5.2.0",
|
|
62
62
|
"@ember/test-waiters": "^4.1.0",
|
|
63
|
-
"@warp-drive/internal-config": "5.7.0-alpha.
|
|
64
|
-
"@warp-drive-mirror/core": "5.7.0-alpha.
|
|
63
|
+
"@warp-drive/internal-config": "5.7.0-alpha.28",
|
|
64
|
+
"@warp-drive-mirror/core": "5.7.0-alpha.28",
|
|
65
65
|
"babel-plugin-ember-template-compilation": "^2.4.1",
|
|
66
66
|
"ember-template-imports": "^4.3.0",
|
|
67
67
|
"ember-source": "~6.3.0",
|