import type { ContactProperties } from '../../Interfaces'; export const contactGetAllDescription: ContactProperties = [ { 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, }, ];