2021-02-20 09:55:57 -08:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const collectionOperations : INodeProperties [ ] = [
2021-02-20 09:55:57 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-02-20 09:55:57 -08:00
default : 'get' ,
options : [
{
name : 'Delete' ,
value : 'delete' ,
} ,
{
name : 'Get' ,
value : 'get' ,
} ,
{
name : 'Get All' ,
value : 'getAll' ,
} ,
{
name : 'Update' ,
value : 'update' ,
} ,
] ,
displayOptions : {
show : {
resource : [
'collection' ,
] ,
} ,
} ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-02-20 09:55:57 -08:00
2021-12-03 00:44:16 -08:00
export const collectionFields : INodeProperties [ ] = [
2021-02-20 09:55:57 -08:00
// ----------------------------------
// collection: shared
// ----------------------------------
{
displayName : 'Collection ID' ,
name : 'collectionId' ,
type : 'string' ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The identifier of the collection' ,
2021-02-20 09:55:57 -08:00
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 ,
2022-05-06 14:01:25 -07:00
description : 'Whether to return all results or only up to a given limit' ,
2021-02-20 09:55:57 -08:00
displayOptions : {
show : {
resource : [
'collection' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
2022-05-20 14:47:24 -07:00
typeOptions : {
minValue : 1 ,
} ,
2021-02-20 09:55:57 -08:00
default : 10 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-02-20 09:55:57 -08:00
displayOptions : {
show : {
resource : [
'collection' ,
] ,
operation : [
'getAll' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
} ,
// ----------------------------------
// collection: update
// ----------------------------------
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
required : true ,
options : [
{
2022-06-20 07:54:01 -07:00
displayName : 'Group Names or IDs' ,
2021-02-20 09:55:57 -08:00
name : 'groups' ,
type : 'multiOptions' ,
2022-06-20 07:54:01 -07:00
description : 'The group to assign this collection to. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2021-02-20 09:55:57 -08:00
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getGroups' ,
} ,
} ,
{
displayName : 'External ID' ,
name : 'externalId' ,
type : 'string' ,
2022-05-06 14:01:25 -07:00
description : 'The external identifier to set to this collection' ,
2021-02-20 09:55:57 -08:00
default : '' ,
} ,
] ,
displayOptions : {
show : {
resource : [
'collection' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-02-20 09:55:57 -08:00
export interface CollectionUpdateFields {
groups : string [ ] ;
externalId : string ;
}