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>
11 lines
418 B
Text
11 lines
418 B
Text
import { AwsIdentityProperties } from "@aws-sdk/types";
|
|
import { SSOToken } from "@smithy/shared-ini-file-loader";
|
|
import { FromSsoInit } from "./fromSso";
|
|
export declare const getNewSsoOidcToken: (
|
|
ssoToken: SSOToken,
|
|
ssoRegion: string,
|
|
init?: FromSsoInit,
|
|
callerClientConfig?: AwsIdentityProperties["callerClientConfig"]
|
|
) => Promise<
|
|
import("@aws-sdk/nested-clients/sso-oidc").CreateTokenCommandOutput
|
|
>;
|