ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.193.0

This commit is contained in:
speakeasybot
2024-02-23 14:47:48 +00:00
parent a1f6c6f515
commit 1d4f25475d
116 changed files with 2550 additions and 3808 deletions

View File

@@ -45,10 +45,10 @@ export class StartUniversalTranscodeResponseBody extends Error {
this.rawResponse = err.rawResponse;
}
const msg = "message" in err && typeof err.message === "string" ? err.message : "";
const { rawResponse, ...data } = err;
const content = JSON.stringify(data);
this.message = [msg, content].filter(Boolean).join("\n");
this.message =
"message" in err && typeof err.message === "string"
? err.message
: "API error occurred";
this.name = "StartUniversalTranscodeResponseBody";
}