Rocky_Mountain_Vending/.pnpm-store/v10/files/9b/0454aa19b3a4e6db5758ac35abb1eba33c35f332fd4fa4819b20f2dba61f83091dd4654490928182fdbb8e30e35b20d7ac8a1829b21ab51cfe25394eb2436f
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

99 lines
2.9 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Radar {
interface ValueListItemCreateParams {
/**
* The value of the item (whose type must match the type of the parent value list).
*/
value: string;
/**
* The identifier of the value list which the created item will be added to.
*/
value_list: string;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface ValueListItemRetrieveParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
}
interface ValueListItemListParams extends PaginationParams {
/**
* Identifier for the parent value list this item belongs to.
*/
value_list: string;
/**
* Only return items that were created during the given date interval.
*/
created?: Stripe.RangeQueryParam | number;
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* Return items belonging to the parent list whose value matches the specified value (using an "is like" match).
*/
value?: string;
}
interface ValueListItemDeleteParams {}
class ValueListItemsResource {
/**
* Creates a new ValueListItem object, which is added to the specified parent value list.
*/
create(
params: ValueListItemCreateParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Radar.ValueListItem>>;
/**
* Retrieves a ValueListItem object.
*/
retrieve(
id: string,
params?: ValueListItemRetrieveParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Radar.ValueListItem>>;
retrieve(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Radar.ValueListItem>>;
/**
* Returns a list of ValueListItem objects. The objects are sorted in descending order by creation date, with the most recently created object appearing first.
*/
list(
params: ValueListItemListParams,
options?: RequestOptions
): ApiListPromise<Stripe.Radar.ValueListItem>;
/**
* Deletes a ValueListItem object, removing it from its parent value list.
*/
del(
id: string,
params?: ValueListItemDeleteParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Radar.DeletedValueListItem>>;
del(
id: string,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Radar.DeletedValueListItem>>;
}
}
}
}