@epilot/automation-client 2.27.0 → 2.28.0
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 +8 -1
- package/dist/openapi.json +12 -1
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -2807,7 +2807,14 @@ declare namespace Components {
|
|
|
2807
2807
|
id?: string; // uuid
|
|
2808
2808
|
type: "new_email_thread";
|
|
2809
2809
|
configuration: {
|
|
2810
|
-
|
|
2810
|
+
/**
|
|
2811
|
+
* A list of shared inbox IDs that the email thread should be matched against.
|
|
2812
|
+
*/
|
|
2813
|
+
shared_inbox_ids?: string[];
|
|
2814
|
+
/**
|
|
2815
|
+
* Whether the trigger should be matched against only inbound, outbound emails or both.
|
|
2816
|
+
*/
|
|
2817
|
+
direction: "INBOUND" | "OUTBOUND" | "BOTH";
|
|
2811
2818
|
};
|
|
2812
2819
|
}
|
|
2813
2820
|
export interface NumericCondition {
|
package/dist/openapi.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"info": {
|
|
4
4
|
"title": "Automation API",
|
|
5
5
|
"description": "API Backend for epilot Automation Workflows feature",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.3.0"
|
|
7
7
|
},
|
|
8
8
|
"tags": [
|
|
9
9
|
{
|
|
@@ -3970,9 +3970,20 @@
|
|
|
3970
3970
|
},
|
|
3971
3971
|
"configuration": {
|
|
3972
3972
|
"type": "object",
|
|
3973
|
+
"required": [
|
|
3974
|
+
"direction"
|
|
3975
|
+
],
|
|
3973
3976
|
"properties": {
|
|
3977
|
+
"shared_inbox_ids": {
|
|
3978
|
+
"type": "array",
|
|
3979
|
+
"description": "A list of shared inbox IDs that the email thread should be matched against.",
|
|
3980
|
+
"items": {
|
|
3981
|
+
"type": "string"
|
|
3982
|
+
}
|
|
3983
|
+
},
|
|
3974
3984
|
"direction": {
|
|
3975
3985
|
"type": "string",
|
|
3986
|
+
"description": "Whether the trigger should be matched against only inbound, outbound emails or both.",
|
|
3976
3987
|
"enum": [
|
|
3977
3988
|
"INBOUND",
|
|
3978
3989
|
"OUTBOUND",
|