Rocky_Mountain_Vending/.pnpm-store/v10/files/a5/a7e4c5bbf4d93f9c363cd1b57a72c3eeb688036a2493394d5525ace568f492ff0565dcf943be0086fea34ba530f32d9511305b7e1b1914a7b432ee7dd8317c
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
480 B
Text

import type { EndpointVariant } from "./EndpointVariant";
/**
* The hash of partition with the information specific to that partition.
* The information includes the list of regions belonging to that partition,
* and the hostname to be used for the partition.
*
* @internal
* @deprecated unused for endpointRuleSets.
*/
export type PartitionHash = Record<string, {
regions: string[];
regionRegex: string;
variants: EndpointVariant[];
endpoint?: string;
}>;