@apollo/explorer
Advanced tools
Comparing version 3.2.0 to 3.3.0
{ | ||
"name": "@apollo/explorer", | ||
"version": "3.2.0", | ||
"version": "3.3.0", | ||
"author": "packages@apollographql.com", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
@@ -6,2 +6,3 @@ import type { ExecutionResult, GraphQLError, IntrospectionQuery } from 'graphql'; | ||
import type { GraphQLSubscriptionLibrary, HTTPMultipartClient } from './subscriptionPostMessageRelayHelpers'; | ||
import { FileVariable } from './constructMultipartForm'; | ||
export type HandleRequest = (endpointUrl: string, options: Omit<RequestInit, 'headers'> & { | ||
@@ -101,3 +102,4 @@ headers: Record<string, string>; | ||
includeCookies?: boolean; | ||
endpointUrl: string; | ||
endpointUrl?: string; | ||
fileVariables?: FileVariable[]; | ||
}> | MessageEvent<{ | ||
@@ -131,3 +133,3 @@ name: typeof EXPLORER_SUBSCRIPTION_REQUEST; | ||
}>; | ||
export declare function executeOperation({ endpointUrl, handleRequest, operation, operationName, variables, headers, includeCookies, embeddedIFrameElement, operationId, embedUrl, isMultipartSubscription, multipartSubscriptionClient, }: { | ||
export declare function executeOperation({ endpointUrl, handleRequest, operation, operationName, variables, headers, includeCookies, embeddedIFrameElement, operationId, embedUrl, isMultipartSubscription, multipartSubscriptionClient, fileVariables, }: { | ||
endpointUrl: string; | ||
@@ -145,2 +147,3 @@ handleRequest: HandleRequest; | ||
multipartSubscriptionClient?: HTTPMultipartClient; | ||
fileVariables?: FileVariable[] | undefined; | ||
}): Promise<void>; | ||
@@ -147,0 +150,0 @@ export declare const handleAuthenticationPostMessage: ({ event, embeddedIFrameElement, embedUrl, }: { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
179241
30
4173