Files
klz-cables.com/.pnpm-store/v10/files/e3/5399fe288fe19af808c48212461ad40baed08a45f35fe80d39b5771f156fa28d0a2b7ad223d0100b83475b35b546998164d9e9c187ceb30556252fda7b452b
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

16 lines
585 B
Plaintext

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