ci: regenerated with OpenAPI Doc , Speakeasy CLI 1.405.6

This commit is contained in:
speakeasybot
2024-10-02 02:30:07 +00:00
parent 2492807c65
commit 1cfbd17f28
135 changed files with 2545 additions and 1686 deletions

View File

@@ -99,8 +99,18 @@ export async function statisticsGetBandwidthStatistics(
context,
errorCodes: ["400", "401", "4XX", "5XX"],
retryConfig: options?.retries
|| client._options.retryConfig,
retryCodes: options?.retryCodes || ["429", "500", "502", "503", "504"],
|| client._options.retryConfig
|| {
strategy: "backoff",
backoff: {
initialInterval: 500,
maxInterval: 60000,
exponent: 1.5,
maxElapsedTime: 3600000,
},
retryConnectionErrors: true,
},
retryCodes: options?.retryCodes || ["5XX"],
});
if (!doResult.ok) {
return doResult;