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", "nodeVersion": "1.0",
"codexVersion": "1.0", "codexVersion": "1.0",
"details": "Data Table", "details": "Data Table",
"categories": ["Core Nodes"], "categories": ["Core Nodes", "Development"],
"resources": { "resources": {
"primaryDocumentation": [ "primaryDocumentation": [
{ {
@@ -11,8 +11,8 @@
} }
] ]
}, },
"alias": ["data", "table", "knowledge"], "alias": ["data", "table", "knowledge", "data store", "store", "sheet"],
"subcategories": { "subcategories": {
"Core Nodes": ["Data Transformation"] "Core Nodes": ["Helpers"]
} }
} }

View File

@@ -16,16 +16,16 @@ export class DataTable implements INodeType {
name: 'dataTable', name: 'dataTable',
icon: 'fa:table', icon: 'fa:table',
iconColor: 'orange', iconColor: 'orange',
group: ['transform'], group: ['input', 'transform'],
version: 1, version: 1,
subtitle: '={{$parameter["action"]}}', subtitle: '={{$parameter["action"]}}',
description: 'Save data across workflow executions in a table', description: 'Permanently save data across workflow executions in a table',
defaults: { defaults: {
name: 'Data Table', name: 'Data Table',
}, },
usableAsTool: true, usableAsTool: true,
// We have custom logic in the frontend to ignore `hidden` for this // 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, hidden: true,
inputs: [NodeConnectionTypes.Main], inputs: [NodeConnectionTypes.Main],
outputs: [NodeConnectionTypes.Main], outputs: [NodeConnectionTypes.Main],

View File

@@ -21,12 +21,6 @@ export const description: INodeProperties[] = [
}, },
}, },
options: [ 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', name: 'Delete',
value: deleteRows.FIELD, value: deleteRows.FIELD,
@@ -39,12 +33,6 @@ export const description: INodeProperties[] = [
description: 'Get row(s)', description: 'Get row(s)',
action: 'Get row(s)', action: 'Get row(s)',
}, },
// {
// name: 'Get Many',
// value: 'getAll',
// description: 'Get many rows',
// action: 'Get many rows',
// },
{ {
name: 'Insert', name: 'Insert',
value: insert.FIELD, value: insert.FIELD,