Rocky_Mountain_Vending/.pnpm-store/v10/files/bc/d8923cda49a6209a803de2f5aaef1322518a4a58720b66ce640ca589b1483b9a993b1d76d28e808a2c220d918c42e60b4367ad778770e0d6e11fe4d2ecb476
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
306 B
Text

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