mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
✨ Wordpress node
This commit is contained in:
15
packages/nodes-base/nodes/Wordpress/PostInterface.ts
Normal file
15
packages/nodes-base/nodes/Wordpress/PostInterface.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
export interface IPost {
|
||||
id?: number;
|
||||
title?: string;
|
||||
content?: string;
|
||||
slug?: string;
|
||||
password?: string;
|
||||
status?: string;
|
||||
comment_status?: string;
|
||||
ping_status?: string;
|
||||
format?: string;
|
||||
sticky?: boolean;
|
||||
categories?: number[];
|
||||
tags?: number[];
|
||||
}
|
||||
Reference in New Issue
Block a user