@epilot/automation-client 2.9.4 → 2.9.5

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
@@ -918,11 +918,7 @@ declare namespace Components {
918
918
  id?: string;
919
919
  schema?: string;
920
920
  attribute?: string;
921
- /**
922
- * example:
923
- * text | boolean | date | number
924
- */
925
- attributeType?: string;
921
+ attributeType?: "text" | "number" | "boolean" | "date" | "tag" | "country" | "email" | "phone" | "product" | "price";
926
922
  };
927
923
  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";
928
924
  values?: string[];
package/dist/openapi.json CHANGED
@@ -1800,7 +1800,18 @@
1800
1800
  },
1801
1801
  "attributeType": {
1802
1802
  "type": "string",
1803
- "example": "text | boolean | date | number"
1803
+ "enum": [
1804
+ "text",
1805
+ "number",
1806
+ "boolean",
1807
+ "date",
1808
+ "tag",
1809
+ "country",
1810
+ "email",
1811
+ "phone",
1812
+ "product",
1813
+ "price"
1814
+ ]
1804
1815
  }
1805
1816
  }
1806
1817
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "2.9.4",
3
+ "version": "2.9.5",
4
4
  "description": "Client library for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",