We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e34048 commit 3310eb8Copy full SHA for 3310eb8
src/utils/transformToDto.ts
@@ -168,7 +168,10 @@ export function convertDtoFieldOperationTypes<
168
origin,
169
override,
170
}: OptionDiffReplacer = { origin: SEMI_BREAKING_CHANGE_TYPE, override: risky }): OperationType<J>[] {
171
+ // eslint-disable-next-line @typescript-eslint/ban-ts-comment
172
+ // @ts-ignore
173
return operationTypes?.map((type) => {
174
+ if(!type.changesSummary || !type.changesSummary ) return type
175
return {
176
...type,
177
changesSummary: replacePropertyInChangesSummary<T, J>(type.changesSummary, {
0 commit comments