Rocky_Mountain_Vending/.pnpm-store/v10/files/59/29e317edee25632be6919daaf41e54ca493306f711a18f60aa897151adfe770ecb961faef6479fc578fdaee91ecb4b48bce0beb983500ca484b0324b3acda6
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
847 B
Text

import { TokenIdentityProvider } from "@aws-sdk/types";
import { FromSsoInit } from "./fromSso";
/**
* Creates a token provider that will attempt to find token from the
* following sources (listed in order of precedence):
* * SSO token from SSO cache or ssoOidc.createToken() call
*
* The default token provider is designed to invoke one provider at a time and only
* continue to the next if no token has been located. It currently has only SSO
* Token Provider in the chain.
*
* @param init Configuration that is passed to each individual
* provider
*
* @see fromSso The function used to source credentials from
* SSO cache or ssoOidc.createToken() call
*/
export declare const nodeProvider: (init?: FromSsoInit) => TokenIdentityProvider;