@epilot/automation-client 2.9.7 → 2.9.8

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
@@ -940,9 +940,9 @@ declare namespace Components {
940
940
  id?: string;
941
941
  schema?: string;
942
942
  attribute?: string;
943
- attributeType?: "text" | "number" | "boolean" | "date" | "tag" | "country" | "email" | "phone" | "product" | "price";
943
+ attributeType?: "string" | "text" | "number" | "boolean" | "date" | "tag" | "country" | "email" | "phone" | "product" | "price" | "status" | "relation";
944
944
  };
945
- operation?: "equals" | "not_equals" | "contains" | "not_contains" | "starts_with" | "ends_with" | "greater_than" | "less_than" | "greater_than_or_equals" | "less_than_or_equals" | "is_empty" | "is_not_empty";
945
+ 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";
946
946
  values?: string[];
947
947
  }
948
948
  export interface CopyValueMapper {
package/dist/openapi.json CHANGED
@@ -1806,6 +1806,7 @@
1806
1806
  "attributeType": {
1807
1807
  "type": "string",
1808
1808
  "enum": [
1809
+ "string",
1809
1810
  "text",
1810
1811
  "number",
1811
1812
  "boolean",
@@ -1815,7 +1816,9 @@
1815
1816
  "email",
1816
1817
  "phone",
1817
1818
  "product",
1818
- "price"
1819
+ "price",
1820
+ "status",
1821
+ "relation"
1819
1822
  ]
1820
1823
  }
1821
1824
  }
@@ -1825,6 +1828,8 @@
1825
1828
  "enum": [
1826
1829
  "equals",
1827
1830
  "not_equals",
1831
+ "any_of",
1832
+ "none_of",
1828
1833
  "contains",
1829
1834
  "not_contains",
1830
1835
  "starts_with",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "2.9.7",
3
+ "version": "2.9.8",
4
4
  "description": "Client library for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",