@@ -36,10 +36,10 @@ export const description: INodeProperties[] = [
|
||||
action: 'Get a control',
|
||||
},
|
||||
{
|
||||
name: 'Get All',
|
||||
name: 'Get Many',
|
||||
value: 'getAll',
|
||||
description: 'Get all controls',
|
||||
action: 'Get all controls',
|
||||
description: 'Get many controls',
|
||||
action: 'Get many controls',
|
||||
},
|
||||
{
|
||||
name: 'Update',
|
||||
|
||||
@@ -75,7 +75,7 @@ export const description: INodeProperties[] = [
|
||||
value: 'EXCLUDED',
|
||||
},
|
||||
],
|
||||
default: '',
|
||||
default: 'INCLUDED',
|
||||
description: 'The status of the control',
|
||||
},
|
||||
{
|
||||
@@ -121,7 +121,7 @@ export async function execute(
|
||||
}
|
||||
`;
|
||||
|
||||
const input: Record<string, any> = { id };
|
||||
const input: Record<string, string> = { id };
|
||||
if (sectionTitle) input.sectionTitle = sectionTitle;
|
||||
if (name) input.name = name;
|
||||
if (description) input.description = description;
|
||||
|
||||
Reference in New Issue
Block a user