@@ -54,6 +54,7 @@ import { UpstreamTimeoutPluginOptions } from './plugins/useUpstreamTimeout';
5454
5555export type { UnifiedGraphHandler , UnifiedGraphPlugin } ;
5656export type { TransportEntryAdditions , UnifiedGraphConfig } ;
57+ export type { CircuitBreakerConfiguration } ;
5758
5859export type GatewayConfig <
5960 TContext extends Record < string , any > = Record < string , any > ,
@@ -87,7 +88,8 @@ export interface GatewayConfigContext {
8788}
8889
8990export interface GatewayContext
90- extends GatewayConfigContext , YogaInitialContext {
91+ extends GatewayConfigContext ,
92+ YogaInitialContext {
9193 /**
9294 * Environment agnostic HTTP headers provided with the request.
9395 */
@@ -282,9 +284,8 @@ export interface GatewayConfigSubgraph<
282284 subgraph : UnifiedGraphConfig ;
283285}
284286
285- export interface GatewayConfigSchemaBase <
286- TContext extends Record < string , any > ,
287- > extends GatewayConfigBase < TContext > {
287+ export interface GatewayConfigSchemaBase < TContext extends Record < string , any > >
288+ extends GatewayConfigBase < TContext > {
288289 /**
289290 * Additional GraphQL schema type definitions.
290291 */
@@ -344,11 +345,12 @@ export interface GatewayHiveCDNOptions {
344345 circuitBreaker ?: CircuitBreakerConfiguration ;
345346}
346347
347- export interface GatewayHiveReportingOptions extends Omit <
348- HiveConsolePluginOptions ,
349- // we omit this property because we define persisted documents in GatewayHivePersistedDocumentsOptions
350- 'experimental__persistedDocuments'
351- > {
348+ export interface GatewayHiveReportingOptions
349+ extends Omit <
350+ HiveConsolePluginOptions ,
351+ // we omit this property because we define persisted documents in GatewayHivePersistedDocumentsOptions
352+ 'experimental__persistedDocuments'
353+ > {
352354 type : 'hive' ;
353355 /** GraphQL Hive registry access token. */
354356 token : string ;
@@ -374,7 +376,8 @@ export interface GatewayGraphOSOptions {
374376 apiKey : string ;
375377}
376378
377- export interface GatewayGraphOSManagedFederationOptions extends GatewayGraphOSOptions {
379+ export interface GatewayGraphOSManagedFederationOptions
380+ extends GatewayGraphOSOptions {
378381 /**
379382 * Maximum number of retries to attempt when fetching the schema from the managed federation up link.
380383 */
0 commit comments