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>
37 lines
1.1 KiB
Text
37 lines
1.1 KiB
Text
import type { Endpoint, Provider, UrlParser } from "@smithy/types";
|
|
import type { EndpointsInputConfig, EndpointsResolvedConfig } from "./resolveEndpointsConfig";
|
|
/**
|
|
* @public
|
|
* @deprecated superseded by default endpointRuleSet generation.
|
|
*/
|
|
export interface CustomEndpointsInputConfig extends EndpointsInputConfig {
|
|
/**
|
|
* The fully qualified endpoint of the webservice.
|
|
*/
|
|
endpoint: string | Endpoint | Provider<Endpoint>;
|
|
}
|
|
/**
|
|
* @internal
|
|
* @deprecated superseded by default endpointRuleSet generation.
|
|
*/
|
|
interface PreviouslyResolved {
|
|
urlParser: UrlParser;
|
|
}
|
|
/**
|
|
* @internal
|
|
* @deprecated superseded by default endpointRuleSet generation.
|
|
*/
|
|
export interface CustomEndpointsResolvedConfig extends EndpointsResolvedConfig {
|
|
/**
|
|
* Whether the endpoint is specified by caller.
|
|
* @internal
|
|
*/
|
|
isCustomEndpoint: true;
|
|
}
|
|
/**
|
|
* @internal
|
|
*
|
|
* @deprecated superseded by default endpointRuleSet generation.
|
|
*/
|
|
export declare const resolveCustomEndpointsConfig: <T>(input: T & CustomEndpointsInputConfig & PreviouslyResolved) => T & CustomEndpointsResolvedConfig;
|
|
export {};
|