Rocky_Mountain_Vending/.pnpm-store/v10/files/49/61357d88f87f608c0852044e47456923a78ff1d381a7efff26e2e554ccd44044832000b624649f2277098b9de4a18e9bd73e39c1f9b7e77f14146ad41c982f
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

41 lines
858 B
Text

/**
* @internal
*/
export interface EndpointParameterInstructions {
[name: string]: BuiltInParamInstruction | ClientContextParamInstruction | StaticContextParamInstruction | ContextParamInstruction | OperationContextParamInstruction;
}
/**
* @internal
*/
export interface BuiltInParamInstruction {
type: "builtInParams";
name: string;
}
/**
* @internal
*/
export interface ClientContextParamInstruction {
type: "clientContextParams";
name: string;
}
/**
* @internal
*/
export interface StaticContextParamInstruction {
type: "staticContextParams";
value: string | boolean;
}
/**
* @internal
*/
export interface ContextParamInstruction {
type: "contextParams";
name: string;
}
/**
* @internal
*/
export interface OperationContextParamInstruction {
type: "operationContextParams";
get(input: any): any;
}