Rocky_Mountain_Vending/.pnpm-store/v10/files/bd/c6feafb173aff6ba852ad3d04c08a9cc4bfac6be4f27ec2cfe9c06cd339b2505fc72e55a106a2d94cdbcecd752946648e27ef0fd86b765aaa2f5778f47e5cb
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

35 lines
1.4 KiB
Text

import type { ExportAppResult } from '../export/types';
interface BuildDiagnostics {
buildStage?: string;
buildOptions?: Record<string, string>;
}
/**
* Saves the exact version of Next.js that was used to build the app to a diagnostics file.
*/
export declare function recordFrameworkVersion(version: string): Promise<void>;
/**
* Saves build diagnostics information to a file. This method can be called
* multiple times during a build to save additional information that can help
* debug a build such as what stage the build was in when a failure happened.
* Each time this method is called, the new information will be merged with any
* existing build diagnostics that previously existed.
*/
export declare function updateBuildDiagnostics(diagnostics: BuildDiagnostics): Promise<void>;
/**
* Writes fetch metrics collected during static generation to a file.
*/
export declare function recordFetchMetrics(exportResult: ExportAppResult): Promise<void>;
interface IncrementalBuildDiagnostics {
changedAppPaths?: string[];
unchangedAppPaths?: string[];
changedPagePaths?: string[];
unchangedPagePaths?: string[];
changedDependencies?: Record<string, string>;
shuttleGitSha?: string;
currentGitSha?: string;
}
/**
* Writes incremental build metrics to a file.
*/
export declare function updateIncrementalBuildMetrics(diagnostics: IncrementalBuildDiagnostics): Promise<void>;
export {};