Rocky_Mountain_Vending/.pnpm-store/v10/files/32/97354460f12cd2a3fbb2c3feba632b2cd02a4681a5a4d4fd57ea3848b392cfeb75314daf9a3e8ba669b4bcc041960398db129ec59027834a4266b2a1f99cfc
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

30 lines
976 B
Text

// File generated from our OpenAPI spec
import { StripeResource } from '../../StripeResource.js';
const stripeMethod = StripeResource.method;
export const VerificationSessions = StripeResource.extend({
create: stripeMethod({
method: 'POST',
fullPath: '/v1/identity/verification_sessions',
}),
retrieve: stripeMethod({
method: 'GET',
fullPath: '/v1/identity/verification_sessions/{session}',
}),
update: stripeMethod({
method: 'POST',
fullPath: '/v1/identity/verification_sessions/{session}',
}),
list: stripeMethod({
method: 'GET',
fullPath: '/v1/identity/verification_sessions',
methodType: 'list',
}),
cancel: stripeMethod({
method: 'POST',
fullPath: '/v1/identity/verification_sessions/{session}/cancel',
}),
redact: stripeMethod({
method: 'POST',
fullPath: '/v1/identity/verification_sessions/{session}/redact',
}),
});