@epilot/automation-client 2.14.2 → 2.14.4
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 +5 -1
- package/dist/openapi.json +5 -1
- package/package.json +1 -1
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
|
*/
|
|
@@ -43,7 +47,7 @@ declare namespace Components {
|
|
|
43
47
|
/**
|
|
44
48
|
* The id of the configured scheduler which will be added on automation triggered
|
|
45
49
|
*/
|
|
46
|
-
|
|
50
|
+
scheduleApiId?: string;
|
|
47
51
|
numberOfUnits?: number;
|
|
48
52
|
timePeriod?: "minutes" | "hours" | "days" | "weeks" | "months";
|
|
49
53
|
timeRelation?: "after" | "before";
|
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"
|
|
@@ -2113,7 +2117,7 @@
|
|
|
2113
2117
|
"type": "string",
|
|
2114
2118
|
"description": "Schedule Id"
|
|
2115
2119
|
},
|
|
2116
|
-
"
|
|
2120
|
+
"scheduleApiId": {
|
|
2117
2121
|
"type": "string",
|
|
2118
2122
|
"description": "The id of the configured scheduler which will be added on automation triggered"
|
|
2119
2123
|
},
|