Files
klz-cables.com/.pnpm-store/v10/files/27/7a45c3deab9635c9a54980a6867e8a0e5ea8ebfe174ce97fbe2f1196b3d6da6478b1ceb925389158cdda5e871292266fc4172a4f97ef26e6f828c600d9cd4a
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

15 lines
1.5 KiB
Plaintext

import type * as graphqlTypes from 'graphql';
import * as api from '@opentelemetry/api';
import { ObjectWithGraphQLData, OtelPatched, Maybe } from './internal-types';
import { GraphQLInstrumentationParsedConfig } from './types';
export declare const isPromise: (value: any) => value is Promise<unknown>;
export declare function addInputVariableAttributes(span: api.Span, variableValues: {
[key: string]: any;
}): void;
export declare function addSpanSource(span: api.Span, loc?: graphqlTypes.Location, allowValues?: boolean, start?: number, end?: number): void;
export declare function endSpan(span: api.Span, error?: Error): void;
export declare function getOperation(document: graphqlTypes.DocumentNode, operationName?: Maybe<string>): graphqlTypes.DefinitionNode | undefined;
export declare function getSourceFromLocation(loc?: graphqlTypes.Location, allowValues?: boolean, inputStart?: number, inputEnd?: number): string;
export declare function wrapFields(type: Maybe<graphqlTypes.GraphQLObjectType & OtelPatched>, tracer: api.Tracer, getConfig: () => GraphQLInstrumentationParsedConfig): void;
export declare function wrapFieldResolver<TSource = any, TContext = any, TArgs = any>(tracer: api.Tracer, getConfig: () => GraphQLInstrumentationParsedConfig, fieldResolver: Maybe<graphqlTypes.GraphQLFieldResolver<TSource, TContext, TArgs> & OtelPatched>, isDefaultResolver?: boolean): graphqlTypes.GraphQLFieldResolver<TSource, TContext & ObjectWithGraphQLData, TArgs> & OtelPatched;
//# sourceMappingURL=utils.d.ts.map