mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 23:54:07 -08:00
61 lines
1.2 KiB
TypeScript
61 lines
1.2 KiB
TypeScript
|
import {
|
||
|
INodeProperties,
|
||
|
INodePropertyCollection,
|
||
|
INodePropertyOptions,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export const rabbitDefaultOptions: Array<INodePropertyOptions | INodeProperties | INodePropertyCollection> = [
|
||
|
{
|
||
|
displayName: 'Arguments',
|
||
|
name: 'arguments',
|
||
|
placeholder: 'Add Argument',
|
||
|
description: 'Arguments to add.',
|
||
|
type: 'fixedCollection',
|
||
|
typeOptions: {
|
||
|
multipleValues: true,
|
||
|
},
|
||
|
default: {},
|
||
|
options: [
|
||
|
{
|
||
|
name: 'argument',
|
||
|
displayName: 'Argument',
|
||
|
values: [
|
||
|
{
|
||
|
displayName: 'Key',
|
||
|
name: 'key',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Value',
|
||
|
name: 'value',
|
||
|
type: 'string',
|
||
|
default: '',
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
],
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Auto Delete',
|
||
|
name: 'autoDelete',
|
||
|
type: 'boolean',
|
||
|
default: false,
|
||
|
description: 'The queue will be deleted when the number of consumers drops to zero .',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Durable',
|
||
|
name: 'durable',
|
||
|
type: 'boolean',
|
||
|
default: true,
|
||
|
description: 'The queue will survive broker restarts.',
|
||
|
},
|
||
|
{
|
||
|
displayName: 'Exclusive',
|
||
|
name: 'exclusive',
|
||
|
type: 'boolean',
|
||
|
default: false,
|
||
|
description: 'Scopes the queue to the connection.',
|
||
|
},
|
||
|
];
|