Rocky_Mountain_Vending/.pnpm-store/v10/files/86/c3508e19b924fd03bf843731c6e43239789dd33734b0a94b08102228d11f61454fbc0b9b6c66181c8712178fa99d9ff0a8dba10ecf03c6ad30ca68a8d05e71
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

20 lines
662 B
Text

import type { HandlerExecutionContext } from "../middleware";
import type { HttpAuthOption } from "./HttpAuthScheme";
/**
* @internal
*/
export interface HttpAuthSchemeParameters {
operation?: string;
}
/**
* @internal
*/
export interface HttpAuthSchemeProvider<TParameters extends HttpAuthSchemeParameters> {
(authParameters: TParameters): HttpAuthOption[];
}
/**
* @internal
*/
export interface HttpAuthSchemeParametersProvider<TConfig extends object, TContext extends HandlerExecutionContext, TParameters extends HttpAuthSchemeParameters, TInput extends object> {
(config: TConfig, context: TContext, input: TInput): Promise<TParameters>;
}