n8n/packages/nodes-base/nodes/Phantombuster/AgentDescription.ts
Iván Ovejero 63b6c9f128
refactor: Apply more eslint-plugin-n8n-nodes-base autofixable rules (#3243)
* ✏️ Alphabetize rules

* 🔖 Update version

*  Update lintfix command

*  Run baseline lintfix

* 📦 Update package-lock.json

* 👕 Apply `node-param-description-untrimmed` (#3200)

* Removing unneeded backticks (#3249)

* 👕 Apply node-param-description-wrong-for-return-all (#3253)

* 👕 Apply node-param-description-missing-limit (#3252)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply node-param-description-excess-final-period (#3250)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply node-param-description-unencoded-angle-brackets (#3256)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply node-param-description-url-missing-protocol (#3258)

* 👕 Apply `node-param-description-miscased-id` (#3254)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply node-param-description-wrong-for-limit (#3257)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>

* 👕 Apply node-param-description-wrong-for-ignore-ssl-issues (#3261)

* 👕 Apply rule

*  Restore lintfix script

*  Restore lintfix script

Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com>
Co-authored-by: Omar Ajoue <krynble@gmail.com>
Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com>
2022-05-06 23:01:25 +02:00

451 lines
9.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import {
INodeProperties,
} from 'n8n-workflow';
export const agentOperations: INodeProperties[] = [
{
displayName: 'Operation',
name: 'operation',
type: 'options',
displayOptions: {
show: {
resource: [
'agent',
],
},
},
options: [
{
name: 'Delete',
value: 'delete',
description: 'Delete an agent by ID',
},
{
name: 'Get',
value: 'get',
description: 'Get an agent by ID',
},
{
name: 'Get All',
value: 'getAll',
description: 'Get all agents of the current user\'s organization',
},
{
name: 'Get Output',
value: 'getOutput',
description: 'Get the output of the most recent container of an agent',
},
{
name: 'Launch',
value: 'launch',
description: 'Add an agent to the launch queue',
},
],
default: 'launch',
description: 'The operation to perform.',
},
];
export const agentFields: INodeProperties[] = [
/* -------------------------------------------------------------------------- */
/* agent:delete */
/* -------------------------------------------------------------------------- */
{
displayName: 'Agent',
name: 'agentId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getAgents',
},
required: true,
displayOptions: {
show: {
operation: [
'delete',
],
resource: [
'agent',
],
},
},
default: '',
},
/* -------------------------------------------------------------------------- */
/* agent:get */
/* -------------------------------------------------------------------------- */
{
displayName: 'Agent ID',
name: 'agentId',
type: 'string',
required: true,
displayOptions: {
show: {
operation: [
'get',
],
resource: [
'agent',
],
},
},
default: '',
},
/* -------------------------------------------------------------------------- */
/* agent:getAll */
/* -------------------------------------------------------------------------- */
{
displayName: 'Return All',
name: 'returnAll',
type: 'boolean',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'agent',
],
},
},
default: false,
description: 'Whether to return all results or only up to a given limit',
},
{
displayName: 'Limit',
name: 'limit',
type: 'number',
displayOptions: {
show: {
operation: [
'getAll',
],
resource: [
'agent',
],
returnAll: [
false,
],
},
},
typeOptions: {
minValue: 1,
maxValue: 50,
},
default: 25,
description: 'Max number of results to return',
},
/* -------------------------------------------------------------------------- */
/* agent:getOutput */
/* -------------------------------------------------------------------------- */
{
displayName: 'Agent',
name: 'agentId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getAgents',
},
required: true,
displayOptions: {
show: {
operation: [
'getOutput',
],
resource: [
'agent',
],
},
},
default: '',
},
{
displayName: 'Resolve Data',
name: 'resolveData',
type: 'boolean',
default: true,
displayOptions: {
show: {
operation: [
'getOutput',
],
resource: [
'agent',
],
},
},
description: 'By default the outpout is presented as string. If this option gets activated, it will resolve the data automatically.',
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
displayOptions: {
show: {
resource: [
'agent',
],
operation: [
'getOutput',
],
},
},
default: {},
options: [
{
displayName: 'Prev Container ID',
name: 'prevContainerId',
type: 'string',
default: '',
description: 'If set, the output will be retrieved from the container after the specified previous container ID',
},
{
displayName: 'Prev Status',
name: 'prevStatus',
type: 'options',
options: [
{
name: 'Starting',
value: 'starting',
},
{
name: 'Running',
value: 'running',
},
{
name: 'Finished',
value: 'finished',
},
{
name: 'Unknown',
value: 'unknown',
},
{
name: 'Launch Error',
value: 'lauch error',
},
{
name: 'Never Launched',
value: 'never launched',
},
],
default: '',
description: 'If set, allows to define which status was previously retrieved on user-side',
},
{
displayName: 'Pre Runtime Event Index',
name: 'prevRuntimeEventIndex',
type: 'number',
default: 0,
description: 'If set, the container\'s runtime events will be returned in the response starting from the provided previous runtime event index',
},
],
},
/* -------------------------------------------------------------------------- */
/* agent:launch */
/* -------------------------------------------------------------------------- */
{
displayName: 'Agent',
name: 'agentId',
type: 'options',
typeOptions: {
loadOptionsMethod: 'getAgents',
},
required: true,
displayOptions: {
show: {
operation: [
'launch',
],
resource: [
'agent',
],
},
},
default: '',
},
{
displayName: 'Resolve Data',
name: 'resolveData',
type: 'boolean',
default: true,
displayOptions: {
show: {
operation: [
'launch',
],
resource: [
'agent',
],
},
},
description: 'By default the launch just include the container ID. If this option gets activated, it will resolve the data automatically.',
},
{
displayName: 'JSON Parameters',
name: 'jsonParameters',
type: 'boolean',
default: false,
displayOptions: {
show: {
operation: [
'launch',
],
resource: [
'agent',
],
},
},
},
{
displayName: 'Additional Fields',
name: 'additionalFields',
type: 'collection',
placeholder: 'Add Field',
displayOptions: {
show: {
resource: [
'agent',
],
operation: [
'launch',
],
},
},
default: {},
options: [
{
displayName: 'Arguments (JSON)',
name: 'argumentsJson',
type: 'json',
displayOptions: {
show: {
'/jsonParameters': [
true,
],
},
},
default: '',
description: 'Agent argument. Can either be a JSON string or a plain object. The argument can be retrieved with buster.argument in the agents script.',
},
{
displayName: 'Arguments',
name: 'argumentsUi',
placeholder: 'Add Argument',
type: 'fixedCollection',
default: {},
typeOptions: {
multipleValues: true,
},
displayOptions: {
show: {
'/jsonParameters': [
false,
],
},
},
options: [
{
name: 'argumentValues',
displayName: 'Argument',
values: [
{
displayName: 'Key',
name: 'key',
type: 'string',
default: '',
description: 'Name of the argument key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
description: 'Value to set for the argument key',
},
],
},
],
},
{
displayName: 'Bonus Argument',
name: 'bonusArgumentUi',
placeholder: 'Add Bonus Argument',
type: 'fixedCollection',
default: {},
typeOptions: {
multipleValues: true,
},
displayOptions: {
show: {
'/jsonParameters': [
false,
],
},
},
options: [
{
name: 'bonusArgumentValue',
displayName: 'Bonus Argument',
values: [
{
displayName: 'Key',
name: 'key',
type: 'string',
default: '',
description: 'Name of the argument key to add',
},
{
displayName: 'Value',
name: 'value',
type: 'string',
default: '',
description: 'Value to set for the argument key',
},
],
},
],
},
{
displayName: 'Bonus Argument (JSON)',
name: 'bonusArgumentJson',
type: 'string',
displayOptions: {
show: {
'/jsonParameters': [
true,
],
},
},
default: '',
description: 'Agent bonus argument. Can either be a JSON string or a plain object. This bonus argument is single-use, it will only be used for the current launch. If present, it will be merged with the original argument, resulting in an effective argument that can be retrieved with buster.argument in the agents script.',
},
{
displayName: 'Manual Launch',
name: 'manualLaunch',
type: 'boolean',
default: false,
description: 'If set, the agent will be considered as "launched manually"',
},
{
displayName: 'Max Instance Count',
name: 'maxInstanceCount',
type: 'number',
default: 0,
description: 'If set, the agent will only be launched if the number of already running instances is below the specified number',
},
{
displayName: 'Save Argument',
name: 'saveArgument',
type: 'string',
default: '',
description: 'If true, argument will be saved as the default launch options for the agent',
},
],
},
];