You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jan 7, 2023. It is now read-only.
So, I'm using your library and overriding it a bit to customize my output, but I've noticed that it doesn't create simpleTypes, which is rather frustrating. For example, I'm using it on the Microsoft EWS xsd and wsdl files, and they have this definition
<xs:simpleTypename="DateTimePrecisionType">
<xs:annotation>
<xs:documentation>Precision for returned DateTime values</xs:documentation>
</xs:annotation>
<xs:restrictionbase="xs:string">
<xs:enumerationvalue="Seconds" />
<xs:enumerationvalue="Milliseconds" />
</xs:restriction>
</xs:simpleType>
<xs:elementname="DateTimePrecision"type="t:DateTimePrecisionType" />
And with this, the DateTimePrecision class will be created, it'll set to extend from DateTimePrecisionType, but DateTimePrecisionType will never exist, which causes an error