Rocky_Mountain_Vending/.pnpm-store/v10/files/26/7f4c1642ae62672586e5fe827f21ce72d0c58ff56ffdc7a63a1615b5c5d503a6441023ae7ce6fd5ad50cd558b41752891973769d9436c6b9ea60b8420e7914
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
1.7 KiB
Text

{"version":3,"sources":["../../../../src/experimental/testmode/proxy/types.ts"],"sourcesContent":["export interface ProxyServer {\n readonly port: number\n fetchWith(\n input: string | URL,\n init?: RequestInit,\n testData?: string\n ): Promise<Response>\n close(): void\n}\n\ninterface ProxyRequestBase {\n testData: string\n api: string\n}\n\ninterface ProxyResponseBase {\n api: string\n}\n\nexport interface ProxyUnhandledResponse extends ProxyResponseBase {\n api: 'unhandled'\n}\n\nexport interface ProxyAbortResponse extends ProxyResponseBase {\n api: 'abort'\n}\n\nexport interface ProxyContinueResponse extends ProxyResponseBase {\n api: 'continue'\n}\n\nexport interface ProxyFetchRequest extends ProxyRequestBase {\n api: 'fetch'\n request: {\n url: string\n headers: Array<[string, string]>\n body: string | null\n } & Omit<RequestInit, 'headers' | 'body'>\n}\n\nexport interface ProxyFetchResponse extends ProxyResponseBase {\n api: 'fetch'\n response: {\n status: number\n headers: Array<[string, string]>\n body: string | null\n }\n}\n\nexport type ProxyRequest = ProxyFetchRequest\n\nexport type ProxyResponse =\n | ProxyUnhandledResponse\n | ProxyAbortResponse\n | ProxyContinueResponse\n | ProxyFetchResponse\n\nexport const ABORT: ProxyResponse = { api: 'abort' }\nexport const CONTINUE: ProxyResponse = { api: 'continue' }\nexport const UNHANDLED: ProxyResponse = { api: 'unhandled' }\n"],"names":["ABORT","CONTINUE","UNHANDLED","api"],"mappings":";;;;;;;;;;;;;;;;IAyDaA,KAAK;eAALA;;IACAC,QAAQ;eAARA;;IACAC,SAAS;eAATA;;;AAFN,MAAMF,QAAuB;IAAEG,KAAK;AAAQ;AAC5C,MAAMF,WAA0B;IAAEE,KAAK;AAAW;AAClD,MAAMD,YAA2B;IAAEC,KAAK;AAAY","ignoreList":[0]}