Rocky_Mountain_Vending/.pnpm-store/v10/files/dd/8bcd87bb01e0df2327f3a4ae4ccd651b8b06e2193833a131df3e211a2b6f5e9661befdf7f1259ba2071269f81bcfe05792a485bcfdb1eab103019327138fd7
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

55 lines
1 KiB
Text

import { Logger } from "../logger";
/**
* @public
*/
export type ReferenceObject = {
ref: string;
};
/**
* @public
*/
export type FunctionObject = {
fn: string;
argv: FunctionArgv;
};
/**
* @public
*/
export type FunctionArgv = Array<Expression | boolean | number>;
/**
* @public
*/
export type FunctionReturn = string | boolean | number | {
[key: string]: FunctionReturn;
};
/**
* @public
*/
export type ConditionObject = FunctionObject & {
assign?: string;
};
/**
* @public
*/
export type Expression = string | ReferenceObject | FunctionObject;
/**
* @public
*/
export type EndpointParams = Record<string, string | boolean>;
/**
* @public
*/
export type EndpointResolverOptions = {
endpointParams: EndpointParams;
logger?: Logger;
};
/**
* @public
*/
export type ReferenceRecord = Record<string, FunctionReturn>;
/**
* @public
*/
export type EvaluateOptions = EndpointResolverOptions & {
referenceRecord: ReferenceRecord;
};