mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
✨ user resource done
This commit is contained in:
14
packages/nodes-base/nodes/Wordpress/UserInterface.ts
Normal file
14
packages/nodes-base/nodes/Wordpress/UserInterface.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
export interface IUser {
|
||||
id?: number;
|
||||
username?: string;
|
||||
name?: string;
|
||||
first_name?: string;
|
||||
nickname?: string;
|
||||
slug?: string;
|
||||
last_name?: string;
|
||||
email?: string;
|
||||
url?: string;
|
||||
description?: string;
|
||||
password?: string;
|
||||
}
|
||||
Reference in New Issue
Block a user