wsdl-tsclient icon indicating copy to clipboard operation
wsdl-tsclient copied to clipboard

Generated Index Errors

Open peterarusanoff opened this issue 1 year ago • 0 comments

When generating a new client and opening the index file

The errors I am seeing are of 3 different types

  1. Variable Names

export { OffPointDetails } from "./definitions/OffPointDetails"; but in my file, I have export interface OffpointDetails {

  1. File Names export { OffpointDetails1 } from "./definitions/OffpointDetails1"; I don't have a file with this name, I do have OffPointDetails1.ts Which is also imported 2 separate times

  2. Duplicate Import Export I have several duplicates of the same import happening in multiple places for example

export { Citypair } from "./definitions/Citypair";
export { CityPair } from "./definitions/CityPair";

Yes I see the different p && P, still this should not be happening and this little gem

export { DocumentDetails5 } from "./definitions/DocumentDetails5";
export { DocumentDetails6 } from "./definitions/DocumentDetails6";
export { DocumentDetails6 } from "./definitions/DocumentDetails6";
export { ProcessDetails } from "./definitions/ProcessDetails";

peterarusanoff avatar Dec 27 '23 00:12 peterarusanoff