@epilot/automation-client 2.9.9 → 2.9.11

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
@@ -15,7 +15,7 @@ declare namespace Components {
15
15
  * Result of the condition evaluation
16
16
  */
17
17
  evaluationResult?: boolean;
18
- conditions?: /**
18
+ statements?: /**
19
19
  * example:
20
20
  * {
21
21
  * "source": {
@@ -32,7 +32,7 @@ declare namespace Components {
32
32
  * ]
33
33
  * }
34
34
  */
35
- Condition[];
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 Condition {
937
+ export interface ConditionStatement {
938
938
  /**
939
939
  * example:
940
940
  * 1c8d3d9c-6d4c-4a83-aa22-aa0d630cbc2d
@@ -947,6 +947,7 @@ declare namespace Components {
947
947
  schema?: string;
948
948
  attribute?: string;
949
949
  attributeType?: "string" | "text" | "number" | "boolean" | "date" | "datetime" | "tag" | "country" | "email" | "phone" | "product" | "price" | "status" | "relation" | "multiselect" | "select" | "radio" | "relation_user";
950
+ attributeRepeatable?: boolean;
950
951
  };
951
952
  operation?: "equals" | "not_equals" | "any_of" | "none_of" | "contains" | "not_contains" | "starts_with" | "ends_with" | "greater_than" | "less_than" | "greater_than_or_equals" | "less_than_or_equals" | "is_empty" | "is_not_empty";
952
953
  values?: string[];
package/dist/openapi.json CHANGED
@@ -1802,7 +1802,7 @@
1802
1802
  }
1803
1803
  }
1804
1804
  },
1805
- "Condition": {
1805
+ "ConditionStatement": {
1806
1806
  "type": "object",
1807
1807
  "properties": {
1808
1808
  "id": {
@@ -1859,6 +1859,9 @@
1859
1859
  "radio",
1860
1860
  "relation_user"
1861
1861
  ]
1862
+ },
1863
+ "attributeRepeatable": {
1864
+ "type": "boolean"
1862
1865
  }
1863
1866
  }
1864
1867
  },
@@ -1913,10 +1916,10 @@
1913
1916
  "type": "boolean",
1914
1917
  "description": "Result of the condition evaluation"
1915
1918
  },
1916
- "conditions": {
1919
+ "statements": {
1917
1920
  "type": "array",
1918
1921
  "items": {
1919
- "$ref": "#/components/schemas/Condition"
1922
+ "$ref": "#/components/schemas/ConditionStatement"
1920
1923
  }
1921
1924
  }
1922
1925
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "2.9.9",
3
+ "version": "2.9.11",
4
4
  "description": "Client library for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",