Rocky_Mountain_Vending/.pnpm-store/v10/files/e5/c3c09f381ca51fbdc6374649315f08b2a7d16d5f3d72d9a2197750a56ec81b426ee6c2d71c95bb296866e6db31757c79295ecfe135bb5401ec76ad1070b9d2
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
984 B
Text

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