@epilot/automation-client 2.22.4 → 2.22.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
@@ -1329,6 +1329,10 @@ declare namespace Components {
1329
1329
  attribute?: string;
1330
1330
  attributeType?: "string" | "text" | "number" | "boolean" | "date" | "datetime" | "tags" | "country" | "email" | "phone" | "product" | "price" | "status" | "relation" | "multiselect" | "select" | "radio" | "relation_user" | "purpose" | "label" | "payment" | "relation_payment_method";
1331
1331
  attributeRepeatable?: boolean;
1332
+ /**
1333
+ * Whether to apply the operation to each item of the repeatable attribute
1334
+ */
1335
+ repeatableItemOp?: boolean;
1332
1336
  attributeOperation?: "all" | "updated" | "added" | "deleted";
1333
1337
  };
1334
1338
  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";
package/dist/openapi.json CHANGED
@@ -2783,6 +2783,10 @@
2783
2783
  "attributeRepeatable": {
2784
2784
  "type": "boolean"
2785
2785
  },
2786
+ "repeatableItemOp": {
2787
+ "type": "boolean",
2788
+ "description": "Whether to apply the operation to each item of the repeatable attribute"
2789
+ },
2786
2790
  "attributeOperation": {
2787
2791
  "enum": [
2788
2792
  "all",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "2.22.4",
3
+ "version": "2.22.5",
4
4
  "description": "Client library for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",