n8n/packages/nodes-base/nodes/ActionNetwork/descriptions/AttendanceDescription.ts
Iván Ovejero 6f95121fac
refactor: Add action to all operations on all nodes (#3655)
* 👕 Add `action` to `INodePropertyOptions`

* 👕 Apply `node-param-operation-option-without-action`

* ✏️ Fix add/remove phrasing

* ✏️ Fix email template phrasing

* ✏️ Fix add/remove phrasing

* ✏️ Fix custom fields phrasing

* ✏️ Fix job report phrasing

* ✏️ Fix query phrasing

* ✏️ Various phrasing fixes

* ✏️ Fix final phrasings

* ✏️ Remove `conversation`

* ✏️ Fix plural
2022-07-10 23:50:51 +03:00

189 lines
3.2 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
import {
makeSimpleField,
} from './SharedFields';
export const attendanceOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: [
'attendance',
],
},
},
options: [
{
name: 'Create',
value: 'create',
action: 'Create an attendance',
},
{
name: 'Get',
value: 'get',
action: 'Get an attendance',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all attendances',
},
],
default: 'create',
},
];
export const attendanceFields: INodeProperties[] = [
// ----------------------------------------
// attendance: create
// ----------------------------------------
{
displayName: 'Person ID',
name: 'personId',
description: 'ID of the person to create an attendance for',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'attendance',
],
operation: [
'create',
],
},
},
},
{
displayName: 'Event ID',
name: 'eventId',
description: 'ID of the event to create an attendance for',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'attendance',
],
operation: [
'create',
],
},
},
},
makeSimpleField('attendance', 'create'),
// ----------------------------------------
// attendance: get
// ----------------------------------------
{
displayName: 'Event ID',
name: 'eventId',
description: 'ID of the event whose attendance to retrieve',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'attendance',
],
operation: [
'get',
],
},
},
},
{
displayName: 'Attendance ID',
name: 'attendanceId',
description: 'ID of the attendance to retrieve',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'attendance',
],
operation: [
'get',
],
},
},
},
makeSimpleField('attendance', 'get'),
// ----------------------------------------
// attendance: getAll
// ----------------------------------------
{
displayName: 'Event ID',
name: 'eventId',
description: 'ID of the event to create an attendance for',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'attendance',
],
operation: [
'getAll',
],
},
},
},
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
description: 'Whether to return all results or only up to a given limit',
displayOptions: {
show: {
resource: [
'attendance',
],
operation: [
'getAll',
],
},
},
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 50,
description: 'Max number of results to return',
typeOptions: {
minValue: 1,
},
displayOptions: {
show: {
resource: [
'attendance',
],
operation: [
'getAll',
],
returnAll: [
false,
],
},
},
},
makeSimpleField('attendance', 'getAll'),
];