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

82 lines
1.3 KiB
TypeScript

import {
EmployeeDocumentProperties,
} from '../../Interfaces';
export const employeeDocumentGetAllDescription: EmployeeDocumentProperties = [
{
displayName: 'Employee ID',
name: 'employeeId',
type: 'string',
required: true,
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'employeeDocument',
],
},
},
default: '',
},
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
default: false,
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'employeeDocument',
],
},
},
description: 'Whether to return all results',
},
{
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: [
'employeeDocument',
],
returnAll: [
false,
],
},
},
},
{
displayName: 'Simplify Output',
name: 'simplifyOutput',
type: 'boolean',
default: true,
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'employeeDocument',
],
},
},
description: 'Whether to simplify the output or not',
},
];