Rocky_Mountain_Vending/.pnpm-store/v10/files/ff/8d3d495be41ddc640c0fe4837e7c5d73441b1c731ecd8d1f7f3a087d3c15e4a5ccecbf454294bd8696fe20b56106847f04dd2fb803f1ff21f5f0baf684ffd6
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

16 lines
445 B
Text

import { tokenIntercept } from "./getSSOTokenFromFile";
import { fileIntercept } from "./readFile";
export const externalDataInterceptor = {
getFileRecord() {
return fileIntercept;
},
interceptFile(path, contents) {
fileIntercept[path] = Promise.resolve(contents);
},
getTokenRecord() {
return tokenIntercept;
},
interceptToken(id, contents) {
tokenIntercept[id] = contents;
},
};