mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
fix(Data Table Node): Adjust metadata (no-changelog) (#18954)
This commit is contained in:
@@ -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"]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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],
|
||||||
|
|||||||
@@ -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,
|
||||||
|
|||||||
Reference in New Issue
Block a user