Files
klz-cables.com/.pnpm-store/v10/files/e9/ea32994d338e9bff12495b4e8448e1bc237971a9a80988e7485a46e7aa309999ccb70315051b365060f81df9dc36c3483a9ef1ac3ab4f75cff3b9caa953acb
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

19 lines
847 B
Plaintext

import { InstrumentationBase, type InstrumentationConfig, type InstrumentationModuleDefinition } from '@opentelemetry/instrumentation';
import type { AnthropicAiOptions } from '@sentry/core';
type AnthropicAiInstrumentationOptions = InstrumentationConfig & AnthropicAiOptions;
/**
* Sentry Anthropic AI instrumentation using OpenTelemetry.
*/
export declare class SentryAnthropicAiInstrumentation extends InstrumentationBase<AnthropicAiInstrumentationOptions> {
constructor(config?: AnthropicAiInstrumentationOptions);
/**
* Initializes the instrumentation by defining the modules to be patched.
*/
init(): InstrumentationModuleDefinition;
/**
* Core patch logic applying instrumentation to the Anthropic AI client constructor.
*/
private _patch;
}
export {};
//# sourceMappingURL=instrumentation.d.ts.map