Rocky_Mountain_Vending/.pnpm-store/v10/files/04/5396b10451029666dc8d0213569a512285c33261348aca437e5692053c9074e379554ec3a61ea52e201ed509024ae41b3a2ed6468ed1710c990ac623e613a4
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

13 lines
413 B
Text

import { EndpointVariant } from "./EndpointVariant";
/**
* The hash of region with the information specific to that region.
* The information can include hostname, signingService and signingRegion.
*
* @internal
* @deprecated unused for endpointRuleSets.
*/
export type RegionHash = Record<string, {
variants: EndpointVariant[];
signingService?: string;
signingRegion?: string;
}>;