Rocky_Mountain_Vending/.pnpm-store/v10/files/d2/39554e8ea91d6382469ebef550df5bb5b5e90b5223685c98bb8ec4f2748d32d0c28a2b28d35e68080b0acae43c0a57418110b26958e3eee7910e3b983e143e
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

92 lines
2.8 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Treasury {
/**
* You can reverse some [ReceivedCredits](https://stripe.com/docs/api#received_credits) depending on their network and source flow. Reversing a ReceivedCredit leads to the creation of a new object known as a CreditReversal.
*/
interface CreditReversal {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'treasury.credit_reversal';
/**
* Amount (in cents) transferred.
*/
amount: number;
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* Three-letter [ISO currency code](https://www.iso.org/iso-4217-currency-codes.html), in lowercase. Must be a [supported currency](https://stripe.com/docs/currencies).
*/
currency: string;
/**
* The FinancialAccount to reverse funds from.
*/
financial_account: string;
/**
* A [hosted transaction receipt](https://stripe.com/docs/treasury/moving-money/regulatory-receipts) URL that is provided when money movement is considered regulated under Stripe's money transmission licenses.
*/
hosted_regulatory_receipt_url: string | 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;
/**
* 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;
/**
* The rails used to reverse the funds.
*/
network: CreditReversal.Network;
/**
* The ReceivedCredit being reversed.
*/
received_credit: string;
/**
* Status of the CreditReversal
*/
status: CreditReversal.Status;
status_transitions: CreditReversal.StatusTransitions;
/**
* The Transaction associated with this object.
*/
transaction: string | Stripe.Treasury.Transaction | null;
}
namespace CreditReversal {
type Network = 'ach' | 'stripe';
type Status = 'canceled' | 'posted' | 'processing';
interface StatusTransitions {
/**
* Timestamp describing when the CreditReversal changed status to `posted`
*/
posted_at: number | null;
}
}
}
}
}