Files
Automata/packages/nodes-base/nodes/BambooHr/v1/actions/file/getAll/description.ts
2022-01-22 18:48:58 +01:00

65 lines
987 B
TypeScript

import {
FileProperties,
} from '../../Interfaces';
export const fileGetAllDescription: FileProperties = [
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
description: 'Whether to return all results',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'file',
],
},
},
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
default: 5,
description: 'The number of results to return',
typeOptions: {
minValue: 1,
maxValue: 1000,
},
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'file',
],
returnAll: [
false,
],
},
},
},
{
displayName: 'Simplify Output',
name: 'simplifyOutput',
type: 'boolean',
default: true,
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'file',
],
},
},
description: 'Whether to simplify the output or not',
},
];