Rocky_Mountain_Vending/.pnpm-store/v10/files/35/bd5f8357ae245287366d8bab236a34f48afb9f2aa17528110725b01ca589e0ed430c3dfd83d50cadd4ee0df017422f4844ec2116423e2bcca58c0701027abc
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

28 lines
572 B
Text

import type { RuleSetRules } from "./TreeRuleObject";
/**
* @public
*/
export type DeprecatedObject = {
message?: string;
since?: string;
};
/**
* @public
*/
export type ParameterObject = {
type: "String" | "string" | "Boolean" | "boolean";
default?: string | boolean;
required?: boolean;
documentation?: string;
builtIn?: string;
deprecated?: DeprecatedObject;
};
/**
* @public
*/
export type RuleSetObject = {
version: string;
serviceId?: string;
parameters: Record<string, ParameterObject>;
rules: RuleSetRules;
};