Rocky_Mountain_Vending/.pnpm-store/v10/files/ab/2fbb1c98e3bd9c25da8b7f2ce04d8a5ac2484e5fd117de2e221335dbbb828bbaa56a950e1b47726cb2bad3cb2af2654170768fffd0bdcb7ba6a24088817318
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

14 lines
325 B
Text

import { Profile } from "@smithy/types";
export interface SSOToken {
accessToken: string;
expiresAt: string;
region?: string;
startUrl?: string;
}
export interface SsoProfile extends Profile {
sso_start_url: string;
sso_session?: string;
sso_account_id: string;
sso_region: string;
sso_role_name: string;
}