@epilot/automation-client 2.15.0 → 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 +17 -0
- package/dist/openapi.json +17 -3
- package/package.json +1 -1
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",
|
|
@@ -3443,9 +3460,6 @@
|
|
|
3443
3460
|
}
|
|
3444
3461
|
},
|
|
3445
3462
|
"servers": [
|
|
3446
|
-
{
|
|
3447
|
-
"url": "https://automation.sls.epilot.io"
|
|
3448
|
-
},
|
|
3449
3463
|
{
|
|
3450
3464
|
"url": "https://automation.sls.epilot.io"
|
|
3451
3465
|
}
|