| configurationInterface |
get, getById, create, update, delete, bulkUpdate |
get, getById |
create, update, delete, bulkUpdate |
| configurationStatus |
get, getById, create, update |
get, getById |
create, update |
| configurationType |
get, getById, create, update |
get, getById |
create, update |
| contactType |
get, getById, create, update |
get, getById |
create, update |
| relatedItem |
get, getById, create, update, delete, bulkDestroy |
get, getById |
create, update, delete, bulkDestroy |
| user |
get, getById, create, update, delete |
get, getById |
create, update, delete |
| manufacturer |
get, getById, create, update, delete |
get, getById |
create, update, delete |
| model |
get, getById, create, update, delete |
get, getById |
create, update, delete |
| flexibleAssetType |
get, getById, create, update, delete |
get, getById |
create, update, delete |
| flexibleAssetField |
get, getById, create, update, destroy, bulkUpdate |
get, getById |
create, update, destroy, bulkUpdate |
| organizationStatus |
get, getById, create, update |
get, getById |
create, update |
| organizationType |
get, getById, create, update |
get, getById |
create, update |
| passwordCategory |
get, getById, create, update |
get, getById |
create, update |
Problem
Several resources in this node have action files (create, update, delete, etc.) that exist on disk but are not functional because:
operationparameter - Theindex.tsfiles don't define the Operation dropdown, so n8n shows the resource but no operations to choose fromcreate.ts,update.ts,delete.tsexist, they're not imported/exported fromindex.tsinterfaces.tsdeclares operations that should exist but aren't wired upVisual Example
When selecting "Related Item" resource, no Operation dropdown appears - the user cannot perform any actions.
Affected Resources
What Needs to Be Done
For each affected resource, the
index.tsfile needs to:Add the operation parameter definition - Following the pattern in
configuration/index.ts:Import and export all action files that exist in the directory
Update
interfaces.tsif any declared operations don't actually have implementation filesAdditional Notes
configuration/get/index.ts+description.ts+execute.ts) while others use single files (country/get.ts)