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>
22 lines
No EOL
718 B
Text
22 lines
No EOL
718 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 |