n8n/packages/nodes-base/nodes/Bitwarden/descriptions/EventDescription.ts
2021-12-03 09:44:16 +01:00

120 lines
2.1 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const eventOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
default: 'get',
description: 'Operation to perform',
options: [
{
name: 'Get All',
value: 'getAll',
},
],
displayOptions: {
show: {
resource: [
'event',
],
},
},
},
];
export const eventFields: INodeProperties[] = [
// ----------------------------------
// event: getAll
// ----------------------------------
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
description: 'Return all available results for the query.',
displayOptions: {
show: {
resource: [
'event',
],
operation: [
'getAll',
],
},
},
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 10,
description: 'Number of results to return for the query.',
displayOptions: {
show: {
resource: [
'event',
],
operation: [
'getAll',
],
returnAll: [
false,
],
},
},
},
{
displayName: 'Filters',
name: 'filters',
type: 'collection',
placeholder: 'Add Filter',
default: {},
options: [
{
displayName: 'Acting User ID',
name: 'actingUserId',
type: 'string',
default: '',
description: 'The unique identifier of the acting user.',
placeholder: '4a59c8c7-e05a-4d17-8e85-acc301343926',
},
{
displayName: 'End Date',
name: 'end',
type: 'dateTime',
default: '',
description: 'The end date for the search.',
},
{
displayName: 'Item ID',
name: 'itemID',
type: 'string',
default: '',
description: 'The unique identifier of the item that the event describes.',
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
},
{
displayName: 'Start Date',
name: 'start',
type: 'dateTime',
default: '',
description: 'The start date for the search.',
},
],
displayOptions: {
show: {
resource: [
'event',
],
operation: [
'getAll',
],
},
},
},
];