Rocky_Mountain_Vending/.pnpm-store/v10/files/8e/9fb94a7d2cd08b634cb89c425acf54048de94649c92e6351b20e3125cbb09a66ce43089ee7625721cc4e2765bef4a9c51677eb698f124562d5b0f63fd9de5c
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

101 lines
2.8 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
/**
* The DeletedWebhookEndpoint object.
*/
interface DeletedWebhookEndpoint {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'webhook_endpoint';
/**
* Always true for a deleted object
*/
deleted: true;
}
/**
* You can configure [webhook endpoints](https://docs.stripe.com/webhooks/) via the API to be
* notified about events that happen in your Stripe account or connected
* accounts.
*
* Most users configure webhooks from [the dashboard](https://dashboard.stripe.com/webhooks), which provides a user interface for registering and testing your webhook endpoints.
*
* Related guide: [Setting up webhooks](https://docs.stripe.com/webhooks/configure)
*/
interface WebhookEndpoint {
/**
* Unique identifier for the object.
*/
id: string;
/**
* String representing the object's type. Objects of the same type share the same value.
*/
object: 'webhook_endpoint';
/**
* The API version events are rendered as for this webhook endpoint.
*/
api_version: string | null;
/**
* The ID of the associated Connect application.
*/
application: string | null;
/**
* Time at which the object was created. Measured in seconds since the Unix epoch.
*/
created: number;
/**
* Always true for a deleted object
*/
deleted?: void;
/**
* An optional description of what the webhook is used for.
*/
description: string | null;
/**
* The list of events to enable for this endpoint. `['*']` indicates that all events are enabled, except those that require explicit selection.
*/
enabled_events: Array<string>;
/**
* 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 endpoint's secret, used to generate [webhook signatures](https://docs.stripe.com/webhooks/signatures). Only returned at creation.
*/
secret?: string;
/**
* The status of the webhook. It can be `enabled` or `disabled`.
*/
status: string;
/**
* The URL of the webhook endpoint.
*/
url: string;
}
}
}