Rocky_Mountain_Vending/.pnpm-store/v10/files/48/f97e747459fd6681982ee675473686200d084fcd47b34d77b583ac90349eb6d22716616d5847936f7e5330c16d074a4644ea7fb1b4f2f9bc6415d959d730cf
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 type { HeaderBag as __HeaderBag, HttpResponse, SerdeContext as __SerdeContext, SerdeContext } from "@smithy/types";
import type { 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>;