🐛 Fix default parameters on Automizy-Node

This commit is contained in:
Jan Oberhauser 2020-10-15 12:07:06 +02:00
parent e5eda99d6d
commit 8f84cbcbce
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@ export class Automizy implements INodeType {
value: 'list',
},
],
default: 'contactList',
default: 'contact',
description: 'The resource to operate on.'
},

View file

@ -41,7 +41,7 @@ export const contactOperations = [
description: 'Update a contact',
},
],
default: 'get',
default: 'create',
description: 'The operation to perform.',
},
] as INodeProperties[];