Rocky_Mountain_Vending/.pnpm-store/v10/files/57/74e998563e2c69ccb233fe109c309eb111af080938bbc5856695c4d2d2cdb20e7f5b1e913aa8f8ea3f2bf0a18fbf3183f0427005d81c589089086061a3554d
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

55 lines
1.7 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* Invoice Rendering Templates are used to configure how invoices are rendered on surfaces like the PDF. Invoice Rendering Templates
* can be created from within the Dashboard, and they can be used over the API when creating invoices.
*/
interface InvoiceRenderingTemplate {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'invoice_rendering_template';
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
/**
* Set of [key-value pairs](https://stripe.com/docs/api/metadata) that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
*/
metadata: Stripe.Metadata | null;
/**
* A brief description of the template, hidden from customers
*/
nickname: string | null;
/**
* The status of the template, one of `active` or `archived`.
*/
status: InvoiceRenderingTemplate.Status;
/**
* Version of this template; version increases by one when an update on the template changes any field that controls invoice rendering
*/
version: number;
}
namespace InvoiceRenderingTemplate {
type Status = 'active' | 'archived';
}
}
}