mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
6dcdb30bf4
* ✏️ Alphabetize lint rules * 🔥 Remove duplicates * ⚡ Update `lintfix` script * 👕 Apply `node-param-operation-without-no-data-expression` (#3329) * 👕 Apply `node-param-operation-without-no-data-expression` * 👕 Add exceptions * 👕 Apply `node-param-description-weak` (#3328) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-value-duplicate` (#3331) * 👕 Apply `node-param-description-miscased-json` (#3337) * 👕 Apply `node-param-display-name-excess-inner-whitespace` (#3335) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-type-options-missing-from-limit` (#3336) * Rule workig as intended * ✏️ Uncomment rules Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-duplicate` (#3338) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-simplify` (#3334) * ⚡ fix * ⚡ exceptions * ⚡ changed rule ignoring from file to line * 👕 Apply `node-param-resource-without-no-data-expression` (#3339) * 👕 Apply `node-param-display-name-untrimmed` (#3341) * 👕 Apply `node-param-display-name-miscased-id` (#3340) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-resource-with-plural-option` (#3342) * 👕 Apply `node-param-description-wrong-for-upsert` (#3333) * ⚡ fix * ⚡ replaced record with contact in description * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-description-identical-to-name` (#3343) * 👕 Apply `node-param-option-name-containing-star` (#3347) * 👕 Apply `node-param-display-name-wrong-for-update-fields` (#3348) * 👕 Apply `node-param-option-name-wrong-for-get-all` (#3345) * ⚡ fix * ⚡ exceptions * 👕 Apply node-param-display-name-wrong-for-simplify (#3344) * Rule working as intended * Uncomented other rules * 👕 Undo and add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Alphabetize lint rules * ⚡ Restore `lintfix` script Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
270 lines
4.9 KiB
TypeScript
270 lines
4.9 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const roomOperations: INodeProperties[] = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'room',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Create',
|
|
value: 'create',
|
|
description: 'New chat room with defined settings',
|
|
},
|
|
{
|
|
name: 'Invite',
|
|
value: 'invite',
|
|
description: 'Invite a user to a room',
|
|
},
|
|
{
|
|
name: 'Join',
|
|
value: 'join',
|
|
description: 'Join a new room',
|
|
},
|
|
{
|
|
name: 'Kick',
|
|
value: 'kick',
|
|
description: 'Kick a user from a room',
|
|
},
|
|
{
|
|
name: 'Leave',
|
|
value: 'leave',
|
|
description: 'Leave a room',
|
|
},
|
|
],
|
|
default: 'create',
|
|
},
|
|
];
|
|
|
|
|
|
export const roomFields: INodeProperties[] = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* room:create */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Room Name',
|
|
name: 'roomName',
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'room',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
placeholder: 'My new room',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Preset',
|
|
name: 'preset',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'room',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Private Chat',
|
|
value: 'private_chat',
|
|
},
|
|
{
|
|
name: 'Public Chat',
|
|
value: 'public_chat',
|
|
description: 'Open and public chat',
|
|
},
|
|
],
|
|
default: 'public_chat',
|
|
placeholder: 'My new room',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Room Alias',
|
|
name: 'roomAlias',
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'room',
|
|
],
|
|
operation: [
|
|
'create',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
placeholder: 'coolest-room-around',
|
|
},
|
|
/* -------------------------------------------------------------------------- */
|
|
/* room:join */
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
displayName: 'Room ID or Alias',
|
|
name: 'roomIdOrAlias',
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'room',
|
|
],
|
|
operation: [
|
|
'join',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
required: true,
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* room:leave */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Room ID',
|
|
name: 'roomId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getChannels',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'room',
|
|
],
|
|
operation: [
|
|
'leave',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
required: true,
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* room:invite */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Room ID',
|
|
name: 'roomId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getChannels',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'room',
|
|
],
|
|
operation: [
|
|
'invite',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
required: true,
|
|
},
|
|
|
|
{
|
|
displayName: 'User ID',
|
|
name: 'userId',
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'room',
|
|
],
|
|
operation: [
|
|
'invite',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'The fully qualified user ID of the invitee',
|
|
placeholder: '@cheeky_monkey:matrix.org',
|
|
required: true,
|
|
},
|
|
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* room:kick */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Room ID',
|
|
name: 'roomId',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getChannels',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'room',
|
|
],
|
|
operation: [
|
|
'kick',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'User ID',
|
|
name: 'userId',
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'room',
|
|
],
|
|
operation: [
|
|
'kick',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'The fully qualified user ID',
|
|
placeholder: '@cheeky_monkey:matrix.org',
|
|
required: true,
|
|
},
|
|
{
|
|
displayName: 'Reason',
|
|
name: 'reason',
|
|
type: 'string',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'room',
|
|
],
|
|
operation: [
|
|
'kick',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
description: 'Reason for kick',
|
|
placeholder: 'Telling unfunny jokes',
|
|
},
|
|
];
|