Rocky_Mountain_Vending/.pnpm-store/v10/files/72/dd4ea42f43a219c3583efb73e3cd71f4a3009f6094e8377b0afdc03be891a7e3d39a44228c47892cf3df42591bd7182e1c5ab5f54a807ca5acbb5262a6ca56
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

82 lines
2.4 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Treasury {
interface TransactionRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface TransactionListParams extends PaginationParams {
/**
* Returns objects associated with this FinancialAccount.
*/
financial_account: string;
/**
* Only return Transactions that were created during the given date interval.
*/
created?: Stripe.RangeQueryParam | number;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* The results are in reverse chronological order by `created` or `posted_at`. The default is `created`.
*/
order_by?: TransactionListParams.OrderBy;
/**
* Only return Transactions that have the given status: `open`, `posted`, or `void`.
*/
status?: TransactionListParams.Status;
/**
* A filter for the `status_transitions.posted_at` timestamp. When using this filter, `status=posted` and `order_by=posted_at` must also be specified.
*/
status_transitions?: TransactionListParams.StatusTransitions;
}
namespace TransactionListParams {
type OrderBy = 'created' | 'posted_at';
type Status = 'open' | 'posted' | 'void';
interface StatusTransitions {
/**
* Returns Transactions with `posted_at` within the specified range.
*/
posted_at?: Stripe.RangeQueryParam | number;
}
}
class TransactionsResource {
/**
* Retrieves the details of an existing Transaction.
*/
retrieve(
id: string,
params?: TransactionRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Treasury.Transaction>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Treasury.Transaction>>;
/**
* Retrieves a list of Transaction objects.
*/
list(
params: TransactionListParams,
options?: RequestOptions
): ApiListPromise<Stripe.Treasury.Transaction>;
}
}
}
}