UNPKG

@aws-amplify/amplify-appsync-simulator

Version:

An AppSync Simulator to test AppSync API.

12 lines 515 B
import { JWTToken, IAMToken } from '../auth-helpers/helpers'; import { AmplifyAppSyncSimulatorAuthenticationType } from '../../type-definition'; export type AppSyncGraphQLExecutionContext = { readonly sourceIp?: string; readonly jwt?: JWTToken; readonly iamToken?: IAMToken; headers: Record<string, string | string[]>; appsyncErrors?: Error[]; requestAuthorizationMode: AmplifyAppSyncSimulatorAuthenticationType; }; export * from './subscriptions-filter'; //# sourceMappingURL=index.d.ts.map