first commit
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
Security: Sync from Public / sync-from-public (push) Has been cancelled
Test: Benchmark Nightly / build (push) Has been cancelled
Test: Benchmark Nightly / Notify Cats on failure (push) Has been cancelled
CI: Python / Checks (push) Has been cancelled
Test: Evals Python / Workflow Comparison Python (push) Has been cancelled
Util: Check Docs URLs / check-docs-urls (push) Has been cancelled
Test: Visual Storybook / Cloudflare Pages (push) Has been cancelled
Test: E2E Performance / build-and-test-performance (push) Has been cancelled
Test: Workflows Nightly / Run Workflow Tests (push) Has been cancelled
Util: Cleanup CI Docker Images / Delete stale CI images (push) Has been cancelled
Test: Benchmark Destroy Env / build (push) Has been cancelled
Util: Update Node Popularity / update-popularity (push) Has been cancelled
Test: E2E Coverage Weekly / Coverage Tests (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,293 @@
|
||||
import type { 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',
|
||||
description:
|
||||
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
|
||||
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',
|
||||
description:
|
||||
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>',
|
||||
typeOptions: {
|
||||
loadOptionsMethod: 'getUsers',
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
field: ['assignee'],
|
||||
},
|
||||
hide: {
|
||||
field: ['group', 'priority', 'type', 'status'],
|
||||
},
|
||||
},
|
||||
default: '',
|
||||
},
|
||||
];
|
||||
Reference in New Issue
Block a user