UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

37 lines 999 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.contactGetAllDescription = void 0; exports.contactGetAllDescription = [ { displayName: 'Return All', name: 'returnAll', type: 'boolean', displayOptions: { show: { resource: ['contact'], operation: ['getAll'], }, }, noDataExpression: true, default: false, description: 'Whether to return all results or only up to a given limit', }, { displayName: 'Limit', name: 'limit', type: 'number', typeOptions: { minValue: 1, }, description: 'Max number of results to return', displayOptions: { show: { resource: ['contact'], operation: ['getAll'], returnAll: [false], }, }, default: 25, }, ]; //# sourceMappingURL=description.js.map