@isograph/react 0.0.0-main-7d4bae3e → 0.0.0-main-351c9868
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.
@@ -9,7 +9,7 @@ export type FragmentReference<TReadFromStore extends Object, TClientFieldValue>
|
|
9
9
|
readonly kind: 'FragmentReference';
|
10
10
|
readonly readerWithRefetchQueries: PromiseWrapper<ReaderWithRefetchQueries<TReadFromStore, TClientFieldValue>>;
|
11
11
|
readonly root: DataId;
|
12
|
-
readonly variables: Variables
|
12
|
+
readonly variables: Variables;
|
13
13
|
readonly networkRequest: PromiseWrapper<void, any>;
|
14
14
|
};
|
15
15
|
export declare function stableIdForFragmentReference(fragmentReference: FragmentReference<any, any>): string;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@isograph/react",
|
3
|
-
"version": "0.0.0-main-
|
3
|
+
"version": "0.0.0-main-351c9868",
|
4
4
|
"description": "Use Isograph with React",
|
5
5
|
"homepage": "https://isograph.dev",
|
6
6
|
"main": "dist/index.js",
|
@@ -17,9 +17,9 @@
|
|
17
17
|
"tsc": "tsc"
|
18
18
|
},
|
19
19
|
"dependencies": {
|
20
|
-
"@isograph/disposable-types": "0.0.0-main-
|
21
|
-
"@isograph/react-disposable-state": "0.0.0-main-
|
22
|
-
"@isograph/reference-counted-pointer": "0.0.0-main-
|
20
|
+
"@isograph/disposable-types": "0.0.0-main-351c9868",
|
21
|
+
"@isograph/react-disposable-state": "0.0.0-main-351c9868",
|
22
|
+
"@isograph/reference-counted-pointer": "0.0.0-main-351c9868"
|
23
23
|
},
|
24
24
|
"peerDependencies": {
|
25
25
|
"react": "18.2.0"
|
@@ -16,7 +16,7 @@ export type FragmentReference<
|
|
16
16
|
ReaderWithRefetchQueries<TReadFromStore, TClientFieldValue>
|
17
17
|
>;
|
18
18
|
readonly root: DataId;
|
19
|
-
readonly variables: Variables
|
19
|
+
readonly variables: Variables;
|
20
20
|
readonly networkRequest: PromiseWrapper<void, any>;
|
21
21
|
};
|
22
22
|
|