Rocky_Mountain_Vending/.pnpm-store/v10/files/49/6e3ac16426beec5ab63bd01bdf0eb06ce106388015d2c5d5af51e55656fb1dd038c9850e0a880c54ba46ce74d7ace657f1ff990853f0542ab4c91f0b792788
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

22 lines
741 B
Text

/** Supported Sentry transport protocols in a Dsn. */
export type DsnProtocol = 'http' | 'https';
/** Primitive components of a Dsn. */
export interface DsnComponents {
/** Protocol used to connect to Sentry. */
protocol: DsnProtocol;
/** Public authorization key. */
publicKey?: string;
/** Private authorization key (deprecated, optional). */
pass?: string;
/** Hostname of the Sentry instance. */
host: string;
/** Port of the Sentry instance. */
port?: string;
/** Sub path/ */
path?: string;
/** Project ID */
projectId: string;
}
/** Anything that can be parsed into a Dsn. */
export type DsnLike = string | DsnComponents;
//# sourceMappingURL=dsn.d.ts.map