Rocky_Mountain_Vending/.pnpm-store/v10/files/2e/e50565c8117b9abf0c4fd74325bb79986c08d27db89498955cd4323e008db2c56d90e8568b9f29ac6a44330c5c8d9fe18e728749630ec296dc52731d9046cd
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
No EOL
805 B
Text

import { type InstrumentationConfig, type InstrumentationModuleDefinition, InstrumentationBase } from '@opentelemetry/instrumentation';
import type { 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