UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

57 lines 1.52 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.reflogFields = void 0; exports.reflogFields = [ { displayName: 'Return All', name: 'returnAll', type: 'boolean', displayOptions: { show: { operation: ['reflog'], }, }, default: false, description: 'Whether to return all results or only up to a given limit', }, { displayName: 'Limit', name: 'limit', type: 'number', displayOptions: { show: { operation: ['reflog'], returnAll: [false], }, }, typeOptions: { minValue: 1, maxValue: 100, }, default: 100, description: 'Max number of results to return', }, { displayName: 'Options', name: 'options', type: 'collection', displayOptions: { show: { operation: ['reflog'], }, }, placeholder: 'Add option', default: {}, options: [ { displayName: 'Reference', name: 'reference', type: 'string', default: '', placeholder: 'HEAD', description: 'The reference to show the reflog for (e.g., HEAD, branch name). Leave empty for HEAD.', }, ], }, ]; //# sourceMappingURL=ReflogDescription.js.map