n8n/packages/nodes-base/nodes/Salesforce/FlowDescription.ts
Ricardo Espinoza 63a459ac92
Add filters to all getAll operations to Salesforce Node (#1292)
*  Add filters to all get:All operations

*  Small fix

* Add description to condition fields

*  Minor improvements to Salesforce-Node

Co-authored-by: Harshil <ghagrawal17@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2021-01-13 10:45:41 +01:00

186 lines
3.3 KiB
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const flowOperations = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'flow',
],
},
},
options: [
{
name: 'Get All',
value: 'getAll',
description: 'Get all flows',
},
{
name: 'Invoke',
value: 'invoke',
description: 'Invoke a flow',
},
],
default: 'invoke',
description: 'The operation to perform.',
},
] as INodeProperties[];
export const flowFields = [
/* -------------------------------------------------------------------------- */
/* flow:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'flow',
],
},
},
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: [
'flow',
],
returnAll: [
false,
],
},
},
typeOptions: {
minValue: 1,
maxValue: 500,
},
default: 100,
description: 'How many results to return.',
},
/* -------------------------------------------------------------------------- */
/* flow:invoke */
/* -------------------------------------------------------------------------- */
{
displayName: 'API Name',
name: 'apiName',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: [
'flow',
],
operation: [
'invoke',
],
},
},
description: 'Required. API name of the flow.',
},
{
displayName: 'JSON Parameters',
name: 'jsonParameters',
type: 'boolean',
default: false,
displayOptions: {
show: {
resource: [
'flow',
],
operation: [
'invoke',
],
},
},
description: 'If the input variables should be set via the value-key pair UI or JSON/RAW.',
},
{
displayName: 'Variables',
name: 'variablesJson',
type: 'json',
displayOptions: {
show: {
resource: [
'flow',
],
operation: [
'invoke',
],
jsonParameters: [
true,
],
},
},
default: '',
description: 'Input variables as JSON object.',
},
{
displayName: 'Variables',
name: 'variablesUi',
placeholder: 'Add Variable',
type: 'fixedCollection',
typeOptions: {
multipleValues: true,
},
displayOptions: {
show: {
resource: [
'flow',
],
operation: [
'invoke',
],
jsonParameters: [
false,
],
},
},
description: 'The input variable to send.',
default: {},
options: [
{
displayName: 'Variable',
name: 'variablesValues',
values: [
{
displayName: 'Name',
name: 'name',
type: 'string',
default: '',
description: 'Name of the input variable.',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
description: 'Value of the input variable.',
},
],
},
],
},
] as INodeProperties[];