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

1 line
No EOL
2.7 KiB
Text

{"version":3,"sources":["../../../src/server/web/types.ts"],"sourcesContent":["import type { ExperimentalConfig, I18NConfig } from '../config-shared'\nimport type { NextRequest } from './spec-extension/request'\nimport type { NextFetchEvent } from './spec-extension/fetch-event'\nimport type { NextResponse } from './spec-extension/response'\nimport type { CloneableBody } from '../body-streams'\nimport type { OutgoingHttpHeaders } from 'http'\nimport type { FetchMetrics } from '../base-http'\n\n/**\n * @deprecated Use `ProxyConfig` instead. Middleware has been renamed to Proxy.\n */\nexport type { MiddlewareConfigInput as MiddlewareConfig } from '../../build/segment-config/middleware/middleware-config'\n\nexport type { MiddlewareConfigInput as ProxyConfig } from '../../build/segment-config/middleware/middleware-config'\n\nexport interface RequestData {\n headers: OutgoingHttpHeaders\n method: string\n nextConfig?: {\n basePath?: string\n i18n?: I18NConfig | null\n trailingSlash?: boolean\n experimental?: Pick<\n ExperimentalConfig,\n 'cacheLife' | 'authInterrupts' | 'clientParamParsingOrigins'\n >\n }\n page?: {\n name?: string\n params?: { [key: string]: string | string[] | undefined }\n }\n url: string\n body?: ReadableStream<Uint8Array>\n signal: AbortSignal\n /** passed in when running in edge runtime sandbox */\n waitUntil?: (promise: Promise<any>) => void\n}\n\nexport type NodejsRequestData = Omit<RequestData, 'body'> & {\n body?: CloneableBody\n}\n\nexport interface FetchEventResult {\n response: Response\n waitUntil: Promise<any>\n fetchMetrics?: FetchMetrics\n}\n\nexport type NextMiddlewareResult =\n | NextResponse\n | Response\n | null\n | undefined\n | void\n\n/**\n * Middleware allows you to run code before a request is completed.\n * Then, based on the incoming request, you can modify the response\n * by rewriting, redirecting, modifying the request or response headers,\n * or responding directly.\n *\n * @deprecated Use `NextProxy` instead. Middleware has been renamed to Proxy.\n * Read more: [Next.js Docs: Middleware](https://nextjs.org/docs/app/building-your-application/routing/middleware)\n */\nexport type NextMiddleware = (\n request: NextRequest,\n event: NextFetchEvent\n) => NextMiddlewareResult | Promise<NextMiddlewareResult>\n\n/**\n * Proxy allows you to run code before a request is completed.\n * Then, based on the incoming request, you can modify the response\n * by rewriting, redirecting, modifying the request or response headers,\n * or responding directly.\n *\n * Read more: [Next.js Docs: Proxy](https://nextjs.org/docs/app/building-your-application/routing/middleware)\n */\nexport type NextProxy = NextMiddleware\n"],"names":[],"mappings":"AAqEA;;;;;;;CAOC,GACD,WAAsC","ignoreList":[0]}