autorest.typescript
autorest.typescript copied to clipboard
Extension for AutoRest (https://github.com/Azure/autorest) that generates TypeScript code. The transpiled javascript code is isomorphic. It can be run in browser and in node.js environment.
We want to generation sample test code according to the given examples. So customers could copy these tests to build their own. Also we need to ensure these generated code...
Genning from [AI Inference Typespec](https://github.com/Azure/azure-rest-api-specs/commit/d4cb3a1cfa9ec74e75fed7240aab03ddd777414b) into TypeScript Error: Did you mean to provide the overwrite option? A source file already exists at the provided file path: C:/Users/glharper/repos/azure-sdk-for-js/sdk/ai/src/utils/serializeUtil.ts at CompilerFactory.throwIfFileExists (C:\Users\glharper\repos\azure-sdk-for-js\sdk\ai\TempTypeSpecFiles\ModelClient\node_modules\ts-morph\dist\ts-morph.js:19200:15)...
I am testing the TypeSpec generation for App Configuration service with modular generation. The rest layer generation finishes and the modular generation gives the following error: `Error: Unexpected! Inserting syntax...
Pass
Pass
Currently, we won't be able to do any serialize and deserialize for additional properties, what pr https://github.com/Azure/autorest.typescript/pull/2469 supports is there's no any serialization work between modular and rlc, but typespec...
TypeSpec link: https://github.com/Azure/cadl-ranch/blob/main/packages/cadl-ranch-specs/http/special-headers/conditional-request/main.tsp We haven't support this in RLC yet, the previous issue for RLC is https://github.com/Azure/autorest.typescript/issues/1538
Add acceptance tests for model serialization. Models should pass extra properties through untouched. Models should not introduce or remove `undefined` properties during serialization/deserialization. Serialization should use copy-on-write, i.e. use the...
In ARM service team may prompt subscriptionId into client-level parameters. Usually this mean most operations would require subscriptionId but not all. So we received customer's ask if there is a...