@graphql-tools/github-loader 7.3.28 → 7.3.29-alpha-20230515174415-d29a8b3b
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/cjs/index.js +1 -0
- package/esm/index.js +1 -0
- package/package.json +4 -4
- package/typings/index.d.cts +4 -0
- package/typings/index.d.ts +4 -0
package/cjs/index.js
CHANGED
package/esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@graphql-tools/github-loader",
|
|
3
|
-
"version": "7.3.
|
|
3
|
+
"version": "7.3.29-alpha-20230515174415-d29a8b3b",
|
|
4
4
|
"description": "A set of utils for faster development of GraphQL tools",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"peerDependencies": {
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@ardatan/sync-fetch": "^0.0.1",
|
|
11
|
-
"@graphql-tools/executor-http": "
|
|
12
|
-
"@graphql-tools/utils": "
|
|
13
|
-
"@graphql-tools/graphql-tag-pluck": "
|
|
11
|
+
"@graphql-tools/executor-http": "0.1.11-alpha-20230515174415-d29a8b3b",
|
|
12
|
+
"@graphql-tools/utils": "10.0.0-alpha-20230515174415-d29a8b3b",
|
|
13
|
+
"@graphql-tools/graphql-tag-pluck": "7.5.3-alpha-20230515174415-d29a8b3b",
|
|
14
14
|
"@whatwg-node/fetch": "^0.8.0",
|
|
15
15
|
"value-or-promise": "^1.0.12",
|
|
16
16
|
"tslib": "^2.4.0"
|
package/typings/index.d.cts
CHANGED
|
@@ -16,6 +16,10 @@ export interface GithubLoaderOptions extends BaseLoaderOptions {
|
|
|
16
16
|
*/
|
|
17
17
|
pluckConfig?: GraphQLTagPluckOptions;
|
|
18
18
|
customFetch?: FetchFn;
|
|
19
|
+
/**
|
|
20
|
+
* Additional headers to pass to the fetch request
|
|
21
|
+
*/
|
|
22
|
+
headers?: Record<string, string>;
|
|
19
23
|
}
|
|
20
24
|
/**
|
|
21
25
|
* This loader loads a file from GitHub.
|
package/typings/index.d.ts
CHANGED
|
@@ -16,6 +16,10 @@ export interface GithubLoaderOptions extends BaseLoaderOptions {
|
|
|
16
16
|
*/
|
|
17
17
|
pluckConfig?: GraphQLTagPluckOptions;
|
|
18
18
|
customFetch?: FetchFn;
|
|
19
|
+
/**
|
|
20
|
+
* Additional headers to pass to the fetch request
|
|
21
|
+
*/
|
|
22
|
+
headers?: Record<string, string>;
|
|
19
23
|
}
|
|
20
24
|
/**
|
|
21
25
|
* This loader loads a file from GitHub.
|