fix(Data Table Node): Adjust metadata (no-changelog) (#18954)

This commit is contained in:
Charlie Kolb
2025-08-29 12:28:10 +02:00
committed by GitHub
parent 7dd89d77d9
commit cec1255ffc
3 changed files with 6 additions and 18 deletions

View File

@@ -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"]
}
}

View File

@@ -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],

View File

@@ -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,