Rocky_Mountain_Vending/.pnpm-store/v10/files/9e/66fd3f81c6833d37dc597a85e0bb8086b7bd18735845912dd204dfda4f13eb2d811046bb3743799f36b1600fb3a8234fec6a73ca548d599625a9d977157d11
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

31 lines
1 KiB
Text

import { HttpRequest as __HttpRequest } from "@smithy/protocol-http";
import { HeaderBag as __HeaderBag, HttpResponse, SerdeContext as __SerdeContext, SerdeContext } from "@smithy/types";
import { tagSymbol } from "./cbor-types";
/**
* @internal
*/
export declare const parseCborBody: (streamBody: any, context: SerdeContext) => any;
/**
* @internal
*/
export declare const dateToTag: (date: Date) => {
tag: number | bigint;
value: any;
[tagSymbol]: true;
};
/**
* @internal
*/
export declare const parseCborErrorBody: (errorBody: any, context: SerdeContext) => Promise<any>;
/**
* @internal
*/
export declare const loadSmithyRpcV2CborErrorCode: (output: HttpResponse, data: any) => string | undefined;
/**
* @internal
*/
export declare const checkCborResponse: (response: HttpResponse) => void;
/**
* @internal
*/
export declare const buildHttpRpcRequest: (context: __SerdeContext, headers: __HeaderBag, path: string, resolvedHostname: string | undefined, body: any) => Promise<__HttpRequest>;