Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Wordpress/PostInterface.ts
RomanDavydchuk 724b5a51f2 feat(Wordpress Node): Add date fields (#17755)
Co-authored-by: Shireen Missi <shireen@n8n.io>
2025-07-29 17:23:02 +01:00

18 lines
313 B
TypeScript

export interface IPost {
date?: string;
author?: number;
id?: number;
title?: string;
content?: string;
slug?: string;
password?: string;
status?: string;
comment_status?: string;
ping_status?: string;
format?: string;
sticky?: boolean;
template?: string;
categories?: number[];
tags?: number[];
}