Rocky_Mountain_Vending/.pnpm-store/v10/files/27/c7a907dc79461e89e33129aecd00eebd3f96020c8a1c822ed24f1fa5134e2ff82bc84d57b0d7578f9cce015dc55c74fa163f06a6663f89bf6cbedd3fb19cc9
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
647 B
Text

/**
* PII filtering for MCP server spans
*
* Removes sensitive data when sendDefaultPii is false.
* Uses configurable attribute filtering to protect user privacy.
*/
import { 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