Rocky_Mountain_Vending/.pnpm-store/v10/files/97/c2409e6643f390e4aa8c8d38c95226cdb7c2dd3c5c59eef797de46bc399189774f760bd7ae900565ca4654f29b9fe7c6f9ac940e9d64cc9e2fc7ffae834b2b
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

24 lines
641 B
Text

import type { SegmentTrieNode } from '../../next-devtools/dev-overlay/segment-explorer-trie';
export type SegmentTrieData = {
segmentTrie: SegmentTrieNode | null;
routerType: 'app' | 'pages';
};
export type PageSegment = {
type: string;
pagePath: string;
boundaryType: string | null;
};
export type PageMetadata = {
segments: PageSegment[];
routerType: 'app' | 'pages';
};
export type PageMetadataWithUrl = {
url: string;
metadata: PageMetadata | null;
};
export interface McpPageMetadataResponse {
event: string;
requestId: string;
segmentTrieData: SegmentTrieData | null;
url: string;
}