Rocky_Mountain_Vending/.pnpm-store/v10/files/71/014ff2a989a30c28dd06b46e61329d46b3ef4a0174875a876334efc0203cd7036cd80b8f40a25e213da992089ab1ebc317805cacf0d07e7adb6dc7cb13ec4d
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

8 lines
500 B
Text

import type { AwsIdentityProperties } from "@aws-sdk/types";
import { SSOToken } from "@smithy/shared-ini-file-loader";
import { FromSsoInit } from "./fromSso";
/**
* Returns a new SSO OIDC token from SSOOIDC::createToken() API call.
* @internal
*/
export declare const getNewSsoOidcToken: (ssoToken: SSOToken, ssoRegion: string, init?: FromSsoInit, callerClientConfig?: AwsIdentityProperties["callerClientConfig"]) => Promise<import("@aws-sdk/nested-clients/sso-oidc").CreateTokenCommandOutput>;