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
Hi!
We are using typscript-json-schema for a while and it fits to our needs.
But when we tried an upgrade to version 0.62.0 it showed that many enum definitions had been deleted from the resulting schema.
We thus postponed the upgrade, I tried now again with version 0.63.0.
Here, most enums are back again, but there is still a gap.
One example:
The left side shows the old result, from version 0.57.0
The right side shows the result from 0.63.0.
Obviously there is a remaining problem in case of arrays of enum values.
In the given case, the original definition is:
selectedValues?: DateRangeType[];
...
export const enum DateRangeType {
DATERANGE = 'DATERANGE',
DATE = 'DATE',
FROM = 'FROM',
TO = 'TO',
DAYS = 'DAYS',
LASTDAYS = 'LASTDAYS',
LASTWEEKS = 'LASTWEEKS',
WEEK = 'WEEK',
LASTMONTHS = 'LASTMONTHS',
MONTH = 'MONTH',
...
The text was updated successfully, but these errors were encountered:
Hi!
We are using typscript-json-schema for a while and it fits to our needs.
But when we tried an upgrade to version 0.62.0 it showed that many enum definitions had been deleted from the resulting schema.
We thus postponed the upgrade, I tried now again with version 0.63.0.
Here, most enums are back again, but there is still a gap.
One example:
The left side shows the old result, from version 0.57.0
The right side shows the result from 0.63.0.
Obviously there is a remaining problem in case of arrays of enum values.
In the given case, the original definition is:
The text was updated successfully, but these errors were encountered: