n8n/packages/nodes-base/nodes/Contentful/SpaceDescription.ts
2021-12-03 09:44:16 +01:00

34 lines
497 B
TypeScript

import {
INodeProperties,
} from 'n8n-workflow';
export const resource = {
name: 'Space',
value: 'space',
};
export const operations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
resource.value,
],
},
},
options: [
{
name: 'Get',
value: 'get',
},
],
default: 'get',
description: 'The operation to perform.',
},
];
export const fields: INodeProperties[] = [];