Rocky_Mountain_Vending/.pnpm-store/v10/files/3c/a1374fca9dec23fb9bd9ba6364305a9f8a9399dded2558556a203da0b60bce01c5737c41fee40a85c550f9cee2126cf81499314dfeeb7d3587aa8a21bb1804
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

27 lines
647 B
Text

import { EndpointObjectProperty } from "../endpoint";
import { ConditionObject, Expression } from "./shared";
/**
* @public
*/
export type EndpointObjectProperties = Record<string, EndpointObjectProperty>;
/**
* @public
*/
export type EndpointObjectHeaders = Record<string, Expression[]>;
/**
* @public
*/
export type EndpointObject = {
url: Expression;
properties?: EndpointObjectProperties;
headers?: EndpointObjectHeaders;
};
/**
* @public
*/
export type EndpointRuleObject = {
type: "endpoint";
conditions?: ConditionObject[];
endpoint: EndpointObject;
documentation?: string;
};