2022-08-17 08:50:24 -07:00
import { INodeProperties } from 'n8n-workflow' ;
2021-02-21 23:49:00 -08:00
2021-12-03 00:44:16 -08:00
export const panelistOperations : 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' ,
2022-07-10 13:50:51 -07:00
action : 'Create a panelist' ,
2021-02-21 23:49:00 -08:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
2022-07-10 13:50:51 -07:00
action : 'Delete a panelist' ,
2021-02-21 23:49:00 -08:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
2022-07-10 13:50:51 -07:00
action : 'Get all panelists' ,
2021-02-21 23:49:00 -08:00
} ,
{
name : 'Reinvite' ,
value : 'reinvite' ,
2022-07-10 13:50:51 -07:00
action : 'Reinvite a panelist' ,
2021-02-21 23:49:00 -08:00
} ,
] ,
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'panelist' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
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 panelistFields : INodeProperties [ ] = [
2021-02-21 23:49:00 -08:00
// ----------------------------------
// panelist: create
// ----------------------------------
{
displayName : 'Name' ,
name : 'name' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Name of the panelist to create' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'panelist' ] ,
operation : [ 'create' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
displayName : 'Email' ,
name : 'email' ,
type : 'string' ,
2022-06-20 07:54:01 -07:00
placeholder : 'name@email.com' ,
2021-02-21 23:49:00 -08:00
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Email address of the panelist to create' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'panelist' ] ,
operation : [ 'create' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
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-08-17 08:50:24 -07:00
description :
'Key of the webinar that the panelist will present at. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'panelist' ] ,
operation : [ 'create' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
// ----------------------------------
// panelist: 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-08-17 08:50:24 -07:00
description :
'Key of the webinar to retrieve all panelists from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'panelist' ] ,
operation : [ 'getAll' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'panelist' ] ,
operation : [ 'getAll' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
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 : {
2022-08-17 08:50:24 -07:00
resource : [ 'panelist' ] ,
operation : [ 'getAll' ] ,
returnAll : [ false ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
// ----------------------------------
// panelist: 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-08-17 08:50:24 -07:00
description :
'Key of the webinar to delete the panelist from. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'panelist' ] ,
operation : [ 'delete' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
displayName : 'Panelist Key' ,
name : 'panelistKey' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Key of the panelist to delete' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'panelist' ] ,
operation : [ 'delete' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
// ----------------------------------
// panelist: reinvite
// ----------------------------------
{
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-08-17 08:50:24 -07:00
description :
'Key of the webinar to reinvite the panelist to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>.' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'panelist' ] ,
operation : [ 'reinvite' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
{
displayName : 'Panelist Key' ,
name : 'panelistKey' ,
type : 'string' ,
required : true ,
default : '' ,
2022-05-06 14:01:25 -07:00
description : 'Key of the panelist to reinvite' ,
2021-02-21 23:49:00 -08:00
displayOptions : {
show : {
2022-08-17 08:50:24 -07:00
resource : [ 'panelist' ] ,
operation : [ 'reinvite' ] ,
2021-02-21 23:49:00 -08:00
} ,
} ,
} ,
2021-12-03 00:44:16 -08:00
] ;