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>
20 lines
672 B
Text
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>;
|
|
}
|