Rocky_Mountain_Vending/.pnpm-store/v10/files/9e/fb94b4333e3a22e980b608dd4782ae116e5cd8e236055985b3141984450ef9157521070f836455c647b8e72c91db010eed81ec87f7bdedd4a71658b81db770
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

20 lines
811 B
Text

import { InstrumentationConfig, InstrumentationModuleDefinition, InstrumentationBase } from '@opentelemetry/instrumentation';
import { Integration, OpenAiOptions } from '@sentry/core';
export interface OpenAiIntegration extends Integration {
options: OpenAiOptions;
}
/**
* Sentry OpenAI instrumentation using OpenTelemetry.
*/
export declare class SentryOpenAiInstrumentation extends InstrumentationBase<InstrumentationConfig> {
constructor(config?: InstrumentationConfig);
/**
* Initializes the instrumentation by defining the modules to be patched.
*/
init(): InstrumentationModuleDefinition;
/**
* Core patch logic applying instrumentation to the OpenAI client constructor.
*/
private _patch;
}
//# sourceMappingURL=instrumentation.d.ts.map