mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
206 lines
3.8 KiB
TypeScript
206 lines
3.8 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const eventOperations = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'event',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Get',
|
|
value: 'get',
|
|
description: 'Get event by ID',
|
|
},
|
|
{
|
|
name: 'Get All',
|
|
value: 'getAll',
|
|
description: 'Get all events',
|
|
},
|
|
],
|
|
default: 'get',
|
|
description: 'The operation to perform',
|
|
},
|
|
] as INodeProperties[];
|
|
|
|
export const eventFields = [
|
|
/* -------------------------------------------------------------------------- */
|
|
/* event:getAll */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Organization Slug',
|
|
name: 'organizationSlug',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getOrganizations',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'event',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'The slug of the organization the events belong to.',
|
|
},
|
|
{
|
|
displayName: 'Project Slug',
|
|
name: 'projectSlug',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getProjects',
|
|
loadOptionsDependsOn: [
|
|
'organizationSlug',
|
|
],
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'event',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'The slug of the project the events belong to.',
|
|
},
|
|
{
|
|
displayName: 'Full',
|
|
name: 'full',
|
|
type: 'boolean',
|
|
default: true,
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'event',
|
|
],
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
},
|
|
},
|
|
description: 'If this is set to true, then the event payload will include the full event body, including the stack trace.',
|
|
},
|
|
{
|
|
displayName: 'Return All',
|
|
name: 'returnAll',
|
|
type: 'boolean',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
resource: [
|
|
'event',
|
|
],
|
|
},
|
|
},
|
|
default: false,
|
|
description: 'If all results should be returned or only up to a given limit.',
|
|
},
|
|
{
|
|
displayName: 'Limit',
|
|
name: 'limit',
|
|
type: 'number',
|
|
displayOptions: {
|
|
show: {
|
|
operation: [
|
|
'getAll',
|
|
],
|
|
resource: [
|
|
'event',
|
|
],
|
|
returnAll: [
|
|
false,
|
|
],
|
|
},
|
|
},
|
|
typeOptions: {
|
|
minValue: 1,
|
|
maxValue: 500,
|
|
},
|
|
default: 100,
|
|
description: 'How many results to return.',
|
|
},
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
/* event:get */
|
|
/* -------------------------------------------------------------------------- */
|
|
{
|
|
displayName: 'Organization Slug',
|
|
name: 'organizationSlug',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getOrganizations',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'event',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'The slug of the organization the events belong to.',
|
|
},
|
|
{
|
|
displayName: 'Project Slug',
|
|
name: 'projectSlug',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getProjects',
|
|
},
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'event',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'The slug of the project the events belong to.',
|
|
},
|
|
{
|
|
displayName: 'Event ID',
|
|
name: 'eventId',
|
|
type: 'string',
|
|
default: '',
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'event',
|
|
],
|
|
operation: [
|
|
'get',
|
|
],
|
|
},
|
|
},
|
|
required: true,
|
|
description: 'The ID of the event to retrieve (either the numeric primary-key or the hexadecimal ID as reported by the raven client).',
|
|
},
|
|
] as INodeProperties[];
|