@graphql-hive/gateway-runtime 2.5.0-alpha-b079a2654a7efe1afbc720b58220e3474da04a3a → 2.5.0-alpha-958f748d4cc864dfdd0d8b32dfa8695797c954f3
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 +1 -1
- package/dist/index.cjs +4 -4
- package/dist/index.js +4 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/index.cjs
CHANGED
|
@@ -538,12 +538,12 @@ function getProxyExecutor({
|
|
|
538
538
|
}
|
|
539
539
|
|
|
540
540
|
const defaultClientNameHeaders = [
|
|
541
|
-
"
|
|
542
|
-
"graphql-client-name"
|
|
541
|
+
"graphql-client-name",
|
|
542
|
+
"x-graphql-client-name"
|
|
543
543
|
];
|
|
544
544
|
const defaultClientVersionHeaders = [
|
|
545
|
-
"
|
|
546
|
-
"graphql-client-version"
|
|
545
|
+
"graphql-client-version",
|
|
546
|
+
"x-graphql-client-version"
|
|
547
547
|
];
|
|
548
548
|
function lookupHeader(headers, possibleNames) {
|
|
549
549
|
for (const name of possibleNames) {
|
package/dist/index.js
CHANGED
|
@@ -537,12 +537,12 @@ function getProxyExecutor({
|
|
|
537
537
|
}
|
|
538
538
|
|
|
539
539
|
const defaultClientNameHeaders = [
|
|
540
|
-
"
|
|
541
|
-
"graphql-client-name"
|
|
540
|
+
"graphql-client-name",
|
|
541
|
+
"x-graphql-client-name"
|
|
542
542
|
];
|
|
543
543
|
const defaultClientVersionHeaders = [
|
|
544
|
-
"
|
|
545
|
-
"graphql-client-version"
|
|
544
|
+
"graphql-client-version",
|
|
545
|
+
"x-graphql-client-version"
|
|
546
546
|
];
|
|
547
547
|
function lookupHeader(headers, possibleNames) {
|
|
548
548
|
for (const name of possibleNames) {
|