Rocky_Mountain_Vending/.pnpm-store/v10/files/cc/e235a5c19f8f70100adfd3acfe062ea81c8cf2bdd1b5fe897965293370774d991e3c89a1d3366490f4003e5cc14a567d023264c3f1325df778a18bb9727959
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

10 lines
280 B
Text

import { expectUnion } from "@smithy/smithy-client";
export const awsExpectUnion = (value) => {
if (value == null) {
return undefined;
}
if (typeof value === "object" && "__type" in value) {
delete value.__type;
}
return expectUnion(value);
};