mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(Data Table Node): Adjust metadata (no-changelog) (#18954)
This commit is contained in:
@@ -3,7 +3,7 @@
|
||||
"nodeVersion": "1.0",
|
||||
"codexVersion": "1.0",
|
||||
"details": "Data Table",
|
||||
"categories": ["Core Nodes"],
|
||||
"categories": ["Core Nodes", "Development"],
|
||||
"resources": {
|
||||
"primaryDocumentation": [
|
||||
{
|
||||
@@ -11,8 +11,8 @@
|
||||
}
|
||||
]
|
||||
},
|
||||
"alias": ["data", "table", "knowledge"],
|
||||
"alias": ["data", "table", "knowledge", "data store", "store", "sheet"],
|
||||
"subcategories": {
|
||||
"Core Nodes": ["Data Transformation"]
|
||||
"Core Nodes": ["Helpers"]
|
||||
}
|
||||
}
|
||||
|
||||
@@ -16,16 +16,16 @@ export class DataTable implements INodeType {
|
||||
name: 'dataTable',
|
||||
icon: 'fa:table',
|
||||
iconColor: 'orange',
|
||||
group: ['transform'],
|
||||
group: ['input', 'transform'],
|
||||
version: 1,
|
||||
subtitle: '={{$parameter["action"]}}',
|
||||
description: 'Save data across workflow executions in a table',
|
||||
description: 'Permanently save data across workflow executions in a table',
|
||||
defaults: {
|
||||
name: 'Data Table',
|
||||
},
|
||||
usableAsTool: true,
|
||||
// We have custom logic in the frontend to ignore `hidden` for this
|
||||
// particular node type if the data table module is enabled
|
||||
// particular node type if the data-table module is enabled
|
||||
hidden: true,
|
||||
inputs: [NodeConnectionTypes.Main],
|
||||
outputs: [NodeConnectionTypes.Main],
|
||||
|
||||
@@ -21,12 +21,6 @@ export const description: INodeProperties[] = [
|
||||
},
|
||||
},
|
||||
options: [
|
||||
// {
|
||||
// name: 'Create or Update',
|
||||
// value: 'upsert',
|
||||
// description: 'Create a new record, or update the current one if it already exists (upsert)',
|
||||
// action: 'Create or update a row',
|
||||
// },
|
||||
{
|
||||
name: 'Delete',
|
||||
value: deleteRows.FIELD,
|
||||
@@ -39,12 +33,6 @@ export const description: INodeProperties[] = [
|
||||
description: 'Get row(s)',
|
||||
action: 'Get row(s)',
|
||||
},
|
||||
// {
|
||||
// name: 'Get Many',
|
||||
// value: 'getAll',
|
||||
// description: 'Get many rows',
|
||||
// action: 'Get many rows',
|
||||
// },
|
||||
{
|
||||
name: 'Insert',
|
||||
value: insert.FIELD,
|
||||
|
||||
Reference in New Issue
Block a user