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>
27 lines
630 B
Text
27 lines
630 B
Text
import type { EndpointObjectProperty } from "../endpoint";
|
|
import type { 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;
|
|
};
|