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>
26 lines
1.1 KiB
Text
26 lines
1.1 KiB
Text
import { FromHttpOptions } from "@aws-sdk/credential-provider-http";
|
|
import { FromIniInit } from "@aws-sdk/credential-provider-ini";
|
|
import { FromProcessInit } from "@aws-sdk/credential-provider-process";
|
|
import {
|
|
FromSSOInit,
|
|
SsoCredentialsParameters,
|
|
} from "@aws-sdk/credential-provider-sso";
|
|
import { FromTokenFileInit } from "@aws-sdk/credential-provider-web-identity";
|
|
import { RemoteProviderInit } from "@smithy/credential-provider-imds";
|
|
import { AwsCredentialIdentity } from "@smithy/types";
|
|
import { MemoizedRuntimeConfigAwsCredentialIdentityProvider } from "./runtime/memoize-chain";
|
|
export type DefaultProviderInit = FromIniInit &
|
|
FromHttpOptions &
|
|
RemoteProviderInit &
|
|
FromProcessInit &
|
|
(FromSSOInit & Partial<SsoCredentialsParameters>) &
|
|
FromTokenFileInit;
|
|
export declare const defaultProvider: (
|
|
init?: DefaultProviderInit
|
|
) => MemoizedRuntimeConfigAwsCredentialIdentityProvider;
|
|
export declare const credentialsWillNeedRefresh: (
|
|
credentials: AwsCredentialIdentity
|
|
) => boolean;
|
|
export declare const credentialsTreatedAsExpired: (
|
|
credentials: AwsCredentialIdentity
|
|
) => boolean;
|