Rocky_Mountain_Vending/.pnpm-store/v10/files/e4/f2e51f7609ebbabb7318ee98bdec83b2db6b9d0e1c068b8e2203314498e7af30ec86ef3fe0cb98ee3706bce226c3398fbbf4eac8b6df617d27d70f834e1250
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

26 lines
829 B
Text

export interface AccessToken {
accessKeyId: string | undefined;
secretAccessKey: string | undefined;
sessionToken: string | undefined;
}
export interface CreateOAuth2TokenRequestBody {
clientId: string | undefined;
grantType: string | undefined;
code?: string | undefined;
redirectUri?: string | undefined;
codeVerifier?: string | undefined;
refreshToken?: string | undefined;
}
export interface CreateOAuth2TokenRequest {
tokenInput: CreateOAuth2TokenRequestBody | undefined;
}
export interface CreateOAuth2TokenResponseBody {
accessToken: AccessToken | undefined;
tokenType: string | undefined;
expiresIn: number | undefined;
refreshToken: string | undefined;
idToken?: string | undefined;
}
export interface CreateOAuth2TokenResponse {
tokenOutput: CreateOAuth2TokenResponseBody | undefined;
}