Rocky_Mountain_Vending/.pnpm-store/v10/files/d4/ce4a159fca95603badb65113a424cda9b9861774680171f0db2606d5d643e44b7fa5ed5c5e23fee57221f04d7ecdeed1fd2f634c711e0730881ecda703520f
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

34 lines
821 B
Text

export interface IFacade {
name: string
repo: string
}
export interface IProduct {
name: string
company: string
homepage?: string
category: string
/** @deprecated - Use `category` instead. */
categories: string[]
urlPatterns?: string[]
facades?: IFacade[]
}
export interface IEntity {
name: string
company: string
homepage?: string
category: string
/** @deprecated - Use `category` instead. */
categories: string[]
domains: string[]
products?: IProduct[]
averageExecutionTime: number
totalExecutionTime: number
totalOccurrences: number
}
export declare const entities: IEntity[]
export declare function getRootDomain(url: string): string
export declare function getEntity(url: string): IEntity | undefined
export declare function getProduct(url: string): IProduct | undefined