2020-09-13 02:08:43 -07:00
|
|
|
import {
|
|
|
|
INodeProperties,
|
2020-09-13 02:09:17 -07:00
|
|
|
} from 'n8n-workflow';
|
2020-09-13 02:08:43 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const channelOperations: INodeProperties[] = [
|
2020-09-13 02:08:43 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-04-25 02:22:16 -07:00
|
|
|
noDataExpression: true,
|
2020-09-13 02:08:43 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
|
|
|
description: 'Create a channel',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Delete',
|
|
|
|
value: 'delete',
|
|
|
|
description: 'Delete a channel',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
|
|
|
description: 'Get a channel',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get All',
|
|
|
|
value: 'getAll',
|
|
|
|
description: 'Get all channels',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Update',
|
|
|
|
value: 'update',
|
|
|
|
description: 'Update a channel',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2020-09-13 02:08:43 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const channelFields: INodeProperties[] = [
|
2020-09-13 02:08:43 -07:00
|
|
|
|
2020-09-13 02:09:17 -07:00
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* channel:create */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-09-13 02:08:43 -07:00
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Team Name or ID',
|
2020-09-13 02:08:43 -07:00
|
|
|
name: 'teamId',
|
|
|
|
required: true,
|
|
|
|
type: 'options',
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
2020-09-13 02:08:43 -07:00
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTeams',
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
required: true,
|
|
|
|
type: 'string',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
2022-04-25 02:22:16 -07:00
|
|
|
description: 'Channel name as it will appear to the user in Microsoft Teams',
|
2020-09-13 02:08:43 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Options',
|
|
|
|
name: 'options',
|
|
|
|
type: 'collection',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'create',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Description',
|
|
|
|
name: 'description',
|
|
|
|
type: 'string',
|
|
|
|
typeOptions: {
|
|
|
|
alwaysOpenEditWindow: true,
|
|
|
|
},
|
|
|
|
default: '',
|
2022-06-03 10:23:49 -07:00
|
|
|
description: 'Channel\'s description',
|
2020-09-13 02:08:43 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Type',
|
|
|
|
name: 'type',
|
|
|
|
type: 'options',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Private',
|
|
|
|
value: 'private',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Standard',
|
|
|
|
value: 'standard',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'standard',
|
|
|
|
description: 'The type of the channel',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2020-09-13 02:09:17 -07:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* channel:delete */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-09-13 02:08:43 -07:00
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Team Name or ID',
|
2020-09-13 02:08:43 -07:00
|
|
|
name: 'teamId',
|
|
|
|
required: true,
|
|
|
|
type: 'options',
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
2020-09-13 02:08:43 -07:00
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTeams',
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'delete',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Channel Name or ID',
|
2020-09-13 02:08:43 -07:00
|
|
|
name: 'channelId',
|
|
|
|
type: 'options',
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
2020-09-13 02:08:43 -07:00
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getChannels',
|
|
|
|
loadOptionsDependsOn: [
|
|
|
|
'teamId',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'delete',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
2020-09-13 02:09:17 -07:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* channel:get */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-09-13 02:08:43 -07:00
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Team Name or ID',
|
2020-09-13 02:08:43 -07:00
|
|
|
name: 'teamId',
|
|
|
|
required: true,
|
|
|
|
type: 'options',
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
2020-09-13 02:08:43 -07:00
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTeams',
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Channel Name or ID',
|
2020-09-13 02:08:43 -07:00
|
|
|
name: 'channelId',
|
|
|
|
type: 'options',
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
2020-09-13 02:08:43 -07:00
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getChannels',
|
|
|
|
loadOptionsDependsOn: [
|
|
|
|
'teamId',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'get',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
2020-09-13 02:09:17 -07:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* channel:getAll */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-09-13 02:08:43 -07:00
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Team Name or ID',
|
2020-09-13 02:08:43 -07:00
|
|
|
name: 'teamId',
|
|
|
|
required: true,
|
|
|
|
type: 'options',
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
2020-09-13 02:08:43 -07:00
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTeams',
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: false,
|
2022-04-25 02:22:16 -07:00
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
2020-09-13 02:08:43 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'getAll',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
returnAll: [
|
|
|
|
false,
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
maxValue: 500,
|
|
|
|
},
|
2022-04-25 02:22:16 -07:00
|
|
|
default: 50,
|
|
|
|
description: 'Max number of results to return',
|
2020-09-13 02:08:43 -07:00
|
|
|
},
|
2020-09-13 02:09:17 -07:00
|
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* channel:update */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
2020-09-13 02:08:43 -07:00
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Team Name or ID',
|
2020-09-13 02:08:43 -07:00
|
|
|
name: 'teamId',
|
|
|
|
required: true,
|
|
|
|
type: 'options',
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
2020-09-13 02:08:43 -07:00
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getTeams',
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
2022-06-03 10:23:49 -07:00
|
|
|
displayName: 'Channel Name or ID',
|
2020-09-13 02:08:43 -07:00
|
|
|
name: 'channelId',
|
|
|
|
type: 'options',
|
2022-06-20 07:54:01 -07:00
|
|
|
description: 'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>',
|
2020-09-13 02:08:43 -07:00
|
|
|
typeOptions: {
|
|
|
|
loadOptionsMethod: 'getChannels',
|
|
|
|
loadOptionsDependsOn: [
|
|
|
|
'teamId',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Update Fields',
|
|
|
|
name: 'updateFields',
|
|
|
|
type: 'collection',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
operation: [
|
|
|
|
'update',
|
|
|
|
],
|
|
|
|
resource: [
|
|
|
|
'channel',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: {},
|
|
|
|
placeholder: 'Add Field',
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
displayName: 'Name',
|
|
|
|
name: 'name',
|
|
|
|
type: 'string',
|
|
|
|
default: '',
|
2022-04-25 02:22:16 -07:00
|
|
|
description: 'Channel name as it will appear to the user in Microsoft Teams',
|
2020-09-13 02:08:43 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Description',
|
|
|
|
name: 'description',
|
|
|
|
type: 'string',
|
|
|
|
typeOptions: {
|
|
|
|
alwaysOpenEditWindow: true,
|
|
|
|
},
|
|
|
|
default: '',
|
2022-06-03 10:23:49 -07:00
|
|
|
description: 'Channel\'s description',
|
2020-09-13 02:08:43 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|