Rocky_Mountain_Vending/.pnpm-store/v10/files/2b/02a6820898c0f1b34147f4d43137483b277a1d11ccca4c3c1935d0ea866fb8942779dcbf32de352137073b371685cbb42bf7e8ddcdcf19b9db56b9fe438ecb
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

74 lines
1.8 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Radar {
/**
* The DeletedValueListItem object.
*/
interface DeletedValueListItem {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'radar.value_list_item';
/**
* Always true for a deleted object
*/
deleted: true;
}
/**
* Value list items allow you to add specific values to a given Radar value list, which can then be used in rules.
*
* Related guide: [Managing list items](https://stripe.com/docs/radar/lists#managing-list-items)
*/
interface ValueListItem {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'radar.value_list_item';
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* The name or email address of the user who added this item to the value list.
*/
created_by: string;
/**
* Always true for a deleted object
*/
deleted?: void;
/**
* Has the value `true` if the object exists in live mode or the value `false` if the object exists in test mode.
*/
livemode: boolean;
/**
* The value of the item.
*/
value: string;
/**
* The identifier of the value list this item belongs to.
*/
value_list: string;
}
}
}
}