Rocky_Mountain_Vending/.pnpm-store/v10/files/2c/9bb8a8643ed24349a980142ae87de238f55d75edba12164261945b6ca6ea739e6633a54d19f4f1780b3e74004330d734ea595487033fbafbd23ff700cd1e48
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
405 B
Text

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