When trying to update a typescript project to use the PSDK 213.0.0, I get following error during compilation:
Error: node_modules/purecloud-platform-client-v2/index.d.ts:125:39 - error TS2552: Cannot find name 'RequestOptions'. Did you mean 'HttpRequestOptions'?
And in fact, editing this type file (index.d.ts) shows that the method toAxiosConfig of DefaultHttpClient uses a parameter of type RequestOptions - this index.d.ts declares only the class HttpRequestOptions, however.
For pure JavaScript development this is not visible, but it completely breaks typescript development - this should be fixed.