@graphcommerce/graphql-mesh 9.0.0-canary.115 → 9.0.0-canary.116
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/CHANGELOG.md +2 -0
- package/customFetch.ts +2 -0
- package/package.json +4 -4
- package/plugin/forward-headers.ts +2 -0
package/CHANGELOG.md
CHANGED
package/customFetch.ts
CHANGED
|
@@ -10,6 +10,7 @@ const fetcher = fetchRetry(
|
|
|
10
10
|
* @param {RequestInfo | URL} url
|
|
11
11
|
* @param {import('fetch-retry').RequestInitWithRetry | undefined} options
|
|
12
12
|
* @returns {Promise<Response>}
|
|
13
|
+
* @public
|
|
13
14
|
*/
|
|
14
15
|
export const fetch = (
|
|
15
16
|
url: RequestInfo | URL,
|
|
@@ -28,4 +29,5 @@ export const fetch = (
|
|
|
28
29
|
})
|
|
29
30
|
}
|
|
30
31
|
|
|
32
|
+
/** @public @alias */
|
|
31
33
|
export default fetch
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@graphcommerce/graphql-mesh",
|
|
3
3
|
"homepage": "https://www.graphcommerce.org/",
|
|
4
4
|
"repository": "github:graphcommerce-org/graphcommerce",
|
|
5
|
-
"version": "9.0.0-canary.
|
|
5
|
+
"version": "9.0.0-canary.116",
|
|
6
6
|
"main": "index.ts",
|
|
7
7
|
"dependencies": {
|
|
8
8
|
"@whatwg-node/fetch": "^0.10.1",
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
},
|
|
15
15
|
"peerDependencies": {
|
|
16
16
|
"@apollo/client": "*",
|
|
17
|
-
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.
|
|
18
|
-
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.
|
|
19
|
-
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.
|
|
17
|
+
"@graphcommerce/eslint-config-pwa": "^9.0.0-canary.116",
|
|
18
|
+
"@graphcommerce/prettier-config-pwa": "^9.0.0-canary.116",
|
|
19
|
+
"@graphcommerce/typescript-config-pwa": "^9.0.0-canary.116",
|
|
20
20
|
"@graphql-mesh/runtime": "*",
|
|
21
21
|
"@graphql-mesh/types": "*"
|
|
22
22
|
},
|