Rocky_Mountain_Vending/.pnpm-store/v10/files/19/033446aaf3f348ce4c17342087451fa3921d99c26152654fb2f8697ed1280a187216532893a4b36a9ba26dfc5ad9e2147f67d4c50b5abe76d0c12055c57b39
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

6 lines
263 B
Text

import { TokenIdentity } from "@smithy/types";
import { AwsSdkTokenFeatures } from "../feature-ids";
export { TokenIdentity, TokenIdentityProvider } from "@smithy/types";
export type AttributedTokenIdentity = TokenIdentity & {
$source?: AwsSdkTokenFeatures;
};