wsdl-tsclient
wsdl-tsclient copied to clipboard
:page_facing_up: Generate typescript client from WSDL
We have a supplier's [WSDL](https://service-afdirect.postdirekt.de/sapouni/AF-Direct-Service/AF-Direct?wsdl) containing something like this: ```xml ``` Here, `node-soap` will either return a `string` (in case there's no `kurz` attribute) or something like: ```js { $value:...
I don't know WSDL but there is an ArrayOfstring fields that generates `string` instead of `string[]`. Isn't it wrong? ```xml ... ``` And this is the generated field: ```ts /**...
It would be nice if generated files would have a `/* eslint-disable */` line in the top of the file. Could be options dependent but I guess it could also...
When i am trying the generate soap client from one of the wsdl. It throws me this error: Error: unable to get local issuer certificate How to resolve this ?...
It would be nice to have the possibility to read the WSDL directly from an URL.
When generating a client for the [Domibus.wsdl](https://ec.europa.eu/digital-building-blocks/code/projects/EDELIVERY/repos/domibus/browse/Domibus-ws-stubs/src/main/resources/schemas/BackendService_1_1.wsdl), wsdl-tsclient throws the following error: `TypeError: Cannot use 'in' operator to search for 'undefined'` I reduced the wsdl to isolate the issue. You...
```xml ``` does not generate any types, just the one for the request_header. Removing the request_header line fixes generation and generates all types.
When trying to generate Types for the following API: `https://toggenburg.teamaxess.com:16350/DCI4WTP/DCI4WTPService.svc?wsdl` All the types which are generated are resolved as empty object `{}`. When I import the WSDL in SoapUI however,...
Now when using verbatimModuleSyntax we get an error: _'X' is a type and must be imported using a type-only import when 'verbatimModuleSyntax' is enabled_ It would be great if we...