@epilot/automation-client 2.14.1 → 2.14.3

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 CHANGED
@@ -12,6 +12,10 @@ declare namespace Components {
12
12
  namespace Schemas {
13
13
  export interface ActionCondition {
14
14
  id?: string;
15
+ /**
16
+ * Schedule Id which indicates the schedule of the actions inside the condition
17
+ */
18
+ schedule_id?: string;
15
19
  /**
16
20
  * Result of the condition evaluation
17
21
  */
@@ -57,7 +61,7 @@ declare namespace Components {
57
61
  * The id of the action or trigger
58
62
  */
59
63
  id: string;
60
- origin: "trigger" | "action";
64
+ origin: "trigger" | "action" | "action_task" | "automation";
61
65
  schema: string;
62
66
  attribute: string;
63
67
  }
package/dist/openapi.json CHANGED
@@ -2063,6 +2063,10 @@
2063
2063
  "id": {
2064
2064
  "type": "string"
2065
2065
  },
2066
+ "schedule_id": {
2067
+ "type": "string",
2068
+ "description": "Schedule Id which indicates the schedule of the actions inside the condition"
2069
+ },
2066
2070
  "evaluationResult": {
2067
2071
  "type": "boolean",
2068
2072
  "description": "Result of the condition evaluation"
@@ -2087,7 +2091,9 @@
2087
2091
  "type": "string",
2088
2092
  "enum": [
2089
2093
  "trigger",
2090
- "action"
2094
+ "action",
2095
+ "action_task",
2096
+ "automation"
2091
2097
  ]
2092
2098
  },
2093
2099
  "schema": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "2.14.1",
3
+ "version": "2.14.3",
4
4
  "description": "Client library for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",