Rocky_Mountain_Vending/.pnpm-store/v10/files/96/a898f8ae156b5c7b6f509c35ca5b5a495a634b424206320e23ba98bdd02d9c8fe90557e8c5105218d5f2cdea4a7c7ccc2571ce11ff4be732504159d2115aa3
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

40 lines
1.3 KiB
Text

import {StripeElementBase, StripeElementStyle} from '../base';
export type StripeIssuingCardNumberDisplayElement = StripeElementBase & {
/**
* Updates the options the `IssuingCardNumberDisplayElement` was initialized with.
* Updates are merged into the existing configuration.
*
* The styles of an `IssuingCardNumberDisplayElement` can be dynamically changed using `element.update`.
* This method can be used to simulate CSS media queries that automatically adjust the size of elements when viewed on different devices.
*/
update(options: Partial<StripeIssuingCardNumberDisplayElementOptions>): void;
/**
* Triggered when the element is fully rendered and can accept `element.focus` calls.
*/
on(
eventType: 'ready',
handler: (event: {elementType: 'issuingCardNumberDisplay'}) => any
): StripeIssuingCardNumberDisplayElement;
};
export interface StripeIssuingCardNumberDisplayElementOptions {
/**
* The token (e.g. `ic_abc123`) of the issued card to display in this Element
*/
issuingCard: string;
/**
* The secret component of the ephemeral key with which to authenticate this sensitive
* card details request
*/
ephemeralKeySecret?: string;
/**
* The nonce used to mint the ephemeral key provided in `ephemeralKeySecret`
*/
nonce?: string;
style?: StripeElementStyle;
}