UNPKG

@omnigraph/openapi

Version:
29 lines (28 loc) 1.41 kB
import { OpenAPIV3, OpenAPIV2 } from 'openapi-types'; import { JSONSchemaOperationConfig, OperationHeadersConfiguration } from '@omnigraph/json-schema'; import { OpenAPILoaderSelectQueryOrMutationFieldConfig } from './types'; import { Logger } from '@graphql-mesh/types'; interface GetJSONSchemaOptionsFromOpenAPIOptionsParams { source: OpenAPIV3.Document | OpenAPIV2.Document | string; fallbackFormat?: 'json' | 'yaml' | 'js' | 'ts'; cwd?: string; fetch?: WindowOrWorkerGlobalScope['fetch']; baseUrl?: string; schemaHeaders?: Record<string, string>; operationHeaders?: OperationHeadersConfiguration; queryParams?: Record<string, any>; selectQueryOrMutationField?: OpenAPILoaderSelectQueryOrMutationFieldConfig[]; logger?: Logger; } export declare function getJSONSchemaOptionsFromOpenAPIOptions(name: string, { source, fallbackFormat, cwd, fetch: fetchFn, baseUrl, schemaHeaders, operationHeaders, queryParams, selectQueryOrMutationField, logger, }: GetJSONSchemaOptionsFromOpenAPIOptionsParams): Promise<{ operations: JSONSchemaOperationConfig[]; baseUrl: string; cwd: string; fetch: { (input: URL | RequestInfo, init?: RequestInit): Promise<Response>; (input: URL | RequestInfo, init?: RequestInit): Promise<Response>; }; schemaHeaders: Record<string, string>; operationHeaders: OperationHeadersConfiguration; }>; export {};