Rocky_Mountain_Vending/.pnpm-store/v10/files/fd/2ddcdf4a312ec8499f445ba20e6ea9f1974094657a6a82cc6c77bdaab1f42307c8c7d95525bb40db5e8002f316e95328a279fe879318a32c599d07b241ab5d
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

30 lines
1.4 KiB
Text

import { AwsCredentialIdentity, ChecksumConstructor, HashConstructor } from "@smithy/types";
/**
* Create a string describing the scope of credentials used to sign a request.
*
* @internal
*
* @param shortDate - the current calendar date in the form YYYYMMDD.
* @param region - the AWS region in which the service resides.
* @param service - the service to which the signed request is being sent.
*/
export declare const createScope: (shortDate: string, region: string, service: string) => string;
/**
* Derive a signing key from its composite parts.
*
* @internal
*
* @param sha256Constructor - a constructor function that can instantiate SHA-256
* hash objects.
* @param credentials - the credentials with which the request will be
* signed.
* @param shortDate - the current calendar date in the form YYYYMMDD.
* @param region - the AWS region in which the service resides.
* @param service - the service to which the signed request is being
* sent.
*/
export declare const getSigningKey: (sha256Constructor: ChecksumConstructor | HashConstructor, credentials: AwsCredentialIdentity, shortDate: string, region: string, service: string) => Promise<Uint8Array>;
/**
* @internal
*/
export declare const clearCredentialCache: () => void;