ci: regenerated with OpenAPI Doc latest, Speakeasy CLI 1.390.7

This commit is contained in:
speakeasybot
2024-09-06 00:25:22 +00:00
parent 33d536e256
commit b446642c94
23 changed files with 115 additions and 143 deletions

View File

@@ -310,6 +310,9 @@ async function run() {
let result;
try {
result = await sdk.backups.createBackup();
// Handle the result
console.log(result);
} catch (err) {
switch (true) {
case err instanceof SDKValidationError: {
@@ -324,9 +327,6 @@ async function run() {
}
}
}
// Handle the result
console.log(result);
}
run();