@graphql-tools/git-loader 7.2.13 → 7.2.14

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/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@graphql-tools/git-loader",
3
- "version": "7.2.13",
3
+ "version": "7.2.14",
4
4
  "description": "A set of utils for faster development of GraphQL tools",
5
5
  "sideEffects": false,
6
6
  "peerDependencies": {
7
7
  "graphql": "^14.0.0 || ^15.0.0 || ^16.0.0 || ^17.0.0"
8
8
  },
9
9
  "dependencies": {
10
- "@graphql-tools/graphql-tag-pluck": "7.4.0",
11
- "@graphql-tools/utils": "9.1.1",
10
+ "@graphql-tools/graphql-tag-pluck": "7.4.1",
11
+ "@graphql-tools/utils": "9.1.2",
12
12
  "is-glob": "4.0.3",
13
13
  "micromatch": "^4.0.4",
14
14
  "tslib": "^2.4.0",
@@ -3,7 +3,7 @@ import { BaseLoaderOptions, Loader, Source } from '@graphql-tools/utils';
3
3
  /**
4
4
  * Additional options for loading from git
5
5
  */
6
- export declare type GitLoaderOptions = BaseLoaderOptions & {
6
+ export type GitLoaderOptions = BaseLoaderOptions & {
7
7
  /**
8
8
  * Additional options to pass to `graphql-tag-pluck`
9
9
  */
@@ -3,7 +3,7 @@ import { BaseLoaderOptions, Loader, Source } from '@graphql-tools/utils';
3
3
  /**
4
4
  * Additional options for loading from git
5
5
  */
6
- export declare type GitLoaderOptions = BaseLoaderOptions & {
6
+ export type GitLoaderOptions = BaseLoaderOptions & {
7
7
  /**
8
8
  * Additional options to pass to `graphql-tag-pluck`
9
9
  */
@@ -1,7 +1,7 @@
1
- declare type PartialInput = {
1
+ type PartialInput = {
2
2
  ref: string;
3
3
  };
4
- declare type Input = PartialInput & {
4
+ type Input = PartialInput & {
5
5
  path: string;
6
6
  };
7
7
  /**
@@ -1,7 +1,7 @@
1
- declare type PartialInput = {
1
+ type PartialInput = {
2
2
  ref: string;
3
3
  };
4
- declare type Input = PartialInput & {
4
+ type Input = PartialInput & {
5
5
  path: string;
6
6
  };
7
7
  /**