Rocky_Mountain_Vending/.pnpm-store/v10/files/b6/86bfab575a226ad01c893dac6531e9d1027a6fd21b1e6fed4bc6e94d62c8f286ae7f88096e12d0b18383b8b70bbcbd75c0f55572603ad09f15ca62c75150fe
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
315 B
Text

import { Identity, IdentityProvider } from "../identity/identity";
/**
* @public
*/
export interface ApiKeyIdentity extends Identity {
/**
* The literal API Key
*/
readonly apiKey: string;
}
/**
* @public
*/
export type ApiKeyIdentityProvider = IdentityProvider<ApiKeyIdentity>;