UNPKG

n8n-nodes-instantly-dev

Version:

n8n community node for Instantly API v2

14 lines 408 B
/** * Shared timezone options for Instantly API v2 campaigns * These values match the exact enum values expected by the API */ export interface ITimezoneOption { name: string; value: string; } export declare const TIMEZONE_OPTIONS: ITimezoneOption[]; /** * Default timezone for campaigns */ export declare const DEFAULT_TIMEZONE = "America/Chicago"; //# sourceMappingURL=timezoneOptions.d.ts.map