mirror of
https://github.com/czlonkowski/n8n-mcp.git
synced 2026-02-06 21:43:07 +00:00
chore: add pre-built dist folder for npx usage
This commit is contained in:
committed by
Romuald Członkowski
parent
a70d96a373
commit
5057481e70
26
dist/telemetry/startup-checkpoints.d.ts
vendored
Normal file
26
dist/telemetry/startup-checkpoints.d.ts
vendored
Normal 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
|
||||
Reference in New Issue
Block a user