@epilot/automation-client 2.14.10 → 2.15.1

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
@@ -821,6 +821,23 @@ declare namespace Components {
821
821
  * 7
822
822
  */
823
823
  runs?: number;
824
+ /**
825
+ * Customized execution hot flow rate limit. Takes precedence over the default hot flow rate limit if specified.
826
+ */
827
+ max_executions?: {
828
+ /**
829
+ * Maximum number of executions per time window
830
+ * example:
831
+ * 100
832
+ */
833
+ count?: number;
834
+ /**
835
+ * ISO 8601 duration time window for the threshold
836
+ * example:
837
+ * PT1M
838
+ */
839
+ window?: string;
840
+ };
824
841
  created_at?: string; // date-time
825
842
  updated_at?: string; // date-time
826
843
  /**
package/dist/openapi.json CHANGED
@@ -711,6 +711,23 @@
711
711
  "example": 7,
712
712
  "description": "Number of automation executions that ran"
713
713
  },
714
+ "max_executions": {
715
+ "type": "object",
716
+ "description": "Customized execution hot flow rate limit. Takes precedence over the default hot flow rate limit if specified.",
717
+ "properties": {
718
+ "count": {
719
+ "type": "number",
720
+ "description": "Maximum number of executions per time window",
721
+ "minimum": 1,
722
+ "example": 100
723
+ },
724
+ "window": {
725
+ "type": "string",
726
+ "description": "ISO 8601 duration time window for the threshold",
727
+ "example": "PT1M"
728
+ }
729
+ }
730
+ },
714
731
  "created_at": {
715
732
  "type": "string",
716
733
  "format": "date-time",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@epilot/automation-client",
3
- "version": "2.14.10",
3
+ "version": "2.15.1",
4
4
  "description": "Client library for epilot automation API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",