@epilot/automation-client 2.14.0 → 2.14.1
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 +4 -1
- package/dist/openapi.json +21 -1
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -44,6 +44,9 @@ declare namespace Components {
|
|
|
44
44
|
* The id of the configured scheduler which will be added on automation triggered
|
|
45
45
|
*/
|
|
46
46
|
configuredScheduleId?: string;
|
|
47
|
+
numberOfUnits?: number;
|
|
48
|
+
timePeriod?: "minutes" | "hours" | "days" | "weeks" | "months";
|
|
49
|
+
timeRelation?: "after" | "before";
|
|
47
50
|
source: /* The source of the schedule_at timestamp that will be used to schedule the action */ ActionScheduleSource;
|
|
48
51
|
}
|
|
49
52
|
/**
|
|
@@ -51,7 +54,7 @@ declare namespace Components {
|
|
|
51
54
|
*/
|
|
52
55
|
export interface ActionScheduleSource {
|
|
53
56
|
/**
|
|
54
|
-
* The
|
|
57
|
+
* The id of the action or trigger
|
|
55
58
|
*/
|
|
56
59
|
id: string;
|
|
57
60
|
origin: "trigger" | "action";
|
package/dist/openapi.json
CHANGED
|
@@ -2081,7 +2081,7 @@
|
|
|
2081
2081
|
"properties": {
|
|
2082
2082
|
"id": {
|
|
2083
2083
|
"type": "string",
|
|
2084
|
-
"description": "The
|
|
2084
|
+
"description": "The id of the action or trigger"
|
|
2085
2085
|
},
|
|
2086
2086
|
"origin": {
|
|
2087
2087
|
"type": "string",
|
|
@@ -2115,6 +2115,26 @@
|
|
|
2115
2115
|
"type": "string",
|
|
2116
2116
|
"description": "The id of the configured scheduler which will be added on automation triggered"
|
|
2117
2117
|
},
|
|
2118
|
+
"numberOfUnits": {
|
|
2119
|
+
"type": "number"
|
|
2120
|
+
},
|
|
2121
|
+
"timePeriod": {
|
|
2122
|
+
"type": "string",
|
|
2123
|
+
"enum": [
|
|
2124
|
+
"minutes",
|
|
2125
|
+
"hours",
|
|
2126
|
+
"days",
|
|
2127
|
+
"weeks",
|
|
2128
|
+
"months"
|
|
2129
|
+
]
|
|
2130
|
+
},
|
|
2131
|
+
"timeRelation": {
|
|
2132
|
+
"type": "string",
|
|
2133
|
+
"enum": [
|
|
2134
|
+
"after",
|
|
2135
|
+
"before"
|
|
2136
|
+
]
|
|
2137
|
+
},
|
|
2118
2138
|
"source": {
|
|
2119
2139
|
"$ref": "#/components/schemas/ActionScheduleSource"
|
|
2120
2140
|
}
|