Rocky_Mountain_Vending/.pnpm-store/v10/files/fb/9e68ca509fe34228f049ec6b283ae1fb2f8ecf0219cc539c4ee3e4ebce543a1befe0bd152be36b2a76dd9282a0e99279ae88fdc5baf3f2cd36e20614f7c397
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
490 B
Text

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