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>
16 lines
634 B
Text
16 lines
634 B
Text
import { getEndpointPlugin } from "@smithy/middleware-endpoint";
|
|
import { Command as $Command } from "@smithy/smithy-client";
|
|
import { commonParams } from "../endpoint/EndpointParameters";
|
|
import { CreateOAuth2Token$ } from "../schemas/schemas_0";
|
|
export { $Command };
|
|
export class CreateOAuth2TokenCommand extends $Command
|
|
.classBuilder()
|
|
.ep(commonParams)
|
|
.m(function (Command, cs, config, o) {
|
|
return [getEndpointPlugin(config, Command.getEndpointParameterInstructions())];
|
|
})
|
|
.s("Signin", "CreateOAuth2Token", {})
|
|
.n("SigninClient", "CreateOAuth2TokenCommand")
|
|
.sc(CreateOAuth2Token$)
|
|
.build() {
|
|
}
|