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

32 lines
1.4 KiB
Text

// File generated from our OpenAPI spec
declare module 'stripe' {
namespace Stripe {
namespace Terminal {
interface ConnectionTokenCreateParams {
/**
* Specifies which fields in the response should be expanded.
*/
expand?: Array<string>;
/**
* The id of the location that this connection token is scoped to. If specified the connection token will only be usable with readers assigned to that location, otherwise the connection token will be usable with all readers. Note that location scoping only applies to internet-connected readers. For more details, see [the docs on scoping connection tokens](https://docs.stripe.com/terminal/fleet/locations-and-zones?dashboard-or-api=api#connection-tokens).
*/
location?: string;
}
class ConnectionTokensResource {
/**
* To connect to a reader the Stripe Terminal SDK needs to retrieve a short-lived connection token from Stripe, proxied through your server. On your backend, add an endpoint that creates and returns a connection token.
*/
create(
params?: ConnectionTokenCreateParams,
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Terminal.ConnectionToken>>;
create(
options?: RequestOptions
): Promise<Stripe.Response<Stripe.Terminal.ConnectionToken>>;
}
}
}
}