2023-01-27 03:22:44 -08:00
|
|
|
import type { INodeProperties } from 'n8n-workflow';
|
2021-01-28 10:00:47 -08:00
|
|
|
|
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',
|
2022-05-20 14:47:24 -07:00
|
|
|
noDataExpression: true,
|
2021-01-28 10:00:47 -08:00
|
|
|
description: 'Choose an operation',
|
|
|
|
required: true,
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['search'],
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
options: [
|
|
|
|
{
|
|
|
|
name: 'Query',
|
|
|
|
value: 'query',
|
|
|
|
description: 'Search for something',
|
2022-07-10 13:50:51 -07:00
|
|
|
action: 'Perform a query',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
],
|
|
|
|
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: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['search'],
|
|
|
|
operation: ['query'],
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: '',
|
2022-05-06 14:01:25 -07:00
|
|
|
description: 'Term to search for',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
{
|
2022-05-20 14:47:24 -07:00
|
|
|
displayName: 'Simplify',
|
2021-01-28 10:00:47 -08:00
|
|
|
name: 'simple',
|
|
|
|
type: 'boolean',
|
|
|
|
displayOptions: {
|
|
|
|
show: {
|
2022-08-01 13:47:55 -07:00
|
|
|
resource: ['search'],
|
|
|
|
operation: ['query'],
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
default: true,
|
2022-05-20 14:47:24 -07:00
|
|
|
description: 'Whether to return a simplified version of the response instead of the raw data',
|
2021-01-28 10:00:47 -08:00
|
|
|
},
|
|
|
|
];
|