2022-08-01 13:47:55 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2021-09-05 10:24:56 -07:00
import { LANGUAGES } from '../constants' ;
2021-12-03 00:44:16 -08:00
export const requesterOperations : INodeProperties [ ] = [
2021-09-05 10:24:56 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-09-05 10:24:56 -07:00
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'requester' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
description : 'Create a requester' ,
2022-07-10 13:50:51 -07:00
action : 'Create a requester' ,
2021-09-05 10:24:56 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
description : 'Delete a requester' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a requester' ,
2021-09-05 10:24:56 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
description : 'Retrieve a requester' ,
2022-07-10 13:50:51 -07:00
action : 'Get a requester' ,
2021-09-05 10:24:56 -07:00
} ,
{
2022-09-07 07:51:14 -07:00
name : 'Get Many' ,
2021-09-05 10:24:56 -07:00
value : 'getAll' ,
description : 'Retrieve all requesters' ,
2022-07-10 13:50:51 -07:00
action : 'Get all requesters' ,
2021-09-05 10:24:56 -07:00
} ,
{
name : 'Update' ,
value : 'update' ,
description : 'Update a requester' ,
2022-07-10 13:50:51 -07:00
action : 'Update a requester' ,
2021-09-05 10:24:56 -07:00
} ,
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-09-05 10:24:56 -07:00
2021-12-03 00:44:16 -08:00
export const requesterFields : INodeProperties [ ] = [
2021-09-05 10:24:56 -07:00
// ----------------------------------------
// requester: create
// ----------------------------------------
{
displayName : 'First Name' ,
name : 'firstName' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'requester' ] ,
operation : [ 'create' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
{
displayName : 'Primary Email' ,
name : 'primaryEmail' ,
type : 'string' ,
default : '' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'requester' ] ,
operation : [ 'create' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'requester' ] ,
operation : [ 'create' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
options : [
{
displayName : 'Address' ,
name : 'address' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Background Information' ,
name : 'background_information' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Department Names or IDs' ,
2021-09-05 10:24:56 -07:00
name : 'department_ids' ,
type : 'multiOptions' ,
default : [ ] ,
2022-08-01 13:47:55 -07:00
description :
'Comma-separated IDs of the departments associated with the requester. Choose from the list or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-09-05 10:24:56 -07:00
typeOptions : {
2021-12-03 00:44:16 -08:00
loadOptionsMethod : 'getDepartments' ,
2021-09-05 10:24:56 -07:00
} ,
} ,
{
displayName : 'Job Title' ,
name : 'job_title' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Language' ,
name : 'language' ,
type : 'options' ,
default : '' ,
options : LANGUAGES ,
} ,
{
displayName : 'Last Name' ,
name : 'last_name' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Location Name or ID' ,
2021-09-05 10:24:56 -07:00
name : 'location_id' ,
2022-08-01 13:47:55 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-09-05 10:24:56 -07:00
type : 'options' ,
default : '' ,
typeOptions : {
2021-12-03 00:44:16 -08:00
loadOptionsMethod : 'getLocations' ,
2021-09-05 10:24:56 -07:00
} ,
} ,
{
displayName : 'Mobile Phone' ,
name : 'mobile_phone_number' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Secondary Emails' ,
name : 'secondary_emails' ,
type : 'string' ,
default : '' ,
description : 'Comma-separated secondary emails associated with the requester' ,
} ,
{
displayName : 'Time Format' ,
name : 'time_format' ,
type : 'options' ,
default : '12h' ,
options : [
{
name : '12-Hour Format' ,
value : '12h' ,
} ,
{
name : '24-Hour Format' ,
value : '24h' ,
} ,
] ,
} ,
{
displayName : 'Work Phone' ,
name : 'work_phone_number' ,
type : 'string' ,
default : '' ,
} ,
] ,
} ,
// ----------------------------------------
// requester: delete
// ----------------------------------------
{
displayName : 'Requester ID' ,
name : 'requesterId' ,
description : 'ID of the requester to delete' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'requester' ] ,
operation : [ 'delete' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
// ----------------------------------------
// requester: get
// ----------------------------------------
{
displayName : 'Requester ID' ,
name : 'requesterId' ,
description : 'ID of the requester to retrieve' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'requester' ] ,
operation : [ 'get' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
// ----------------------------------------
// requester: 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 : {
2022-08-01 13:47:55 -07:00
resource : [ 'requester' ] ,
operation : [ 'getAll' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-09-05 10:24:56 -07:00
typeOptions : {
minValue : 1 ,
} ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'requester' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
{
displayName : 'Filters' ,
name : 'filters' ,
type : 'collection' ,
placeholder : 'Add Filter' ,
default : { } ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'requester' ] ,
operation : [ 'getAll' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
options : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Department Name or ID' ,
2021-09-05 10:24:56 -07:00
name : 'department_id' ,
2022-08-01 13:47:55 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-09-05 10:24:56 -07:00
type : 'options' ,
default : '' ,
typeOptions : {
2021-12-03 00:44:16 -08:00
loadOptionsMethod : 'getDepartments' ,
2021-09-05 10:24:56 -07:00
} ,
} ,
{
displayName : 'First Name' ,
name : 'first_name' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Job Title' ,
name : 'job_title' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Language' ,
name : 'language' ,
type : 'options' ,
default : '' ,
options : LANGUAGES ,
} ,
{
displayName : 'Last Name' ,
name : 'last_name' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Location Name or ID' ,
2021-09-05 10:24:56 -07:00
name : 'location_id' ,
type : 'options' ,
2022-08-01 13:47:55 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-09-05 10:24:56 -07:00
default : '' ,
typeOptions : {
2021-12-03 00:44:16 -08:00
loadOptionsMethod : 'getLocations' ,
2021-09-05 10:24:56 -07:00
} ,
} ,
{
displayName : 'Mobile Phone Number' ,
name : 'mobile_phone_number' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Primary Email' ,
name : 'primary_email' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Work Phone Number' ,
name : 'work_phone_number' ,
type : 'string' ,
default : '' ,
} ,
] ,
} ,
// ----------------------------------------
// requester: update
// ----------------------------------------
{
displayName : 'Requester ID' ,
name : 'requesterId' ,
description : 'ID of the requester to update' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'requester' ] ,
operation : [ 'update' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
} ,
{
displayName : 'Update Fields' ,
name : 'updateFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
2022-08-01 13:47:55 -07:00
resource : [ 'requester' ] ,
operation : [ 'update' ] ,
2021-09-05 10:24:56 -07:00
} ,
} ,
options : [
{
displayName : 'Address' ,
name : 'address' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Background Information' ,
name : 'background_information' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-20 07:54:01 -07:00
displayName : 'Department Names or IDs' ,
2021-09-05 10:24:56 -07:00
name : 'department_ids' ,
type : 'multiOptions' ,
default : [ ] ,
2022-08-01 13:47:55 -07:00
description :
'Comma-separated IDs of the departments associated with the requester. Choose from the list or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-09-05 10:24:56 -07:00
typeOptions : {
2021-12-03 00:44:16 -08:00
loadOptionsMethod : 'getDepartments' ,
2021-09-05 10:24:56 -07:00
} ,
} ,
{
displayName : 'First Name' ,
name : 'first_name' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Job Title' ,
name : 'job_title' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Language' ,
name : 'language' ,
type : 'options' ,
default : '' ,
options : LANGUAGES ,
} ,
{
displayName : 'Last Name' ,
name : 'last_name' ,
type : 'string' ,
default : '' ,
} ,
{
2022-06-03 10:23:49 -07:00
displayName : 'Location Name or ID' ,
2021-09-05 10:24:56 -07:00
name : 'location_id' ,
type : 'options' ,
default : '' ,
2022-08-01 13:47:55 -07:00
description :
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>' ,
2021-09-05 10:24:56 -07:00
typeOptions : {
2021-12-03 00:44:16 -08:00
loadOptionsMethod : 'getLocations' ,
2021-09-05 10:24:56 -07:00
} ,
} ,
{
displayName : 'Mobile Phone' ,
name : 'mobile_phone_number' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Primary Email' ,
name : 'primary_email' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Secondary Emails' ,
name : 'secondary_emails' ,
type : 'string' ,
default : '' ,
description : 'Comma-separated secondary emails associated with the requester' ,
} ,
{
displayName : 'Time Format' ,
name : 'time_format' ,
type : 'options' ,
default : '12h' ,
options : [
{
name : '12-Hour Format' ,
value : '12h' ,
} ,
{
name : '24-Hour Format' ,
value : '24h' ,
} ,
] ,
} ,
{
displayName : 'Work Phone' ,
name : 'work_phone_number' ,
type : 'string' ,
default : '' ,
} ,
] ,
} ,
2021-12-03 00:44:16 -08:00
] ;