//#region src/types/http-adapter.generated.d.ts export type HttpAdapterConfigInput = { /** Unique adapter name within the domain */ name: string; /** Path pattern with segment wildcards (trailing or single-segment) */ pathPattern: string; /** Per-method functions that transform HTTP requests to GraphQL requests */ input: { /** Handler for GET requests */ get?: Function | undefined; /** Handler for POST requests */ post?: Function | undefined; /** Handler for PUT requests */ put?: Function | undefined; /** Handler for PATCH requests */ patch?: Function | undefined; /** Handler for DELETE requests */ delete?: Function | undefined; }; /** Whether the adapter is active */ enabled?: boolean | undefined; /** Matching priority; the lowest value wins when multiple adapters match */ priority?: number | undefined; /** Function that transforms GraphQL response to HTTP response */ output?: Function | undefined; }; //#endregion