n8n/packages/nodes-base/nodes/Netlify/SiteDescription.ts
Ricardo Espinoza 469ac1d912
Add Netlify regular and trigger node (#2177)
*  Add Netlify node

*  Add Sites resource

*  Add regular Netlify node

*  Add Netlify Trigger node

* 🔨 Fix issue with body parameter

*  Improvements

*  Improvements

Co-authored-by: Harshil <ghagrawal17@gmail.com>
2021-09-18 22:12:20 +02:00

99 lines
1.5 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const siteOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'site',
],
},
},
options: [
{
name: 'Delete',
value: 'delete',
description: 'Delete a site',
},
{
name: 'Get',
value: 'get',
description: 'Get a site',
},
{
name: 'Get All',
value: 'getAll',
description: 'Returns all sites',
},
],
default: 'delete',
description: 'The operation to perform.',
},
] as INodeProperties[];
export const siteFields = [
{
displayName: 'Site ID',
name: 'siteId',
required: true,
type: 'string',
displayOptions: {
show: {
resource: [
'site',
],
operation: [
'get',
'delete',
],
},
},
},
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'site',
],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'site',
],
returnAll: [
false,
],
},
},
typeOptions: {
minValue: 1,
maxValue: 200,
},
default: 50,
description: 'How many results to return',
},
] as INodeProperties[];