The example [schema](https://github.com/swagger-api/swagger-petstore/blob/v31/src/main/webapp/design-first/petstore.yaml) from the [Swagger Editor ](https://editor-next.swagger.io/) validates without error in Speakeasy, but fails both in the CLI and the web/github: ```bash speakeasy generate sdk --schema /app/pet.yaml --lang typescript --out /app/sdk; ``` ```bash ERROR failed to generate output -- failed to run script GoError: failed to execute template: template: sdk.ts.stmpl:33:8: executing "sdk.ts.stmpl" at <templateFile "subsdk.ts.stmpl" (print "src/sdk/" (lower (sanitizeFileName $subName)) ".ts") .>: error calling templateFile: failed to write file src/sdk/pet.ts: SyntaxError: Declaration or statement expected. (853:5) 851 | 852 | > 853 | else { | ^ 854 | const responseBody = await response.text(); 855 | throw new errors.SDKError( 856 | "Unexpected API response", at D (entrypoint.js:1:548239(17)) at github.com/speakeasy-api/easytemplate.(*Engine).init.(*Engine).init.func1.func6 (native) at main.ts:6:13:*(15) : script runtime failure ```