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>
16 lines
440 B
Text
16 lines
440 B
Text
import { EndpointRuleObject } from "./EndpointRuleObject";
|
|
import { ErrorRuleObject } from "./ErrorRuleObject";
|
|
import { ConditionObject } from "./shared";
|
|
/**
|
|
* @public
|
|
*/
|
|
export type RuleSetRules = Array<EndpointRuleObject | ErrorRuleObject | TreeRuleObject>;
|
|
/**
|
|
* @public
|
|
*/
|
|
export type TreeRuleObject = {
|
|
type: "tree";
|
|
conditions?: ConditionObject[];
|
|
rules: RuleSetRules;
|
|
documentation?: string;
|
|
};
|