refactor: Add action to all operations on all nodes (#3655)

* 👕 Add `action` to `INodePropertyOptions`

* 👕 Apply `node-param-operation-option-without-action`

* ✏️ Fix add/remove phrasing

* ✏️ Fix email template phrasing

* ✏️ Fix add/remove phrasing

* ✏️ Fix custom fields phrasing

* ✏️ Fix job report phrasing

* ✏️ Fix query phrasing

* ✏️ Various phrasing fixes

* ✏️ Fix final phrasings

* ✏️ Remove `conversation`

* ✏️ Fix plural
This commit is contained in:
Iván Ovejero
2022-07-10 22:50:51 +02:00
committed by GitHub
parent d5d4dd3845
commit 6f95121fac
648 changed files with 2651 additions and 3 deletions

View File

@@ -17,22 +17,27 @@ export const billOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
action: 'Create a bill',
},
{
name: 'Delete',
value: 'delete',
action: 'Delete a bill',
},
{
name: 'Get',
value: 'get',
action: 'Get a bill',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all bills',
},
{
name: 'Update',
value: 'update',
action: 'Update a bill',
},
],
displayOptions: {

View File

@@ -17,18 +17,22 @@ export const customerOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
action: 'Create a customer',
},
{
name: 'Get',
value: 'get',
action: 'Get a customer',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all customers',
},
{
name: 'Update',
value: 'update',
action: 'Update a customer',
},
],
displayOptions: {

View File

@@ -17,18 +17,22 @@ export const employeeOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
action: 'Create an employee',
},
{
name: 'Get',
value: 'get',
action: 'Get an employee',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all employees',
},
{
name: 'Update',
value: 'update',
action: 'Update an employee',
},
],
displayOptions: {

View File

@@ -17,26 +17,32 @@ export const estimateOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
action: 'Create an estimate',
},
{
name: 'Delete',
value: 'delete',
action: 'Delete an estimate',
},
{
name: 'Get',
value: 'get',
action: 'Get an estimate',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all estimates',
},
{
name: 'Send',
value: 'send',
action: 'Send an estimate',
},
{
name: 'Update',
value: 'update',
action: 'Update an estimate',
},
],
displayOptions: {

View File

@@ -17,30 +17,37 @@ export const invoiceOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
action: 'Create an invoice',
},
{
name: 'Delete',
value: 'delete',
action: 'Delete an invoice',
},
{
name: 'Get',
value: 'get',
action: 'Get an invoice',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all invoices',
},
{
name: 'Send',
value: 'send',
action: 'Send an invoice',
},
{
name: 'Update',
value: 'update',
action: 'Update an invoice',
},
{
name: 'Void',
value: 'void',
action: 'Void an invoice',
},
],
displayOptions: {

View File

@@ -13,10 +13,12 @@ export const itemOperations: INodeProperties[] = [
{
name: 'Get',
value: 'get',
action: 'Get an item',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all items',
},
],
displayOptions: {

View File

@@ -17,30 +17,37 @@ export const paymentOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
action: 'Create a payment',
},
{
name: 'Delete',
value: 'delete',
action: 'Delete a payment',
},
{
name: 'Get',
value: 'get',
action: 'Get a payment',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all payments',
},
{
name: 'Send',
value: 'send',
action: 'Send a payment',
},
{
name: 'Update',
value: 'update',
action: 'Update a payment',
},
{
name: 'Void',
value: 'void',
action: 'Void a payment',
},
],
displayOptions: {

View File

@@ -13,10 +13,12 @@ export const purchaseOperations: INodeProperties[] = [
{
name: 'Get',
value: 'get',
action: 'Get a purchase',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all purchases',
},
],
displayOptions: {

View File

@@ -27,6 +27,7 @@ export const transactionOperations: INodeProperties[] = [
{
name: 'Get Report',
value: 'getReport',
action: 'Get a report',
},
],
displayOptions: {

View File

@@ -17,18 +17,22 @@ export const vendorOperations: INodeProperties[] = [
{
name: 'Create',
value: 'create',
action: 'Create a vendor',
},
{
name: 'Get',
value: 'get',
action: 'Get a vendor',
},
{
name: 'Get All',
value: 'getAll',
action: 'Get all vendors',
},
{
name: 'Update',
value: 'update',
action: 'Update a vendor',
},
],
displayOptions: {