( fetchOverride: ClientOptions['fetch'], source: string | undefined, )
| 320 | export const CLIENT_REQUEST_ID_HEADER = 'x-client-request-id' |
| 321 | |
| 322 | export function getWrappedClientFetch( |
| 323 | fetchOverride: ClientOptions['fetch'], |
| 324 | source: string | undefined, |
| 325 | ): ClientOptions['fetch'] { |
| 326 | return buildFetch(fetchOverride, source) |
| 327 | } |
| 328 | |
| 329 | export async function getFirstPartyRequestHeaders(options?: { |
| 330 | apiKey?: string |
no test coverage detected