mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 02:51:14 +00:00
feat(Microsoft Teams Node): Enhancements and cleanup (#2940)
* Enhancements and cleanup for MS Teams node - Add option to limit groups to "member of" rather than whole directory - Defaults to "all" for compatibility - Add option to Get All tasks to pull from a plan instead of just a group member - Defaults to "member" for compatibility - Added in auto completiong for plans, buckets, labels and members in update fields for tasks - Update descriptions and normalize quotes for descriptions and display names * Bump MS Teams version number * ⚡ fixed version * 🔨 small fixes * 🔨 fixed nodelinter issues Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
@@ -7,6 +7,7 @@ export const channelOperations: INodeProperties[] = [
|
||||
displayName: 'Operation',
|
||||
name: 'operation',
|
||||
type: 'options',
|
||||
noDataExpression: true,
|
||||
displayOptions: {
|
||||
show: {
|
||||
resource: [
|
||||
@@ -42,7 +43,6 @@ export const channelOperations: INodeProperties[] = [
|
||||
},
|
||||
],
|
||||
default: 'create',
|
||||
description: 'The operation to perform.',
|
||||
},
|
||||
];
|
||||
|
||||
@@ -87,7 +87,7 @@ export const channelFields: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
description: 'Channel name as it will appear to the user in Microsoft Teams.',
|
||||
description: 'Channel name as it will appear to the user in Microsoft Teams',
|
||||
},
|
||||
{
|
||||
displayName: 'Options',
|
||||
@@ -266,7 +266,7 @@ export const channelFields: 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',
|
||||
@@ -289,8 +289,8 @@ export const channelFields: INodeProperties[] = [
|
||||
minValue: 1,
|
||||
maxValue: 500,
|
||||
},
|
||||
default: 100,
|
||||
description: 'How many results to return.',
|
||||
default: 50,
|
||||
description: 'Max number of results to return',
|
||||
},
|
||||
|
||||
/* -------------------------------------------------------------------------- */
|
||||
@@ -360,7 +360,7 @@ export const channelFields: INodeProperties[] = [
|
||||
name: 'name',
|
||||
type: 'string',
|
||||
default: '',
|
||||
description: 'Channel name as it will appear to the user in Microsoft Teams.',
|
||||
description: 'Channel name as it will appear to the user in Microsoft Teams',
|
||||
},
|
||||
{
|
||||
displayName: 'Description',
|
||||
|
||||
Reference in New Issue
Block a user