Rocky_Mountain_Vending/.pnpm-store/v10/files/27/3ff56a7105c35702bce4529388eaff50300fe0b0b5a838b82befe0ab02985c82bc6af45e69ed4833bce7721f4a229b2f5c5dfa3c8301e0bc3b7aa3e23da00e
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

16 lines
602 B
Text

export interface LegacyCSPReport {
readonly 'csp-report': {
readonly 'document-uri'?: string;
readonly referrer?: string;
readonly 'blocked-uri'?: string;
readonly 'effective-directive'?: string;
readonly 'violated-directive'?: string;
readonly 'original-policy'?: string;
readonly disposition: 'enforce' | 'report' | 'reporting';
readonly 'status-code'?: number;
readonly status?: string;
readonly 'script-sample'?: string;
readonly sample?: string;
};
}
//# sourceMappingURL=csp.d.ts.map