2021-02-20 09:55:57 -08:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const groupOperations : 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 : 'Create' ,
value : 'create' ,
2022-07-10 13:50:51 -07:00
action : 'Create a group' ,
2021-02-20 09:55:57 -08:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a group' ,
2021-02-20 09:55:57 -08:00
} ,
{
name : 'Get' ,
value : 'get' ,
2022-07-10 13:50:51 -07:00
action : 'Get a group' ,
2021-02-20 09:55:57 -08:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
2022-07-10 13:50:51 -07:00
action : 'Get all groups' ,
2021-02-20 09:55:57 -08:00
} ,
{
name : 'Get Members' ,
value : 'getMembers' ,
2022-07-10 13:50:51 -07:00
action : 'Get group members' ,
2021-02-20 09:55:57 -08:00
} ,
{
name : 'Update' ,
value : 'update' ,
2022-07-10 13:50:51 -07:00
action : 'Update a group' ,
2021-02-20 09:55:57 -08:00
} ,
{
name : 'Update Members' ,
value : 'updateMembers' ,
2022-07-10 13:50:51 -07:00
action : 'Update group members' ,
2021-02-20 09:55:57 -08:00
} ,
] ,
displayOptions : {
show : {
resource : [
'group' ,
] ,
} ,
} ,
} ,
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 groupFields : INodeProperties [ ] = [
2021-02-20 09:55:57 -08:00
// ----------------------------------
// group: shared
// ----------------------------------
{
displayName : 'Group ID' ,
name : 'groupId' ,
type : 'string' ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The identifier of the group' ,
2021-02-20 09:55:57 -08:00
default : '' ,
placeholder : '5e59c8c7-e05a-4d17-8e85-acc301343926' ,
displayOptions : {
show : {
resource : [
'group' ,
] ,
operation : [
'delete' ,
'get' ,
'getMembers' ,
'update' ,
'updateMembers' ,
] ,
} ,
} ,
} ,
// ----------------------------------
// group: 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 : [
'group' ,
] ,
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 : [
'group' ,
] ,
operation : [
'getAll' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
} ,
// ----------------------------------
// group: create
// ----------------------------------
{
displayName : 'Name' ,
name : 'name' ,
type : 'string' ,
default : '' ,
required : true ,
2022-05-06 14:01:25 -07:00
description : 'The name of the group to create' ,
2021-02-20 09:55:57 -08:00
displayOptions : {
show : {
resource : [
'group' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'Access All' ,
name : 'accessAll' ,
type : 'boolean' ,
default : false ,
2022-06-20 07:54:01 -07:00
description : 'Whether to allow this group to access all collections within the organization, instead of only its associated collections. If set to true, this option overrides any collection assignments.' ,
2021-02-20 09:55:57 -08:00
displayOptions : {
show : {
resource : [
'group' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
options : [
{
2022-06-20 07:54:01 -07:00
displayName : 'Collection Names or IDs' ,
2021-02-20 09:55:57 -08:00
name : 'collections' ,
type : 'multiOptions' ,
2022-07-14 13:05:11 -07:00
description : 'The collections to assign to this group. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-20 09:55:57 -08:00
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getCollections' ,
} ,
} ,
{
displayName : 'External ID' ,
name : 'externalId' ,
type : 'string' ,
2022-05-06 14:01:25 -07:00
description : 'The external identifier to set to this group' ,
2021-02-20 09:55:57 -08:00
default : '' ,
} ,
] ,
displayOptions : {
show : {
resource : [
'group' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
// ----------------------------------
// group: update
// ----------------------------------
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
options : [
{
displayName : 'Access All' ,
name : 'accessAll' ,
type : 'boolean' ,
default : false ,
2022-06-20 07:54:01 -07:00
description : 'Whether to allow this group to access all collections within the organization, instead of only its associated collections. If set to true, this option overrides any collection assignments.' ,
2021-02-20 09:55:57 -08:00
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Collection Names or IDs' ,
2021-02-20 09:55:57 -08:00
name : 'collections' ,
type : 'multiOptions' ,
2022-07-14 13:05:11 -07:00
description : 'The collections to assign to this group. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-20 09:55:57 -08:00
default : [ ] ,
typeOptions : {
loadOptionsMethod : 'getCollections' ,
} ,
} ,
{
displayName : 'External ID' ,
name : 'externalId' ,
type : 'string' ,
2022-05-06 14:01:25 -07:00
description : 'The external identifier to set to this group' ,
2021-02-20 09:55:57 -08:00
default : '' ,
} ,
{
displayName : 'Name' ,
name : 'name' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The name of the group to update' ,
2021-02-20 09:55:57 -08:00
} ,
] ,
displayOptions : {
show : {
resource : [
'group' ,
] ,
operation : [
'update' ,
] ,
} ,
} ,
} ,
// ----------------------------------
// group: updateMembers
// ----------------------------------
{
displayName : 'Member IDs' ,
name : 'memberIds' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Comma-separated list of IDs of members to set in a group' ,
2021-02-20 09:55:57 -08:00
displayOptions : {
show : {
resource : [
'group' ,
] ,
operation : [
'updateMembers' ,
] ,
} ,
} ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-02-20 09:55:57 -08:00
type GroupSchema = {
name : string ;
collections : string [ ] ;
accessAll : boolean ;
externalId : string ;
} ;
export type GroupUpdateFields = GroupSchema ;
export type GroupCreationAdditionalFields = Omit < GroupSchema , ' name ' > ;