Rocky_Mountain_Vending/.pnpm-store/v10/files/44/6d34602e71d898235b605c1c0905d7c3b04aa22f612303a5c1c790c4683a3a68bfa5497d537370e3be25a295afd9a2cb5e8ec9ba7e2bce3bda509fba9e0b19
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

48 lines
No EOL
1.3 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "handleFetch", {
enumerable: true,
get: function() {
return handleFetch;
}
});
const _types = require("./types");
function buildRequest(req) {
const { request: proxyRequest } = req;
const { url, headers, body, ...options } = proxyRequest;
return new Request(url, {
...options,
headers: new Headers(headers),
body: body ? Buffer.from(body, 'base64') : null
});
}
async function buildResponse(response) {
if (!response) {
return _types.UNHANDLED;
}
if (response === 'abort') {
return _types.ABORT;
}
if (response === 'continue') {
return _types.CONTINUE;
}
const { status, headers, body } = response;
return {
api: 'fetch',
response: {
status,
headers: Array.from(headers),
body: body ? Buffer.from(await response.arrayBuffer()).toString('base64') : null
}
};
}
async function handleFetch(req, onFetch) {
const { testData } = req;
const request = buildRequest(req);
const response = await onFetch(testData, request);
return buildResponse(response);
}
//# sourceMappingURL=fetch-api.js.map