1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00
n8n/packages/nodes-base/nodes/Zulip/UserInterface.ts
Ricardo Espinoza 1a1bc26ecf
Add role parameter to user:update (Zulip) ()
*  Add role parameter to user:update

* ✏️ Fix typo issue
2021-11-11 00:03:45 +01:00

13 lines
257 B
TypeScript

export interface IUser {
client_gravatar?: boolean;
include_custom_profile_fields?: boolean;
full_name?: string;
is_admin?: boolean;
is_guest?: boolean;
profile_data?: [{}];
email?: string;
password?: string;
short_name?: string;
role?: number;
}