@epilot/automation-client 2.9.9 → 2.9.10
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 +3 -3
- package/dist/openapi.json +3 -3
- package/package.json +1 -1
package/dist/openapi.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ declare namespace Components {
|
|
|
15
15
|
* Result of the condition evaluation
|
|
16
16
|
*/
|
|
17
17
|
evaluationResult?: boolean;
|
|
18
|
-
|
|
18
|
+
statements?: /**
|
|
19
19
|
* example:
|
|
20
20
|
* {
|
|
21
21
|
* "source": {
|
|
@@ -32,7 +32,7 @@ declare namespace Components {
|
|
|
32
32
|
* ]
|
|
33
33
|
* }
|
|
34
34
|
*/
|
|
35
|
-
|
|
35
|
+
ConditionStatement[];
|
|
36
36
|
}
|
|
37
37
|
/**
|
|
38
38
|
* example:
|
|
@@ -934,7 +934,7 @@ declare namespace Components {
|
|
|
934
934
|
* ]
|
|
935
935
|
* }
|
|
936
936
|
*/
|
|
937
|
-
export interface
|
|
937
|
+
export interface ConditionStatement {
|
|
938
938
|
/**
|
|
939
939
|
* example:
|
|
940
940
|
* 1c8d3d9c-6d4c-4a83-aa22-aa0d630cbc2d
|
package/dist/openapi.json
CHANGED
|
@@ -1802,7 +1802,7 @@
|
|
|
1802
1802
|
}
|
|
1803
1803
|
}
|
|
1804
1804
|
},
|
|
1805
|
-
"
|
|
1805
|
+
"ConditionStatement": {
|
|
1806
1806
|
"type": "object",
|
|
1807
1807
|
"properties": {
|
|
1808
1808
|
"id": {
|
|
@@ -1913,10 +1913,10 @@
|
|
|
1913
1913
|
"type": "boolean",
|
|
1914
1914
|
"description": "Result of the condition evaluation"
|
|
1915
1915
|
},
|
|
1916
|
-
"
|
|
1916
|
+
"statements": {
|
|
1917
1917
|
"type": "array",
|
|
1918
1918
|
"items": {
|
|
1919
|
-
"$ref": "#/components/schemas/
|
|
1919
|
+
"$ref": "#/components/schemas/ConditionStatement"
|
|
1920
1920
|
}
|
|
1921
1921
|
}
|
|
1922
1922
|
}
|