mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
42 lines
922 B
TypeScript
42 lines
922 B
TypeScript
|
import type { INodeProperties } from 'n8n-workflow';
|
||
|
import { updateDisplayOptions } from '../../../utils/utilities';
|
||
|
import { searchProperties } from './common.descriptions';
|
||
|
|
||
|
const searchDisplayOptions = {
|
||
|
show: {
|
||
|
resource: ['object'],
|
||
|
operation: ['search'],
|
||
|
},
|
||
|
};
|
||
|
|
||
|
const searchDescription = updateDisplayOptions(searchDisplayOptions, searchProperties);
|
||
|
|
||
|
export const objectOperations: INodeProperties[] = [
|
||
|
{
|
||
|
displayName: 'Operation',
|
||
|
name: 'operation',
|
||
|
type: 'options',
|
||
|
displayOptions: {
|
||
|
show: {
|
||
|
resource: ['object'],
|
||
|
},
|
||
|
},
|
||
|
noDataExpression: true,
|
||
|
options: [
|
||
|
{
|
||
|
name: 'Search',
|
||
|
value: 'search',
|
||
|
action: 'Get a filtered list of objects',
|
||
|
},
|
||
|
],
|
||
|
default: 'search',
|
||
|
},
|
||
|
];
|
||
|
|
||
|
export const objectFields: INodeProperties[] = [
|
||
|
// ----------------------------------------
|
||
|
// event: search
|
||
|
// ----------------------------------------
|
||
|
...searchDescription,
|
||
|
];
|