Skip to content

Commit

Permalink
fix: rrequired fields in update event zoho calendar node
Browse files Browse the repository at this point in the history
  • Loading branch information
horpeazy committed May 22, 2024
1 parent 4481bb7 commit 37b1543
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export const eventFields: INodeProperties[] = [
displayOptions: {
show: {
resource: ['events'],
operation: ['create', 'update', 'delete', 'get', 'getAll'],
operation: ['create', 'update', 'delete', 'get', 'getAll', 'getByInstance'],
},
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export const getResourceIdNameFields = (resource: ZohoCalendarModule) => {
export const getCrudFields = (resource: ZohoCalendarModule): INodeProperties[] => {
return [
// ----------------------------------------
// delete, get
// delete, get, getByInstance
// ----------------------------------------
{
...getResourceIdNameFields(resource),
Expand All @@ -188,7 +188,7 @@ export const getCrudFields = (resource: ZohoCalendarModule): INodeProperties[] =
displayOptions: {
show: {
resource: [resource],
operation: ['delete', 'get'],
operation: ['delete', 'get', 'getByInstance'],
},
},
},
Expand Down

0 comments on commit 37b1543

Please sign in to comment.