2020-10-23 00:15:11 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const groupOperations : INodeProperties [ ] = [
2020-10-23 00:15:11 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
displayOptions : {
show : {
resource : [
'group' ,
] ,
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a group' ,
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a group' ,
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Get a group' ,
} ,
{
name : 'Get All' ,
value : 'getAll' ,
description : 'Get all groups' ,
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a group' ,
} ,
] ,
default : 'create' ,
2020-10-23 00:19:45 -07:00
description : 'The operation to perform.' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2020-10-23 00:15:11 -07:00
2021-12-03 00:44:16 -08:00
export const groupFields : INodeProperties [ ] = [
2020-10-23 00:15:11 -07:00
/* -------------------------------------------------------------------------- */
/* group:create */
/* -------------------------------------------------------------------------- */
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'group' ,
] ,
} ,
} ,
default : '' ,
description : ` The group's email address. If your account has multiple domains, select the appropriate domain for the email address. The email must be unique ` ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
operation : [
'create' ,
] ,
resource : [
'group' ,
] ,
} ,
} ,
options : [
{
displayName : 'Description' ,
name : 'description' ,
type : 'string' ,
default : '' ,
2022-04-22 09:29:51 -07:00
description : 'An extended description to help users determine the purpose of a group. For example, you can include information about who should join the group, the types of messages to send to the group, links to FAQs about the group, or related groups.' ,
2020-10-23 00:15:11 -07:00
} ,
{
displayName : 'Name' ,
name : 'name' ,
type : 'string' ,
default : '' ,
description : ` The group's display name ` ,
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* group:delete */
/* -------------------------------------------------------------------------- */
{
displayName : 'Group ID' ,
name : 'groupId' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
operation : [
'delete' ,
] ,
resource : [
'group' ,
] ,
} ,
} ,
default : '' ,
2020-10-23 00:19:45 -07:00
description : ` Identifies the group in the API request. The value can be the group's email address, group alias, or the unique group ID. ` ,
2020-10-23 00:15:11 -07:00
} ,
/* -------------------------------------------------------------------------- */
/* group:get */
/* -------------------------------------------------------------------------- */
{
displayName : 'Group ID' ,
name : 'groupId' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
operation : [
'get' ,
] ,
resource : [
'group' ,
] ,
} ,
} ,
default : '' ,
2020-10-23 00:19:45 -07:00
description : ` Identifies the group in the API request. The value can be the group's email address, group alias, or the unique group ID. ` ,
2020-10-23 00:15:11 -07:00
} ,
/* -------------------------------------------------------------------------- */
/* group:getAll */
/* -------------------------------------------------------------------------- */
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'group' ,
] ,
} ,
} ,
default : false ,
description : 'If all results should be returned or only up to a given limit.' ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'group' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
typeOptions : {
minValue : 1 ,
maxValue : 500 ,
} ,
default : 100 ,
description : 'How many results to return.' ,
} ,
{
displayName : 'Options' ,
name : 'options' ,
type : 'collection' ,
placeholder : 'Add Option' ,
default : { } ,
displayOptions : {
show : {
operation : [
'getAll' ,
] ,
resource : [
'group' ,
] ,
} ,
} ,
options : [
{
displayName : 'Customer' ,
name : 'customer' ,
type : 'string' ,
default : '' ,
2022-04-22 09:29:51 -07:00
description : 'The unique ID for the customer\'s G Suite account. In case of a multi-domain account, to fetch all groups for a customer, fill this field instead of domain.' ,
2020-10-23 00:15:11 -07:00
} ,
{
displayName : 'Domain' ,
name : 'domain' ,
type : 'string' ,
default : '' ,
description : 'The domain name. Use this field to get fields from only one domain.' ,
} ,
{
displayName : 'Order By' ,
name : 'orderBy' ,
type : 'options' ,
options : [
{
name : 'Email' ,
value : 'email' ,
} ,
] ,
default : '' ,
description : 'Property to use for sorting results.' ,
} ,
{
displayName : 'Query' ,
name : 'query' ,
type : 'string' ,
default : '' ,
2022-04-22 09:29:51 -07:00
description : 'Query string search. Complete documentation is <a href="https://developers.google.com/admin-sdk/directory/v1/guides/search-groups">at</a>.' ,
2020-10-23 00:15:11 -07:00
} ,
{
displayName : 'Sort Order' ,
name : 'sortOrder' ,
type : 'options' ,
options : [
{
name : 'Ascending' ,
value : 'ASCENDING' ,
} ,
{
name : 'Descending' ,
value : 'DESCENDING' ,
} ,
] ,
default : '' ,
description : 'Whether to return results in ascending or descending order' ,
} ,
{
displayName : 'User ID' ,
name : 'userId' ,
type : 'string' ,
default : '' ,
description : ` Email or immutable ID of the user if only those groups are to be listed, the given user is a member of. If it's an ID, it should match with the ID of the user object. ` ,
} ,
] ,
} ,
/* -------------------------------------------------------------------------- */
/* group:update */
/* -------------------------------------------------------------------------- */
{
displayName : 'Group ID' ,
name : 'groupId' ,
type : 'string' ,
required : true ,
displayOptions : {
show : {
operation : [
'update' ,
] ,
resource : [
'group' ,
] ,
} ,
} ,
default : '' ,
description : ` Identifies the group in the API request. The value can be the group's email address, group alias, or the unique group ID. ` ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
operation : [
'update' ,
] ,
resource : [
'group' ,
] ,
} ,
} ,
options : [
{
displayName : 'Description' ,
name : 'description' ,
type : 'string' ,
default : '' ,
2022-04-22 09:29:51 -07:00
description : 'An extended description to help users determine the purpose of a group. For example, you can include information about who should join the group, the types of messages to send to the group, links to FAQs about the group, or related groups.' ,
2020-10-23 00:15:11 -07:00
} ,
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
default : '' ,
description : ` The group's email address. If your account has multiple domains, select the appropriate domain for the email address. The email must be unique. ` ,
} ,
{
displayName : 'Name' ,
name : 'name' ,
type : 'string' ,
default : '' ,
description : ` The group's display name ` ,
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;