## Versions What package version of the SDK are you using. **4.6.1** ## Describe the bug 4.6.1 was transpiled with `typescript@3.7.2` which led to unintentional **breaking changes** for TypeScript consumers of the botbuilder-js libraries. The breaking changes revolve around the inclusion of [getters and setters in the `.d.ts` files](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-7.html#class-field-mitigations) in TypeScript 3.7.0. As such, we need to cut a new patch release (4.6.2) with a lower version of TypeScript. Steps to resolution: 1. Remove un-pinned `typescript` devDependency from root package.json 2. Pin `typescript` devDependency (**pre-3.7.0**) in each library's package.json (`botbuilder`, etc.) 3. Release 4.6.2 libraries with pinned new devDependency [bug] FYI @juanar @Batta32 @enzocanoo this is the bug the skills team was encountering in the TypeScript BF-Solutions work.