@@ -6,8 +6,8 @@ export type InputMaybe<T> = Maybe<T>;
66export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
77export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
88export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
9- import { GraphQLClient } from 'graphql-request';
10- import { GraphQLClientRequestHeaders } from 'graphql-request/build/cjs/types' ;
9+ import { GraphQLClient, RequestOptions } from 'graphql-request';
10+ type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'] ;
1111/** All built-in and custom scalars, mapped to their actual values */
1212export type Scalars = {
1313 ID: string;
@@ -291,8 +291,8 @@ export type InputMaybe<T> = Maybe<T>;
291291export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
292292export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
293293export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
294- import { GraphQLClient } from 'graphql-request';
295- import { GraphQLClientRequestHeaders } from 'graphql-request/build/cjs/types' ;
294+ import { GraphQLClient, RequestOptions } from 'graphql-request';
295+ type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'] ;
296296import gql from 'graphql-tag';
297297/** All built-in and custom scalars, mapped to their actual values */
298298export type Scalars = {
@@ -570,8 +570,8 @@ export type InputMaybe<T> = Maybe<T>;
570570export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
571571export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
572572export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
573- import { GraphQLClient } from 'graphql-request';
574- import { GraphQLClientRequestHeaders } from 'graphql-request/build/cjs/types' ;
573+ import { GraphQLClient, RequestOptions } from 'graphql-request';
574+ type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'] ;
575575/** All built-in and custom scalars, mapped to their actual values */
576576export type Scalars = {
577577 ID: string;
@@ -848,9 +848,9 @@ export type InputMaybe<T> = Maybe<T>;
848848export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
849849export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
850850export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
851- import type { GraphQLClient } from 'graphql-request';
852- import type { GraphQLClientRequestHeaders } from 'graphql-request/build/cjs/types';
851+ import type { GraphQLClient, RequestOptions } from 'graphql-request';
853852import { GraphQLError, print } from 'graphql'
853+ type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
854854import gql from 'graphql-tag';
855855/** All built-in and custom scalars, mapped to their actual values */
856856export type Scalars = {
@@ -1132,9 +1132,9 @@ export type InputMaybe<T> = Maybe<T>;
11321132export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
11331133export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
11341134export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
1135- import { GraphQLClient } from 'graphql-request';
1136- import { GraphQLClientRequestHeaders } from 'graphql-request/build/cjs/types';
1135+ import { GraphQLClient, RequestOptions } from 'graphql-request';
11371136import { GraphQLError } from 'graphql'
1137+ type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
11381138/** All built-in and custom scalars, mapped to their actual values */
11391139export type Scalars = {
11401140 ID: string;
@@ -1412,8 +1412,8 @@ export type InputMaybe<T> = Maybe<T>;
14121412export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
14131413export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
14141414export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
1415- import { GraphQLClient } from 'graphql-request';
1416- import { GraphQLClientRequestHeaders } from 'graphql-request/build/esm/types.js' ;
1415+ import { GraphQLClient, RequestOptions } from 'graphql-request';
1416+ type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'] ;
14171417import gql from 'graphql-tag';
14181418/** All built-in and custom scalars, mapped to their actual values */
14191419export type Scalars = {
@@ -1692,9 +1692,9 @@ export type InputMaybe<T> = Maybe<T>;
16921692export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
16931693export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
16941694export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
1695- import { GraphQLClient } from 'graphql-request';
1696- import { GraphQLClientRequestHeaders } from 'graphql-request/build/cjs/types';
1695+ import { GraphQLClient, RequestOptions } from 'graphql-request';
16971696import { GraphQLError, print } from 'graphql'
1697+ type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
16981698import gql from 'graphql-tag';
16991699/** All built-in and custom scalars, mapped to their actual values */
17001700export type Scalars = {
@@ -1976,9 +1976,9 @@ export type InputMaybe<T> = Maybe<T>;
19761976export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
19771977export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
19781978export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
1979- import { GraphQLClient } from 'graphql-request';
1980- import { GraphQLClientRequestHeaders } from 'graphql-request/build/cjs/types';
1979+ import { GraphQLClient, RequestOptions } from 'graphql-request';
19811980import { GraphQLError, print } from 'graphql'
1981+ type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
19821982import gql from 'graphql-tag';
19831983/** All built-in and custom scalars, mapped to their actual values */
19841984export type Scalars = {
@@ -2260,8 +2260,8 @@ export type InputMaybe<T> = Maybe<T>;
22602260export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
22612261export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
22622262export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
2263- import type { GraphQLClient } from 'graphql-request';
2264- import type { GraphQLClientRequestHeaders } from 'graphql-request/build/cjs/types' ;
2263+ import type { GraphQLClient, RequestOptions } from 'graphql-request';
2264+ type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'] ;
22652265import gql from 'graphql-tag';
22662266/** All built-in and custom scalars, mapped to their actual values */
22672267export type Scalars = {
@@ -2540,8 +2540,8 @@ export type InputMaybe<T> = Maybe<T>;
25402540export type Exact<T extends { [key: string]: unknown }> = { [K in keyof T]: T[K] };
25412541export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?: Maybe<T[SubKey]> };
25422542export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
2543- import { GraphQLClient } from 'graphql-request';
2544- import { GraphQLClientRequestHeaders } from 'graphql-request/build/cjs/types' ;
2543+ import { GraphQLClient, RequestOptions } from 'graphql-request';
2544+ type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'] ;
25452545import gql from 'graphql-tag';
25462546/** All built-in and custom scalars, mapped to their actual values */
25472547export type Scalars = {
0 commit comments