mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 10:02:05 +00:00
17 lines
238 B
TypeScript
17 lines
238 B
TypeScript
export const configuredOutputs = (version: number) => {
|
|
if (version >= 1.3) {
|
|
return [
|
|
{
|
|
type: 'main',
|
|
displayName: 'Input Data',
|
|
},
|
|
{
|
|
type: 'main',
|
|
displayName: 'Response',
|
|
},
|
|
];
|
|
}
|
|
|
|
return ['main'];
|
|
};
|