mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
4dce9e2cd1
* Update package.json * Add first implementation of credentials * Add Bitwarden SVG file * Add first implementation of generic functions * Add scaffolding for resources and operations * Fill in events, groups and members * Fill in organizations and policies * Add collection description * Clean up credentials params * Implement collection:update * Add event description * Add group description * Add member description * Complete all descriptions * Remove OAuth2 from credentials name * Prevent excessive access token retrievals * Complete collection:update * Refactor getAll operations * Add group:getAll * Add group:create * Add group:update * Add group:updateMembers * Add user:create * Add member:updateGroups * Remove organization resource * Remove policy resource * Add member:update * Reposition divider comments * Refactor resource loaders * Document generic functions * Refactor returnAll and limit * Introduce minor improvements * ⚡ Improvements * ⚡ Minor improvements * ⚡ Remove not needed code Co-authored-by: ricardo <ricardoespinoza105@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
120 lines
2.1 KiB
TypeScript
120 lines
2.1 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const eventOperations = [
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
default: 'get',
|
|
description: 'Operation to perform',
|
|
options: [
|
|
{
|
|
name: 'Get All',
|
|
value: 'getAll',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
resource: [
|
|
'event',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
] as INodeProperties[];
|
|
|
|
|
|
export const eventFields = [
|
|
// ----------------------------------
|
|
// 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',
|
|
],
|
|
},
|
|
},
|
|
},
|
|
] as INodeProperties[];
|