fix: Email based automation conditions filter (#6786)
This commit is contained in:
@@ -21,6 +21,13 @@ export const AUTOMATIONS = {
|
|||||||
inputType: 'plain_text',
|
inputType: 'plain_text',
|
||||||
filterOperators: OPERATOR_TYPES_2,
|
filterOperators: OPERATOR_TYPES_2,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: 'email',
|
||||||
|
name: 'Email',
|
||||||
|
attributeI18nKey: 'EMAIL',
|
||||||
|
inputType: 'plain_text',
|
||||||
|
filterOperators: OPERATOR_TYPES_2,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: 'inbox_id',
|
key: 'inbox_id',
|
||||||
name: 'Inbox',
|
name: 'Inbox',
|
||||||
@@ -125,6 +132,13 @@ export const AUTOMATIONS = {
|
|||||||
inputType: 'plain_text',
|
inputType: 'plain_text',
|
||||||
filterOperators: OPERATOR_TYPES_2,
|
filterOperators: OPERATOR_TYPES_2,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: 'email',
|
||||||
|
name: 'Email',
|
||||||
|
attributeI18nKey: 'EMAIL',
|
||||||
|
inputType: 'plain_text',
|
||||||
|
filterOperators: OPERATOR_TYPES_2,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: 'inbox_id',
|
key: 'inbox_id',
|
||||||
name: 'Inbox',
|
name: 'Inbox',
|
||||||
@@ -242,6 +256,13 @@ export const AUTOMATIONS = {
|
|||||||
inputType: 'search_select',
|
inputType: 'search_select',
|
||||||
filterOperators: OPERATOR_TYPES_3,
|
filterOperators: OPERATOR_TYPES_3,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: 'email',
|
||||||
|
name: 'Email',
|
||||||
|
attributeI18nKey: 'EMAIL',
|
||||||
|
inputType: 'plain_text',
|
||||||
|
filterOperators: OPERATOR_TYPES_2,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: 'inbox_id',
|
key: 'inbox_id',
|
||||||
name: 'Inbox',
|
name: 'Inbox',
|
||||||
@@ -317,6 +338,13 @@ export const AUTOMATIONS = {
|
|||||||
inputType: 'search_select',
|
inputType: 'search_select',
|
||||||
filterOperators: OPERATOR_TYPES_1,
|
filterOperators: OPERATOR_TYPES_1,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: 'email',
|
||||||
|
name: 'Email',
|
||||||
|
attributeI18nKey: 'EMAIL',
|
||||||
|
inputType: 'plain_text',
|
||||||
|
filterOperators: OPERATOR_TYPES_2,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: 'mail_subject',
|
key: 'mail_subject',
|
||||||
name: 'Email Subject',
|
name: 'Email Subject',
|
||||||
|
|||||||
@@ -156,6 +156,13 @@
|
|||||||
"filter_operators": [ "equal_to", "not_equal_to", "contains", "does_not_contain" ],
|
"filter_operators": [ "equal_to", "not_equal_to", "contains", "does_not_contain" ],
|
||||||
"attribute_type": "additional_attributes"
|
"attribute_type": "additional_attributes"
|
||||||
},
|
},
|
||||||
|
"email": {
|
||||||
|
"attribute_name": "Email",
|
||||||
|
"input_type": "textbox",
|
||||||
|
"data_type": "text",
|
||||||
|
"filter_operators": [ "equal_to", "not_equal_to", "contains", "does_not_contain" ],
|
||||||
|
"attribute_type": "standard"
|
||||||
|
},
|
||||||
"country_code": {
|
"country_code": {
|
||||||
"attribute_name": "Country Name",
|
"attribute_name": "Country Name",
|
||||||
"input_type": "textbox",
|
"input_type": "textbox",
|
||||||
|
|||||||
Reference in New Issue
Block a user