Rocky_Mountain_Vending/.pnpm-store/v10/files/85/fa1c27902bcca25783e956525c154e880c2caf0e62c68bd37c4258feafb8f46f17112ca1a6ecf8999e4d6e4154d44f0c05488966932ed77551ef7bd07e7eb3
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

15 lines
No EOL
636 B
Text

/**
* PII filtering for MCP server spans
*
* Removes sensitive data when sendDefaultPii is false.
* Uses configurable attribute filtering to protect user privacy.
*/
import type { SpanAttributeValue } from '../../types-hoist/span';
/**
* Removes PII attributes from span data when sendDefaultPii is false
* @param spanData - Raw span attributes
* @param sendDefaultPii - Whether to include PII data
* @returns Filtered span attributes
*/
export declare function filterMcpPiiFromSpanData(spanData: Record<string, unknown>, sendDefaultPii: boolean): Record<string, SpanAttributeValue>;
//# sourceMappingURL=piiFiltering.d.ts.map