@@ -8,7 +8,7 @@ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?:
88export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
99export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
1010export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
11- import { GraphQLClient, RequestOptions } from 'graphql-request';
11+ import { GraphQLClient, type RequestOptions } from 'graphql-request';
1212type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
1313/** All built-in and custom scalars, mapped to their actual values */
1414export type Scalars = {
@@ -295,7 +295,7 @@ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?:
295295export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
296296export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
297297export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
298- import { GraphQLClient, RequestOptions } from 'graphql-request';
298+ import { GraphQLClient, type RequestOptions } from 'graphql-request';
299299type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
300300import gql from 'graphql-tag';
301301/** All built-in and custom scalars, mapped to their actual values */
@@ -576,7 +576,7 @@ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?:
576576export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
577577export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
578578export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
579- import { GraphQLClient, RequestOptions } from 'graphql-request';
579+ import { GraphQLClient, type RequestOptions } from 'graphql-request';
580580type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
581581/** All built-in and custom scalars, mapped to their actual values */
582582export type Scalars = {
@@ -856,7 +856,7 @@ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?:
856856export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
857857export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
858858export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
859- import type { GraphQLClient, RequestOptions } from 'graphql-request';
859+ import type { GraphQLClient, type RequestOptions } from 'graphql-request';
860860import { GraphQLError, print } from 'graphql'
861861type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
862862import gql from 'graphql-tag';
@@ -1142,7 +1142,7 @@ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?:
11421142export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
11431143export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
11441144export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
1145- import { GraphQLClient, RequestOptions } from 'graphql-request';
1145+ import { GraphQLClient, type RequestOptions } from 'graphql-request';
11461146import { GraphQLError } from 'graphql'
11471147type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
11481148/** All built-in and custom scalars, mapped to their actual values */
@@ -1424,7 +1424,7 @@ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?:
14241424export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
14251425export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
14261426export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
1427- import { GraphQLClient, RequestOptions } from 'graphql-request';
1427+ import { GraphQLClient, type RequestOptions } from 'graphql-request';
14281428type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
14291429import gql from 'graphql-tag';
14301430/** All built-in and custom scalars, mapped to their actual values */
@@ -1706,7 +1706,7 @@ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?:
17061706export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
17071707export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
17081708export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
1709- import { GraphQLClient, RequestOptions } from 'graphql-request';
1709+ import { GraphQLClient, type RequestOptions } from 'graphql-request';
17101710import { GraphQLError, print } from 'graphql'
17111711type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
17121712import gql from 'graphql-tag';
@@ -1992,7 +1992,7 @@ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?:
19921992export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
19931993export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
19941994export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
1995- import { GraphQLClient, RequestOptions } from 'graphql-request';
1995+ import { GraphQLClient, type RequestOptions } from 'graphql-request';
19961996import { GraphQLError, print } from 'graphql'
19971997type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
19981998import gql from 'graphql-tag';
@@ -2278,7 +2278,7 @@ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?:
22782278export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
22792279export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
22802280export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
2281- import type { GraphQLClient, RequestOptions } from 'graphql-request';
2281+ import type { GraphQLClient, type RequestOptions } from 'graphql-request';
22822282type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
22832283import gql from 'graphql-tag';
22842284/** All built-in and custom scalars, mapped to their actual values */
@@ -2560,7 +2560,7 @@ export type MakeOptional<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]?:
25602560export type MakeMaybe<T, K extends keyof T> = Omit<T, K> & { [SubKey in K]: Maybe<T[SubKey]> };
25612561export type MakeEmpty<T extends { [key: string]: unknown }, K extends keyof T> = { [_ in K]?: never };
25622562export type Incremental<T> = T | { [P in keyof T]?: P extends ' $fragmentName' | '__typename' ? T[P] : never };
2563- import { GraphQLClient, RequestOptions } from 'graphql-request';
2563+ import { GraphQLClient, type RequestOptions } from 'graphql-request';
25642564type GraphQLClientRequestHeaders = RequestOptions['requestHeaders'];
25652565import gql from 'graphql-tag';
25662566/** All built-in and custom scalars, mapped to their actual values */
0 commit comments