2021-01-28 10:00:47 -08:00
|
|
|
import {
|
|
|
|
INodeProperties,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
2021-12-03 00:44:16 -08:00
|
|
|
export const searchOperations: INodeProperties[] = [
|
2021-01-28 10:00:47 -08:00
|
|
|
{
|
|
|
|
displayName: 'Operation',
|
|
|
|
name: 'operation',
|
|
|
|
type: 'options',
|
|
|
|
description: 'Choose an operation',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'search',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Query',
|
|
|
|
value: 'query',
|
|
|
|
description: 'Search for something',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
default: 'query',
|
|
|
|
},
|
2021-12-03 00:44:16 -08:00
|
|
|
];
|
2021-01-28 10:00:47 -08:00
|
|
|
|
|
|
|
export const searchFields: INodeProperties[] = [
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
/* search:query */
|
|
|
|
/* -------------------------------------------------------------------------- */
|
|
|
|
{
|
|
|
|
displayName: 'Term',
|
|
|
|
name: 'term',
|
|
|
|
type: 'string',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'search',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'query',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
|
|
|
description: 'Term to search for.',
|
|
|
|
},
|
|
|
|
{
|
2021-07-10 02:38:45 -07:00
|
|
|
displayName: 'Simplify Response',
|
2021-01-28 10:00:47 -08:00
|
|
|
name: 'simple',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
|
|
|
resource: [
|
|
|
|
'search',
|
|
|
|
],
|
|
|
|
operation: [
|
|
|
|
'query',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
default: true,
|
2021-07-10 02:38:45 -07:00
|
|
|
description: 'Return a simplified version of the response instead of the raw data.',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
];
|