mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
70ae90fa3c
* ⚡ Update `lintfix` script * 👕 Remove unneeded lint exceptions * 👕 Run baseline `lintfix` * 👕 Apply `node-param-description-miscased-url` (#3441) * 👕 Apply `rule node-param-placeholder-miscased-id` (#3443) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-option-name-wrong-for-upsert` (#3446) * 👕 Apply `node-param-min-value-wrong-for-limit` (#3442) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-wrong-for-dynamic-options` (#3454) * 🔨 fix * ⚡ Fix `Assigned To` fields Co-authored-by: Michael Kret <michael.k@radency.com> * 👕 Apply `rule node-param-default-wrong-for-number` (#3453) * 👕 Apply `node-param-default-wrong-for-string` (#3452) Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * Apply `node-param-display-name-miscased` (#3449) * 🔨 fix * 🔨 exceptions * ⚡ review fixes * 👕 Apply `node-param-description-lowercase-first-char` (#3451) * ⚡ fix * ⚡ review fixes * ⚡ fix Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Apply `node-param-description-wrong-for-dynamic-options` (#3456) * Rule working as intended * Add rule * 🔥 Remove repetitions * 👕 Add exceptions Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * 👕 Small fix for `node-param-description-wrong-for-dynamic-options` * 👕 Apply `node-param-default-wrong-for-fixed-collection` (#3460) * 👕 Apply `node-param-description-line-break-html-tag` (#3462) * 👕 Run baseline `lintfix` * 👕 Apply `node-param-options-type-unsorted-items` (#3459) * ⚡ fix * 🔨 exceptions * Add exception for Salesmate and Zoom Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: Iván Ovejero <ivov.src@gmail.com> * ⚡ Restore `lintfix` command Co-authored-by: Omar Ajoue <krynble@gmail.com> Co-authored-by: Michael Kret <88898367+michael-radency@users.noreply.github.com> Co-authored-by: agobrech <45268029+agobrech@users.noreply.github.com> Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: brianinoa <54530642+brianinoa@users.noreply.github.com>
342 lines
4.8 KiB
TypeScript
342 lines
4.8 KiB
TypeScript
import {
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export const conditionFields: INodeProperties[] = [
|
|
{
|
|
displayName: 'Resource',
|
|
name: 'resource',
|
|
type: 'options',
|
|
noDataExpression: true,
|
|
options: [
|
|
{
|
|
name: 'Ticket',
|
|
value: 'ticket',
|
|
},
|
|
],
|
|
default: 'ticket',
|
|
},
|
|
{
|
|
displayName: 'Field',
|
|
name: 'field',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
'resource': [
|
|
'ticket',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Assignee',
|
|
value: 'assignee',
|
|
},
|
|
{
|
|
name: 'Group',
|
|
value: 'group',
|
|
},
|
|
{
|
|
name: 'Priority',
|
|
value: 'priority',
|
|
},
|
|
{
|
|
name: 'Status',
|
|
value: 'status',
|
|
},
|
|
{
|
|
name: 'Type',
|
|
value: 'type',
|
|
},
|
|
],
|
|
default: 'status',
|
|
},
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-operation-without-no-data-expression
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Changed',
|
|
value: 'changed',
|
|
},
|
|
{
|
|
name: 'Changed From',
|
|
value: 'value_previous',
|
|
},
|
|
{
|
|
name: 'Changed To',
|
|
value: 'value',
|
|
},
|
|
{
|
|
name: 'Greater Than',
|
|
value: 'greater_than',
|
|
},
|
|
{
|
|
name: 'Is',
|
|
value: 'is',
|
|
},
|
|
{
|
|
name: 'Is Not',
|
|
value: 'is_not',
|
|
},
|
|
{
|
|
name: 'Less Than',
|
|
value: 'less_than',
|
|
},
|
|
{
|
|
name: 'Not Changed',
|
|
value: 'not_changed',
|
|
},
|
|
{
|
|
name: 'Not Changed From',
|
|
value: 'not_value_previous',
|
|
},
|
|
{
|
|
name: 'Not Changed To',
|
|
value: 'not_value',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
hide: {
|
|
field: [
|
|
'assignee',
|
|
],
|
|
},
|
|
},
|
|
default: 'is',
|
|
},
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-operation-without-no-data-expression
|
|
{
|
|
displayName: 'Operation',
|
|
name: 'operation',
|
|
type: 'options',
|
|
options: [
|
|
{
|
|
name: 'Changed',
|
|
value: 'changed',
|
|
},
|
|
{
|
|
name: 'Changed From',
|
|
value: 'value_previous',
|
|
},
|
|
{
|
|
name: 'Changed To',
|
|
value: 'value',
|
|
},
|
|
{
|
|
name: 'Is',
|
|
value: 'is',
|
|
},
|
|
{
|
|
name: 'Is Not',
|
|
value: 'is_not',
|
|
},
|
|
{
|
|
name: 'Not Changed',
|
|
value: 'not_changed',
|
|
},
|
|
{
|
|
name: 'Not Changed From',
|
|
value: 'not_value_previous',
|
|
},
|
|
{
|
|
name: 'Not Changed To',
|
|
value: 'not_value',
|
|
},
|
|
],
|
|
displayOptions: {
|
|
show: {
|
|
field: [
|
|
'assignee',
|
|
],
|
|
},
|
|
},
|
|
default: 'is',
|
|
},
|
|
{
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
field: [
|
|
'status',
|
|
],
|
|
},
|
|
hide: {
|
|
operation:[
|
|
'changed',
|
|
'not_changed',
|
|
],
|
|
field: [
|
|
'assignee',
|
|
'group',
|
|
'priority',
|
|
'type',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Closed',
|
|
value: 'closed',
|
|
},
|
|
{
|
|
name: 'New',
|
|
value: 'new',
|
|
},
|
|
{
|
|
name: 'Open',
|
|
value: 'open',
|
|
},
|
|
{
|
|
name: 'Pending',
|
|
value: 'pending',
|
|
},
|
|
{
|
|
name: 'Solved',
|
|
value: 'solved',
|
|
},
|
|
],
|
|
default: 'open',
|
|
},
|
|
{
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
field: [
|
|
'type',
|
|
],
|
|
},
|
|
hide: {
|
|
operation:[
|
|
'changed',
|
|
'not_changed',
|
|
],
|
|
field: [
|
|
'assignee',
|
|
'group',
|
|
'priority',
|
|
'status',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Question',
|
|
value: 'question',
|
|
},
|
|
{
|
|
name: 'Incident',
|
|
value: 'incident',
|
|
},
|
|
{
|
|
name: 'Problem',
|
|
value: 'problem',
|
|
},
|
|
{
|
|
name: 'Task',
|
|
value: 'task',
|
|
},
|
|
],
|
|
default: 'question',
|
|
},
|
|
{
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'options',
|
|
displayOptions: {
|
|
show: {
|
|
field: [
|
|
'priority',
|
|
],
|
|
},
|
|
hide: {
|
|
operation:[
|
|
'changed',
|
|
'not_changed',
|
|
],
|
|
field: [
|
|
'assignee',
|
|
'group',
|
|
'type',
|
|
'status',
|
|
],
|
|
},
|
|
},
|
|
options: [
|
|
{
|
|
name: 'Low',
|
|
value: 'low',
|
|
},
|
|
{
|
|
name: 'Normal',
|
|
value: 'normal',
|
|
},
|
|
{
|
|
name: 'High',
|
|
value: 'high',
|
|
},
|
|
{
|
|
name: 'Urgent',
|
|
value: 'urgent',
|
|
},
|
|
],
|
|
default: 'low',
|
|
},
|
|
{
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getGroups',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
field: [
|
|
'group',
|
|
],
|
|
},
|
|
hide: {
|
|
field: [
|
|
'assignee',
|
|
'priority',
|
|
'type',
|
|
'status',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
{
|
|
// eslint-disable-next-line n8n-nodes-base/node-param-display-name-wrong-for-dynamic-options
|
|
displayName: 'Value',
|
|
name: 'value',
|
|
type: 'options',
|
|
typeOptions: {
|
|
loadOptionsMethod: 'getUsers',
|
|
},
|
|
displayOptions: {
|
|
show: {
|
|
field: [
|
|
'assignee',
|
|
],
|
|
},
|
|
hide: {
|
|
field: [
|
|
'group',
|
|
'priority',
|
|
'type',
|
|
'status',
|
|
],
|
|
},
|
|
},
|
|
default: '',
|
|
},
|
|
];
|