mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 10:31:15 +00:00
Fix operation name for update
This commit is contained in:
@@ -338,6 +338,22 @@ export const invoiceFields = [
|
|||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* invoice:update */
|
/* invoice:update */
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
{
|
||||||
|
displayName: 'Invoice Id',
|
||||||
|
name: 'id',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
required: true,
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'update',
|
||||||
|
],
|
||||||
|
resource,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
description: 'The ID of the invoice want to update.',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
name: 'updateFields',
|
name: 'updateFields',
|
||||||
@@ -346,7 +362,7 @@ export const invoiceFields = [
|
|||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
operation: [
|
operation: [
|
||||||
'create',
|
'update',
|
||||||
],
|
],
|
||||||
resource,
|
resource,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -381,7 +381,22 @@ export const projectFields = [
|
|||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
/* project:update */
|
/* project:update */
|
||||||
/* -------------------------------------------------------------------------- */
|
/* -------------------------------------------------------------------------- */
|
||||||
|
{
|
||||||
|
displayName: 'Project Id',
|
||||||
|
name: 'id',
|
||||||
|
type: 'string',
|
||||||
|
default: '',
|
||||||
|
required: true,
|
||||||
|
displayOptions: {
|
||||||
|
show: {
|
||||||
|
operation: [
|
||||||
|
'update',
|
||||||
|
],
|
||||||
|
resource,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
description: 'The ID of the project want to update.',
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'Update Fields',
|
displayName: 'Update Fields',
|
||||||
name: 'updateFields',
|
name: 'updateFields',
|
||||||
@@ -390,7 +405,7 @@ export const projectFields = [
|
|||||||
displayOptions: {
|
displayOptions: {
|
||||||
show: {
|
show: {
|
||||||
operation: [
|
operation: [
|
||||||
'create',
|
'update',
|
||||||
],
|
],
|
||||||
resource,
|
resource,
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user