Files
n8n_Demo/n8n-n8n-1.109.2/packages/@n8n/constants/src/instance.ts
2025-09-08 04:48:28 +08:00

9 lines
371 B
TypeScript
Executable File

export const INSTANCE_ID_HEADER = 'n8n-instance-id';
export const INSTANCE_VERSION_HEADER = 'n8n-version';
export const INSTANCE_TYPES = ['main', 'webhook', 'worker'] as const;
export type InstanceType = (typeof INSTANCE_TYPES)[number];
export const INSTANCE_ROLES = ['unset', 'leader', 'follower'] as const;
export type InstanceRole = (typeof INSTANCE_ROLES)[number];