import { ErrorHandlingOptions } from './error-handling-options.js'; import { TimeoutOptions } from './timeout-options.js'; import { BearerAuthOptions } from './bearer-auth-options.js'; import { BasicAuthOptions } from './basic-auth-options.js'; import { RetryOptions } from './retry-options.js'; import { CustomHeaderOption } from './custom-header-option.js'; import { ServiceDecoratorScope } from './service-decorator-scope.js'; export interface GraphQLAngularRequest { /** Inline GraphQL SDL schema content. */ graphQLSchema: string | null; customScalars?: Record | null; errorHandling?: ErrorHandlingOptions; timeout?: TimeoutOptions; bearerAuth?: BearerAuthOptions; basicAuth?: BasicAuthOptions; retries?: RetryOptions; customHeaders?: Array | null; /** * Selects Angular 22's `@Service` decorator (instead of `@Injectable`) and its provisioning scope. * Leave the request property null to keep the default `@Injectable` behavior. Setting it auto-enables * inject()-based DI and supersedes `ProvidedIn` on the engine's last-wins basis. Requires Angular 22+. */ serviceDecorator?: ServiceDecoratorScope; documentation?: boolean | null; fragments?: boolean | null; optionsObjectThreshold?: number | null; baseUrlToken?: string | null; useInjectFunction?: boolean | null; providedIn?: string | null; useInterceptors?: boolean | null; responseDateTransformation?: boolean | null; useTypesBarrel?: boolean | null; } //# sourceMappingURL=graph-ql-angular-request.d.ts.map