Rocky_Mountain_Vending/.pnpm-store/v10/files/3f/a3ceb129748bc29e88e6d22e7d1009554e4d61f83042f8aa42d41c34a5a45e284c6973b234e6f5f765ee6184a01f23b5b8448325f2873d0066c65294376fcc
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
672 B
Text

import { HandlerExecutionContext } from "../middleware";
import { 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>;
}