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

52 lines
1.7 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* A customer's `Cash balance` represents real funds. Customers can add funds to their cash balance by sending a bank transfer. These funds can be used for payment and can eventually be paid out to your bank account.
*/
interface CashBalance {
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'cash_balance';
/**
* A hash of all cash balances available to this customer. You cannot delete a customer with any cash balances, even if the balance is 0. Amounts are represented in the [smallest currency unit](https://stripe.com/docs/currencies#zero-decimal).
*/
available: {
[key: string]: number;
} | null;
/**
* The ID of the customer whose cash balance this object represents.
*/
customer: string;
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
settings: CashBalance.Settings;
}
namespace CashBalance {
interface Settings {
/**
* The configuration for how funds that land in the customer cash balance are reconciled.
*/
reconciliation_mode: Settings.ReconciliationMode;
/**
* A flag to indicate if reconciliation mode returned is the user's default or is specific to this customer cash balance
*/
using_merchant_default: boolean;
}
namespace Settings {
type ReconciliationMode = 'automatic' | 'manual';
}
}
}
}