Rocky_Mountain_Vending/.pnpm-store/v10/files/85/e488679756a2108942ce0245507ebf9337a0428bc967234f7e881153937715c09a76ec225bb0e58e31887d562b958733f07b24fcc9848602191bf52a639533
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

22 lines
439 B
Text

import { Profile } from "@smithy/types";
/**
* @internal
*
* Cached SSO token retrieved from SSO login flow.
*/
export interface SSOToken {
accessToken: string;
expiresAt: string;
region?: string;
startUrl?: string;
}
/**
* @internal
*/
export interface SsoProfile extends Profile {
sso_start_url: string;
sso_session?: string;
sso_account_id: string;
sso_region: string;
sso_role_name: string;
}