import type { INodeProperties } from 'n8n-workflow'; export const galaxyOperations: INodeProperties[] = [ { displayName: 'Operation', name: 'operation', type: 'options', displayOptions: { show: { resource: ['galaxy'], }, }, noDataExpression: true, options: [ { name: 'Delete', value: 'delete', action: 'Delete a galaxy', }, { name: 'Get', value: 'get', action: 'Get a galaxy', }, { name: 'Get Many', value: 'getAll', action: 'Get many galaxies', }, ], default: 'get', }, ]; export const galaxyFields: INodeProperties[] = [ // ---------------------------------------- // galaxy: delete // ---------------------------------------- { displayName: 'Galaxy ID', name: 'galaxyId', description: 'UUID or numeric ID of the galaxy', type: 'string', required: true, default: '', displayOptions: { show: { resource: ['galaxy'], operation: ['delete'], }, }, }, // ---------------------------------------- // galaxy: get // ---------------------------------------- { displayName: 'Galaxy ID', name: 'galaxyId', description: 'UUID or numeric ID of the galaxy', type: 'string', required: true, default: '', displayOptions: { show: { resource: ['galaxy'], operation: ['get'], }, }, }, // ---------------------------------------- // galaxy: 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: ['galaxy'], operation: ['getAll'], }, }, }, { displayName: 'Limit', name: 'limit', type: 'number', default: 50, description: 'Max number of results to return', typeOptions: { minValue: 1, }, displayOptions: { show: { resource: ['galaxy'], operation: ['getAll'], returnAll: [false], }, }, }, ];