@epilot/automation-client 2.9.3 → 2.9.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 +2 -10
- package/dist/openapi.json +9 -2
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -913,16 +913,8 @@ declare namespace Components {
|
|
|
913
913
|
*/
|
|
914
914
|
export interface Condition {
|
|
915
915
|
source?: {
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
* action | trigger
|
|
919
|
-
*/
|
|
920
|
-
origin?: string;
|
|
921
|
-
/**
|
|
922
|
-
* example:
|
|
923
|
-
* entity | workflow | journey block
|
|
924
|
-
*/
|
|
925
|
-
originType?: string;
|
|
916
|
+
origin?: "trigger" | "action";
|
|
917
|
+
originType?: "entity" | "workflow" | "journey_block";
|
|
926
918
|
id?: string;
|
|
927
919
|
schema?: string;
|
|
928
920
|
attribute?: string;
|
package/dist/openapi.json
CHANGED
|
@@ -1776,11 +1776,18 @@
|
|
|
1776
1776
|
"properties": {
|
|
1777
1777
|
"origin": {
|
|
1778
1778
|
"type": "string",
|
|
1779
|
-
"
|
|
1779
|
+
"enum": [
|
|
1780
|
+
"trigger",
|
|
1781
|
+
"action"
|
|
1782
|
+
]
|
|
1780
1783
|
},
|
|
1781
1784
|
"originType": {
|
|
1782
1785
|
"type": "string",
|
|
1783
|
-
"
|
|
1786
|
+
"enum": [
|
|
1787
|
+
"entity",
|
|
1788
|
+
"workflow",
|
|
1789
|
+
"journey_block"
|
|
1790
|
+
]
|
|
1784
1791
|
},
|
|
1785
1792
|
"id": {
|
|
1786
1793
|
"type": "string"
|