chore: add pre-built dist folder for npx usage

This commit is contained in:
thesved
2025-12-04 20:22:02 +02:00
committed by Romuald Członkowski
parent a70d96a373
commit 5057481e70
716 changed files with 48021 additions and 0 deletions

26
dist/telemetry/startup-checkpoints.d.ts vendored Normal file
View File

@@ -0,0 +1,26 @@
export declare const STARTUP_CHECKPOINTS: {
readonly PROCESS_STARTED: "process_started";
readonly DATABASE_CONNECTING: "database_connecting";
readonly DATABASE_CONNECTED: "database_connected";
readonly N8N_API_CHECKING: "n8n_api_checking";
readonly N8N_API_READY: "n8n_api_ready";
readonly TELEMETRY_INITIALIZING: "telemetry_initializing";
readonly TELEMETRY_READY: "telemetry_ready";
readonly MCP_HANDSHAKE_STARTING: "mcp_handshake_starting";
readonly MCP_HANDSHAKE_COMPLETE: "mcp_handshake_complete";
readonly SERVER_READY: "server_ready";
};
export type StartupCheckpoint = typeof STARTUP_CHECKPOINTS[keyof typeof STARTUP_CHECKPOINTS];
export interface CheckpointData {
name: StartupCheckpoint;
timestamp: number;
success: boolean;
error?: string;
}
export declare function getAllCheckpoints(): StartupCheckpoint[];
export declare function findFailedCheckpoint(passedCheckpoints: string[]): StartupCheckpoint;
export declare function isValidCheckpoint(checkpoint: string): checkpoint is StartupCheckpoint;
export declare function getCheckpointDescription(checkpoint: StartupCheckpoint): string;
export declare function getNextCheckpoint(current: StartupCheckpoint): StartupCheckpoint | null;
export declare function getCompletionPercentage(passedCheckpoints: string[]): number;
//# sourceMappingURL=startup-checkpoints.d.ts.map