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>
14 lines
325 B
Text
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;
|
|
}
|