n8n/packages/nodes-base/nodes/Bitwarden/descriptions/CollectionDescription.ts
Michael Kret 0ecbb4a19d
refactor: Format nodes-base package (A-F) (#3800)
* 🔨 prettier formated nodes - A

* 🔨 prettier formated nodes - B

*  prettier formated nodes - C

*  prettier formated nodes - D

*  prettier formated nodes - E-F

* 🎨 Adjust nodes-base formatting command (#3805)

* Format additional files in nodes A-F (#3811)

*  fixes

* 🎨 Add Mindee to ignored dirs

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
2022-08-01 22:47:55 +02:00

137 lines
2.8 KiB
TypeScript

import { INodeProperties } from 'n8n-workflow';
export const collectionOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
default: 'get',
options: [
{
name: 'Delete',
value: 'delete',
action: 'Delete a collection',
},
{
name: 'Get',
value: 'get',
action: 'Get a collection',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all collections',
},
{
name: 'Update',
value: 'update',
action: 'Update a collection',
},
],
displayOptions: {
show: {
resource: ['collection'],
},
},
},
];
export const collectionFields: INodeProperties[] = [
// ----------------------------------
// collection: shared
// ----------------------------------
{
displayName: 'Collection ID',
name: 'collectionId',
type: 'string',
required: true,
description: 'The identifier of the collection',
default: '',
placeholder: '5e59c8c7-e05a-4d17-8e85-acc301343926',
displayOptions: {
show: {
resource: ['collection'],
operation: ['delete', 'get', 'update'],
},
},
},
// ----------------------------------
// collection: getAll
// ----------------------------------
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
description: 'Whether to return all results or only up to a given limit',
displayOptions: {
show: {
resource: ['collection'],
operation: ['getAll'],
},
},
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
typeOptions: {
minValue: 1,
},
default: 10,
description: 'Max number of results to return',
displayOptions: {
show: {
resource: ['collection'],
operation: ['getAll'],
returnAll: [false],
},
},
},
// ----------------------------------
// collection: update
// ----------------------------------
{
displayName: 'Update Fields',
name: 'updateFields',
type: 'collection',
placeholder: 'Add Field',
default: {},
required: true,
options: [
{
displayName: 'Group Names or IDs',
name: 'groups',
type: 'multiOptions',
description:
'The group to assign this collection to. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.',
default: [],
typeOptions: {
loadOptionsMethod: 'getGroups',
},
},
{
displayName: 'External ID',
name: 'externalId',
type: 'string',
description: 'The external identifier to set to this collection',
default: '',
},
],
displayOptions: {
show: {
resource: ['collection'],
operation: ['update'],
},
},
},
];
export interface CollectionUpdateFields {
groups: string[];
externalId: string;
}