Rocky_Mountain_Vending/.pnpm-store/v10/files/f9/18fa3d706f82c6f0e3d92713fcc8cd6485cff19e651d0d5c427322ea0f0150b56fe4830c6e508c5f86664cc90dbf1632d4f5f2b5280121e47454bce54a2e80
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
561 B
Text

export interface CreateTokenRequest {
clientId: string | undefined;
clientSecret: string | undefined;
grantType: string | undefined;
deviceCode?: string | undefined;
code?: string | undefined;
refreshToken?: string | undefined;
scope?: string[] | undefined;
redirectUri?: string | undefined;
codeVerifier?: string | undefined;
}
export interface CreateTokenResponse {
accessToken?: string | undefined;
tokenType?: string | undefined;
expiresIn?: number | undefined;
refreshToken?: string | undefined;
idToken?: string | undefined;
}