mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
63a459ac92
* ⚡ Add filters to all get:All operations * ⚡ Small fix * ⚡Add description to condition fields * ⚡ Minor improvements to Salesforce-Node Co-authored-by: Harshil <ghagrawal17@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
8 lines
121 B
TypeScript
8 lines
121 B
TypeScript
export interface INote {
|
|
Title?: string;
|
|
ParentId?: string;
|
|
Body?: string;
|
|
OwnerId?: string;
|
|
IsPrivate?: boolean;
|
|
}
|