react-relay 0.0.0-main-68eac882 → 0.0.0-main-7a7ec2ae
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/ReactRelayContext.js +1 -1
- package/hooks.js +1 -1
- package/index.js +1 -1
- package/jest-react/internalAct.js.flow +1 -1
- package/legacy.js +1 -1
- package/package.json +2 -2
- package/rsc-client_EXPERIMENTAL.js +1 -1
- package/rsc_EXPERIMENTAL.js +1 -1
package/ReactRelayContext.js
CHANGED
package/hooks.js
CHANGED
package/index.js
CHANGED
|
@@ -27,7 +27,7 @@ const Scheduler = require('scheduler/unstable_mock');
|
|
|
27
27
|
// The subset of a Promise that React APIs rely on. This resolves a value.
|
|
28
28
|
// This doesn't require a return value neither from the handler nor the
|
|
29
29
|
// then function.
|
|
30
|
-
interface Thenable
|
|
30
|
+
interface Thenable<out R> {
|
|
31
31
|
then<U>(
|
|
32
32
|
onFulfill: (value: R) => void | Thenable<U> | U,
|
|
33
33
|
onReject: (error: unknown) => void | Thenable<U> | U,
|
package/legacy.js
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-relay",
|
|
3
3
|
"description": "A framework for building GraphQL-driven React applications.",
|
|
4
|
-
"version": "0.0.0-main-
|
|
4
|
+
"version": "0.0.0-main-7a7ec2ae",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"graphql",
|
|
7
7
|
"relay",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"fbjs": "^3.0.2",
|
|
21
21
|
"invariant": "^2.2.4",
|
|
22
22
|
"nullthrows": "^1.1.1",
|
|
23
|
-
"relay-runtime": "0.0.0-main-
|
|
23
|
+
"relay-runtime": "0.0.0-main-7a7ec2ae"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"react": "^16.9.0 || ^17 || ^18 || ^19"
|
package/rsc_EXPERIMENTAL.js
CHANGED