2022-08-01 13:47:55 -07:00
|
|
|
import { INodeProperties } from 'n8n-workflow';
|
2021-06-27 04:07:25 -07:00
|
|
|
|
2022-08-01 13:47:55 -07:00
|
|
|
import { makeSimpleField } from './SharedFields';
|
2021-06-27 04:07:25 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const attendanceOperations: INodeProperties[] = [
|
2021-06-27 04:07:25 -07:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2021-06-27 04:07:25 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['attendance'],
|
2021-06-27 04:07:25 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Create',
|
|
|
|
value: 'create',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Create an attendance',
|
2021-06-27 04:07:25 -07:00
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'Get',
|
|
|
|
value: 'get',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Get an attendance',
|
2021-06-27 04:07:25 -07:00
|
|
|
},
|
|
|
|
{
|
2022-09-07 07:51:14 -07:00
|
|
|
name: 'Get Many',
|
2021-06-27 04:07:25 -07:00
|
|
|
value: 'getAll',
|
2022-09-08 08:10:13 -07:00
|
|
|
action: 'Get many attendances',
|
2021-06-27 04:07:25 -07:00
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'create',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2021-06-27 04:07:25 -07:00
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const attendanceFields: INodeProperties[] = [
|
2021-06-27 04:07:25 -07:00
|
|
|
// ----------------------------------------
|
|
|
|
// attendance: create
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Person ID',
|
|
|
|
name: 'personId',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the person to create an attendance for',
|
2021-06-27 04:07:25 -07:00
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['attendance'],
|
|
|
|
operation: ['create'],
|
2021-06-27 04:07:25 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Event ID',
|
|
|
|
name: 'eventId',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the event to create an attendance for',
|
2021-06-27 04:07:25 -07:00
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['attendance'],
|
|
|
|
operation: ['create'],
|
2021-06-27 04:07:25 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
makeSimpleField('attendance', 'create'),
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// attendance: get
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Event ID',
|
|
|
|
name: 'eventId',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the event whose attendance to retrieve',
|
2021-06-27 04:07:25 -07:00
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['attendance'],
|
|
|
|
operation: ['get'],
|
2021-06-27 04:07:25 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Attendance ID',
|
|
|
|
name: 'attendanceId',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the attendance to retrieve',
|
2021-06-27 04:07:25 -07:00
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['attendance'],
|
|
|
|
operation: ['get'],
|
2021-06-27 04:07:25 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
makeSimpleField('attendance', 'get'),
|
|
|
|
|
|
|
|
// ----------------------------------------
|
|
|
|
// attendance: getAll
|
|
|
|
// ----------------------------------------
|
|
|
|
{
|
|
|
|
displayName: 'Event ID',
|
|
|
|
name: 'eventId',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'ID of the event to create an attendance for',
|
2021-06-27 04:07:25 -07:00
|
|
|
type: 'string',
|
|
|
|
default: '',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['attendance'],
|
|
|
|
operation: ['getAll'],
|
2021-06-27 04:07:25 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Return All',
|
|
|
|
name: 'returnAll',
|
|
|
|
type: 'boolean',
|
|
|
|
default: false,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Whether to return all results or only up to a given limit',
|
2021-06-27 04:07:25 -07:00
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['attendance'],
|
|
|
|
operation: ['getAll'],
|
2021-06-27 04:07:25 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Limit',
|
|
|
|
name: 'limit',
|
|
|
|
type: 'number',
|
|
|
|
default: 50,
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Max number of results to return',
|
2021-06-27 04:07:25 -07:00
|
|
|
typeOptions: {
|
|
|
|
minValue: 1,
|
|
|
|
},
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['attendance'],
|
|
|
|
operation: ['getAll'],
|
|
|
|
returnAll: [false],
|
2021-06-27 04:07:25 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
makeSimpleField('attendance', 'getAll'),
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|