mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
d2b97c0713
* 👕 Enable rule `node-class-description-non-core-color-present` * 👕 Apply rule to remove deprecated `color` * ✏️ Fix unrelated typos * ✏️ Fix another unrelated typo Co-authored-by: Michael Kret <michael.k@radency.com>
51 lines
1 KiB
TypeScript
51 lines
1 KiB
TypeScript
import { INodeType, INodeTypeDescription } from 'n8n-workflow';
|
|
|
|
import { binFields, binOperations } from './BinDescription';
|
|
|
|
import { requestFields, requestOperations } from './RequestDescription';
|
|
|
|
export class PostBin implements INodeType {
|
|
description: INodeTypeDescription = {
|
|
displayName: 'PostBin',
|
|
name: 'postBin',
|
|
icon: 'file:postbin.svg',
|
|
group: ['transform'],
|
|
version: 1,
|
|
subtitle: '={{ $parameter["operation"] + ": " + $parameter["resource"] }}',
|
|
description: 'Consume PostBin API',
|
|
defaults: {
|
|
name: 'PostBin',
|
|
},
|
|
inputs: ['main'],
|
|
outputs: ['main'],
|
|
credentials: [],
|
|
requestDefaults: {
|
|
baseURL: 'https://www.toptal.com',
|
|
},
|
|
properties: [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Bin',
|
|
value: 'bin',
|
|
},
|
|
{
|
|
name: 'Request',
|
|
value: 'request',
|
|
},
|
|
],
|
|
default: 'bin',
|
|
required: true,
|
|
},
|
|
...binOperations,
|
|
...binFields,
|
|
...requestOperations,
|
|
...requestFields,
|
|
],
|
|
};
|
|
}
|