Rocky_Mountain_Vending/.pnpm-store/v10/files/3f/94e33475da95505331fe21cde5b24a18cd82ba75b40f9414459dafd6ae89a1f82a116e7b3eec4776a43f250bbb18acf22d4b1f25cd1b95aced2c14ca2d403c
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
302 B
Text

import type { 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;