n8n/packages/nodes-base/nodes/PostBin/BinDescription.ts
कारतोफ्फेलस्क्रिप्ट™ 3c57062571
refactor: Fix some typos (no-changelog) (#5616)
2023-03-03 18:49:19 +01:00

92 lines
1.7 KiB
TypeScript

import type { INodeProperties } from 'n8n-workflow';
import { buildBinAPIURL, transformBinResponse } from './GenericFunctions';
// Operations for the `Bin` resource:
export const binOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
displayOptions: {
show: {
resource: ['bin'],
},
},
options: [
{
name: 'Create',
value: 'create',
description: 'Create bin',
routing: {
request: {
method: 'POST',
url: '/developers/postbin/api/bin',
},
output: {
postReceive: [transformBinResponse],
},
},
action: 'Create a bin',
},
{
name: 'Get',
value: 'get',
description: 'Get a bin',
routing: {
request: {
method: 'GET',
},
output: {
postReceive: [transformBinResponse],
},
send: {
preSend: [
// Parse binId before sending to make sure it's in the right format
buildBinAPIURL,
],
},
},
action: 'Get a bin',
},
{
name: 'Delete',
value: 'delete',
description: 'Delete a bin',
routing: {
request: {
method: 'DELETE',
},
send: {
preSend: [
// Parse binId before sending to make sure it's in the right format
buildBinAPIURL,
],
},
},
action: 'Delete a bin',
},
],
default: 'create',
},
];
// Properties of the `Bin` resource
export const binFields: INodeProperties[] = [
{
displayName: 'Bin ID',
name: 'binId',
type: 'string',
default: '',
required: true,
displayOptions: {
show: {
resource: ['bin'],
operation: ['get', 'delete'],
},
},
description: 'Unique identifier for each bin',
},
];