Rocky_Mountain_Vending/.pnpm-store/v10/files/d7/b720e67a87e6c8226444026ff677c2453f7b85122c610b6c7bc2259521a8ed3304ff37e1c6f67d487204f70c2a24b62eca27953fceebffef0af9eb6bde05c1
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

18 lines
360 B
Text

import { Identity, IdentityProvider } from "./Identity";
/**
* @public
*/
export interface LoginIdentity extends Identity {
/**
* Identity username
*/
readonly username: string;
/**
* Identity password
*/
readonly password: string;
}
/**
* @public
*/
export type LoginIdentityProvider = IdentityProvider<LoginIdentity>;