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>
13 lines
413 B
Text
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;
|
|
}>;
|