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>
88 lines
2.7 KiB
Text
88 lines
2.7 KiB
Text
// File generated from our OpenAPI spec
|
|
|
|
declare module 'stripe' {
|
|
namespace Stripe {
|
|
namespace Treasury {
|
|
interface CreditReversalCreateParams {
|
|
/**
|
|
* The ReceivedCredit to reverse.
|
|
*/
|
|
received_credit: string;
|
|
|
|
/**
|
|
* Specifies which fields in the response should be expanded.
|
|
*/
|
|
expand?: Array<string>;
|
|
|
|
/**
|
|
* 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. Individual keys can be unset by posting an empty value to them. All keys can be unset by posting an empty value to `metadata`.
|
|
*/
|
|
metadata?: Stripe.MetadataParam;
|
|
}
|
|
|
|
interface CreditReversalRetrieveParams {
|
|
/**
|
|
* Specifies which fields in the response should be expanded.
|
|
*/
|
|
expand?: Array<string>;
|
|
}
|
|
|
|
interface CreditReversalListParams extends PaginationParams {
|
|
/**
|
|
* Returns objects associated with this FinancialAccount.
|
|
*/
|
|
financial_account: string;
|
|
|
|
/**
|
|
* Specifies which fields in the response should be expanded.
|
|
*/
|
|
expand?: Array<string>;
|
|
|
|
/**
|
|
* Only return CreditReversals for the ReceivedCredit ID.
|
|
*/
|
|
received_credit?: string;
|
|
|
|
/**
|
|
* Only return CreditReversals for a given status.
|
|
*/
|
|
status?: CreditReversalListParams.Status;
|
|
}
|
|
|
|
namespace CreditReversalListParams {
|
|
type Status = 'canceled' | 'posted' | 'processing';
|
|
}
|
|
|
|
class CreditReversalsResource {
|
|
/**
|
|
* Reverses a ReceivedCredit and creates a CreditReversal object.
|
|
*/
|
|
create(
|
|
params: CreditReversalCreateParams,
|
|
options?: RequestOptions
|
|
): Promise<Stripe.Response<Stripe.Treasury.CreditReversal>>;
|
|
|
|
/**
|
|
* Retrieves the details of an existing CreditReversal by passing the unique CreditReversal ID from either the CreditReversal creation request or CreditReversal list
|
|
*/
|
|
retrieve(
|
|
id: string,
|
|
params?: CreditReversalRetrieveParams,
|
|
options?: RequestOptions
|
|
): Promise<Stripe.Response<Stripe.Treasury.CreditReversal>>;
|
|
retrieve(
|
|
id: string,
|
|
options?: RequestOptions
|
|
): Promise<Stripe.Response<Stripe.Treasury.CreditReversal>>;
|
|
|
|
/**
|
|
* Returns a list of CreditReversals.
|
|
*/
|
|
list(
|
|
params: CreditReversalListParams,
|
|
options?: RequestOptions
|
|
): ApiListPromise<Stripe.Treasury.CreditReversal>;
|
|
}
|
|
}
|
|
}
|
|
}
|