mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 20:00:02 +00:00
✨ Add Notion node V2 (#2437)
* ⚡ Add versioning * ⚡ Add credentials verification * ⚡ Add folmula filtering * ⚡ Add file support * ⚡ Apply internal review * ⚡ Improvements * ⚡ Add page updated event to trigger * ⚡ Use name instead of id when setting expression in select type * ⚡ improvements * ⚡ Improvements * ⚡ Improvement to descriptions * ⚡ Add filter to databasePage:getAll * ⚡ Improvements * ⚡ Add database:search operation * ⚡ Add page:archive operation * ⚡ Allow clearing fields date type * ⚡ Allow setting single value in people type field * asasas * asasas * aaaaa * ⚡ Improvements * ⚡ Fix merging issues * 🐛 Fix filename * ⚡ Minor fix Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
@@ -2,7 +2,7 @@ import {
|
||||
INodeProperties,
|
||||
} from 'n8n-workflow';
|
||||
|
||||
export const userOperations: INodeProperties[] = [
|
||||
export const userOperations = [
|
||||
{
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
@@ -27,11 +27,10 @@ export const userOperations: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: 'get',
|
||||
description: 'The operation to perform.',
|
||||
},
|
||||
];
|
||||
] as INodeProperties[];
|
||||
|
||||
export const userFields: INodeProperties[] = [
|
||||
export const userFields = [
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
/* user:get */
|
||||
@@ -71,7 +70,7 @@ export const userFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: false,
|
||||
description: 'If all results should be returned or only up to a given limit.',
|
||||
description: 'Whether to return all results or only up to a given limit',
|
||||
},
|
||||
{
|
||||
displayName: 'Limit',
|
||||
@@ -95,6 +94,6 @@ export const userFields: INodeProperties[] = [
|
||||
maxValue: 100,
|
||||
},
|
||||
default: 50,
|
||||
description: 'How many results to return.',
|
||||
description: 'How many results to return',
|
||||
},
|
||||
];
|
||||
] as INodeProperties[];
|
||||
|
||||
Reference in New Issue
Block a user