mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
125 lines
2.1 KiB
TypeScript
125 lines
2.1 KiB
TypeScript
|
import { INodeProperties } from 'n8n-workflow';
|
||
|
|
||
|
export const reportOperations = [
|
||
|
{
|
||
|
displayName: 'Operation',
|
||
|
name: 'operation',
|
||
|
type: 'options',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'report',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Get',
|
||
|
value: 'get',
|
||
|
description: 'Get an event report',
|
||
|
},
|
||
|
],
|
||
|
default: 'get',
|
||
|
description: 'The operation to perform.',
|
||
|
},
|
||
|
] as INodeProperties[];
|
||
|
|
||
|
export const reportFields = [
|
||
|
|
||
|
/* -------------------------------------------------------------------------- */
|
||
|
/* report:get */
|
||
|
/* -------------------------------------------------------------------------- */
|
||
|
{
|
||
|
displayName: 'Event ID',
|
||
|
name: 'eventId',
|
||
|
type: 'options',
|
||
|
typeOptions: {
|
||
|
loadOptionsMethod: 'getEvents',
|
||
|
},
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'report',
|
||
|
],
|
||
|
operation: [
|
||
|
'get',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
default: '',
|
||
|
description: 'Event ID',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Session ID',
|
||
|
name: 'dateId',
|
||
|
type: 'options',
|
||
|
typeOptions: {
|
||
|
loadOptionsMethod: 'getEventSessions',
|
||
|
loadOptionsDependsOn: [
|
||
|
'eventId',
|
||
|
],
|
||
|
},
|
||
|
default: '',
|
||
|
required: true,
|
||
|
description: 'ID of the session',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'report',
|
||
|
],
|
||
|
operation: [
|
||
|
'get',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Filters',
|
||
|
name: 'filters',
|
||
|
type: 'collection',
|
||
|
placeholder: 'Add Field',
|
||
|
default: {},
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: [
|
||
|
'report',
|
||
|
],
|
||
|
operation: [
|
||
|
'get',
|
||
|
],
|
||
|
},
|
||
|
},
|
||
|
options: [
|
||
|
{
|
||
|
displayName: 'Status',
|
||
|
name: 'status',
|
||
|
type: 'options',
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Attended',
|
||
|
value: 'attended',
|
||
|
},
|
||
|
{
|
||
|
name: 'Banned',
|
||
|
value: 'banned',
|
||
|
},
|
||
|
{
|
||
|
name: 'Completed',
|
||
|
value: 'completed',
|
||
|
},
|
||
|
{
|
||
|
name: 'Did Not Attend',
|
||
|
value: 'did-not-attend',
|
||
|
},
|
||
|
{
|
||
|
name: 'Left Early',
|
||
|
value: 'left-early',
|
||
|
},
|
||
|
],
|
||
|
default: '',
|
||
|
description: 'Filter results by participation status',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
] as INodeProperties[];
|