Rocky_Mountain_Vending/.pnpm-store/v10/files/30/79b36e313ff094251cf08bcbed62be447ec455d861d1f6200be88a38ffb60d10387027c88fb089b2a0e6b744fc88316c528b56a1435fa219de76332ed82c88
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

9 lines
306 B
Text

import { SchemaRef } from "@smithy/types";
/**
* Redacts sensitive parts of any data object using its schema, for logging.
*
* @internal
* @param schema - with filtering traits.
* @param data - to be logged.
*/
export declare function schemaLogFilter(schema: SchemaRef, data: unknown): any;