2021-02-21 23:49:00 -08:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
2021-12-03 00:44:16 -08:00
export const registrantOperations : INodeProperties [ ] = [
2021-02-21 23:49:00 -08:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-02-21 23:49:00 -08:00
default : 'get' ,
options : [
{
name : 'Create' ,
value : 'create' ,
} ,
{
name : 'Delete' ,
value : 'delete' ,
} ,
{
name : 'Get' ,
value : 'get' ,
} ,
{
name : 'Get All' ,
value : 'getAll' ,
} ,
] ,
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
} ,
} ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-02-21 23:49:00 -08:00
2021-12-03 00:44:16 -08:00
export const registrantFields : INodeProperties [ ] = [
2021-02-21 23:49:00 -08:00
// ----------------------------------
// registrant: create
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Webinar Key Name or ID' ,
2021-02-21 23:49:00 -08:00
name : 'webinarKey' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getWebinars' ,
} ,
required : true ,
default : [ ] ,
2022-06-03 10:23:49 -07:00
description : 'Key of the webinar of the registrant to create. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'First Name' ,
name : 'firstName' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'First name of the registrant to create' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'Last Name' ,
name : 'lastName' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Last name of the registrant to create' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Email address of the registrant to create' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
default : { } ,
options : [
{
displayName : 'Full Address' ,
name : 'fullAddress' ,
placeholder : 'Add Address Fields' ,
type : 'fixedCollection' ,
2022-05-06 14:01:25 -07:00
description : 'Full address of the registrant to create' ,
2021-02-21 23:49:00 -08:00
default : { } ,
options : [
{
displayName : 'Details' ,
name : 'details' ,
values : [
{
displayName : 'Address' ,
name : 'address' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'City' ,
name : 'city' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'State' ,
name : 'state' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Zip Code' ,
name : 'zipCode' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Country' ,
name : 'country' ,
type : 'string' ,
default : '' ,
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Industry' ,
name : 'industry' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The type of industry the registrant\'s organization belongs to' ,
2021-02-21 23:49:00 -08:00
} ,
{
displayName : 'Job Title' ,
name : 'jobTitle' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'MultiChoice Responses' ,
name : 'multiChoiceResponses' ,
placeholder : 'Add MultiChoice Response' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Set the answers to all questions' ,
2021-02-21 23:49:00 -08:00
default : { } ,
options : [
{
displayName : 'Details' ,
name : 'details' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Question Key Name or ID' ,
2021-02-21 23:49:00 -08:00
name : 'questionKey' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getRegistranMultiChoiceQuestions' ,
loadOptionsDependsOn : [
'webinarKey' ,
] ,
} ,
default : '' ,
} ,
{
displayName : 'Answer Key' ,
name : 'AnswerKey' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Answer ID of the question' ,
2021-02-21 23:49:00 -08:00
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Number of Employees' ,
name : 'numberOfEmployees' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The size in employees of the registrant\'s organization' ,
2021-02-21 23:49:00 -08:00
} ,
{
displayName : 'Organization' ,
name : 'organization' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Telephone' ,
name : 'phone' ,
type : 'string' ,
default : '' ,
} ,
{
displayName : 'Purchasing Role' ,
name : 'purchasingRole' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Registrant\'s role in purchasing the product' ,
2021-02-21 23:49:00 -08:00
} ,
{
displayName : 'Purchasing Time Frame' ,
name : 'purchasingTimeFrame' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Time frame within which the product will be purchased' ,
2021-02-21 23:49:00 -08:00
} ,
{
displayName : 'Questions and Comments' ,
name : 'questionsAndComments' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Questions or comments made by the registrant during registration' ,
2021-02-21 23:49:00 -08:00
} ,
{
displayName : 'Resend Confirmation' ,
name : 'resendConfirmation' ,
type : 'boolean' ,
default : false ,
} ,
{
displayName : 'Simple Responses' ,
name : 'simpleResponses' ,
placeholder : 'Add Simple Response' ,
type : 'fixedCollection' ,
typeOptions : {
multipleValues : true ,
} ,
2022-05-06 14:01:25 -07:00
description : 'Set the answers to all questions' ,
2021-02-21 23:49:00 -08:00
default : { } ,
options : [
{
displayName : 'Details' ,
name : 'details' ,
values : [
{
2022-06-03 10:23:49 -07:00
displayName : 'Question Key Name or ID' ,
2021-02-21 23:49:00 -08:00
name : 'questionKey' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getRegistranSimpleQuestions' ,
loadOptionsDependsOn : [
'webinarKey' ,
] ,
} ,
default : '' ,
} ,
{
displayName : 'Response Text' ,
name : 'responseText' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Text of the response to the question' ,
2021-02-21 23:49:00 -08:00
} ,
] ,
} ,
] ,
} ,
{
displayName : 'Source' ,
name : 'source' ,
type : 'string' ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'The source that led to the registration' ,
2021-02-21 23:49:00 -08:00
} ,
] ,
} ,
// ----------------------------------
// registrant: getAll
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Webinar Key Name or ID' ,
2021-02-21 23:49:00 -08:00
name : 'webinarKey' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getWebinars' ,
} ,
required : true ,
default : [ ] ,
2022-06-03 10:23:49 -07:00
description : 'The key of the webinar to retrieve registrants from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
operation : [
'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-21 23:49:00 -08:00
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
default : 10 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-02-21 23:49:00 -08:00
typeOptions : {
minValue : 1 ,
maxValue : 100 ,
} ,
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
operation : [
'getAll' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
} ,
// ----------------------------------
// registrant: delete
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Webinar Key Name or ID' ,
2021-02-21 23:49:00 -08:00
name : 'webinarKey' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getWebinars' ,
} ,
required : true ,
default : [ ] ,
2022-06-03 10:23:49 -07:00
description : 'Key of the webinar of the registrant to delete. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
operation : [
'delete' ,
] ,
} ,
} ,
} ,
{
displayName : 'Registrant Key' ,
name : 'registrantKey' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Key of the registrant to delete' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
operation : [
'delete' ,
] ,
} ,
} ,
} ,
// ----------------------------------
// registrant: get
// ----------------------------------
{
2022-06-03 10:23:49 -07:00
displayName : 'Webinar Key Name or ID' ,
2021-02-21 23:49:00 -08:00
name : 'webinarKey' ,
type : 'options' ,
typeOptions : {
loadOptionsMethod : 'getWebinars' ,
} ,
required : true ,
default : [ ] ,
2022-06-03 10:23:49 -07:00
description : 'Key of the webinar of the registrant to retrieve. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/nodes/expressions.html#expressions">expression</a>.' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
} ,
{
displayName : 'Registrant Key' ,
name : 'registrantKey' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Key of the registrant to retrieve' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
resource : [
'registrant' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
} ,
2021-12-03 00:44:16 -08:00
] ;