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>
16 lines
376 B
Text
16 lines
376 B
Text
/**
|
|
* @internal
|
|
*/
|
|
export type SmithyFeatures = Partial<{
|
|
RESOURCE_MODEL: "A";
|
|
WAITER: "B";
|
|
PAGINATOR: "C";
|
|
RETRY_MODE_LEGACY: "D";
|
|
RETRY_MODE_STANDARD: "E";
|
|
RETRY_MODE_ADAPTIVE: "F";
|
|
GZIP_REQUEST_COMPRESSION: "L";
|
|
PROTOCOL_RPC_V2_CBOR: "M";
|
|
ENDPOINT_OVERRIDE: "N";
|
|
SIGV4A_SIGNING: "S";
|
|
CREDENTIALS_CODE: "e";
|
|
}>;
|