@epilot/automation-client 2.9.6 → 2.9.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/openapi.d.ts +3 -3
- package/dist/openapi.json +6 -4
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -372,7 +372,7 @@ declare namespace Components {
|
|
|
372
372
|
* ```
|
|
373
373
|
*
|
|
374
374
|
*/
|
|
375
|
-
EntityOperationTrigger | ActivityTrigger | EntityManualTrigger | ReceivedEmailTrigger
|
|
375
|
+
EntityOperationTrigger | ActivityTrigger | EntityManualTrigger | ReceivedEmailTrigger;
|
|
376
376
|
export interface AnythingButCondition {
|
|
377
377
|
"anything-but"?: string[];
|
|
378
378
|
}
|
|
@@ -940,9 +940,9 @@ declare namespace Components {
|
|
|
940
940
|
id?: string;
|
|
941
941
|
schema?: string;
|
|
942
942
|
attribute?: string;
|
|
943
|
-
attributeType?: "text" | "number" | "boolean" | "date" | "tag" | "country" | "email" | "phone" | "product" | "price";
|
|
943
|
+
attributeType?: "string" | "text" | "number" | "boolean" | "date" | "tag" | "country" | "email" | "phone" | "product" | "price" | "status" | "relation";
|
|
944
944
|
};
|
|
945
|
-
operation?: "equals" | "not_equals" | "contains" | "not_contains" | "starts_with" | "ends_with" | "greater_than" | "less_than" | "greater_than_or_equals" | "less_than_or_equals" | "is_empty" | "is_not_empty";
|
|
945
|
+
operation?: "equals" | "not_equals" | "any_of" | "none_of" | "contains" | "not_contains" | "starts_with" | "ends_with" | "greater_than" | "less_than" | "greater_than_or_equals" | "less_than_or_equals" | "is_empty" | "is_not_empty";
|
|
946
946
|
values?: string[];
|
|
947
947
|
}
|
|
948
948
|
export interface CopyValueMapper {
|
package/dist/openapi.json
CHANGED
|
@@ -558,9 +558,6 @@
|
|
|
558
558
|
},
|
|
559
559
|
{
|
|
560
560
|
"$ref": "#/components/schemas/ReceivedEmailTrigger"
|
|
561
|
-
},
|
|
562
|
-
{
|
|
563
|
-
"$ref": "#/components/schemas/AutomationTrigger"
|
|
564
561
|
}
|
|
565
562
|
]
|
|
566
563
|
},
|
|
@@ -1809,6 +1806,7 @@
|
|
|
1809
1806
|
"attributeType": {
|
|
1810
1807
|
"type": "string",
|
|
1811
1808
|
"enum": [
|
|
1809
|
+
"string",
|
|
1812
1810
|
"text",
|
|
1813
1811
|
"number",
|
|
1814
1812
|
"boolean",
|
|
@@ -1818,7 +1816,9 @@
|
|
|
1818
1816
|
"email",
|
|
1819
1817
|
"phone",
|
|
1820
1818
|
"product",
|
|
1821
|
-
"price"
|
|
1819
|
+
"price",
|
|
1820
|
+
"status",
|
|
1821
|
+
"relation"
|
|
1822
1822
|
]
|
|
1823
1823
|
}
|
|
1824
1824
|
}
|
|
@@ -1828,6 +1828,8 @@
|
|
|
1828
1828
|
"enum": [
|
|
1829
1829
|
"equals",
|
|
1830
1830
|
"not_equals",
|
|
1831
|
+
"any_of",
|
|
1832
|
+
"none_of",
|
|
1831
1833
|
"contains",
|
|
1832
1834
|
"not_contains",
|
|
1833
1835
|
"starts_with",
|