Rocky_Mountain_Vending/.pnpm-store/v10/files/1f/bdc021334b4dbfe398c100ca846a4eb4e738956abf1a3e799e88206a2fca353b7de40c4e25666802199f976eebcedc1dbe36413565356f8f32f2d07db72899
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

424 lines
11 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Terminal {
/**
* A Configurations object represents how features should be configured for terminal readers.
*/
interface Configuration {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'terminal.configuration';
bbpos_wisepos_e?: Configuration.BbposWiseposE;
/**
* Always true for a deleted object
*/
deleted?: void;
/**
* Whether this Configuration is the default for your account
*/
is_account_default: boolean | null;
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
/**
* String indicating the name of the Configuration object, set by the user
*/
name: string | null;
offline?: Configuration.Offline;
reboot_window?: Configuration.RebootWindow;
stripe_s700?: Configuration.StripeS700;
tipping?: Configuration.Tipping;
verifone_p400?: Configuration.VerifoneP400;
}
namespace Configuration {
interface BbposWiseposE {
/**
* A File ID representing an image you would like displayed on the reader.
*/
splashscreen?: string | Stripe.File;
}
interface Offline {
/**
* Determines whether to allow transactions to be collected while reader is offline. Defaults to false.
*/
enabled: boolean | null;
}
interface RebootWindow {
/**
* Integer between 0 to 23 that represents the end hour of the reboot time window. The value must be different than the start_hour.
*/
end_hour: number;
/**
* Integer between 0 to 23 that represents the start hour of the reboot time window.
*/
start_hour: number;
}
interface StripeS700 {
/**
* A File ID representing an image you would like displayed on the reader.
*/
splashscreen?: string | Stripe.File;
}
interface Tipping {
aud?: Tipping.Aud;
cad?: Tipping.Cad;
chf?: Tipping.Chf;
czk?: Tipping.Czk;
dkk?: Tipping.Dkk;
eur?: Tipping.Eur;
gbp?: Tipping.Gbp;
hkd?: Tipping.Hkd;
jpy?: Tipping.Jpy;
myr?: Tipping.Myr;
nok?: Tipping.Nok;
nzd?: Tipping.Nzd;
pln?: Tipping.Pln;
sek?: Tipping.Sek;
sgd?: Tipping.Sgd;
usd?: Tipping.Usd;
}
namespace Tipping {
interface Aud {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Cad {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Chf {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Czk {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Dkk {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Eur {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Gbp {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Hkd {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Jpy {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Myr {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Nok {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Nzd {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Pln {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Sek {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Sgd {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
interface Usd {
/**
* Fixed amounts displayed when collecting a tip
*/
fixed_amounts?: Array<number> | null;
/**
* Percentages displayed when collecting a tip
*/
percentages?: Array<number> | null;
/**
* Below this amount, fixed amounts will be displayed; above it, percentages will be displayed
*/
smart_tip_threshold?: number;
}
}
interface VerifoneP400 {
/**
* A File ID representing an image you would like displayed on the reader.
*/
splashscreen?: string | Stripe.File;
}
}
/**
* The DeletedConfiguration object.
*/
interface DeletedConfiguration {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'terminal.configuration';
/**
* Always true for a deleted object
*/
deleted: true;
}
}
}
}